parent
f0cb492268
commit
7ee1a5d935
|
@ -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:
|
||||
|
|
|
@ -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/"
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue