diff --git a/PowerEditor/bin/change.log b/PowerEditor/bin/change.log index f49ef587a..ade44b749 100644 --- a/PowerEditor/bin/change.log +++ b/PowerEditor/bin/change.log @@ -1,3 +1,19 @@ +Notepad++ v8.3.2 regression-fixes, bug-fixes and new enhancements: + +1. Fix incorrect message while double clicking on search result regression. +2. Fix regression: file can't be saved if it's set to other charset before. +3. Fix UDL comment config input fields broken regression. +4. Fix UDL dialog crash issue on over 30 created UDL. +5. Add sorting document tab order commands by name, path, type and size. +6. Add API NPPM_GETCURRENTLINESTR and variable $(CURRENT_LINESTR) for RunDlg. +7. Support better 2GB+ file (cmdline & session file adaptation). +8. Fix auto-completion sort order problem due to fx icon. +9. Refine auto-saving session on exit behaviour. +10. Enhance performance on exit with certain settings. +11. Fix auto-complete case insensitive not working issue. +12. Fix saving problem (regression) with "Sysnative" alias in x86 binary. + + Notepad++ v8.3.1 regression-fixes, bug-fixes and enhancement: 1. Fix XML tag adding or mark deletion crash issue. @@ -20,7 +36,7 @@ Notepad++ v8.3 new features and bug-fixes: More fixes & implementations detail: -https://notepad-plus-plus.org/downloads/v8.3/ +https://notepad-plus-plus.org/downloads/v8.3.2/ Included plugins: diff --git a/PowerEditor/src/Notepad_plus.rc b/PowerEditor/src/Notepad_plus.rc index b9981e739..249b56eeb 100644 --- a/PowerEditor/src/Notepad_plus.rc +++ b/PowerEditor/src/Notepad_plus.rc @@ -1233,7 +1233,8 @@ BEGIN //LTEXT "FREE UYGHUR",IDC_AUTHOR_NAME,70,32,70,8 //LTEXT "Stand with Hong Kong",IDC_AUTHOR_NAME,70,32,80,8 //LTEXT "pour Samuel Paty",IDC_AUTHOR_NAME,70,32,80,8 - LTEXT "Boycott Beijing 2022",IDC_AUTHOR_NAME,85,38,80,8 + //LTEXT "Boycott Beijing 2022",IDC_AUTHOR_NAME,85,38,80,8 + LTEXT "Declare variables, not war",IDC_AUTHOR_NAME,85,38,100,8 LTEXT "Home:",IDC_STATIC,21,58,47,8 LTEXT "https://notepad-plus-plus.org/",IDC_HOME_ADDR,50,58,126,8 GROUPBOX "GNU General Public Licence",IDC_STATIC,19,75,231,131,BS_CENTER diff --git a/PowerEditor/src/resource.h b/PowerEditor/src/resource.h index 5a472aa43..0d3762fa4 100644 --- a/PowerEditor/src/resource.h +++ b/PowerEditor/src/resource.h @@ -19,12 +19,12 @@ // // Notepad++ version: begin // -#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.3.1") +#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.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("8.31\0") -#define VERSION_DIGITALVALUE 8, 3, 1, 0 +#define VERSION_VALUE TEXT("8.32\0") +#define VERSION_DIGITALVALUE 8, 3, 2, 0 // Notepad++ version: end