diff --git a/mainwindow.cpp b/mainwindow.cpp
index 0011fcf..a772a35 100755
--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -85,6 +85,15 @@ const uint DEFAULT_SRQIN_PIN = 2;
const QString PROGRAM_VERSION_HISTORY = qApp->tr(
"
"
+ ""
+ "- CHANGE: Dropped need for QextSerialPort, now using Qt's native QSerialPort library."
+ "
- CHANGE: Arduino MEGA variants use the SECOND serial port for communication leaving the "
+ " USB port free for debugging."
+ "
- FIX: uchar_prog definition obsoleted, changed to PROGMEM."
+ "
- FIX: Fixed conditional compilation so that it is done for all APPLE-based OSes instead of just OSX."
+ "
- FIX: Compilation now working again under Windows, Linux AND with multicore build."
+ "
"
+ "Application Version 0.4.0:
"
"- NEW: Saving support in 1541 normal speed."
"
- 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. "
diff --git a/version.h b/version.h
index 32e465e..5cbc848 100644
--- a/version.h
+++ b/version.h
@@ -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"