diff options
| author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2026-07-24 22:46:24 +0530 |
|---|---|---|
| committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2026-07-24 22:46:24 +0530 |
| commit | 130ca2c3b8d871fd32db91924eb67c991ad72fb3 (patch) | |
| tree | f255738a4a4ac04c01ea24f06ff9e195a797259e | |
| parent | f741642a63799a45017b2fa62db25932e526b2f3 (diff) | |
removed updater coming soon message
| -rw-r--r-- | SoundboardUpdater.py | 2 | ||||
| -rw-r--r-- | main.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/SoundboardUpdater.py b/SoundboardUpdater.py index 51674b6..445b4bc 100644 --- a/SoundboardUpdater.py +++ b/SoundboardUpdater.py @@ -46,7 +46,7 @@ class SoundboardUpdaterWindow(QWidget): self.setFixedSize(300, 180) self.layout = QVBoxLayout(self) - self.status_label = QLabel("Updater coming soon") + self.status_label = QLabel("Checking for updates...") self.layout.addWidget(self.status_label) self.btn_layout = QVBoxLayout() @@ -25,7 +25,7 @@ from Soundboard import Soundboard from SoundboardEngine import SoundboardEngineWindow from SoundboardUpdater import SoundboardUpdaterWindow -APP_VERSION = "0.3.0" +APP_VERSION = "0.3.1" if __name__ == "__main__": config_path = ( |