[RELEASE] v5.1.3 release.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository@379 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
parent
17453dea5b
commit
b4e6f2723b
|
@ -1,3 +1,17 @@
|
|||
Notepad++ v5.1.3 new feature and fixed bugs (from v5.1.2) :
|
||||
|
||||
1. Add PostIt feature (F12 to toggle it).
|
||||
2. Fix the bug that Unicode path file opened in the previous session doesn't be restored.
|
||||
3. Fix nativeLang loading problem if Notepad++ location path contains Unicode characters.
|
||||
4. Make shell extension context menu Unicode compliant.
|
||||
5. Fix "Go to/Open in another instance" bug.
|
||||
6. Process WM_IME_REQUEST message to support Windows IME.
|
||||
7. Fix "Go to another view" translation coding error.
|
||||
8. Adding search text on the top of combo box.
|
||||
9. Fix Tidy installation problem for TextFX plugin.
|
||||
10. Change the N++ recovery directory from c:\N++RECOV to %temp%\N++RECOV.
|
||||
|
||||
|
||||
Notepad++ v5.1.2 fixed bugs (from v5.1.1) :
|
||||
|
||||
1. Fix localization (Japanese/Cyrillic/Hebrew...) display bug under Notepad++ Unicode version.
|
||||
|
@ -68,10 +82,9 @@ Included plugins (Unicode):
|
|||
4. MIME Tools v1.5
|
||||
5. FTP_synchronize v0.9.6
|
||||
6. NppExport v0.2.8
|
||||
7. Compare plugin v1.5.1
|
||||
8. Doc Monitor v2.2
|
||||
9. NppNetNote v0.1
|
||||
|
||||
7. Doc Monitor v2.2
|
||||
8. NppNetNote v0.1
|
||||
9. Compare plugin v1.5.2
|
||||
|
||||
Included plugins (ANSI):
|
||||
|
||||
|
|
|
@ -17,16 +17,16 @@
|
|||
|
||||
; Define the application name
|
||||
!define APPNAME "Notepad++"
|
||||
!define APPNAMEANDVERSION "Notepad++ v5.1.2"
|
||||
!define APPNAMEANDVERSION "Notepad++ v5.1.3"
|
||||
|
||||
!define VERSION_MAJOR 5
|
||||
!define VERSION_MINOR 12
|
||||
!define VERSION_MINOR 13
|
||||
|
||||
; Main Install settings
|
||||
Name "${APPNAMEANDVERSION}"
|
||||
InstallDir "$PROGRAMFILES\Notepad++"
|
||||
InstallDirRegKey HKLM "Software\${APPNAME}" ""
|
||||
OutFile "..\bin\npp.5.1.2.Installer.exe"
|
||||
OutFile "..\bin\npp.5.1.3.Installer.exe"
|
||||
|
||||
; GetWindowsVersion
|
||||
;
|
||||
|
@ -518,7 +518,7 @@ commun:
|
|||
IfFileExists "$INSTDIR\plugins\MultiClipboard.dll" 0 +3
|
||||
MessageBox MB_OK "Due to the problem of compability with this version,$\nMultiClipboard.dll is about to be deleted.$\nYou can download it via menu $\"?->Get more plugins$\" if you really need it."
|
||||
Delete "$INSTDIR\plugins\MultiClipboard.dll"
|
||||
|
||||
|
||||
Delete "$INSTDIR\plugins\NppDocShare.dll"
|
||||
|
||||
IfFileExists "$INSTDIR\plugins\FunctionList.dll" 0 +3
|
||||
|
|
|
@ -18,9 +18,9 @@
|
|||
#ifndef RESOURCE_H
|
||||
#define RESOURCE_H
|
||||
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v5.1.2")
|
||||
#define VERSION_VALUE TEXT("5.12\0") // should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71
|
||||
#define VERSION_DIGITALVALUE 5, 1, 2, 0
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v5.1.3")
|
||||
#define VERSION_VALUE TEXT("5.13\0") // should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71
|
||||
#define VERSION_DIGITALVALUE 5, 1, 3, 0
|
||||
|
||||
#ifdef UNICODE
|
||||
#define UNICODE_ANSI_MODE TEXT("(UNICODE)")
|
||||
|
|
Loading…
Reference in New Issue