aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Pisa <pisa@cmp.felk.cvut.cz>2019-06-28 15:43:00 +0200
committerPavel Pisa <pisa@cmp.felk.cvut.cz>2019-06-28 15:43:00 +0200
commit1841ca30c574c9d1ac57b10b1cf417ef62be0af6 (patch)
tree1a9d2b0612d9c43ee90baa4a69202473cd261841
parent8fc09b33240fa0b55bd0db22103db65861bc2d6b (diff)
downloadqtmips-1841ca30c574c9d1ac57b10b1cf417ef62be0af6.tar.gz
qtmips-1841ca30c574c9d1ac57b10b1cf417ef62be0af6.tar.bz2
qtmips-1841ca30c574c9d1ac57b10b1cf417ef62be0af6.zip
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 <pisa@cmp.felk.cvut.cz>
-rw-r--r--debian/changelog12
-rw-r--r--qtmips.spec2
-rw-r--r--qtmips_gui/aboutdialog.cpp2
-rw-r--r--qtmips_gui/main.cpp2
4 files changed, 15 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index c02032e..1b12548 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+qtmips (0.7.0) unstable; urgency=medium
+
+ * 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.
+
+ -- Pavel Pisa <pisa@cmp.felk.cvut.cz> Fri, 28 Jun 2019 15:38:52 +0200
+
qtmips (0.6.8) unstable; urgency=medium
* Debian package updated to version 0.6.8.
diff --git a/qtmips.spec b/qtmips.spec
index 81527ca..f42850f 100644
--- a/qtmips.spec
+++ b/qtmips.spec
@@ -20,7 +20,7 @@
Name: qtmips
-Version: 0.6.8
+Version: 0.7.0
Release: 0
Summary: MIPS CPU simulator for education purposes with pipeline and cache visualization
License: GPL-2.0-or-later
diff --git a/qtmips_gui/aboutdialog.cpp b/qtmips_gui/aboutdialog.cpp
index 161a322..18d7163 100644
--- a/qtmips_gui/aboutdialog.cpp
+++ b/qtmips_gui/aboutdialog.cpp
@@ -71,7 +71,7 @@ AboutDialog::AboutDialog(QWidget *parent)
hl->addWidget(vbox);
QString versionText;
- versionText = "Version 0.6.8\n";
+ versionText = "Version 0.7.0\n";
vl->addWidget(new QLabel("<span style='font-size:x-large; font-weight:bold;'>Qt Mips - MIPS Architecture Simulator</span>"));
lbl = new QLabel(versionText);
diff --git a/qtmips_gui/main.cpp b/qtmips_gui/main.cpp
index 3429583..4e01d65 100644
--- a/qtmips_gui/main.cpp
+++ b/qtmips_gui/main.cpp
@@ -40,7 +40,7 @@
int main(int argc, char *argv[]) {
QApplication app(argc, argv);
app.setApplicationName("qtmips_gui");
- app.setApplicationVersion("0.6.8");
+ app.setApplicationVersion("0.7.0");
MainWindow w;
w.start();