diff --git a/CHANGELOG.md b/CHANGELOG.md index c86237a..3aca518 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,11 @@ Please make sure you are connected to the Internet while installing, the applica * Support for disabling the modern search bar in 32-bit applications as well (thanks @krlvm). * Fixed a bug that could prevent deleting registry keys when the application was supposed to (for example, when uninstalling or toggling certain settings). +##### 3 + +* Fixed incorrect check for running dwm instances in `ep_dwm` +* Fixed a use-after-free bug in `ep_dwm` (thanks @ibhk) + ## 22000.795.48 Tested on OS build 22000.795. diff --git a/version.h b/version.h index 5930ef5..4cc39e6 100644 --- a/version.h +++ b/version.h @@ -1,7 +1,7 @@ #define VER_MAJOR 22622 #define VER_MINOR 450 #define VER_BUILD_HI 50 -#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", "22622.450.50.2" -#define VER_PRODUCT_STRING VALUE "ProductVersion", "22622.450.50.2" +#define VER_FILE_STRING VALUE "FileVersion", "22622.450.50.3" +#define VER_PRODUCT_STRING VALUE "ProductVersion", "22622.450.50.3"