diff --git a/PowerEditor/bin/change.log b/PowerEditor/bin/change.log index 504948096..03f679d54 100644 --- a/PowerEditor/bin/change.log +++ b/PowerEditor/bin/change.log @@ -1,3 +1,10 @@ +Notepad++ v7.4.1 bug-fixes: + +1. Fix Notepad++ hanging issue on start up due to its connection on Internet - disable the certification chain verification. +2. Fix the opened zero length file not saving bug. +3. Improve Document Peeker performance issue for large files. + + Notepad++ 7.4 new featurs/enhancements & bug-fixes: 1. Add document peek feature (while mouse hovering on tab). diff --git a/PowerEditor/installer/nsisInclude/globalDef.nsh b/PowerEditor/installer/nsisInclude/globalDef.nsh index ae6d575dd..1bc696ae2 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.4" +!define APPVERSION "7.4.1" !define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}" !define VERSION_MAJOR 7 -!define VERSION_MINOR 4 +!define VERSION_MINOR 41 !define APPWEBSITE "http://notepad-plus-plus.org/" diff --git a/PowerEditor/src/resource.h b/PowerEditor/src/resource.h index 48ee76d52..b03c32dc7 100644 --- a/PowerEditor/src/resource.h +++ b/PowerEditor/src/resource.h @@ -27,12 +27,12 @@ #pragma once -#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.4") +#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.4.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.4\0") -#define VERSION_DIGITALVALUE 7, 4, 0, 0 +#define VERSION_VALUE TEXT("7.41\0") +#define VERSION_DIGITALVALUE 7, 4, 1, 0