aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Pisa <pisa@cmp.felk.cvut.cz>2019-09-12 11:51:32 +0200
committerPavel Pisa <pisa@cmp.felk.cvut.cz>2019-09-12 11:51:32 +0200
commitb0ffb46e1cae26b7afaa6e334c71d39ddf6953d2 (patch)
treea6829a48f36250f25888a771c6443d61d174c2a3
parentf1ee01b12e312c59b061a6e7d3779a8666d2cd57 (diff)
downloadqtmips-b0ffb46e1cae26b7afaa6e334c71d39ddf6953d2.tar.gz
qtmips-b0ffb46e1cae26b7afaa6e334c71d39ddf6953d2.tar.bz2
qtmips-b0ffb46e1cae26b7afaa6e334c71d39ddf6953d2.zip
Version updated to 0.7.3
* Debian package updated to version 0.7.3. * Implemented SKIP/SPACE assembler directives. * Add OpenHub statistic page link. * Provide support for include directive in simple assembler. * In include, use content from editor if file is already open. * Add #pragma processing to integrated assembler and its usage to control windows. * Use #pragma in examples to lower initial learning curve. * samples: simple-lw-sw-ia.S: place data section to 0x2000 address. Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
-rw-r--r--debian/changelog13
-rw-r--r--qtmips.spec2
-rw-r--r--qtmips_gui/aboutdialog.cpp2
-rw-r--r--qtmips_gui/main.cpp2
4 files changed, 16 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index 7c86e80..b306be8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,16 @@
+qtmips (0.7.3) unstable; urgency=medium
+
+ * Debian package updated to version 0.7.3.
+ * Implemented SKIP/SPACE assembler directives.
+ * Add OpenHub statistic page link.
+ * Provide support for include directive in simple assembler.
+ * In include, use content from editor if file is already open.
+ * Add #pragma processing to integrated assembler and its usage to control windows.
+ * Use #pragma in examples to lower initial learning curve.
+ * samples: simple-lw-sw-ia.S: place data section to 0x2000 address.
+
+ -- Pavel Pisa <pisa@cmp.felk.cvut.cz> Thu, 12 Sep 2019 11:47:46 +0200
+
qtmips (0.7.2) unstable; urgency=medium
* Debian package updated to version 0.7.2.
diff --git a/qtmips.spec b/qtmips.spec
index f05cbf2..db38f7b 100644
--- a/qtmips.spec
+++ b/qtmips.spec
@@ -20,7 +20,7 @@
Name: qtmips
-Version: 0.7.2
+Version: 0.7.3
Release: 0
Summary: MIPS CPU simulator for education purposes
License: GPL-2.0-or-later
diff --git a/qtmips_gui/aboutdialog.cpp b/qtmips_gui/aboutdialog.cpp
index 88208f1..0cae87d 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.7.2\n";
+ versionText = "Version 0.7.3\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 fb68428..2701b4d 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.7.2");
+ app.setApplicationVersion("0.7.3");
MainWindow w;
w.start();