From 425efcbf6713f3fccd4dab4bc9132efd86629093 Mon Sep 17 00:00:00 2001 From: Valentin Radu Date: Tue, 23 Nov 2021 20:40:28 +0200 Subject: [PATCH] Fixed #449 --- CHANGELOG.md | 3 ++- libs/sws | 2 +- version.h | 6 +++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae8bdba..81a6f7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,7 +20,6 @@ Tested on build 22000.318. * Running `ep-setup.exe` again while EP is already installed will now update the program to the latest version. To uninstall, as the previous behavior did, run `ep_setup.exe /uninstall` (.4) * Implemented absolute height and width parameters for the Windows 10 switcher. These are especially useful for ultra wide monitors, in a scenario similar to the one described in [this post](https://github.com/valinet/ExplorerPatcher/discussions/110#discussioncomment-1673007) - to configure, set `MaxWidthAbs` and/or `MaxHeightAbs` DWORD values in `HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\ExplorerPatcher\sws` (#110) (.5) * Provides a simple mechanism for chainloading a custom library when the shell interface is created, from which you can execute your custom code (subject to change, see [this](https://github.com/valinet/ExplorerPatcher/discussions/408#discussioncomment-1674348) for more details) (#408) (.6) -* Application starts with limited functionality on builds lacking hardcoded symbol information; symbol downloading is disabled for now, by default, but can be enabled in the "Advanced" settings section of "Properties" (.7) #### Feature enhancements @@ -32,6 +31,8 @@ Tested on build 22000.318. * Windows 10 network and battery flyout should now always launch when the tray icon is clicked (#410) (.1) * Fixed mismatches between defaults from EP and Windows' defaults (.3) +* Application starts with limited functionality on builds lacking hardcoded symbol information; symbol downloading is disabled for now, by default, but can be enabled in the "Advanced" settings section of "Properties" (.7) +* Improvements to how hung windows are treated by the Windows 10 window switcher; fixed an issue that severely delayed the time it took the window switcher to display when a window hung on the screen (#449) (.8) ## 22000.318.37 diff --git a/libs/sws b/libs/sws index d12b6f3..e504f64 160000 --- a/libs/sws +++ b/libs/sws @@ -1 +1 @@ -Subproject commit d12b6f3c4bfc5841c49c4541a44db59d952d05a9 +Subproject commit e504f64a7e42b67caa4502af1a58a0f855b03be1 diff --git a/version.h b/version.h index c618d9b..8d09496 100644 --- a/version.h +++ b/version.h @@ -1,7 +1,7 @@ #define VER_MAJOR 22000 #define VER_MINOR 318 #define VER_BUILD_HI 38 -#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.318.38.7" -#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.318.38.7" +#define VER_FILE_STRING VALUE "FileVersion", "22000.318.38.8" +#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.318.38.8"