This commit is contained in:
2025-09-12 16:22:12 -07:00
parent b1e5405f7b
commit 0607ced61e
3 changed files with 284 additions and 212 deletions

13
main.py
View File

@@ -120,6 +120,12 @@ SECTIONS = [
#{"name": "FILTER", "default": True, "type": bool, "help": "Calculate Peak Spectral Power."},
]
},
{
"title": "Short Channels",
"params": [
{"name": "SHORT_CHANNEL", "default": True, "type": bool, "help": "Does the data have a short channel?"},
]
},
{
"title": "Extracting Events",
"params": [
@@ -242,6 +248,9 @@ class UpdateCheckThread(QThread):
error_occurred = Signal(str)
def run(self):
if not getattr(sys, 'frozen', False):
self.error_occurred.emit("Application is not frozen (Development mode).")
return
try:
latest_version, download_url = self.get_latest_release_for_platform()
if not latest_version:
@@ -646,9 +655,9 @@ class ProgressBubble(QWidget):
self.progress_layout = QHBoxLayout()
self.rects = []
for _ in range(12):
for _ in range(19):
rect = QFrame()
rect.setFixedSize(10, 20)
rect.setFixedSize(10, 18)
rect.setStyleSheet("background-color: white; border: 1px solid gray;")
self.progress_layout.addWidget(rect)
self.rects.append(rect)