Skip to content

Commit 2fee4c9

Browse files
committed
Keyboard layout can be set again
1 parent 109bd64 commit 2fee4c9

File tree

4 files changed

+31
-10
lines changed

4 files changed

+31
-10
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.8.5619 "Ioana Rosa" (based on v2.0.7.5618)
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.7.5618
8+
9+
- The keyboard layout is now set correctly.
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.7.5618 "Ioana Rosa" (based on v2.0.6.5617)
219

320
## WARNING

dialogExecution/editVMNew.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -987,12 +987,14 @@ def finishCreation(self):
987987

988988
else:
989989
usb_support = 0
990+
991+
kbdlayout = self.cb_kbdlayout.currentText()
990992

991-
if sysDefContent.__contains__(self.cb_kbdlayout.currentText()):
992-
kbdlayout = "en-us"
993+
#if sysDefContent.__contains__(self.cb_kbdlayout.currentText()):
994+
# kbdlayout = "en-us"
993995

994-
else:
995-
kbdlayout = self.cb_kbdlayout.currentText()
996+
#else:
997+
# kbdlayout = self.cb_kbdlayout.currentText()
996998

997999
if letQemuDecideVariantsStr.__contains__(self.cb_cdc1.currentText()):
9981000
cd_control1 = "Let QEMU decide"

dialogExecution/newVirtualMachine.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -873,12 +873,14 @@ def finishCreation(self):
873873

874874
else:
875875
usb_support = 0
876+
877+
kbdlayout = self.cb_kbdlayout.currentText()
876878

877-
if sysDefContent.__contains__(self.cb_kbdlayout.currentText()):
878-
kbdlayout = "en-us"
879+
#if sysDefContent.__contains__(self.cb_kbdlayout.currentText()):
880+
# kbdlayout = "en-us"
879881

880-
else:
881-
kbdlayout = self.cb_kbdlayout.currentText()
882+
#else:
883+
# kbdlayout = self.cb_kbdlayout.currentText()
882884

883885
if letQemuDecideVariantsStr.__contains__(self.cb_cdc1.currentText()):
884886
cd_control1 = "Let QEMU decide"

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.7.5618"
132+
self.version = "2.0.8.5619"
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 = 5618
230+
self.versionCode = 5619
231231

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

0 commit comments

Comments
 (0)