diff options
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | qtmips_gui/aboutdialog.cpp | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 8681cd4..f0b4d1e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +qtmips (0.6.6) unstable; urgency=medium + + * Corrected row and column output in cache address fields. + * Highlight cache read and write acesses. + * Highlight registers and coprocessor 0 read and writes. + + -- Pavel Pisa <pisa@cmp.felk.cvut.cz> Sun, 17 Mar 2019 20:51:55 +0100 + qtmips (0.6.5) unstable; urgency=medium * Initial Debian packaging. diff --git a/qtmips_gui/aboutdialog.cpp b/qtmips_gui/aboutdialog.cpp index db619c3..8919bdf 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.5 \n"; + versionText = "Version 0.6.6 \n"; vl->addWidget(new QLabel("<span style='font-size:x-large; font-weight:bold;'>Qt Mips - MIPS Architecture Simulator</span>")); lbl = new QLabel(versionText); |