diff --git a/CHANGELOG.md b/CHANGELOG.md index a40c32c..7a16a26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,7 +35,7 @@ Tested on OS build 22000.376. * Fixed a bug that prevented the correct set up of "DisplayVersion" registry entry in the uninstall information registry key (.11) * Secondary taskbars' context menu is displayed similarly to the primary taskbar's context menu for Windows 10 style (.12) * Safeguards to prevent malicious executions on update mechanism hijacks for systems where User Account Control is disabled (#567) (.13) -* Option to prevent certain Control Panel links from being redirected to the Settings app (.14) +* Option to prevent certain Control Panel links from being redirected to the Settings app (.14), including in build 22523 (.15) #### Simple Window Switcher @@ -56,6 +56,7 @@ Tested on OS build 22000.376. * Possibility to configure window padding (.7) * Support for closing window with middle button ([#110](https://github.com/valinet/ExplorerPatcher/discussions/110#discussioncomment-1793318)) (.9) * Mitigated an issue that may have prevented Explorer from launching correctly when Simple Window Switcher is set as window switcher (.9) +* Fixed a crash that could make Explorer restart repeatedly at startup or even hang indefinitely (#525) (.15) ## 22000.348.39 diff --git a/libs/sws b/libs/sws index 2fcf564..60dc6db 160000 --- a/libs/sws +++ b/libs/sws @@ -1 +1 @@ -Subproject commit 2fcf56409d02e753ae184ff4aeb0fecf7e84b5ab +Subproject commit 60dc6dbb80429a09c96f792806039cc5273011d0 diff --git a/version.h b/version.h index 144a4eb..f9c1ae8 100644 --- a/version.h +++ b/version.h @@ -1,7 +1,7 @@ #define VER_MAJOR 22000 #define VER_MINOR 376 #define VER_BUILD_HI 40 -#define VER_BUILD_LO 14 +#define VER_BUILD_LO 15 #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.376.40.14" -#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.376.40.14" +#define VER_FILE_STRING VALUE "FileVersion", "22000.376.40.15" +#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.376.40.15"