diff --git a/PowerEditor/bin/change.log b/PowerEditor/bin/change.log index 3c84f98b4..797ee9f6c 100644 --- a/PowerEditor/bin/change.log +++ b/PowerEditor/bin/change.log @@ -1,8 +1,8 @@ -Notepad++ 7.2.1 bug-fixes: +Notepad++ 7.2.2 bug-fixes: -1. Fix x64 installer regression issue - install in "C:\Program Files" instead of "C:\Program Files (x86)" -2. Fix expanding environment variables regression in backup path. -3. Make installer Unicode again. +1. Fix auto-updater setting toggles between startups bug. +2. Fix "Replace All" button shortcut accelerator in Replce dialog not working regression. +3. Fix unusual plugin update prompt after upgrade to 7.2.1 version. Included plugins: @@ -15,4 +15,4 @@ Included plugins: Updater (Installer only): -* WinGup v4.1 \ No newline at end of file +* WinGup v4.1 diff --git a/PowerEditor/installer/nsisInclude/globalDef.nsh b/PowerEditor/installer/nsisInclude/globalDef.nsh index 73b6a47eb..ff1ab6d3b 100644 --- a/PowerEditor/installer/nsisInclude/globalDef.nsh +++ b/PowerEditor/installer/nsisInclude/globalDef.nsh @@ -29,10 +29,10 @@ ; Define the application name !define APPNAME "Notepad++" -!define APPVERSION "7.2.1" +!define APPVERSION "7.2.2" !define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}" !define VERSION_MAJOR 7 -!define VERSION_MINOR 21 +!define VERSION_MINOR 22 !define APPWEBSITE "http://notepad-plus-plus.org/" diff --git a/PowerEditor/src/resource.h b/PowerEditor/src/resource.h index cef03c700..6522e2e99 100644 --- a/PowerEditor/src/resource.h +++ b/PowerEditor/src/resource.h @@ -27,12 +27,12 @@ #pragma once -#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.2.1") +#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.2.2") // should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71 // ex : #define VERSION_VALUE TEXT("5.63\0") -#define VERSION_VALUE TEXT("7.21\0") -#define VERSION_DIGITALVALUE 7, 2, 1, 0 +#define VERSION_VALUE TEXT("7.22\0") +#define VERSION_DIGITALVALUE 7, 2, 2, 0