From 1841ca30c574c9d1ac57b10b1cf417ef62be0af6 Mon Sep 17 00:00:00 2001 From: Pavel Pisa Date: Fri, 28 Jun 2019 15:43:00 +0200 Subject: 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 --- debian/changelog | 12 ++++++++++++ qtmips.spec | 2 +- qtmips_gui/aboutdialog.cpp | 2 +- qtmips_gui/main.cpp | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index c02032e..1b12548 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +qtmips (0.7.0) unstable; urgency=medium + + * 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. + + -- Pavel Pisa Fri, 28 Jun 2019 15:38:52 +0200 + qtmips (0.6.8) unstable; urgency=medium * Debian package updated to version 0.6.8. diff --git a/qtmips.spec b/qtmips.spec index 81527ca..f42850f 100644 --- a/qtmips.spec +++ b/qtmips.spec @@ -20,7 +20,7 @@ Name: qtmips -Version: 0.6.8 +Version: 0.7.0 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 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("Qt Mips - MIPS Architecture Simulator")); 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(); -- cgit v1.2.3