[RELEASE] v5.4.4 release.
Signed-off-by: Don HO <don.h@free.fr> git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@508 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
parent
84154b4b38
commit
26334291d8
|
@ -1,3 +1,21 @@
|
|||
Notepad++ v5.4.4 fixed bugs (from v5.4.3) :
|
||||
|
||||
1. Upgrade Scintilla from 1.77 to 1.78.
|
||||
2. Fix XML syntax highlighting bug while presence of the tag "<script/>" (Yes, finally).
|
||||
3. Fix Find in files/Find in all open files bug in non western languages (ie. Russian, Chinese, Hebrew...).
|
||||
4. Fix the find in files crash issue if find what field contains 0x0A or 0xD.
|
||||
5. Fix Window7 SetWindowsHookEx() failed issue for the dockable windows. (by recognizing windows7 environment)
|
||||
6. Fix no tool bar bug under w2k.
|
||||
7. Fix Incremental search bug while clicking on text zone after some searches.
|
||||
8. Fix Matlab script making Notepad++ crash under Chinese windows issue.
|
||||
9. Make NpWiki++ link available as on line help.
|
||||
10. Add lines count on status bar.
|
||||
11. Fix "In selection" bug in Find Replace features.
|
||||
12. Fix the clickable link issue for some links (add '~' in RegExp).
|
||||
13. Fix the bug that Notepad++ does not show on while it is minimized and its file is modified from outside.
|
||||
|
||||
|
||||
|
||||
Notepad++ v5.4.3 fixed bugs (from v5.4.2) :
|
||||
|
||||
1. Fix clickable link styling bug.
|
||||
|
|
Binary file not shown.
|
@ -17,18 +17,18 @@
|
|||
|
||||
; Define the application name
|
||||
!define APPNAME "Notepad++"
|
||||
!define APPVERSION "5.4.3"
|
||||
!define APPNAMEANDVERSION "Notepad++ v5.4.3"
|
||||
!define APPVERSION "5.4.4"
|
||||
!define APPNAMEANDVERSION "Notepad++ v5.4.4"
|
||||
!define APPWEBSITE "http://notepad-plus.sourceforge.net/"
|
||||
|
||||
!define VERSION_MAJOR 5
|
||||
!define VERSION_MINOR 43
|
||||
!define VERSION_MINOR 44
|
||||
|
||||
; Main Install settings
|
||||
Name "${APPNAMEANDVERSION}"
|
||||
InstallDir "$PROGRAMFILES\Notepad++"
|
||||
InstallDirRegKey HKLM "Software\${APPNAME}" ""
|
||||
OutFile "..\bin\npp.5.4.3.Installer.exe"
|
||||
OutFile "..\bin\npp.5.4.4.Installer.exe"
|
||||
|
||||
; GetWindowsVersion
|
||||
;
|
||||
|
|
|
@ -1,8 +1,12 @@
|
|||
copy /Y ".\nativeLang\*.*" ..\bin\localization
|
||||
copy /Y ".\nativeLang\*.*" ..\bin\localization\
|
||||
|
||||
cd ..\bin\
|
||||
|
||||
del /F *.Installer.exe
|
||||
del /F *.zip
|
||||
del /F *.7z
|
||||
del /F /S /Q .\zipped.package.release\unicode\*.*
|
||||
|
||||
copy /Y license.txt .\zipped.package.release\unicode\
|
||||
copy /Y readme.txt .\zipped.package.release\unicode\
|
||||
copy /Y NppHelp.chm .\zipped.package.release\unicode\
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
... (see source file)
|
||||
-->
|
||||
<GUIConfig name="NewDocDefaultSettings" format="0" encoding="0" lang="0" />
|
||||
<GUIConfig name="langsExcluded" gr0="0" gr1="0" gr2="0" gr3="0" gr4="0" gr5="0" gr6="0" gr7="0" />
|
||||
<GUIConfig name="langsExcluded" gr0="0" gr1="0" gr2="0" gr3="0" gr4="0" gr5="0" gr6="0" gr7="0" langMenuCompact="yes"/>
|
||||
<!--
|
||||
printOption is print colour setting, the following values are possible :
|
||||
0 : WYSIWYG
|
||||
|
@ -72,7 +72,7 @@
|
|||
<GUIConfig name="noUpdate">no</GUIConfig>
|
||||
<GUIConfig name="MaitainIndent">yes</GUIConfig>
|
||||
<GUIConfig name="MRU">yes</GUIConfig>
|
||||
<GUIConfig name="URL">2</GUIConfig>
|
||||
<GUIConfig name="URL">0</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="sessionExt"></GUIConfig>
|
||||
|
|
|
@ -18,9 +18,9 @@
|
|||
#ifndef RESOURCE_H
|
||||
#define RESOURCE_H
|
||||
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v5.4.3")
|
||||
#define VERSION_VALUE TEXT("5.43\0") // should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71
|
||||
#define VERSION_DIGITALVALUE 5, 4, 3, 0
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v5.4.4")
|
||||
#define VERSION_VALUE TEXT("5.44\0") // should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71
|
||||
#define VERSION_DIGITALVALUE 5, 4, 4, 0
|
||||
|
||||
#ifdef UNICODE
|
||||
#define UNICODE_ANSI_MODE TEXT("(UNICODE)")
|
||||
|
|
Loading…
Reference in New Issue