Browse Source

Updated to latest sws

pull/886/head 22000.434.41.8_82da95b
Valentin Radu 4 years ago
parent
commit
82da95b384
  1. 2
      CHANGELOG.md
  2. 4
      ExplorerPatcher/ExplorerPatcher.vcxproj.filters
  3. 2
      libs/sws
  4. 6
      version.h

2
CHANGELOG.md

@ -23,6 +23,7 @@ Tested on OS build 22000.434. @@ -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. @@ -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

4
ExplorerPatcher/ExplorerPatcher.vcxproj.filters

@ -129,7 +129,7 @@ @@ -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 @@ @@ -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>

2
libs/sws

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

6
version.h

@ -1,7 +1,7 @@ @@ -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 @@ @@ -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"

Loading…
Cancel
Save