Skip to content

Commit b0ffb46

Browse files
committed
Version updated to 0.7.3
* Debian package updated to version 0.7.3. * Implemented SKIP/SPACE assembler directives. * Add OpenHub statistic page link. * Provide support for include directive in simple assembler. * In include, use content from editor if file is already open. * Add #pragma processing to integrated assembler and its usage to control windows. * Use #pragma in examples to lower initial learning curve. * samples: simple-lw-sw-ia.S: place data section to 0x2000 address. Signed-off-by: Pavel Pisa <[email protected]>
1 parent f1ee01b commit b0ffb46

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

debian/changelog

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
qtmips (0.7.3) unstable; urgency=medium
2+
3+
* Debian package updated to version 0.7.3.
4+
* Implemented SKIP/SPACE assembler directives.
5+
* Add OpenHub statistic page link.
6+
* Provide support for include directive in simple assembler.
7+
* In include, use content from editor if file is already open.
8+
* Add #pragma processing to integrated assembler and its usage to control windows.
9+
* Use #pragma in examples to lower initial learning curve.
10+
* samples: simple-lw-sw-ia.S: place data section to 0x2000 address.
11+
12+
-- Pavel Pisa <[email protected]> Thu, 12 Sep 2019 11:47:46 +0200
13+
114
qtmips (0.7.2) unstable; urgency=medium
215

316
* Debian package updated to version 0.7.2.

qtmips.spec

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

2121

2222
Name: qtmips
23-
Version: 0.7.2
23+
Version: 0.7.3
2424
Release: 0
2525
Summary: MIPS CPU simulator for education purposes
2626
License: GPL-2.0-or-later

qtmips_gui/aboutdialog.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ AboutDialog::AboutDialog(QWidget *parent)
7171
hl->addWidget(vbox);
7272

7373
QString versionText;
74-
versionText = "Version 0.7.2\n";
74+
versionText = "Version 0.7.3\n";
7575

7676
vl->addWidget(new QLabel("<span style='font-size:x-large; font-weight:bold;'>Qt Mips - MIPS Architecture Simulator</span>"));
7777
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.7.2");
43+
app.setApplicationVersion("0.7.3");
4444

4545
MainWindow w;
4646
w.start();

0 commit comments

Comments
 (0)