Skip to content

Commit de30344

Browse files
committed
prep for new version
1 parent cc23fa2 commit de30344

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

ui/settings_interval_handler.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import threading
22
import time
33
from services.thundersynchandler import ThunderSyncHandler
4+
from services.permanent_sync_handler import PermanentSyncHandler
45

56

67
class SettingsIntervalHandler:
@@ -22,7 +23,7 @@ def start(self):
2223
status = "offline"
2324
if ThunderSyncHandler.STATUS == 1:
2425
status = "waiting for changes..."
25-
if ThunderSyncHandler.STATUS == 2:
26+
if ThunderSyncHandler.STATUS == 2 or PermanentSyncHandler.STATUS == 2:
2627
status = "syncing..."
2728

2829
self.statusBadge.setText("Status: " + status)

ui/settingsui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def createAboutArea(self):
146146

147147
aboutLine1 = QtWidgets.QLabel("Thunderklaud Desktop-Client")
148148
self.aboutBoxLayout.addWidget(aboutLine1)
149-
aboutLine2 = QtWidgets.QLabel("Version 1.1.5")
149+
aboutLine2 = QtWidgets.QLabel("Version 1.2.0")
150150
self.aboutBoxLayout.addWidget(aboutLine2)
151151

152152
aboutLine3 = QtWidgets.QLabel(
@@ -186,7 +186,7 @@ def createChangeMode(self):
186186
rowLayout.addWidget(syncMode)
187187
rowLayout.addWidget(self.comboBox)
188188
self.settingsBoxLayout.addLayout(rowLayout)
189-
189+
190190
def getSyncMode(self):
191191
return self.comboBox.currentText()
192192

0 commit comments

Comments
 (0)