aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Pisa <pisa@cmp.felk.cvut.cz>2019-04-01 15:30:49 +0200
committerPavel Pisa <pisa@cmp.felk.cvut.cz>2019-04-01 15:30:49 +0200
commit38878cff43bb71d1ebd05b680b4d97f4f6719eba (patch)
tree670ca1a2c5dfe84b0fb1f14ac25f52472dc34405
parent1afbebb7748f44f05ae76539a4d2f382a371ff00 (diff)
downloadqtmips-38878cff43bb71d1ebd05b680b4d97f4f6719eba.tar.gz
qtmips-38878cff43bb71d1ebd05b680b4d97f4f6719eba.tar.bz2
qtmips-38878cff43bb71d1ebd05b680b4d97f4f6719eba.zip
Version updated to 0.6.8.
Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
-rw-r--r--debian/changelog11
-rwxr-xr-xprepare-release3
-rw-r--r--qtmips.spec2
-rw-r--r--qtmips_gui/aboutdialog.cpp2
-rw-r--r--qtmips_gui/main.cpp2
5 files changed, 16 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog
index ac7805d..c02032e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,14 @@
+qtmips (0.6.8) unstable; urgency=medium
+
+ * Debian package updated to version 0.6.8.
+ * Coreview multiplexers updated and added for branch compare forward.
+ * qtmips_gui: set application window icon.
+ * Set gray background to stalled instructions/idled stages.
+ * Setting background color dial
+ * qtmips_cli: start report in decimal mode.
+
+ -- Pavel Pisa <pisa@cmp.felk.cvut.cz> Mon, 01 Apr 2019 15:26:46 +0200
+
qtmips (0.6.7) unstable; urgency=medium
* Debian package updated to version 0.6.7.
diff --git a/prepare-release b/prepare-release
index b9b7eff..1fba021 100755
--- a/prepare-release
+++ b/prepare-release
@@ -50,7 +50,8 @@ nedit-nc debian/changelog
echo Press enter to continue
read x
-git add debian/changelog qtmips_gui/aboutdialog.cpp qtmips.spec
+git add debian/changelog qtmips_gui/aboutdialog.cpp \
+ qtmips_gui/main.cpp qtmips.spec
echo >.git/GITGUI_MSG "Version updated to $V_TXT"
diff --git a/qtmips.spec b/qtmips.spec
index 5ad13c7..f11d8cc 100644
--- a/qtmips.spec
+++ b/qtmips.spec
@@ -20,7 +20,7 @@
Name: qtmips
-Version: 0.6.7
+Version: 0.6.8
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 331d0a3..71f7b8f 100644
--- a/qtmips_gui/aboutdialog.cpp
+++ b/qtmips_gui/aboutdialog.cpp
@@ -67,7 +67,7 @@ AboutDialog::AboutDialog(QWidget *parent)
hl->addWidget(vbox);
QString versionText;
- versionText = "Version 0.6.7\n";
+ versionText = "Version 0.6.8\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 229d537..3429583 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.7");
+ app.setApplicationVersion("0.6.8");
MainWindow w;
w.start();