[RELEASE] v5.4.1 official release.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@481 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
parent
e72b17ed9d
commit
8c6ac82898
|
@ -1,3 +1,13 @@
|
||||||
|
Notepad++ v5.4.1 new features and fixed bugs (from v5.4) :
|
||||||
|
|
||||||
|
1. Add ChangeMarkers plugin in installer.
|
||||||
|
2. Add theme description in installer.
|
||||||
|
3. Make installer update contextMenu.xml (backup the old one then override it with the new one).
|
||||||
|
4. Fix lastRecentFileList localization issue.
|
||||||
|
5. Add readonly change status notification for plugin system.
|
||||||
|
6. Fix Styler Configurator user extension handler.
|
||||||
|
|
||||||
|
|
||||||
Notepad++ v5.4 new features and fixed bugs (from v5.3.1) :
|
Notepad++ v5.4 new features and fixed bugs (from v5.3.1) :
|
||||||
|
|
||||||
1. Add theme selector to switch styles.xml on the fly, change styles.xml on one click.
|
1. Add theme selector to switch styles.xml on the fly, change styles.xml on one click.
|
||||||
|
|
Binary file not shown.
|
@ -17,18 +17,18 @@
|
||||||
|
|
||||||
; Define the application name
|
; Define the application name
|
||||||
!define APPNAME "Notepad++"
|
!define APPNAME "Notepad++"
|
||||||
!define APPVERSION "5.4"
|
!define APPVERSION "5.4.1"
|
||||||
!define APPNAMEANDVERSION "Notepad++ v5.4"
|
!define APPNAMEANDVERSION "Notepad++ v5.4.1"
|
||||||
!define APPWEBSITE "http://notepad-plus.sourceforge.net/"
|
!define APPWEBSITE "http://notepad-plus.sourceforge.net/"
|
||||||
|
|
||||||
!define VERSION_MAJOR 5
|
!define VERSION_MAJOR 5
|
||||||
!define VERSION_MINOR 4
|
!define VERSION_MINOR 41
|
||||||
|
|
||||||
; Main Install settings
|
; Main Install settings
|
||||||
Name "${APPNAMEANDVERSION}"
|
Name "${APPNAMEANDVERSION}"
|
||||||
InstallDir "$PROGRAMFILES\Notepad++"
|
InstallDir "$PROGRAMFILES\Notepad++"
|
||||||
InstallDirRegKey HKLM "Software\${APPNAME}" ""
|
InstallDirRegKey HKLM "Software\${APPNAME}" ""
|
||||||
OutFile "..\bin\npp.5.4.Installer.exe"
|
OutFile "..\bin\npp.5.4.1.Installer.exe"
|
||||||
|
|
||||||
; GetWindowsVersion
|
; GetWindowsVersion
|
||||||
;
|
;
|
||||||
|
@ -362,7 +362,12 @@ GLOBAL_INST:
|
||||||
|
|
||||||
; This line is added due to the bug of xmlUpdater, to be removed in the feature
|
; This line is added due to the bug of xmlUpdater, to be removed in the feature
|
||||||
nsExec::ExecToStack '"$TEMP\xmlUpdater.exe" "$TEMP\stylesLexerModel.xml" "$TEMP\stylers.model.xml" "$UPDATE_PATH\stylers.xml"'
|
nsExec::ExecToStack '"$TEMP\xmlUpdater.exe" "$TEMP\stylesLexerModel.xml" "$TEMP\stylers.model.xml" "$UPDATE_PATH\stylers.xml"'
|
||||||
|
|
||||||
|
Delete "$UPDATE_PATH\contextMenu.backup.xml"
|
||||||
|
Rename "$UPDATE_PATH\contextMenu.xml" "$INSTDIR\contextMenu.backup.xml"
|
||||||
|
SetOutPath "$UPDATE_PATH\"
|
||||||
|
File "..\bin\contextMenu.xml"
|
||||||
|
|
||||||
SetOutPath "$INSTDIR\"
|
SetOutPath "$INSTDIR\"
|
||||||
File "..\bin\langs.model.xml"
|
File "..\bin\langs.model.xml"
|
||||||
File "..\bin\config.model.xml"
|
File "..\bin\config.model.xml"
|
||||||
|
@ -372,12 +377,7 @@ GLOBAL_INST:
|
||||||
File /oname=$INSTDIR\langs.xml "..\bin\langs.model.xml"
|
File /oname=$INSTDIR\langs.xml "..\bin\langs.model.xml"
|
||||||
File "..\bin\shortcuts.xml"
|
File "..\bin\shortcuts.xml"
|
||||||
|
|
||||||
Delete "$INSTDIR\contextMenu.backup.xml"
|
|
||||||
Rename "$INSTDIR\contextMenu.xml" "$INSTDIR\contextMenu.backup.xml"
|
|
||||||
File "..\bin\contextMenu.xml"
|
|
||||||
|
|
||||||
; Set Section Files and Shortcuts
|
; Set Section Files and Shortcuts
|
||||||
|
|
||||||
SetOverwrite on
|
SetOverwrite on
|
||||||
File "..\license.txt"
|
File "..\license.txt"
|
||||||
File "..\bin\LINEDRAW.TTF"
|
File "..\bin\LINEDRAW.TTF"
|
||||||
|
|
|
@ -18,9 +18,9 @@
|
||||||
#ifndef RESOURCE_H
|
#ifndef RESOURCE_H
|
||||||
#define RESOURCE_H
|
#define RESOURCE_H
|
||||||
|
|
||||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v5.4")
|
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v5.4.1")
|
||||||
#define VERSION_VALUE TEXT("5.4\0") // should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71
|
#define VERSION_VALUE TEXT("5.41\0") // should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71
|
||||||
#define VERSION_DIGITALVALUE 5, 4, 0, 0
|
#define VERSION_DIGITALVALUE 5, 4, 1, 0
|
||||||
|
|
||||||
#ifdef UNICODE
|
#ifdef UNICODE
|
||||||
#define UNICODE_ANSI_MODE TEXT("(UNICODE)")
|
#define UNICODE_ANSI_MODE TEXT("(UNICODE)")
|
||||||
|
|
Loading…
Reference in New Issue