diff --git a/CHANGELOG.md b/CHANGELOG.md index 7951d86..d56a19a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,10 @@ Please make sure you are connected to the Internet while installing, the applica * Set a schedule for "Switch to next picture" * Manipulate the feature from the Properties UI, bypassing the desktop icon * The Properties UI hides sections that are not applicable to your current settings; for example, the "Weather" tab is not displayed if you've selected the Windows 11 taskbar, as none of the options in there apply when in this mode. + +##### 2 + +* sws: Fixed a bug that created unnecessary paint events when a window was flashing and the switcher is not shown ## 22000.675.45 @@ -37,6 +41,10 @@ Please make sure you are connected to the Internet while installing, the applica * libvalinet: Fixed a memory leak in `toast.h` * sws: Fixed a bug that caused the switcher to display non-responsive (hung) immersive (UWP) windows twice in the list +##### 3 + +* sws: Fixed a bug that created unnecessary paint events when a window was flashing and the switcher is not shown + ## 22000.613.44 Tested on OS build 22000.613. diff --git a/version.h b/version.h index c8c07f5..56cbf0b 100644 --- a/version.h +++ b/version.h @@ -1,7 +1,7 @@ #define VER_MAJOR 22000 #define VER_MINOR 708 #define VER_BUILD_HI 46 -#define VER_BUILD_LO 1 +#define VER_BUILD_LO 2 #define VER_FLAGS VS_FF_PRERELEASE @@ -12,5 +12,5 @@ #define VER_STR(arg) #arg // The String form of the version numbers -#define VER_FILE_STRING VALUE "FileVersion", "22000.708.46.1" -#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.708.46.1" +#define VER_FILE_STRING VALUE "FileVersion", "22000.708.46.2" +#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.708.46.2"