Skip to content

Commit c1ac348

Browse files
committed
Fixed EmuGUI update
1 parent a2b2722 commit c1ac348

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# EmuGUI v0.5.2
2+
3+
- The updater also closes now when clicking "Yes".
4+
15
# EmuGUI v0.5.1
26

37
- Windows 8.1 and Windows Server 2012 R2 users are now notified about end of support for EmuGUI.
-36 Bytes
Binary file not shown.

dialogExecution/updateAvailable.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ def redirectToWebsite(self):
5353
elif result[0][1] == "Codeberg":
5454
webbrowser.open("https://codeberg.org/lucien-rowan/EmuGUI")
5555

56-
print("The query was executed successfully. The update mirror slot already is in the database.")
56+
print("The query was executed successfully.")
57+
self.close()
5758

5859
except:
5960
print("The query was executed successfully but the mirror couldn't be retrieved. Please check one of the following mirrors:")

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def __init__(self, parent=None):
2626
self.connectSignalsSlots()
2727
self.timer = QTimer()
2828
self.timer.timeout.connect(self.updateVmList)
29-
self.label_8.setText("EmuGUI v0.5.1")
29+
self.label_8.setText("EmuGUI v0.5.2")
3030
self.setWindowTitle("EmuGUI")
3131

3232
try:
@@ -35,7 +35,7 @@ def __init__(self, parent=None):
3535
except:
3636
pass
3737

38-
self.versionCode = 5006
38+
self.versionCode = 5007
3939

4040
if platform.system() == "Windows":
4141
self.connection = platformSpecific.windowsSpecific.setupWindowsBackend()

update.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
stable = 5005
2-
pre_release = 5005
1+
stable = 5006
2+
pre_release = 5006

0 commit comments

Comments
 (0)