Skip to content

Commit

Permalink
Fixed #374
Browse files Browse the repository at this point in the history
  • Loading branch information
valinet committed Nov 15, 2021
1 parent abf0d38 commit f547d08
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion ExplorerPatcher/GUI.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions version.h
Original file line number Diff line number Diff line change
@@ -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


Expand All @@ -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"

0 comments on commit f547d08

Please sign in to comment.