Notepad++ release 7.3.2

pull/2800/head v7.3.2
Don Ho 8 years ago
parent cc4b47975f
commit 2f2b56eb43

@ -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:

@ -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/"

@ -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

Loading…
Cancel
Save