Browse Source

Bug fixes and upgrade to latest sws

pull/886/head 22000.376.40.15_b31921a
Valentin Radu 4 years ago
parent
commit
b31921a5bb
  1. 3
      CHANGELOG.md
  2. 2
      libs/sws
  3. 6
      version.h

3
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) * 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) * 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) * 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 #### Simple Window Switcher
@ -56,6 +56,7 @@ Tested on OS build 22000.376.
* Possibility to configure window padding (.7) * Possibility to configure window padding (.7)
* Support for closing window with middle button ([#110](https://github.com/valinet/ExplorerPatcher/discussions/110#discussioncomment-1793318)) (.9) * 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) * 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 ## 22000.348.39

2
libs/sws

@ -1 +1 @@
Subproject commit 2fcf56409d02e753ae184ff4aeb0fecf7e84b5ab Subproject commit 60dc6dbb80429a09c96f792806039cc5273011d0

6
version.h

@ -1,7 +1,7 @@
#define VER_MAJOR 22000 #define VER_MAJOR 22000
#define VER_MINOR 376 #define VER_MINOR 376
#define VER_BUILD_HI 40 #define VER_BUILD_HI 40
#define VER_BUILD_LO 14 #define VER_BUILD_LO 15
#define VER_FLAGS VS_FF_PRERELEASE #define VER_FLAGS VS_FF_PRERELEASE
@ -12,5 +12,5 @@
#define VER_STR(arg) #arg #define VER_STR(arg) #arg
// The String form of the version numbers // The String form of the version numbers
#define VER_FILE_STRING VALUE "FileVersion", "22000.376.40.14" #define VER_FILE_STRING VALUE "FileVersion", "22000.376.40.15"
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.376.40.14" #define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.376.40.15"

Loading…
Cancel
Save