diff --git a/README.txt b/README.txt index 86c04c4b9b..314e19ad43 100644 --- a/README.txt +++ b/README.txt @@ -11,12 +11,24 @@ Issue Tracker is found here: www.github.com/smeighan/xLights/issues XLIGHTS/NUTCRACKER RELEASE NOTES --------------------------------- +2023.23 Dec 28, 2023 + -- enh (dkulp) Convert "New Style" Pinwheel effect to use Meta GPU rendering on MacOS -- enh (scott) Added Scheduling to HinksPix Export Dialog. -- enh (scott) Persist Custom Colors across Color Dialogs. + -- enh (dkulp) Update to newer version of wxWidgets that fixes appearance of checkboxes on properties panels + -- enh (keith) Bell at end of Batch Render, extra progress displayed during batch render + -- enh (keith) Allow user control of maximum Render Cache size -- bug (scott) Fix Import Dialog AutoMapping Aliases to Submodel/Stands. -- bug (scott) Fix Import Dialog Groups Blue turning white. -- bug (scott) Fix 3D Model Export starting at zero. -- bug (scott) Fix DMX Shutter value with On effect and Flood lights. + -- bug (keith) Fix crash with parsing JSON with certain UTF-8 characters + -- bug (tulzscha) Fix fire effect buffer sizes + -- bug (dkulp) Fix some random crashes that occur with various actions on the View Models panel + -- bug (dkulp) Fix discovery of Falcon controllers as remotes if needing to use http discovery + -- bug (dkulp) Fix potential crash/memory corruption at startup when resolving IP's on background threads + -- bug (dkulp) Fix leftover files remaining in tmp directory + -- bug (dkulp) Fix some problems writing ZSTD fseq files for layouts with well over 2M channels and complex effects 2023.22 Dec 5, 2023 -- enh (claudio) Add virtual matrix to xSchedule using RGBW data -- enh (lutz) Add palette shift buttons diff --git a/build_scripts/msw/xLights_common.iss b/build_scripts/msw/xLights_common.iss index 7c19779a54..d6810c2834 100644 --- a/build_scripts/msw/xLights_common.iss +++ b/build_scripts/msw/xLights_common.iss @@ -3,5 +3,5 @@ #define MyTitleName "xLights" #define Year 2023 -#define Version 22 +#define Version 23 #define Other "" diff --git a/xLights/xLightsVersion.h b/xLights/xLightsVersion.h index da2750b716..d52dffd95b 100644 --- a/xLights/xLightsVersion.h +++ b/xLights/xLightsVersion.h @@ -15,7 +15,7 @@ #if __has_include("xlights_build_version.h") #include "xlights_build_version.h" #else -static const wxString xlights_version_string = "2023.22"; +static const wxString xlights_version_string = "2023.23"; #endif #ifdef DEBUG static const wxString xlights_qualifier = " DEBUG";