Skip to content

Commit 38878cf

Browse files
committed
Version updated to 0.6.8.
Signed-off-by: Pavel Pisa <[email protected]>
1 parent 1afbebb commit 38878cf

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

debian/changelog

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
qtmips (0.6.8) unstable; urgency=medium
2+
3+
* Debian package updated to version 0.6.8.
4+
* Coreview multiplexers updated and added for branch compare forward.
5+
* qtmips_gui: set application window icon.
6+
* Set gray background to stalled instructions/idled stages.
7+
* Setting background color dial
8+
* qtmips_cli: start report in decimal mode.
9+
10+
-- Pavel Pisa <[email protected]> Mon, 01 Apr 2019 15:26:46 +0200
11+
112
qtmips (0.6.7) unstable; urgency=medium
213

314
* Debian package updated to version 0.6.7.

prepare-release

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ nedit-nc debian/changelog
5050
echo Press enter to continue
5151
read x
5252

53-
git add debian/changelog qtmips_gui/aboutdialog.cpp qtmips.spec
53+
git add debian/changelog qtmips_gui/aboutdialog.cpp \
54+
qtmips_gui/main.cpp qtmips.spec
5455

5556
echo >.git/GITGUI_MSG "Version updated to $V_TXT"
5657

qtmips.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121

2222
Name: qtmips
23-
Version: 0.6.7
23+
Version: 0.6.8
2424
Release: 0
2525
Summary: MIPS CPU simulator for education purposes with pipeline and cache visualization
2626
License: GPL-2.0-or-later

qtmips_gui/aboutdialog.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ AboutDialog::AboutDialog(QWidget *parent)
6767
hl->addWidget(vbox);
6868

6969
QString versionText;
70-
versionText = "Version 0.6.7\n";
70+
versionText = "Version 0.6.8\n";
7171

7272
vl->addWidget(new QLabel("<span style='font-size:x-large; font-weight:bold;'>Qt Mips - MIPS Architecture Simulator</span>"));
7373
lbl = new QLabel(versionText);

qtmips_gui/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
int main(int argc, char *argv[]) {
4141
QApplication app(argc, argv);
4242
app.setApplicationName("qtmips_gui");
43-
app.setApplicationVersion("0.6.7");
43+
app.setApplicationVersion("0.6.8");
4444

4545
MainWindow w;
4646
w.start();

0 commit comments

Comments
 (0)