Skip to content

Commit eb3f16a

Browse files
committed
Foreport BIOS file fix from 2.0.7
1 parent 76942f7 commit eb3f16a

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,27 @@
99
- Thanks to Mizuki, we now have more flexible Windows-specific code.
1010
- As per the depreciation policy, the old USB Tablet checkbox has been removed for good.
1111

12+
## Foreported from v2.0.7.5618
13+
14+
- When creating new VMs, you can now choose custom BIOS files again.
15+
16+
## Known issues
17+
18+
- Unfortunately, you might have to run EmuGUI from the terminal on Linux.
19+
- You will not be notified about any more updates for now as update.txt will not be updated.
20+
- 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).
21+
- The QCOW2 format is prone to not work for some Windows VMs.
22+
23+
# EmuGUI v2.0.7.5618 "Ioana Rosa" (based on v2.0.6.5617)
24+
25+
## WARNING
26+
27+
- You now need the latest version of your Linux distribution or at least Windows 10 to get official support for this release.
28+
29+
## Changes compared to v2.0.6.5617
30+
31+
- When creating new VMs, you can now choose custom BIOS files again.
32+
1233
## Known issues
1334

1435
- Unfortunately, you might have to run EmuGUI from the terminal on Linux.

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)

0 commit comments

Comments
 (0)