[RELEASE] Notepad++ 6.9 release

This commit is contained in:
Don Ho 2016-02-22 00:36:01 +01:00
parent 1305d44be3
commit ecfbf906c6
3 changed files with 14 additions and 13 deletions

View File

@ -1,12 +1,13 @@
Notepad++ v6.8.9 bug-fixes and enhancements: Notepad++ v6.9 New feature and bug-fixes:
1. Fix Notepad++ hanging issue while user uses touchscreen to activate Notepad++ window. 1. Add "Folder as Workspace" feature.
2. HTML auto-close tag enhancement: Prevent <br>, <hr>, <img>, <link> and <meta> from being closed automatically. 2. Fix Notepad++ hanging issue while user uses touchscreen to activate Notepad++ window.
3. Project enhancement: Allows user defined extension to associate workspace file. 3. HTML auto-close tag enhancement: Prevent <br>, <hr>, <img>, <link> and <meta> from being closed automatically.
4. Make behavior of SHIFT+END and SHIFT+HOME more consistent when word wrapping is enabled. 4. Project enhancement: Allows user defined extension to associate workspace file.
5. Add new API NPPM_SAVEFILE (for plugins) to save any file, not only the focused one. 5. Make behavior of SHIFT+END and SHIFT+HOME more consistent when word wrapping is enabled.
6. Add file extensions for FreePascal/Lazarus pascal, lex (as C). 6. Add new API NPPM_SAVEFILE (for plugins) to save any file, not only the focused one.
7. Update keywords for C, C++, JavaScript, Python and YAML. 7. Add file extensions for FreePascal/Lazarus pascal, lex (as C).
8. Update keywords for C, C++, JavaScript, Python and YAML.
Included plugins: Included plugins:

View File

@ -36,10 +36,10 @@
; Define the application name ; Define the application name
!define APPNAME "Notepad++" !define APPNAME "Notepad++"
!define APPVERSION "6.8.9" !define APPVERSION "6.9"
!define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}" !define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}"
!define VERSION_MAJOR 6 !define VERSION_MAJOR 6
!define VERSION_MINOR 89 !define VERSION_MINOR 9
!define APPWEBSITE "http://notepad-plus-plus.org/" !define APPWEBSITE "http://notepad-plus-plus.org/"

View File

@ -27,12 +27,12 @@
#pragma once #pragma once
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v6.8.9") #define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v6.9")
// 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.89\0") #define VERSION_VALUE TEXT("6.9\0")
#define VERSION_DIGITALVALUE 6, 8, 9, 0 #define VERSION_DIGITALVALUE 6, 9, 0, 0