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

Commit 5830ad1

Browse files
committed
Fix update not loading
1 parent 3dc2990 commit 5830ad1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/statusInfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ 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(".", "")) > 130:
18+
if int(tag_name.replace(".", "")) > 131:
1919
return True
2020
return False
2121
except:

res/manager.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ li.checked::marker { content: "\2612"; }
788788
<string notr="true">color:white;</string>
789789
</property>
790790
<property name="text">
791-
<string>Protonos 2023 v 1.2.0</string>
791+
<string>Protonos 2023 v 1.3.1</string>
792792
</property>
793793
<property name="alignment">
794794
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>

0 commit comments

Comments
 (0)