Skip to content

Commit e604b12

Browse files
committed
Fix HWPR
1 parent f54e079 commit e604b12

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# EmuGUI v2.0.3.5614 "Ioana Rosa" (based on v2.0.2.5613)
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.2.5613
8+
9+
- HWPR has been fixed on Linux.
10+
11+
## Known issues
12+
13+
- Unfortunately, you might have to run EmuGUI from the terminal on Linux.
14+
- You will not be notified about any more updates for now as update.txt will not be updated.
15+
- 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).
16+
- The QCOW2 format is prone to not work for some Windows VMs.
17+
118
# EmuGUI v2.0.2.5613 "Ioana Rosa" (based on v2.0.1.5612)
219

320
## WARNING

emugui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.2.5613"
132+
self.version = "2.0.3.5614"
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 = 5613
230+
self.versionCode = 5614
231231

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

plugins/pluginmgr/hw_reader.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
def read_hw_plugin():
66
exec_folder = pf.retrieveExecFolder()
77
pluginContent = []
8-
pluginFiles = [f for f in os.listdir(f"{exec_folder}/plugins/hw_additions") if os.path.isfile(os.path.join(f"{exec_folder}/plugins/hw_additions", f))]
8+
pluginFiles = [f for f in os.listdir(f"{exec_folder}plugins/hw_additions") if os.path.isfile(os.path.join(f"{exec_folder}plugins/hw_additions", f))]
99

1010
for plugin in pluginFiles:
11-
with open(f"{exec_folder}/plugins/hw_additions/{plugin}", "r+") as pluginFile:
11+
with open(f"{exec_folder}plugins/hw_additions/{plugin}", "r+") as pluginFile:
1212
jsonplugin = json.load(pluginFile)
1313
pluginContent.append(jsonplugin)
1414

0 commit comments

Comments
 (0)