Skip to content

Commit f547d08

Browse files
committed
Fixed #374
1 parent abf0d38 commit f547d08

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ Tested on build 22000.318 and 22000.346 (currently in Windows Insider beta and r
4747
* 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)
4848
* Setup program version is synchronized with the version of the application (.2)
4949
* 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)
50+
* Fixed an issue that prevented "Restore default settings" in the "Properties" UI from working (#374) (.3)
5051

5152
## 22000.318.36
5253

ExplorerPatcher/GUI.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ static BOOL GUI_Build(HDC hDC, HWND hwnd, POINT pt)
554554
);
555555
SHGetFolderPathW(
556556
NULL,
557-
SPECIAL_FOLDER,
557+
SPECIAL_FOLDER_LEGACY,
558558
NULL,
559559
SHGFP_TYPE_CURRENT,
560560
wszPath

version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define VER_MAJOR 22000
22
#define VER_MINOR 318
33
#define VER_BUILD_HI 37
4-
#define VER_BUILD_LO 2
4+
#define VER_BUILD_LO 3
55
#define VER_FLAGS VS_FF_PRERELEASE
66

77

@@ -12,5 +12,5 @@
1212
#define VER_STR(arg) #arg
1313

1414
// The String form of the version numbers
15-
#define VER_FILE_STRING VALUE "FileVersion", "22000.318.37.2"
16-
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.318.37.2"
15+
#define VER_FILE_STRING VALUE "FileVersion", "22000.318.37.3"
16+
#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.318.37.3"

0 commit comments

Comments
 (0)