Skip to content
This repository was archived by the owner on Aug 8, 2025. It is now read-only.

Commit 4c551b8

Browse files
committed
Fixed broken manager updater
1 parent f040e2f commit 4c551b8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

components/statusInfo.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,9 @@ def managerUpdateCheck():
1515
if response.status_code == 200:
1616
latest_release = response.json()
1717
tag_name = latest_release["tag_name"]
18-
if int(tag_name.replace(".", "")) > 120:
18+
if int(tag_name.replace(".", "")) > 130:
1919
return True
20-
else:
21-
return False
20+
return False
2221
except:
2322
return False
2423

main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ def InitWindow(self):
9090
self.background_graphics.setMovie(movie)
9191
self.background_graphics.show()
9292
movie.start()
93+
self.checkUpdateAvailable()
9394

9495
# Display manager window
9596
def showManagerWindow(self):

0 commit comments

Comments
 (0)