mirror of
https://github.com/valinet/ExplorerPatcher.git
synced 2024-11-27 17:00:59 +01:00
Fixed #449
This commit is contained in:
parent
6b5a265a04
commit
425efcbf67
@ -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
|
||||
|
||||
|
2
libs/sws
2
libs/sws
@ -1 +1 @@
|
||||
Subproject commit d12b6f3c4bfc5841c49c4541a44db59d952d05a9
|
||||
Subproject commit e504f64a7e42b67caa4502af1a58a0f855b03be1
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user