diff options
author | Pavel Pisa <pisa@cmp.felk.cvut.cz> | 2019-08-21 00:23:38 +0200 |
---|---|---|
committer | Pavel Pisa <pisa@cmp.felk.cvut.cz> | 2019-08-21 00:23:38 +0200 |
commit | 1039db95c72f221c45e9941442989491bddc63b8 (patch) | |
tree | 57ffdee41ff6a9d7482819fe39f96b05ee031f33 | |
parent | f52a726031cc1e8c646c3d616a502b78d01099b0 (diff) | |
download | qtmips-1039db95c72f221c45e9941442989491bddc63b8.tar.gz qtmips-1039db95c72f221c45e9941442989491bddc63b8.tar.bz2 qtmips-1039db95c72f221c45e9941442989491bddc63b8.zip |
Version updated to 0.7.2
* Debian package updated to version 0.7.2.
* More changes to use dialog open instead of exec (Emscripten does not support exec).
* Updates to RPM packaging and spec file to better follow Suse rules.
* Move fixmatheval and assembly compiler to separate library independent on Qt GUI API.
* Implemented message window to report compilation errors.
* Store operator text description in the fixmatheval operators tree.
* Simple assembler moved to separate class which is independent on Qt GUI API.
* Do not open editor twice for same filename.
* Enable CLI version to use simple assembler.
* Update editor search algorithm to prefer current editor for unnamed buffers.
* Add config option to reset machine before internal assembler starts.
* Include C language syntax highlighter for alternative sources editing.
* Action to execute external make command and ask for unsaved sources.
* Ask to save modified files on exit.
* Ask for modified source close and handle unnamed sources close.
* Replace shortcuts to not hide Ctrl+C and some others.
* Implemented ASCII and ASCIZ operations.
* Include actions New source and Close source on toolbar.
* Make program and memory window visible when address requested from symbol dialog.
* Add embedded examples menu and resources.
Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
-rw-r--r-- | debian/changelog | 25 | ||||
-rw-r--r-- | qtmips.spec | 2 | ||||
-rw-r--r-- | qtmips_gui/aboutdialog.cpp | 2 | ||||
-rw-r--r-- | qtmips_gui/main.cpp | 2 |
4 files changed, 28 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index ac60fe3..7c86e80 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,28 @@ +qtmips (0.7.2) unstable; urgency=medium + + * Debian package updated to version 0.7.2. + * More changes to use dialog open instead of exec (Emscripten does not support exec). + * Updates to RPM packaging and spec file to better follow Suse rules. + * Move fixmatheval and assembly compiler to separate library independent on Qt GUI API. + * Implemented message window to report compilation errors. + * Store operator text description in the fixmatheval operators tree. + * Simple assembler moved to separate class which is independent on Qt GUI API. + * Do not open editor twice for same filename. + * Enable CLI version to use simple assembler. + * Update editor search algorithm to prefer current editor for unnamed buffers. + * Add config option to reset machine before internal assembler starts. + * Include C language syntax highlighter for alternative sources editing. + * Action to execute external make command and ask for unsaved sources. + * Ask to save modified files on exit. + * Ask for modified source close and handle unnamed sources close. + * Replace shortcuts to not hide Ctrl+C and some others. + * Implemented ASCII and ASCIZ operations. + * Include actions New source and Close source on toolbar. + * Make program and memory window visible when address requested from symbol dialog. + * Add embedded examples menu and resources. + + -- Pavel Pisa <pisa@cmp.felk.cvut.cz> Wed, 21 Aug 2019 00:13:06 +0200 + qtmips (0.7.1) unstable; urgency=medium * Debian package updated to version 0.7.1. diff --git a/qtmips.spec b/qtmips.spec index 91b0ca5..f05cbf2 100644 --- a/qtmips.spec +++ b/qtmips.spec @@ -20,7 +20,7 @@ Name: qtmips -Version: 0.7.1 +Version: 0.7.2 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 f1f9017..88208f1 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.1\n"; + versionText = "Version 0.7.2\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 1d92434..fb68428 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.1"); + app.setApplicationVersion("0.7.2"); MainWindow w; w.start(); |