diff --git a/CHANGELOG.md b/CHANGELOG.md index e3fab21..5ade31b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/ExplorerPatcher/GUI.c b/ExplorerPatcher/GUI.c index 784f667..bd65ba4 100644 --- a/ExplorerPatcher/GUI.c +++ b/ExplorerPatcher/GUI.c @@ -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 diff --git a/version.h b/version.h index 7971527..a07828e 100644 --- a/version.h +++ b/version.h @@ -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 @@ #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"