mirror of
https://github.com/valinet/ExplorerPatcher.git
synced 2024-11-28 01:10:55 +01:00
Fixed #374
This commit is contained in:
parent
abf0d38cb4
commit
f547d080c9
@ -47,6 +47,7 @@ Tested on build 22000.318 and 22000.346 (currently in Windows Insider beta and r
|
|||||||
* As you may have noticed, releases do not contain unpacked files anymore. Thus, for people looking for a quick way to get the unpacked files, the release notes now include a link to the artifacts generated during during the build process. The artifacts include the usual DLLs (including `dxgi.dll`), plus symbol files and all the helper executables generated during the build. (#351) (.2)
|
* As you may have noticed, releases do not contain unpacked files anymore. Thus, for people looking for a quick way to get the unpacked files, the release notes now include a link to the artifacts generated during during the build process. The artifacts include the usual DLLs (including `dxgi.dll`), plus symbol files and all the helper executables generated during the build. (#351) (.2)
|
||||||
* Setup program version is synchronized with the version of the application (.2)
|
* Setup program version is synchronized with the version of the application (.2)
|
||||||
* Fixed a mismatch between the default value for the setting "Add shortcut to program settings in Win+X menu" displayed in the UI and actually used in the software (#352) (.2)
|
* Fixed a mismatch between the default value for the setting "Add shortcut to program settings in Win+X menu" displayed in the UI and actually used in the software (#352) (.2)
|
||||||
|
* Fixed an issue that prevented "Restore default settings" in the "Properties" UI from working (#374) (.3)
|
||||||
|
|
||||||
## 22000.318.36
|
## 22000.318.36
|
||||||
|
|
||||||
|
@ -554,7 +554,7 @@ static BOOL GUI_Build(HDC hDC, HWND hwnd, POINT pt)
|
|||||||
);
|
);
|
||||||
SHGetFolderPathW(
|
SHGetFolderPathW(
|
||||||
NULL,
|
NULL,
|
||||||
SPECIAL_FOLDER,
|
SPECIAL_FOLDER_LEGACY,
|
||||||
NULL,
|
NULL,
|
||||||
SHGFP_TYPE_CURRENT,
|
SHGFP_TYPE_CURRENT,
|
||||||
wszPath
|
wszPath
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#define VER_MAJOR 22000
|
#define VER_MAJOR 22000
|
||||||
#define VER_MINOR 318
|
#define VER_MINOR 318
|
||||||
#define VER_BUILD_HI 37
|
#define VER_BUILD_HI 37
|
||||||
#define VER_BUILD_LO 2
|
#define VER_BUILD_LO 3
|
||||||
#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.318.37.2"
|
#define VER_FILE_STRING VALUE "FileVersion", "22000.318.37.3"
|
||||||
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.318.37.2"
|
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.318.37.3"
|
||||||
|
Loading…
Reference in New Issue
Block a user