Notepad++ 7.2.2 release

pull/2569/merge 7.2.2
Don Ho 8 years ago
parent 9b4ceae15e
commit 4c23de61b4

@ -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)" 1. Fix auto-updater setting toggles between startups bug.
2. Fix expanding environment variables regression in backup path. 2. Fix "Replace All" button shortcut accelerator in Replce dialog not working regression.
3. Make installer Unicode again. 3. Fix unusual plugin update prompt after upgrade to 7.2.1 version.
Included plugins: Included plugins:

@ -29,10 +29,10 @@
; Define the application name ; Define the application name
!define APPNAME "Notepad++" !define APPNAME "Notepad++"
!define APPVERSION "7.2.1" !define APPVERSION "7.2.2"
!define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}" !define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}"
!define VERSION_MAJOR 7 !define VERSION_MAJOR 7
!define VERSION_MINOR 21 !define VERSION_MINOR 22
!define APPWEBSITE "http://notepad-plus-plus.org/" !define APPWEBSITE "http://notepad-plus-plus.org/"

@ -27,12 +27,12 @@
#pragma once #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 // 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") // ex : #define VERSION_VALUE TEXT("5.63\0")
#define VERSION_VALUE TEXT("7.21\0") #define VERSION_VALUE TEXT("7.22\0")
#define VERSION_DIGITALVALUE 7, 2, 1, 0 #define VERSION_DIGITALVALUE 7, 2, 2, 0

Loading…
Cancel
Save