1
0
mirror of https://github.com/valinet/ExplorerPatcher.git synced 2024-11-23 23:21:08 +01:00

Updated to latest sws

This commit is contained in:
Valentin Radu 2022-01-21 13:36:59 +02:00
parent 7cc02b72d4
commit 82da95b384
4 changed files with 8 additions and 6 deletions

View File

@ -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

View File

@ -129,7 +129,7 @@
<ClInclude Include="..\libs\sws\SimpleWindowSwitcher\sws_IconPainter.h">
<Filter>Header Files\sws</Filter>
</ClInclude>
<ClInclude Include="..\libs\ep_dwm\ep_dwm\ep_dwm.h">
<ClInclude Include="..\ep_dwm\ep_dwm\ep_dwm.h">
<Filter>Header Files\ep_dwm</Filter>
</ClInclude>
</ItemGroup>
@ -211,7 +211,7 @@
<ClCompile Include="..\libs\sws\SimpleWindowSwitcher\sws_tshwnd.c">
<Filter>Source Files\sws</Filter>
</ClCompile>
<ClCompile Include="..\libs\ep_dwm\ep_dwm\ep_dwm.c">
<ClCompile Include="..\ep_dwm\ep_dwm\ep_dwm.c">
<Filter>Source Files\ep_dwm</Filter>
</ClCompile>
</ItemGroup>

@ -1 +1 @@
Subproject commit 49d67c811dc8c29617467aae17373e4ce0fb483d
Subproject commit ebbdacbcabd8e0a50c470f07ccf3796d01f7324a

View File

@ -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"