mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-07-27 07:44:24 +02:00
[RELEASE] Notepad++ 5.8.6 release.
[NEW] Generation of the minimalist package. git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@727 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
parent
7923c0a2c9
commit
1bfddb1203
@ -1,3 +1,16 @@
|
|||||||
|
Notepad++ v5.8.6 new features and fixed bugs (from v5.8.5) :
|
||||||
|
|
||||||
|
1. Fix langs.xml 0 length problem while user ends session without closing Notepad++.
|
||||||
|
2. Fix empty line count failure (RegExpr).
|
||||||
|
3. Fix task list display glitch under Windows 7.
|
||||||
|
4. Add trim functions (header/trailing/compact feature).
|
||||||
|
5. Add white space and TAB conversion features.
|
||||||
|
6. Fix folding margin to be displayed when opening Notepad++ with a new/empty file (Normal text).
|
||||||
|
7. Fix auto-completion detection language bug.
|
||||||
|
8. Fix the changing theme settings makes switch back to the default theme bug.
|
||||||
|
9. Make english.xml customizable.
|
||||||
|
|
||||||
|
|
||||||
Notepad++ v5.8.5 new features and fixed bugs (from v5.8.4) :
|
Notepad++ v5.8.5 new features and fixed bugs (from v5.8.4) :
|
||||||
|
|
||||||
1. Fix Shell Extension icon absent issue.
|
1. Fix Shell Extension icon absent issue.
|
||||||
|
Binary file not shown.
@ -34,9 +34,6 @@ Notepad++ wiki:
|
|||||||
Notepad++ support:
|
Notepad++ support:
|
||||||
http://sourceforge.net/projects/notepad-plus/support
|
http://sourceforge.net/projects/notepad-plus/support
|
||||||
|
|
||||||
Notepad++ channel:
|
|
||||||
irc://irc.freenode.net:6667/notepad++
|
|
||||||
|
|
||||||
|
|
||||||
Notepad++ team:
|
Notepad++ team:
|
||||||
***************
|
***************
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -18,10 +18,10 @@
|
|||||||
; Define the application name
|
; Define the application name
|
||||||
!define APPNAME "Notepad++"
|
!define APPNAME "Notepad++"
|
||||||
|
|
||||||
!define APPVERSION "5.8.5"
|
!define APPVERSION "5.8.6"
|
||||||
!define APPNAMEANDVERSION "Notepad++ v5.8.5"
|
!define APPNAMEANDVERSION "Notepad++ v5.8.6"
|
||||||
!define VERSION_MAJOR 5
|
!define VERSION_MAJOR 5
|
||||||
!define VERSION_MINOR 85
|
!define VERSION_MINOR 86
|
||||||
|
|
||||||
!define APPWEBSITE "http://notepad-plus-plus.org/"
|
!define APPWEBSITE "http://notepad-plus-plus.org/"
|
||||||
|
|
||||||
@ -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.8.5.Installer.exe"
|
OutFile ".\build\npp.5.8.6.Installer.exe"
|
||||||
|
|
||||||
; GetWindowsVersion
|
; GetWindowsVersion
|
||||||
;
|
;
|
||||||
|
@ -20,6 +20,33 @@ echo on
|
|||||||
|
|
||||||
del /F /Q .\build\*.*
|
del /F /Q .\build\*.*
|
||||||
|
|
||||||
|
rem Notepad++ minimalist package
|
||||||
|
del /F /S /Q .\zipped.package.release\minimalist\*.*
|
||||||
|
copy /Y ..\bin\license.txt .\minimalist\
|
||||||
|
If ErrorLevel 1 PAUSE
|
||||||
|
copy /Y ..\bin\readme.txt .\minimalist\
|
||||||
|
If ErrorLevel 1 PAUSE
|
||||||
|
copy /Y ..\bin\change.log .\minimalist\
|
||||||
|
If ErrorLevel 1 PAUSE
|
||||||
|
copy /Y ..\src\config.model.xml .\minimalist\
|
||||||
|
If ErrorLevel 1 PAUSE
|
||||||
|
copy /Y ..\src\langs.model.xml .\minimalist\
|
||||||
|
If ErrorLevel 1 PAUSE
|
||||||
|
copy /Y ..\src\stylers.model.xml .\minimalist\
|
||||||
|
If ErrorLevel 1 PAUSE
|
||||||
|
copy /Y ..\src\contextMenu.xml .\minimalist\
|
||||||
|
If ErrorLevel 1 PAUSE
|
||||||
|
copy /Y ..\src\shortcuts.xml .\minimalist\
|
||||||
|
If ErrorLevel 1 PAUSE
|
||||||
|
copy /Y ..\bin\doLocalConf.xml .\minimalist\
|
||||||
|
If ErrorLevel 1 PAUSE
|
||||||
|
copy /Y ..\bin\"notepad++.exe" .\minimalist\
|
||||||
|
If ErrorLevel 1 PAUSE
|
||||||
|
copy /Y ..\bin\SciLexer.dll .\minimalist\
|
||||||
|
If ErrorLevel 1 PAUSE
|
||||||
|
|
||||||
|
|
||||||
|
rem Notepad++ Unicode package
|
||||||
del /F /S /Q .\zipped.package.release\unicode\*.*
|
del /F /S /Q .\zipped.package.release\unicode\*.*
|
||||||
copy /Y ..\bin\license.txt .\zipped.package.release\unicode\
|
copy /Y ..\bin\license.txt .\zipped.package.release\unicode\
|
||||||
If ErrorLevel 1 PAUSE
|
If ErrorLevel 1 PAUSE
|
||||||
@ -61,6 +88,7 @@ If ErrorLevel 1 PAUSE
|
|||||||
copy /Y ".\themes\*.xml" .\zipped.package.release\unicode\themes\
|
copy /Y ".\themes\*.xml" .\zipped.package.release\unicode\themes\
|
||||||
If ErrorLevel 1 PAUSE
|
If ErrorLevel 1 PAUSE
|
||||||
|
|
||||||
|
rem Notepad++ ANSI package
|
||||||
del /F /S /Q .\zipped.package.release\ansi\npp.pdb
|
del /F /S /Q .\zipped.package.release\ansi\npp.pdb
|
||||||
del /F /S /Q .\zipped.package.release\ansi\config.xml
|
del /F /S /Q .\zipped.package.release\ansi\config.xml
|
||||||
del /F /S /Q .\zipped.package.release\ansi\langs.xml
|
del /F /S /Q .\zipped.package.release\ansi\langs.xml
|
||||||
@ -96,6 +124,8 @@ copy /Y ".\themes\*.xml" .\zipped.package.release\ansi\themes\
|
|||||||
If ErrorLevel 1 PAUSE
|
If ErrorLevel 1 PAUSE
|
||||||
|
|
||||||
|
|
||||||
|
"C:\Program Files\7-Zip\7z.exe" a -r .\build\npp.bin.minimalist.7z .\minimalist\*
|
||||||
|
If ErrorLevel 1 PAUSE
|
||||||
"C:\Program Files\7-Zip\7z.exe" a -tzip -r .\build\npp.bin.zip .\zipped.package.release\*
|
"C:\Program Files\7-Zip\7z.exe" a -tzip -r .\build\npp.bin.zip .\zipped.package.release\*
|
||||||
If ErrorLevel 1 PAUSE
|
If ErrorLevel 1 PAUSE
|
||||||
"C:\Program Files\7-Zip\7z.exe" a -r .\build\npp.bin.7z .\zipped.package.release\*
|
"C:\Program Files\7-Zip\7z.exe" a -r .\build\npp.bin.7z .\zipped.package.release\*
|
||||||
@ -114,10 +144,12 @@ for %%a in (npp.*.Installer.exe) do (
|
|||||||
set nppInstallerVar=%%a
|
set nppInstallerVar=%%a
|
||||||
set zipvar=!nppInstallerVar:Installer.exe=bin.zip!
|
set zipvar=!nppInstallerVar:Installer.exe=bin.zip!
|
||||||
set 7zvar=!nppInstallerVar:Installer.exe=bin.7z!
|
set 7zvar=!nppInstallerVar:Installer.exe=bin.7z!
|
||||||
|
set 7zvarMin=!nppInstallerVar:Installer.exe=bin.minimalist.7z!
|
||||||
rem set md5var=!nppInstallerVar:Installer.exe=release.md5!
|
rem set md5var=!nppInstallerVar:Installer.exe=release.md5!
|
||||||
)
|
)
|
||||||
ren npp.bin.zip !zipvar!
|
ren npp.bin.zip !zipvar!
|
||||||
ren npp.bin.7z !7zvar!
|
ren npp.bin.7z !7zvar!
|
||||||
|
ren npp.bin.minimalist.7z !7zvarMin!
|
||||||
rem ..\externalTools\md5.exe -o!md5var! !nppInstallerVar! !zipvar! !7zvar!
|
rem ..\externalTools\md5.exe -o!md5var! !nppInstallerVar! !zipvar! !7zvar!
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
|
Binary file not shown.
@ -18,12 +18,12 @@
|
|||||||
#ifndef RESOURCE_H
|
#ifndef RESOURCE_H
|
||||||
#define RESOURCE_H
|
#define RESOURCE_H
|
||||||
|
|
||||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v5.8.5")
|
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v5.8.6")
|
||||||
|
|
||||||
// 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.85\0")
|
#define VERSION_VALUE TEXT("5.86\0")
|
||||||
#define VERSION_DIGITALVALUE 5, 8, 5, 0
|
#define VERSION_DIGITALVALUE 5, 8, 6, 0
|
||||||
|
|
||||||
#ifdef UNICODE
|
#ifdef UNICODE
|
||||||
#define UNICODE_ANSI_MODE TEXT("(UNICODE)")
|
#define UNICODE_ANSI_MODE TEXT("(UNICODE)")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user