diff --git a/PowerEditor/bin/change.log b/PowerEditor/bin/change.log index a0b32c5aa..0e9ea4712 100644 --- a/PowerEditor/bin/change.log +++ b/PowerEditor/bin/change.log @@ -1,3 +1,12 @@ +Notepad++ v5.8.2 fixed bugs (from v5.8.1) : + +1. Fix windows 7 crash bug while executing update. +2. Fix macro recording bug for the non-ASCII characters. +3. Fix C# syntax highlighting disabled problem after reloading. +4. Fix find performance issue related macro recording. + + + Notepad++ v5.8.1 new features and fixed bugs (from v5.8) : 1. Fix Actionscript lexer crash problem. diff --git a/PowerEditor/bin/npp.pdb b/PowerEditor/bin/npp.pdb index eeb8cf8b0..b16a0795c 100644 Binary files a/PowerEditor/bin/npp.pdb and b/PowerEditor/bin/npp.pdb differ diff --git a/PowerEditor/installer/images/NppDownload.psd b/PowerEditor/installer/images/NppDownload.psd new file mode 100644 index 000000000..cb89f8bdc Binary files /dev/null and b/PowerEditor/installer/images/NppDownload.psd differ diff --git a/PowerEditor/installer/images/headerLeft.bmp b/PowerEditor/installer/images/headerLeft.bmp index 903d555e5..51e3f05a2 100644 Binary files a/PowerEditor/installer/images/headerLeft.bmp and b/PowerEditor/installer/images/headerLeft.bmp differ diff --git a/PowerEditor/installer/images/npp_inst.ico b/PowerEditor/installer/images/npp_inst.ico index 2cfff11cb..7b59be18e 100644 Binary files a/PowerEditor/installer/images/npp_inst.ico and b/PowerEditor/installer/images/npp_inst.ico differ diff --git a/PowerEditor/installer/images/wizard.bmp b/PowerEditor/installer/images/wizard.bmp index 5c2f11d43..70d3d54ab 100644 Binary files a/PowerEditor/installer/images/wizard.bmp and b/PowerEditor/installer/images/wizard.bmp differ diff --git a/PowerEditor/installer/nppSetup.nsi b/PowerEditor/installer/nppSetup.nsi index ae1daa452..4971fe0e5 100644 --- a/PowerEditor/installer/nppSetup.nsi +++ b/PowerEditor/installer/nppSetup.nsi @@ -18,8 +18,8 @@ ; Define the application name !define APPNAME "Notepad++" -!define APPVERSION "5.8.1" -!define APPNAMEANDVERSION "Notepad++ v5.8.1" +!define APPVERSION "5.8.2" +!define APPNAMEANDVERSION "Notepad++ v5.8.2" !define VERSION_MAJOR 5 !define VERSION_MINOR 81 @@ -29,7 +29,7 @@ Name "${APPNAMEANDVERSION}" InstallDir "$PROGRAMFILES\Notepad++" InstallDirRegKey HKLM "Software\${APPNAME}" "" -OutFile ".\build\npp.5.8.1.Installer.exe" +OutFile ".\build\npp.5.8.2.Installer.exe" ; GetWindowsVersion ; @@ -317,6 +317,7 @@ Section /o "Don't use %APPDATA%" makeLocal StrCpy $IS_LOCAL "1" SectionEnd + Var UPDATE_PATH Section -"Notepad++" mainSection @@ -409,7 +410,7 @@ GLOBAL_INST: Delete "$SMPROGRAMS\Notepad++\readme.lnk" Delete "$SMPROGRAMS\Notepad++\Uninstall.lnk" CreateDirectory "$SMPROGRAMS\Notepad++" - CreateShortCut "$SMPROGRAMS\Notepad++\Uninstall.lnk" "$INSTDIR\uninstall.exe" + ;CreateShortCut "$SMPROGRAMS\Notepad++\Uninstall.lnk" "$INSTDIR\uninstall.exe" ;clean @@ -489,9 +490,8 @@ GLOBAL_INST: SetShellVarContext all ; add all the npp shortcuts for all user or current user CreateDirectory "$SMPROGRAMS\Notepad++" - CreateShortCut "$DESKTOP\Notepad++.lnk" "$INSTDIR\notepad++.exe" CreateShortCut "$SMPROGRAMS\Notepad++\Notepad++.lnk" "$INSTDIR\notepad++.exe" - CreateShortCut "$SMPROGRAMS\Notepad++\readme.lnk" "$INSTDIR\readme.txt" + ;CreateShortCut "$SMPROGRAMS\Notepad++\readme.lnk" "$INSTDIR\readme.txt" SetShellVarContext current WriteRegStr HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\notepad++.exe" "" "$INSTDIR\notepad++.exe" SectionEnd @@ -795,6 +795,11 @@ Section "Auto-Updater" AutoUpdater File "..\bin\updater\readme.txt" SectionEnd + +Section /o "Create Shortcut on Desktop" shortcutOnDesktop + CreateShortCut "$DESKTOP\Notepad++.lnk" "$INSTDIR\notepad++.exe" +SectionEnd + ;-------------------------------- ;Descriptions diff --git a/PowerEditor/installer/packageAll.bat b/PowerEditor/installer/packageAll.bat index ca202daaa..291671697 100644 --- a/PowerEditor/installer/packageAll.bat +++ b/PowerEditor/installer/packageAll.bat @@ -29,10 +29,14 @@ copy /Y ..\bin\change.log .\zipped.package.release\unicode\ If ErrorLevel 1 PAUSE copy /Y ..\src\config.model.xml .\zipped.package.release\unicode\ If ErrorLevel 1 PAUSE +copy /Y ..\src\config.model.xml .\zipped.package.release\unicode\config.xml +If ErrorLevel 1 PAUSE copy /Y ..\src\langs.model.xml .\zipped.package.release\unicode\ If ErrorLevel 1 PAUSE copy /Y ..\src\stylers.model.xml .\zipped.package.release\unicode\ If ErrorLevel 1 PAUSE +copy /Y ..\src\stylers.model.xml .\zipped.package.release\unicode\stylers.xml +If ErrorLevel 1 PAUSE copy /Y ..\src\contextMenu.xml .\zipped.package.release\unicode\ If ErrorLevel 1 PAUSE copy /Y ..\src\shortcuts.xml .\zipped.package.release\unicode\ @@ -78,10 +82,14 @@ copy /Y ..\bin\change.log .\zipped.package.release\ansi\ If ErrorLevel 1 PAUSE copy /Y ..\src\config.model.xml .\zipped.package.release\ansi\ If ErrorLevel 1 PAUSE +copy /Y ..\src\config.model.xml .\zipped.package.release\ansi\config.xml +If ErrorLevel 1 PAUSE copy /Y ..\src\langs.model.xml .\zipped.package.release\ansi\ If ErrorLevel 1 PAUSE copy /Y ..\src\stylers.model.xml .\zipped.package.release\ansi\ If ErrorLevel 1 PAUSE +copy /Y ..\src\stylers.model.xml .\zipped.package.release\ansi\stylers.xml +If ErrorLevel 1 PAUSE copy /Y ..\src\contextMenu.xml .\zipped.package.release\ansi\ If ErrorLevel 1 PAUSE copy /Y ..\src\shortcuts.xml .\zipped.package.release\ansi\ diff --git a/PowerEditor/src/resource.h b/PowerEditor/src/resource.h index bf88c8d48..c0476af55 100644 --- a/PowerEditor/src/resource.h +++ b/PowerEditor/src/resource.h @@ -18,12 +18,12 @@ #ifndef RESOURCE_H #define RESOURCE_H -#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v5.8.1") +#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v5.8.2") // 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") -#define VERSION_VALUE TEXT("5.81\0") -#define VERSION_DIGITALVALUE 5, 8, 1, 0 +#define VERSION_VALUE TEXT("5.82\0") +#define VERSION_DIGITALVALUE 5, 8, 2, 0 #ifdef UNICODE #define UNICODE_ANSI_MODE TEXT("(UNICODE)")