diff options
author | Pavel Pisa <pisa@cmp.felk.cvut.cz> | 2019-06-28 15:43:00 +0200 |
---|---|---|
committer | Pavel Pisa <pisa@cmp.felk.cvut.cz> | 2019-06-28 15:43:00 +0200 |
commit | 1841ca30c574c9d1ac57b10b1cf417ef62be0af6 (patch) | |
tree | 1a9d2b0612d9c43ee90baa4a69202473cd261841 /qtmips_gui | |
parent | 8fc09b33240fa0b55bd0db22103db65861bc2d6b (diff) | |
download | qtmips-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>
Diffstat (limited to 'qtmips_gui')
-rw-r--r-- | qtmips_gui/aboutdialog.cpp | 2 | ||||
-rw-r--r-- | qtmips_gui/main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
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(); |