diff --git a/PowerEditor/bin/change.log b/PowerEditor/bin/change.log index 6d96ec30f..830e009ea 100644 --- a/PowerEditor/bin/change.log +++ b/PowerEditor/bin/change.log @@ -1,7 +1,17 @@ -Notepad++ 7.3.1 bug-fix & enhancement: +Notepad++ 7.3.2 bug-fixs & enhancements: -1. Fix geneation of MD5 on Unicode bug. -2. Enhancement : make "Word characters list" customizable. +1. Fix crash issue on column mode editor. +2. Fix "Use new style save dialog" setting's regression. +3. Enhance "Open file" command - open a file from editor zone without selecting its full path. +4. Fix word char list settings not applying on next launch issue. +5. Fix block uncomment for line comment bug. +6. BaanC Language is surpported. +7. Add error notification on run dialog. +8. Fix the caret position not maintained issue between document move. +9. Fix caret goes to wrong position after word completion. +10. Enhance Function List for supporting language. +11. Add check mark in Language menu. +12. Fix toolbar not showing issue while launching Notepad++ from system tray in some unknown configuration. Included plugins: diff --git a/PowerEditor/installer/nsisInclude/globalDef.nsh b/PowerEditor/installer/nsisInclude/globalDef.nsh index 769af5792..6b8785c2f 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.3.1" +!define APPVERSION "7.3.2" !define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}" !define VERSION_MAJOR 7 -!define VERSION_MINOR 31 +!define VERSION_MINOR 32 !define APPWEBSITE "http://notepad-plus-plus.org/" diff --git a/PowerEditor/src/resource.h b/PowerEditor/src/resource.h index ed28e03c0..dd73f01d7 100644 --- a/PowerEditor/src/resource.h +++ b/PowerEditor/src/resource.h @@ -27,12 +27,12 @@ #pragma once -#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.3.1") +#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.3.2") // 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.31\0") -#define VERSION_DIGITALVALUE 7, 3, 1, 0 +#define VERSION_VALUE TEXT("7.32\0") +#define VERSION_DIGITALVALUE 7, 3, 2, 0