Skip to content

Commit 484c171

Browse files
committed
Fix Edit VM VHD browsing issue
1 parent d619680 commit 484c171

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.10.5621 "Ioana Rosa" (based on v2.0.9.5620)
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.8.5619
8+
9+
- An issue regarding you not being able to switch VHDs in the edit VM dialogue has been fixed.
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.9.5620 "Ioana Rosa" (based on v2.0.8.5619)
219

320
## WARNING

dialogExecution/editVMNew.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,13 +348,13 @@ def vhdBrowseLocation(self):
348348
with open(f"{self.exec_folder}translations/addexistingvhd.txt", "r+", encoding="utf8") as addExistVhdFile:
349349
addExistVhdContent = addExistVhdFile.read()
350350

351-
if creNewVhdContent.__contains__(self.comboBox_2.currentText()):
351+
if creNewVhdContent.__contains__(self.cb_vhdu.currentText()):
352352
filename, filter = QFileDialog.getSaveFileName(parent=self, caption='Save VHD file', dir='.', filter='Hard disk file (*.img);;QCOW2 disk image (*.qcow2);;QCOW disk image (*.qcow);;VirtualBox disk image (*.vdi);;VMware disk file (*.vmdk);;Virtual hard disk file with extra features (*.vhdx);;Virtual PC hard disks (*.vpc);;All files (*.*)')
353353

354354
if filename:
355355
self.le_vhdp.setText(filename)
356356

357-
elif addExistVhdContent.__contains__(self.comboBox_2.currentText()):
357+
elif addExistVhdContent.__contains__(self.cb_vhdu.currentText()):
358358
filename, filter = QFileDialog.getOpenFileName(parent=self, caption='Open VHD file', dir='.', filter='Hard disk file (*.img);;QCOW2 disk image (*.qcow2);;QCOW disk image (*.qcow);;VirtualBox disk image (*.vdi);;VMware disk file (*.vmdk);;Virtual hard disk file with extra features (*.vhdx);;Virtual PC hard disks (*.vpc);;All files (*.*)')
359359

360360
if filename:

emugui.py

Lines changed: 1 addition & 1 deletion
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.9.5620"
132+
self.version = "2.0.10.5621"
133133

134134
self.architectures = [
135135
["i386", self.lineEdit_4],

0 commit comments

Comments
 (0)