diff --git a/Software/CHANGELOG b/Software/CHANGELOG index f873e7ba9..e908a54bb 100644 --- a/Software/CHANGELOG +++ b/Software/CHANGELOG @@ -12,6 +12,13 @@ _/_/_/_/ _/ _/_/_/ _/ _/ _/_/ _/_/_/ _/_/_/ _/_/_/ _/ # Software changelog =================================================================================== +Version 5.11.2.3 +--------------- +September 1, 2015 + +* Fix constant color shutting off (regression from #10) +* Fix DX admin message prematurely creating a message loop + Version 5.11.2.2 --------------- August 1, 2015 diff --git a/Software/dist_linux/build-deb.sh b/Software/dist_linux/build-deb.sh index 0b2973f77..0765efc9d 100755 --- a/Software/dist_linux/build-deb.sh +++ b/Software/dist_linux/build-deb.sh @@ -6,7 +6,7 @@ # #TODO: get the version from a centralized point, eg. version.h -VERSION=5.11.2.2 +VERSION=5.11.2.3 if [ -z $1 ]; then diff --git a/Software/dist_windows/script.iss b/Software/dist_windows/script.iss index ae0e8ad10..a6a7ab636 100644 --- a/Software/dist_windows/script.iss +++ b/Software/dist_windows/script.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Prismatik (unofficial) 64bit" -#define MyAppVersion "5.11.2.2" +#define MyAppVersion "5.11.2.3" #define MyAppPublisher "Patrick Siegler" #define MyAppURL "https://github.com/psieg/Lightpack" #define MyAppExeName "Prismatik.exe" diff --git a/Software/dist_windows/script32.iss b/Software/dist_windows/script32.iss index abf4dd5fb..f5fe4fad3 100644 --- a/Software/dist_windows/script32.iss +++ b/Software/dist_windows/script32.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Prismatik (unofficial) 32bit" -#define MyAppVersion "5.11.2.2" +#define MyAppVersion "5.11.2.3" #define MyAppPublisher "Patrick Siegler" #define MyAppURL "https://github.com/psieg/Lightpack" #define MyAppExeName "Prismatik.exe" diff --git a/Software/src/version.h b/Software/src/version.h index cf7f89ab7..bc093cfbe 100644 --- a/Software/src/version.h +++ b/Software/src/version.h @@ -27,10 +27,10 @@ #pragma once // Current version of Lightpack software -#define VERSION_STR "5.11.2.2" +#define VERSION_STR "5.11.2.3" // Resource defines using in Lightpack.rc -#define VER_FILEVERSION 5,11,2,2 +#define VER_FILEVERSION 5,11,2,3 #define VER_PRODUCTVERSION VER_FILEVERSION #define VER_FILEVERSION_STR VERSION_STR "\0"