[RELEASE] 6.1.7 release

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@956 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
Don Ho 2012-09-10 23:55:23 +00:00
parent e4fcbb728d
commit dcf7cc089b
4 changed files with 15 additions and 15 deletions

View File

@ -1,14 +1,14 @@
Notepad++ v6.1.6 new features and fixed bugs: Notepad++ v6.1.7 new features and fixed bugs:
1. Fix (Walk around) Notepad++ hanging on CJK input with ANSI document while enabling word completion. 1. Fix config.xml zero length bug after Windows' update (Notepad++ is forced to quit).
2. Enhance folding performance on large documents. 2. Fix a crash issue on save as command.
3. Check update without elevating to Administrator right. 3. Fix saving file fails silently bug.
4. Add update auto-detection for the environment vista/windows 7/Windows 8. 4. Fix a buffer overflow bug.
5. Fix bug: Doc switcher icon state not refreshed after '"save all" action. 5. Add case sensitive option for smart highlighting feature.
6. Make Document map togglable via menu. 6. Enhance the localization system.
7. Enhance Find/Replace dialog result messages. 7. Fix a behavior issue on Windows shutdown.
8. Fix a issue that "max number of recent files" cannot be set to 0. 8. Enhance comment operations: add stream Uncomment command and cross-calling of block feature.
9. Add font size 5, 6 and 7 in Style Configurator. 9. Enhance TAB to space and space to TAB commands.
Included plugins: Included plugins:

Binary file not shown.

View File

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

View File

@ -29,12 +29,12 @@
#ifndef RESOURCE_H #ifndef RESOURCE_H
#define RESOURCE_H #define RESOURCE_H
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v6.1.6") #define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v6.1.7")
// 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.16\0") #define VERSION_VALUE TEXT("6.17\0")
#define VERSION_DIGITALVALUE 6, 1, 6, 0 #define VERSION_DIGITALVALUE 6, 1, 7, 0
#ifdef UNICODE #ifdef UNICODE
#define UNICODE_ANSI_MODE TEXT("(UNICODE)") #define UNICODE_ANSI_MODE TEXT("(UNICODE)")