Notepad++ 7.6 release

pull/5008/head v7.6
Don HO 6 years ago
parent f1534118e1
commit 40fbf0da61

@ -1,18 +1,18 @@
Notepad++ v7.5.9 bug-fixes & enhancement:
Notepad++ v7.6 new feature and bug-fixes:
1. Fix hanging problem while switching back a fully-folded document by using shortcut (Ctrl-TAB).
2. Fix possible file corruption during backup or power loss or other abnormal N++ termination.
3. Fix wrong backup file deleted issue.
4. Fix backup not fully disabled issue.
5. Add 2 command line flags "-notepadStyleCmdline" and "-z" for the replacement of notepad.exe.
See https://notepad-plus-plus.org/features/replace-notepad.html
6. Add new plugin API NPPM_REMOVESHORTCUTBYCMDID to allows plugins to remove unneeded shortcuts.
7. Fix Tail monitoring incoherent status after deleting a monitored file.
8. Fix issue with wrong smart highlighting when it is disabled.
9. Fix last active tab is ignored on Notepad++ restart issue.
10. Fix Tab non-responding by mouse click after dragging bug.
11. Fix switching back position restoring issue for wrapped document.
12. Add several spiritual quotes and a subtle Easter egg in the source code.
1. Add Built-in Plugins Admins. Users can install, update and remove plugins by some clicks via Plugins Admin:
https://notepad-plus-plus.org/features/plugin-admin.html
2. Change plugin loading method: Remove the legacy plugin loading way and apply only the new plugin loading method.
3. Add new message NPPM_GETPLUGINHOMEPATH in Notepad++ API for plugin, so plugin can get its path easily.
4. Fix a regression of performance issue while word wrap option is enable.
5. Fix a performance issue for switching back to folded document.
6. Fix crash issue due to Unix style path input in Open file dialog.
7. Fix UTF-8 detection problem: 4 byte characters UTF-8 character can be detected now.
8. Enhance/Fix encoding detection/problem.
9. Fix auto-indent issue by typing Enter on empty line.
10. Fix "Close all but this" behaviour if multiple views are present and some files are dirty.
11. Fix tool tip in document switcher showing the old name issue (after being renamed).
12. Add autoit and lua autoCompletion
Included plugins:
@ -25,4 +25,4 @@ Included plugins:
Updater (Installer only):
* WinGup (for Notepad++) v5.0.3
* WinGup (for Notepad++) v5.0.4

@ -17,18 +17,8 @@ rem along with this program; if not, write to the Free Software
rem Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
echo on
if %SIGN% == 0 goto NoSign
rem retrieve GUP release from website while doing Notepad++ release
set WINGUP_VER=5.0.3
IF EXIST ".\bin\wingup\GUP.exe" (
cd .\bin\wingup
GUP.exe -unzipTo %~dp0\..\bin\updater https://github.com/notepad-plus-plus/wingup/releases/download/v%WINGUP_VER%/wingup.v%WINGUP_VER%.bin.zip ""
GUP.exe -unzipTo %~dp0\..\bin64\updater https://github.com/notepad-plus-plus/wingup/releases/download/v%WINGUP_VER%/wingup.v%WINGUP_VER%.bin.x64.zip ""
cd ..\..
) ELSE (
echo .\wingup\GUP.exe is absent.
)
if %SIGN% == 0 goto NoSign
signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\notepad++.exe
If ErrorLevel 1 goto End

@ -27,12 +27,12 @@
#pragma once
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.5.9")
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.6")
// 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("7.59\0")
#define VERSION_DIGITALVALUE 7, 5, 9, 0
#define VERSION_VALUE TEXT("7.6\0")
#define VERSION_DIGITALVALUE 7, 6, 0, 0

Loading…
Cancel
Save