Skip to content

Commit a19fede

Browse files
authored
Prepared version 0.2.2
1 parent 59616d8 commit a19fede

File tree

7 files changed

+9
-4
lines changed

7 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# EmuGUI v0.2.2
2+
3+
- (Hopefully) fixed a bug that caused additional arguments to be saved in the external BIOS variables as well
4+
- With that, Windows NT 4.0 MIPS should also work again.
5+
16
# EmuGUI v0.2.1
27

38
- Updated TESTED.md
5 Bytes
Binary file not shown.
12 Bytes
Binary file not shown.

dialogExecution/editVirtualMachine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ def finishCreation(self):
435435
else:
436436
win2k = 0
437437

438-
ext_bios_dir = self.lineEdit_2.text()
438+
ext_bios_dir = self.lineEdit_3.text()
439439

440440
add_args = self.lineEdit_2.text()
441441

dialogExecution/newVirtualMachine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ def finishCreation(self):
278278
else:
279279
win2k = 0
280280

281-
ext_bios_dir = self.lineEdit_2.text()
281+
ext_bios_dir = self.lineEdit_3.text()
282282

283283
add_args = self.lineEdit_2.text()
284284

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def __init__(self, parent=None):
1919
self.connectSignalsSlots()
2020
self.timer = QTimer()
2121
self.timer.timeout.connect(self.updateVmList)
22-
self.label_8.setText("EmuGUI v0.2.1")
22+
self.label_8.setText("EmuGUI v0.2.2")
2323
self.setWindowTitle("EmuGUI")
2424

2525
if platform.system() == "Windows":

ui/NewVM.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</rect>
2727
</property>
2828
<property name="currentIndex">
29-
<number>9</number>
29+
<number>0</number>
3030
</property>
3131
<widget class="QWidget" name="page">
3232
<widget class="QWidget" name="gridLayoutWidget">

0 commit comments

Comments
 (0)