Browse Source

[RELEASE] v5.4.1 official release.

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@481 f5eea248-9336-0410-98b8-ebc06183d4e3
remotes/x64
Don Ho 16 years ago
parent
commit
8c6ac82898
  1. 10
      PowerEditor/bin/change.log
  2. BIN
      PowerEditor/bin/npp.pdb
  3. 20
      PowerEditor/installer/nppSetup.nsi
  4. 6
      PowerEditor/src/resource.h

10
PowerEditor/bin/change.log

@ -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) :
1. Add theme selector to switch styles.xml on the fly, change styles.xml on one click.

BIN
PowerEditor/bin/npp.pdb

Binary file not shown.

20
PowerEditor/installer/nppSetup.nsi

@ -17,18 +17,18 @@
; Define the application name
!define APPNAME "Notepad++"
!define APPVERSION "5.4"
!define APPNAMEANDVERSION "Notepad++ v5.4"
!define APPVERSION "5.4.1"
!define APPNAMEANDVERSION "Notepad++ v5.4.1"
!define APPWEBSITE "http://notepad-plus.sourceforge.net/"
!define VERSION_MAJOR 5
!define VERSION_MINOR 4
!define VERSION_MINOR 41
; Main Install settings
Name "${APPNAMEANDVERSION}"
InstallDir "$PROGRAMFILES\Notepad++"
InstallDirRegKey HKLM "Software\${APPNAME}" ""
OutFile "..\bin\npp.5.4.Installer.exe"
OutFile "..\bin\npp.5.4.1.Installer.exe"
; GetWindowsVersion
;
@ -362,7 +362,12 @@ GLOBAL_INST:
; 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"'
Delete "$UPDATE_PATH\contextMenu.backup.xml"
Rename "$UPDATE_PATH\contextMenu.xml" "$INSTDIR\contextMenu.backup.xml"
SetOutPath "$UPDATE_PATH\"
File "..\bin\contextMenu.xml"
SetOutPath "$INSTDIR\"
File "..\bin\langs.model.xml"
File "..\bin\config.model.xml"
@ -372,12 +377,7 @@ GLOBAL_INST:
File /oname=$INSTDIR\langs.xml "..\bin\langs.model.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
SetOverwrite on
File "..\license.txt"
File "..\bin\LINEDRAW.TTF"

6
PowerEditor/src/resource.h

@ -18,9 +18,9 @@
#ifndef RESOURCE_H
#define RESOURCE_H
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v5.4")
#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_DIGITALVALUE 5, 4, 0, 0
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v5.4.1")
#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, 1, 0
#ifdef UNICODE
#define UNICODE_ANSI_MODE TEXT("(UNICODE)")

Loading…
Cancel
Save