diff --git a/PowerEditor/bin/change.log b/PowerEditor/bin/change.log index d6fd10648..62edde581 100644 --- a/PowerEditor/bin/change.log +++ b/PowerEditor/bin/change.log @@ -1,4 +1,4 @@ -Notepad++ v4.7.1 fixed bugs and added features (from v4.6) : +Notepad++ v4.7.2 fixed bugs and added features (from v4.6) : 1. Make the "recovery system" for 3 mandatory xml files (config.xml, langs.xml and stylers.xml) to prevent the fail loading due to the corrupted files. 2. Extend plugin capacity - add the Scintilla external lexer capacity. @@ -16,6 +16,7 @@ Notepad++ v4.7.1 fixed bugs and added features (from v4.6) : 14. Fix a bug where a file with 2 or more consecutive spaces gives problems with sessions and history. 15. Fixe the problem where opening a file when in save as dialog saves the wrong file. 16. Add "Clean Recent File List" menu command. +17. Enhance full screen feature (F11). Included plugins : diff --git a/PowerEditor/installer/nppSetup.nsi b/PowerEditor/installer/nppSetup.nsi index 1c2ec98a2..e82e1f666 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++ v4.7.1" +!define APPNAMEANDVERSION "Notepad++ v4.7.2" !define VERSION_MAJOR 4 -!define VERSION_MINOR 71 +!define VERSION_MINOR 72 ; Main Install settings Name "${APPNAMEANDVERSION}" InstallDir "$PROGRAMFILES\Notepad++" InstallDirRegKey HKLM "Software\${APPNAME}" "" -OutFile "..\bin\npp.4.7.1.Installer.exe" +OutFile "..\bin\npp.4.7.2.Installer.exe" diff --git a/PowerEditor/src/resource.h b/PowerEditor/src/resource.h index bf0b39c09..cfb4630a9 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++ v4.7.1" -#define VERSION_VALUE "4.71\0" // should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71 -#define VERSION_DIGITALVALUE 4, 7, 1, 0 +#define NOTEPAD_PLUS_VERSION "Notepad++ v4.7.2" +#define VERSION_VALUE "4.72\0" // should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71 +#define VERSION_DIGITALVALUE 4, 7, 2, 0 #ifndef IDC_STATIC #define IDC_STATIC -1