Skip to content

Commit 109bd64

Browse files
committed
Fix custom BIOS files
1 parent dce7841 commit 109bd64

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
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.7.5618 "Ioana Rosa" (based on v2.0.6.5617)
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.6.5617
8+
9+
- When creating new VMs, you can now choose custom BIOS files again.
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.6.5617 "Ioana Rosa" (based on v2.0.5.5616)
219

320
## WARNING

dialogExecution/newVirtualMachine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ def extBiosFileLocation(self):
709709
filename, filter = QFileDialog.getOpenFileName(parent=self, caption='Select BIOS file', dir='.', filter='BIN files (*.bin);;All files (*.*)')
710710

711711
if filename:
712-
self.lineEdit_8.setText(filename)
712+
self.le_biosF.setText(filename)
713713

714714
def soundCard(self):
715715
self.stackedWidget.setCurrentIndex(5)

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.6.5617"
132+
self.version = "2.0.7.5618"
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 = 5617
230+
self.versionCode = 5618
231231

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

0 commit comments

Comments
 (0)