Skip to content

Commit dce7841

Browse files
committed
qtdarktheme completely irrelevant on Windows
1 parent 4ca7abc commit dce7841

File tree

3 files changed

+32
-11
lines changed

3 files changed

+32
-11
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# EmuGUI v2.0.6.5617 "Ioana Rosa" (based on v2.0.5.5616)
2+
3+
## WARNING
4+
5+
- You now need the latest version of your Linux distribution or at least Windows 10 to get official support for this release.
6+
7+
## Changes compared to v2.0.5.5616
8+
9+
- EmuGUI will no longer try to import the qtdarktheme module on Windows. I hereby thank Mizuki for suggesting the fix, which I will credit her for.
10+
- I accidentally forgot to credit myself (Tech-FZ) for my EmuGUI 2.0 Banner.
11+
12+
## Known issues
13+
14+
- Unfortunately, you might have to run EmuGUI from the terminal on Linux.
15+
- You will not be notified about any more updates for now as update.txt will not be updated.
16+
- As for the TPM functionality, you must run `mkdir (insert-path-here)` and `swtpm socket --tpm2 --tpmstate dir=(insert-path-here) --ctrl type=unixio,path=(insert-path-here)/swtpm-sock --log level=20` in a terminal (You can leave the `--tpm2` argument away tho if you plan to use TPM 1.2 instead).
17+
- The QCOW2 format is prone to not work for some Windows VMs.
18+
119
# EmuGUI v2.0.5.5616 "Ioana Rosa" (based on v2.0.4.5615)
220

321
## WARNING

CONTRIBUTORS.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ User0 (Debian packages)
2828

2929
PrelevatedInsider18204 (Arch packages)
3030

31+
Mizuki (Coding)
32+
3133
# Banners
3234

3335
| Version | Author |
@@ -36,4 +38,5 @@ PrelevatedInsider18204 (Arch packages)
3638
| 1.0 "Adèle Angela" | Tech-FZ |
3739
| Easter "Robert Rabbit" | Tech-FZ |
3840
| 1.1 "Sara Angeline" | Tech-FZ |
39-
| 1.2 "Garuka Pula" | Tech-FZ |
41+
| 1.2 "Garuka Pula" | Tech-FZ |
42+
| 2.0 "Ioana Rosa" | Tech-FZ |

emugui.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@
1010
else:
1111
import platformSpecific.unixSpecific
1212

13+
try:
14+
import qdarktheme
15+
16+
except:
17+
print("EmuGUI has to warn you.")
18+
print("Error code: W-11-CLZLM")
19+
print("If this error occurs multiple times, contact your administrator and/or ask for help on the EmuGUI Discord Server or on its GitHub repository.")
20+
1321
except:
1422
print("EmuGUI encountered a critical error and needs to be closed.")
1523
print("Error code: C-07-39KHE")
@@ -87,14 +95,6 @@
8795
import errors.logman
8896
import errors.logID
8997

90-
try:
91-
import qdarktheme
92-
93-
except:
94-
print("EmuGUI has to warn you.")
95-
print("Error code: W-11-CLZLM")
96-
print("If this error occurs multiple times, contact your administrator and/or ask for help on the EmuGUI Discord Server or on its GitHub repository.")
97-
9898
try:
9999
import psutil
100100

@@ -129,7 +129,7 @@ def __init__(self, parent=None):
129129
logman = errors.logman.LogMan()
130130
logman.generateLogID()
131131
logman.logFile = logman.setLogFile()
132-
self.version = "2.0.5.5616"
132+
self.version = "2.0.6.5617"
133133

134134
self.architectures = [
135135
["i386", self.lineEdit_4],
@@ -227,7 +227,7 @@ def __init__(self, parent=None):
227227
except:
228228
pass
229229

230-
self.versionCode = 5616
230+
self.versionCode = 5617
231231

232232
if platform.system() == "Windows":
233233
self.connection = platformSpecific.windowsSpecific.setupWindowsBackend()

0 commit comments

Comments
 (0)