[RELEASE] Notepad++ 6.8.6 release
This commit is contained in:
parent
88e390fbc0
commit
3733d97146
|
@ -1,23 +1,14 @@
|
||||||
Notepad++ v6.8.5 bug-fixes:
|
Notepad++ v6.8.6 bug-fixes and enhancements:
|
||||||
1. Fix Javascript autocompletion not working regression.
|
|
||||||
|
|
||||||
|
1. Fix function list not working for Javascript regression.
|
||||||
Notepad++ v6.8.4 bug-fixes and enhancements:
|
2. Fix maintain indent not working in javascript regression.
|
||||||
|
3. Improve the language detection at the beginning of file content.
|
||||||
1. Improve document switching performance while folding restoring.
|
4. Fix possible file corruption during macro playback.
|
||||||
2. Enhance Javascript syntax highlighting: 2 groups of keywords more for syntax highlighting customization.
|
5. Fix wrong EOL mode for opening/reloading big files.
|
||||||
3. Improve auto-insert usability: the open symbols (", ', (, [ and { ) triggers the close symbols according to the context.
|
6. Fix loading 3 bytes file error due to bad encoding detection (UTF16 w/o BOM).
|
||||||
4. Apply new added language auto-detection (for php, xml, html and bash) in the case of unknown file extension.
|
7. Fix DocMap not updating issue when switching to user defined language or external lexer.
|
||||||
4. Add JSON language support.
|
8. Fix reload file issue: document marked as unsaved after reloading.
|
||||||
5. Fix macro playback inserting/removing characters randomly.
|
9. Enhance the detection of EOL: if a document has no EOL for detecting, use EOL of new document settings.
|
||||||
6. Fix Save All button is still enabled problem while no file to save.
|
|
||||||
7. Make file save dialog modern style.
|
|
||||||
8. Fix auto-insert for xml comment incorrect insertion.
|
|
||||||
9. Fix user command save problem on exit.
|
|
||||||
10. Fix macro save problem on exit.
|
|
||||||
11. Fix the restoring from system tray problem while running in admin mode.
|
|
||||||
12. Fix smart highlighting not working in some case.
|
|
||||||
13. Enlarge tabbar height.
|
|
||||||
|
|
||||||
|
|
||||||
Included plugins:
|
Included plugins:
|
||||||
|
|
|
@ -36,10 +36,10 @@
|
||||||
; Define the application name
|
; Define the application name
|
||||||
!define APPNAME "Notepad++"
|
!define APPNAME "Notepad++"
|
||||||
|
|
||||||
!define APPVERSION "6.8.5"
|
!define APPVERSION "6.8.6"
|
||||||
!define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}"
|
!define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}"
|
||||||
!define VERSION_MAJOR 6
|
!define VERSION_MAJOR 6
|
||||||
!define VERSION_MINOR 85
|
!define VERSION_MINOR 86
|
||||||
|
|
||||||
!define APPWEBSITE "http://notepad-plus-plus.org/"
|
!define APPWEBSITE "http://notepad-plus-plus.org/"
|
||||||
|
|
||||||
|
|
|
@ -26,13 +26,13 @@
|
||||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v6.8.5")
|
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v6.8.6")
|
||||||
|
|
||||||
|
|
||||||
// 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("6.85\0")
|
#define VERSION_VALUE TEXT("6.86\0")
|
||||||
#define VERSION_DIGITALVALUE 6, 8, 5, 0
|
#define VERSION_DIGITALVALUE 6, 8, 6, 0
|
||||||
|
|
||||||
#ifndef IDC_STATIC
|
#ifndef IDC_STATIC
|
||||||
#define IDC_STATIC -1
|
#define IDC_STATIC -1
|
||||||
|
|
Loading…
Reference in New Issue