Browse Source

Fixed #374

pull/400/head 22000.318.37.3_f547d08
Valentin Radu 4 years ago
parent
commit
f547d080c9
  1. 1
      CHANGELOG.md
  2. 2
      ExplorerPatcher/GUI.c
  3. 6
      version.h

1
CHANGELOG.md

@ -47,6 +47,7 @@ Tested on build 22000.318 and 22000.346 (currently in Windows Insider beta and r @@ -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)
* 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 an issue that prevented "Restore default settings" in the "Properties" UI from working (#374) (.3)
## 22000.318.36

2
ExplorerPatcher/GUI.c

@ -554,7 +554,7 @@ static BOOL GUI_Build(HDC hDC, HWND hwnd, POINT pt) @@ -554,7 +554,7 @@ static BOOL GUI_Build(HDC hDC, HWND hwnd, POINT pt)
);
SHGetFolderPathW(
NULL,
SPECIAL_FOLDER,
SPECIAL_FOLDER_LEGACY,
NULL,
SHGFP_TYPE_CURRENT,
wszPath

6
version.h

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
#define VER_MAJOR 22000
#define VER_MINOR 318
#define VER_BUILD_HI 37
#define VER_BUILD_LO 2
#define VER_BUILD_LO 3
#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.318.37.2"
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.318.37.2"
#define VER_FILE_STRING VALUE "FileVersion", "22000.318.37.3"
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.318.37.3"

Loading…
Cancel
Save