Skip to content

Commit

Permalink
Version updated to 0.7.3
Browse files Browse the repository at this point in the history
  * 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]>
  • Loading branch information
ppisa committed Sep 12, 2019
1 parent f1ee01b commit b0ffb46
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
qtmips (0.7.3) unstable; urgency=medium

* 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.

-- Pavel Pisa <[email protected]> Thu, 12 Sep 2019 11:47:46 +0200

qtmips (0.7.2) unstable; urgency=medium

* Debian package updated to version 0.7.2.
Expand Down
2 changes: 1 addition & 1 deletion qtmips.spec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


Name: qtmips
Version: 0.7.2
Version: 0.7.3
Release: 0
Summary: MIPS CPU simulator for education purposes
License: GPL-2.0-or-later
Expand Down
2 changes: 1 addition & 1 deletion qtmips_gui/aboutdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ AboutDialog::AboutDialog(QWidget *parent)
hl->addWidget(vbox);

QString versionText;
versionText = "Version 0.7.2\n";
versionText = "Version 0.7.3\n";

vl->addWidget(new QLabel("<span style='font-size:x-large; font-weight:bold;'>Qt Mips - MIPS Architecture Simulator</span>"));
lbl = new QLabel(versionText);
Expand Down
2 changes: 1 addition & 1 deletion qtmips_gui/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
int main(int argc, char *argv[]) {
QApplication app(argc, argv);
app.setApplicationName("qtmips_gui");
app.setApplicationVersion("0.7.2");
app.setApplicationVersion("0.7.3");

MainWindow w;
w.start();
Expand Down

0 comments on commit b0ffb46

Please sign in to comment.