Skip to content

Commit 1841ca3

Browse files
committed
Version updated to 0.7.0
* Debian package updated to version 0.7.0. * Include simple LCD frame-buffer and display implementation. * Simulate push of dial buttons by check box. * Allow to create simulator without loaded executable. * Printing/export to PDF file reduces print area/page to actual image size. * Disable text elide for memory and program views (fix for MAC OS). * Implement standard zoom handling by mouse wheel and keys. Signed-off-by: Pavel Pisa <[email protected]>
1 parent 8fc09b3 commit 1841ca3

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

debian/changelog

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
qtmips (0.7.0) unstable; urgency=medium
2+
3+
* Debian package updated to version 0.7.0.
4+
* Include simple LCD frame-buffer and display implementation.
5+
* Simulate push of dial buttons by check box.
6+
* Allow to create simulator without loaded executable.
7+
* Printing/export to PDF file reduces print area/page to actual image size.
8+
* Disable text elide for memory and program views (fix for MAC OS).
9+
* Implement standard zoom handling by mouse wheel and keys.
10+
11+
-- Pavel Pisa <[email protected]> Fri, 28 Jun 2019 15:38:52 +0200
12+
113
qtmips (0.6.8) unstable; urgency=medium
214

315
* Debian package updated to version 0.6.8.

qtmips.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121

2222
Name: qtmips
23-
Version: 0.6.8
23+
Version: 0.7.0
2424
Release: 0
2525
Summary: MIPS CPU simulator for education purposes with pipeline and cache visualization
2626
License: GPL-2.0-or-later

qtmips_gui/aboutdialog.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ AboutDialog::AboutDialog(QWidget *parent)
7171
hl->addWidget(vbox);
7272

7373
QString versionText;
74-
versionText = "Version 0.6.8\n";
74+
versionText = "Version 0.7.0\n";
7575

7676
vl->addWidget(new QLabel("<span style='font-size:x-large; font-weight:bold;'>Qt Mips - MIPS Architecture Simulator</span>"));
7777
lbl = new QLabel(versionText);

qtmips_gui/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
int main(int argc, char *argv[]) {
4141
QApplication app(argc, argv);
4242
app.setApplicationName("qtmips_gui");
43-
app.setApplicationVersion("0.6.8");
43+
app.setApplicationVersion("0.7.0");
4444

4545
MainWindow w;
4646
w.start();

0 commit comments

Comments
 (0)