Notepad++ v7.3.3 release
In this release: Fix CIA Hacking Notepad++ issue (https://wikileaks.org/ciav7p1/cms/page_26968090.html). and more...
This commit is contained in:
parent
e5f4344f69
commit
388c430e21
|
@ -1,17 +1,15 @@
|
||||||
Notepad++ 7.3.2 bug-fixs & enhancements:
|
Notepad++ 7.3.3 bug-fixs & enhancements:
|
||||||
|
|
||||||
1. Fix crash issue on column mode editor.
|
1. Fix CIA Hacking Notepad++ issue (https://wikileaks.org/ciav7p1/cms/page_26968090.html).
|
||||||
2. Fix "Use new style save dialog" setting's regression.
|
2. Fix mouse wheel to task list scroll crash bug.
|
||||||
3. Enhance "Open file" command - open a file from editor zone without selecting its full path.
|
3. Fix flickering issue while switching back after modifying or deleting a document from outside.
|
||||||
4. Fix word char list settings not applying on next launch issue.
|
4. Support Motorola S-Record, Intel and Tektronix extended hex file formats.
|
||||||
5. Fix block uncomment for line comment bug.
|
5. Improve multi-line tab: maintaining the selected tab position.
|
||||||
6. BaanC Language is surpported.
|
6. Fix add char into word char list bug.
|
||||||
7. Add error notification on run dialog.
|
7. Add Shift+Enter in Find dialog for searching in the opposite direction.
|
||||||
8. Fix the caret position not maintained issue between document move.
|
8. Fix a regression that delimiter settings is not retained correctely.
|
||||||
9. Fix caret goes to wrong position after word completion.
|
9. Add clear command button in shortcut mapper.
|
||||||
10. Enhance Function List for supporting language.
|
10. Enhancement: file extension supported in Load/Save Session dialog if a session file extension is set.
|
||||||
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:
|
Included plugins:
|
||||||
|
|
|
@ -29,10 +29,10 @@
|
||||||
; Define the application name
|
; Define the application name
|
||||||
!define APPNAME "Notepad++"
|
!define APPNAME "Notepad++"
|
||||||
|
|
||||||
!define APPVERSION "7.3.2"
|
!define APPVERSION "7.3.3"
|
||||||
!define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}"
|
!define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}"
|
||||||
!define VERSION_MAJOR 7
|
!define VERSION_MAJOR 7
|
||||||
!define VERSION_MINOR 32
|
!define VERSION_MINOR 33
|
||||||
|
|
||||||
!define APPWEBSITE "http://notepad-plus-plus.org/"
|
!define APPWEBSITE "http://notepad-plus-plus.org/"
|
||||||
|
|
||||||
|
|
|
@ -27,12 +27,12 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.3.2")
|
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.3.3")
|
||||||
|
|
||||||
// should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71
|
// 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")
|
// ex : #define VERSION_VALUE TEXT("5.63\0")
|
||||||
#define VERSION_VALUE TEXT("7.32\0")
|
#define VERSION_VALUE TEXT("7.33\0")
|
||||||
#define VERSION_DIGITALVALUE 7, 3, 2, 0
|
#define VERSION_DIGITALVALUE 7, 3, 3, 0
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue