Skip to content

Commit 2dcade1

Browse files
committed
Foreport keyboard layout fix from 2.0.8
1 parent 0079b33 commit 2dcade1

File tree

3 files changed

+26
-11
lines changed

3 files changed

+26
-11
lines changed

CHANGELOG.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,16 @@
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
12+
## Foreported
13+
14+
### From v2.0.7.5618
1315

1416
- When creating new VMs, you can now choose custom BIOS files again.
1517

18+
### From v2.0.8.5619
19+
20+
- The keyboard layout is now set correctly.
21+
1622
## Changes compared to v2.1.0.5700_dev
1723

1824
- An issue which failed VM creation and editing has been eliminated.
@@ -46,6 +52,23 @@
4652
- 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).
4753
- The QCOW2 format is prone to not work for some Windows VMs.
4854

55+
# EmuGUI v2.0.8.5619 "Ioana Rosa" (based on v2.0.7.5618)
56+
57+
## WARNING
58+
59+
- You now need the latest version of your Linux distribution or at least Windows 10 to get official support for this release.
60+
61+
## Changes compared to v2.0.7.5618
62+
63+
- The keyboard layout is now set correctly.
64+
65+
## Known issues
66+
67+
- Unfortunately, you might have to run EmuGUI from the terminal on Linux.
68+
- You will not be notified about any more updates for now as update.txt will not be updated.
69+
- 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).
70+
- The QCOW2 format is prone to not work for some Windows VMs.
71+
4972
# EmuGUI v2.0.7.5618 "Ioana Rosa" (based on v2.0.6.5617)
5073

5174
## WARNING

dialogExecution/editVMNew.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -988,11 +988,7 @@ def finishCreation(self):
988988
else:
989989
usb_support = 0
990990

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

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

dialogExecution/newVirtualMachine.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -874,11 +874,7 @@ def finishCreation(self):
874874
else:
875875
usb_support = 0
876876

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

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

0 commit comments

Comments
 (0)