Skip to content

Commit

Permalink
Change version and added version info.
Browse files Browse the repository at this point in the history
  • Loading branch information
Larswad committed Apr 1, 2015
1 parent 0643816 commit c550dc2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,15 @@ const uint DEFAULT_SRQIN_PIN = 2;

const QString PROGRAM_VERSION_HISTORY = qApp->tr(
"<hr>"
"<ul>"
"<li>CHANGE: Dropped need for QextSerialPort, now using Qt's native QSerialPort library."
"<li>CHANGE: Arduino MEGA variants use the SECOND serial port for communication leaving the "
" USB port free for debugging."
"<li>FIX: uchar_prog definition obsoleted, changed to PROGMEM."
"<li>FIX: Fixed conditional compilation so that it is done for all APPLE-based OSes instead of just OSX."
"<li>FIX: Compilation now working again under Windows, Linux AND with multicore build."
"</ul>"
"<span style=\" font-weight:600; color:#0404c2;\">Application Version 0.4.0:</span><hr>"
"<ul><li>NEW: Saving support in 1541 normal speed."
"<li>CHG: Changed much on the UI. Nice icons for all buttons. Separate configuration dialog from main window. "
"Now using Qt Theming, choosing best fit depending on OS. Event log is now dockable and can be hidden or detached. "
Expand Down
8 changes: 4 additions & 4 deletions version.h
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#ifndef VERSION_H
#define VERSION_H

#define VER_FILEVERSION 0,3,0,0
#define VER_FILEVERSION_STR "0.4.0.0\0"
#define VER_FILEVERSION 0,5,0,0
#define VER_FILEVERSION_STR "0.5.0.0\0"

#define VER_PRODUCTVERSION 0,4,0,0
#define VER_PRODUCTVERSION_STR "0.4.0\0"
#define VER_PRODUCTVERSION 0,5,0,0
#define VER_PRODUCTVERSION_STR "0.5.0\0"

#define VER_COMPANYNAME_STR "MumboJumbo_Software"
#define VER_FILEDESCRIPTION_STR "uno2iec"
Expand Down

0 comments on commit c550dc2

Please sign in to comment.