[RELEASE] Notepad++ 6.5.4 Release.

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1181 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
Don Ho 2014-02-18 18:34:53 +00:00
parent 6435087f08
commit 2193c71972
5 changed files with 12 additions and 15 deletions

View File

@ -1,17 +1,14 @@
Notepad++ v6.5.3 new features and bug fixes:
Notepad++ v6.5.4 new features and bug fixes:
1. Make advanced scrolling optional so it can be disabled in case of touchpad scrolling problem.
2. Enhance sort lines feature: if several lines are selected, only the selected lines are sorted.
3. Add hex value column in Ascii Insert Panel.
4. Enhance performance: prevent switched-in document from being parsed by function list and by document map while these 2 panels are hidden.
5. Fix the bug that modified tab interface colour settings cannot be saved in stylers configurator.
6. Fix text crazy flickering while resizing the frame on a specific position.
7. Fix the context menu not shown for the all other users (accounts) in the same PC.
1. Enhance Notepad++ to conform with DPI-aware application.
2. Make extension column optional in vertical file switcher.
3. Add 3rd option "function + word completion" in auto-completion feature.
4. Fix closing bug in doc switcher via the context menu (right clicking of an unselected item).
Included plugins:
1. DSpellCheck v1.2.11
1. DSpellCheck v1.2.12
2. NppFTP 0.24.1
3. NppExport v0.2.8
4. Plugin Manager 1.0.8

Binary file not shown.

View File

@ -28,10 +28,10 @@
; Define the application name
!define APPNAME "Notepad++"
!define APPVERSION "6.5.3"
!define APPVERSION "6.5.4"
!define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}"
!define VERSION_MAJOR 6
!define VERSION_MINOR 53
!define VERSION_MINOR 54
!define APPWEBSITE "http://notepad-plus-plus.org/"

View File

@ -73,7 +73,7 @@
<GUIConfig name="MRU">yes</GUIConfig>
<GUIConfig name="URL">2</GUIConfig>
<GUIConfig name="globalOverride" fg="no" bg="no" font="no" fontSize="no" bold="no" italic="no" underline="no" />
<GUIConfig name="auto-completion" autoCAction="0" triggerFromNbChar="1" />
<GUIConfig name="auto-completion" autoCAction="3" triggerFromNbChar="1" funcParams="yes" />
<GUIConfig name="multiInst" setting="0" />
<GUIConfig name="sessionExt"></GUIConfig>
</GUIConfigs>

View File

@ -29,12 +29,12 @@
#ifndef RESOURCE_H
#define RESOURCE_H
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v6.5.3")
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v6.5.4")
// 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("6.53\0")
#define VERSION_DIGITALVALUE 6, 5, 3, 0
#define VERSION_VALUE TEXT("6.54\0")
#define VERSION_DIGITALVALUE 6, 5, 4, 0
#ifdef UNICODE
#define UNICODE_ANSI_MODE TEXT("(UNICODE)")