diff --git a/PowerEditor/bin/change.log b/PowerEditor/bin/change.log index 1c20b16bb..ad0cd1c42 100644 --- a/PowerEditor/bin/change.log +++ b/PowerEditor/bin/change.log @@ -1,3 +1,14 @@ +Notepad++ v5.0.2 fixed bugs and added features (from v5.0.1) : + +1. Fix crash bug for tags match highlighting. +2. Fix the huge file makes notepad++ crash issue. +3. Fix adding item in the history file list while deleting file from Notepad++ bug. +4. Fix a bug that file detection options set are not saved due to doc monitor plugin. +5. Improve opening file performance. +6. Fix bug when closing file using close button. + + + Notepad++ v5.0.1 fixed bugs and added features (from v5) : 1. Fix tags match highlighter bug - more accurate. diff --git a/PowerEditor/installer/nppSetup.nsi b/PowerEditor/installer/nppSetup.nsi index 76ba5cf02..e7f982946 100644 --- a/PowerEditor/installer/nppSetup.nsi +++ b/PowerEditor/installer/nppSetup.nsi @@ -17,16 +17,16 @@ ; Define the application name !define APPNAME "Notepad++" -!define APPNAMEANDVERSION "Notepad++ v5.0.1" +!define APPNAMEANDVERSION "Notepad++ v5.0.2" !define VERSION_MAJOR 5 -!define VERSION_MINOR 01 +!define VERSION_MINOR 02 ; Main Install settings Name "${APPNAMEANDVERSION}" InstallDir "$PROGRAMFILES\Notepad++" InstallDirRegKey HKLM "Software\${APPNAME}" "" -OutFile "..\bin\npp.5.0.1.Installer.exe" +OutFile "..\bin\npp.5.0.2.Installer.exe" ; GetWindowsVersion ; diff --git a/PowerEditor/src/resource.h b/PowerEditor/src/resource.h index 4b1e0513f..10b529f03 100644 --- a/PowerEditor/src/resource.h +++ b/PowerEditor/src/resource.h @@ -18,9 +18,9 @@ #ifndef RESOURCE_H #define RESOURCE_H -#define NOTEPAD_PLUS_VERSION "Notepad++ v5.0.1" -#define VERSION_VALUE "5.01\0" // should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71 -#define VERSION_DIGITALVALUE 5, 0, 1, 0 +#define NOTEPAD_PLUS_VERSION "Notepad++ v5.0.2" +#define VERSION_VALUE "5.02\0" // should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71 +#define VERSION_DIGITALVALUE 5, 0, 2, 0 #ifndef IDC_STATIC #define IDC_STATIC -1