Skip to content

Commit 45f0618

Browse files
committed
Pathfinder no longer utilised on Linux
1 parent 67d8273 commit 45f0618

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.2.5613 "Ioana Rosa" (based on v2.0.1.5612)
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.1.5612
8+
9+
- The Pathfinder is no longer in use 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.1.5612 "Ioana Rosa" (based on v2.0.0.5611)
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.1.5612"
132+
self.version = "2.0.2.5613"
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 = 5612
230+
self.versionCode = 5613
231231

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

services/pathfinder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ def retrieveExecFolder():
1212
elif __file__.endswith(".pyc"):
1313
exec_dir = re.sub(r"_internal\\services\\pathfinder.pyc$", "", __file__)
1414

15-
else:
15+
""" else:
1616
if __file__.endswith(".py"):
1717
exec_dir = re.sub("services/pathfinder.py$", "", __file__)
1818
1919
elif __file__.endswith(".pyc"):
20-
exec_dir = re.sub("_internal/services/pathfinder.pyc$", "", __file__)
20+
exec_dir = re.sub("_internal/services/pathfinder.pyc$", "", __file__) """
2121

2222
return exec_dir
2323

0 commit comments

Comments
 (0)