diff options
author | Pavel Pisa <pisa@cmp.felk.cvut.cz> | 2019-09-15 20:32:41 +0200 |
---|---|---|
committer | Pavel Pisa <pisa@cmp.felk.cvut.cz> | 2020-03-26 13:31:31 +0100 |
commit | 3cc3fb3d2ddd490fe5b2fac5eca9b6169d3d7e9c (patch) | |
tree | 84edc7496403ead3a993b552b1e7862f42e5d13c | |
parent | e5a5a3d99f68830294261bfde8f88f787c8306fc (diff) | |
download | qtmips-3cc3fb3d2ddd490fe5b2fac5eca9b6169d3d7e9c.tar.gz qtmips-3cc3fb3d2ddd490fe5b2fac5eca9b6169d3d7e9c.tar.bz2 qtmips-3cc3fb3d2ddd490fe5b2fac5eca9b6169d3d7e9c.zip |
Version updated to 0.7.4
Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
-rw-r--r-- | qtmips.spec | 2 | ||||
-rw-r--r-- | qtmips_cli/main.cpp | 2 | ||||
-rw-r--r-- | qtmips_gui/aboutdialog.cpp | 2 | ||||
-rw-r--r-- | qtmips_gui/main.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/qtmips.spec b/qtmips.spec index db38f7b..0ca11d8 100644 --- a/qtmips.spec +++ b/qtmips.spec @@ -20,7 +20,7 @@ Name: qtmips -Version: 0.7.3 +Version: 0.7.4 Release: 0 Summary: MIPS CPU simulator for education purposes License: GPL-2.0-or-later diff --git a/qtmips_cli/main.cpp b/qtmips_cli/main.cpp index b318f13..c77ba2f 100644 --- a/qtmips_cli/main.cpp +++ b/qtmips_cli/main.cpp @@ -343,7 +343,7 @@ bool assemble(QtMipsMachine &machine, MsgReport &msgrep, QString filename) { int main(int argc, char *argv[]) { QCoreApplication app(argc, argv); app.setApplicationName("qtmips_cli"); - app.setApplicationVersion("0.7"); + app.setApplicationVersion("0.7.4"); QCommandLineParser p; create_parser(p); diff --git a/qtmips_gui/aboutdialog.cpp b/qtmips_gui/aboutdialog.cpp index 0cae87d..e2fd665 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.3\n"; + versionText = "Version 0.7.4\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 2701b4d..553d5dc 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.3"); + app.setApplicationVersion("0.7.4"); MainWindow w; w.start(); |