[RELEASE] Notepad++ 5.9.8 official release
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@858 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
parent
15f64db06b
commit
9053074f3e
|
@ -1,10 +1,11 @@
|
|||
Notepad++ v5.9.7 new features and fixed bugs:
|
||||
Notepad++ v5.9.8 new features and fixed bugs:
|
||||
|
||||
1. Add drag and drop capacity in Project Manager (only inside of Project Manager).
|
||||
2. Add "Move Up" (Ctrl+Up) and "Move Down" (Ctrl+Down) commands in Project Panel.
|
||||
3. Edit Zone border can be customizable via "Editing" tab of Preferences dialog.
|
||||
4. Fix an aesthetic problem in incremental search bar.
|
||||
5. Make plugins in "%APPDATA%\Notepad++\plugins\" override les plugins in Notepad++ installation directory. (Plugins loading from %APPDATA%\Notepad++\plugins\ is enabled only if "NPP_INSTALLED_DIR\Notepad++\allowAppDataPlugins.xml" is present)
|
||||
5. Fix "Save all" GUI bug.
|
||||
6. Make plugins in "%APPDATA%\Notepad++\plugins\" override les plugins in Notepad++ installation directory. (Plugins loading from %APPDATA%\Notepad++\plugins\ is enabled only if "NPP_INSTALLED_DIR\Notepad++\allowAppDataPlugins.xml" is present)
|
||||
|
||||
|
||||
Included plugins (Unicode):
|
||||
|
@ -12,7 +13,7 @@ Included plugins (Unicode):
|
|||
1. Spell Checker v1.3.3
|
||||
2. NppFTP 0.24.1
|
||||
3. NppExport v0.2.8
|
||||
4. Plugin Manager 1.0.7
|
||||
4. Plugin Manager 1.0.8
|
||||
5. Converter 3.0
|
||||
|
||||
|
||||
|
@ -25,4 +26,4 @@ Included plugins (ANSI):
|
|||
4. NppExport v0.2.8
|
||||
5. Light Explorer v1.6
|
||||
6. Compare Plugin 1.5.6.1
|
||||
7. Plugin Manager 1.0.7
|
||||
7. Plugin Manager 1.0.8
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -18,10 +18,10 @@
|
|||
; Define the application name
|
||||
!define APPNAME "Notepad++"
|
||||
|
||||
!define APPVERSION "5.9.7"
|
||||
!define APPVERSION "5.9.8"
|
||||
!define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}"
|
||||
!define VERSION_MAJOR 5
|
||||
!define VERSION_MINOR 97
|
||||
!define VERSION_MINOR 98
|
||||
|
||||
!define APPWEBSITE "http://notepad-plus-plus.org/"
|
||||
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
#ifndef RESOURCE_H
|
||||
#define RESOURCE_H
|
||||
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v5.9.7")
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v5.9.8")
|
||||
|
||||
// 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("5.97\0")
|
||||
#define VERSION_DIGITALVALUE 5, 9, 7, 0
|
||||
#define VERSION_VALUE TEXT("5.98\0")
|
||||
#define VERSION_DIGITALVALUE 5, 9, 8, 0
|
||||
|
||||
#ifdef UNICODE
|
||||
#define UNICODE_ANSI_MODE TEXT("(UNICODE)")
|
||||
|
|
Loading…
Reference in New Issue