diff --git a/PowerEditor/bin/change.log b/PowerEditor/bin/change.log index bca31d247..3c84f98b4 100644 --- a/PowerEditor/bin/change.log +++ b/PowerEditor/bin/change.log @@ -1,10 +1,8 @@ -Notepad++ 7.2 enhancements and bug-fixes: +Notepad++ 7.2.1 bug-fixes: -1. Add option for smart highlighting extension to anothe view. -2. Fix Installer for 64-bit fails with argument "/D". -3. Fix uninstaller silent mode issue. -4. Fix a tab settings regression. -5. Fix file not saving bug (Ensure backup directory exists). +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. Included plugins: diff --git a/PowerEditor/installer/nsisInclude/globalDef.nsh b/PowerEditor/installer/nsisInclude/globalDef.nsh index 35d7410a1..73b6a47eb 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" +!define APPVERSION "7.2.1" !define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}" !define VERSION_MAJOR 7 -!define VERSION_MINOR 2 +!define VERSION_MINOR 21 !define APPWEBSITE "http://notepad-plus-plus.org/" diff --git a/PowerEditor/src/resource.h b/PowerEditor/src/resource.h index e81a719ee..cef03c700 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") +#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.2.1") // 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.2\0") -#define VERSION_DIGITALVALUE 7, 2, 0, 0 +#define VERSION_VALUE TEXT("7.21\0") +#define VERSION_DIGITALVALUE 7, 2, 1, 0