diff --git a/CHANGELOG.md b/CHANGELOG.md index 092df27..d5fb9c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ Tested on OS build 22000.434. * Windows 11 (default) * Windows 10 (with link to "Language Preferences") * Windows 10 +* Simple Window Switcher now highlights windows that require user attention (windows that have their taskbar button flash and colored in orange) (.8) #### Fixes @@ -35,6 +36,7 @@ Tested on OS build 22000.434. * Windows 10 language switcher displays correctly when the taskbar is placed in some location other than the bottom of the screen (#629) (.2) * Available symbols download properly on Insider builds (tested on 22526.1000) (.3) * Mitigated an `explorer.exe` bug where Windows 10 taskbar buttons were becoming too large under certain circumstances when the setting to show labels/never combine is used and the screen resolution/DPI changes (#664) (.6) +* Performance improvements and bug fixes for Simple Window Switcher (.8) ## 22000.376.40 diff --git a/ExplorerPatcher/ExplorerPatcher.vcxproj.filters b/ExplorerPatcher/ExplorerPatcher.vcxproj.filters index 0619f17..a2249ae 100644 --- a/ExplorerPatcher/ExplorerPatcher.vcxproj.filters +++ b/ExplorerPatcher/ExplorerPatcher.vcxproj.filters @@ -129,7 +129,7 @@ Header Files\sws - + Header Files\ep_dwm @@ -211,7 +211,7 @@ Source Files\sws - + Source Files\ep_dwm diff --git a/libs/sws b/libs/sws index 49d67c8..ebbdacb 160000 --- a/libs/sws +++ b/libs/sws @@ -1 +1 @@ -Subproject commit 49d67c811dc8c29617467aae17373e4ce0fb483d +Subproject commit ebbdacbcabd8e0a50c470f07ccf3796d01f7324a diff --git a/version.h b/version.h index 4d575cf..ac985f9 100644 --- a/version.h +++ b/version.h @@ -1,7 +1,7 @@ #define VER_MAJOR 22000 #define VER_MINOR 434 #define VER_BUILD_HI 41 -#define VER_BUILD_LO 7 +#define VER_BUILD_LO 8 #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.434.41.7" -#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.434.41.7" +#define VER_FILE_STRING VALUE "FileVersion", "22000.434.41.8" +#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.434.41.8"