[RELEASE] Notepad++ v5.6.4 release

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@595 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
Don Ho 2009-12-28 02:27:58 +00:00
parent d9e7cf9fac
commit fa593ca44b
4 changed files with 21 additions and 8 deletions

View File

@ -1,3 +1,15 @@
Notepad++ v5.6.4 new features and fixed bugs (from v5.6.3) :
1. Add feature of conversion from a localization encoding to UNICODE.
2. Fix status bar display bug that xml/html utf8 indicator makes status bar display ANSI instead of ANSI as UTF-8.
Notepad++ v5.6.3 new features and fixed bugs (from v5.6.2) :
1. Add restore button in fullscreen and postIt mode.
2. Fix auto-updater bug.
Notepad++ v5.6.2 new features and fixed bugs (from v5.6.1) : Notepad++ v5.6.2 new features and fixed bugs (from v5.6.1) :
1. Fix the Unicode localization file display problem. 1. Fix the Unicode localization file display problem.
@ -50,6 +62,7 @@ Included plugins (Unicode):
6. NppNetNote v0.1 6. NppNetNote v0.1
7. Compare Plugin 1.5.5 7. Compare Plugin 1.5.5
8. Plugin Manager 0.9.3.0 8. Plugin Manager 0.9.3.0
9. Light Explorer v2.0
Included plugins (ANSI): Included plugins (ANSI):
@ -58,7 +71,7 @@ Included plugins (ANSI):
3. Spell Checker v1.3.3 3. Spell Checker v1.3.3
4. MIME Tools v1.6 4. MIME Tools v1.6
5. NppExport v0.2.8 5. NppExport v0.2.8
6. Light Explorer v1.5 6. Light Explorer v1.6
7. NppNetNote v0.1 7. NppNetNote v0.1
8. Compare Plugin 1.5.5 8. Compare Plugin 1.5.5
9. Plugin Manager 0.9.3.0 9. Plugin Manager 0.9.3.0

Binary file not shown.

View File

@ -18,10 +18,10 @@
; Define the application name ; Define the application name
!define APPNAME "Notepad++" !define APPNAME "Notepad++"
!define APPVERSION "5.6.3" !define APPVERSION "5.6.4"
!define APPNAMEANDVERSION "Notepad++ v5.6.3" !define APPNAMEANDVERSION "Notepad++ v5.6.4"
!define VERSION_MAJOR 5 !define VERSION_MAJOR 5
!define VERSION_MINOR 63 !define VERSION_MINOR 64
!define APPWEBSITE "http://notepad-plus.sourceforge.net/" !define APPWEBSITE "http://notepad-plus.sourceforge.net/"
@ -29,7 +29,7 @@
Name "${APPNAMEANDVERSION}" Name "${APPNAMEANDVERSION}"
InstallDir "$PROGRAMFILES\Notepad++" InstallDir "$PROGRAMFILES\Notepad++"
InstallDirRegKey HKLM "Software\${APPNAME}" "" InstallDirRegKey HKLM "Software\${APPNAME}" ""
OutFile ".\build\npp.5.6.3.Installer.exe" OutFile ".\build\npp.5.6.4.Installer.exe"
; GetWindowsVersion ; GetWindowsVersion
; ;

View File

@ -18,12 +18,12 @@
#ifndef RESOURCE_H #ifndef RESOURCE_H
#define RESOURCE_H #define RESOURCE_H
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v5.6.3") #define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v5.6.4")
// 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("5.63\0") #define VERSION_VALUE TEXT("5.64\0")
#define VERSION_DIGITALVALUE 5, 6, 3, 0 #define VERSION_DIGITALVALUE 5, 6, 4, 0
#ifdef UNICODE #ifdef UNICODE
#define UNICODE_ANSI_MODE TEXT("(UNICODE)") #define UNICODE_ANSI_MODE TEXT("(UNICODE)")