Notepad++ release 8.5.8

This commit is contained in:
Don Ho 2023-10-17 14:26:05 +02:00
parent 8e43b0adba
commit 97dd708e23
2 changed files with 23 additions and 17 deletions

View File

@ -1,20 +1,26 @@
Notepad++ v8.5.7 bug-fixes and new features:
1. Fix 4 security issues CVE-2023-40031, CVE-2023-40036, CVE-2023-40164 & CVE-2023-40166.
2. Security enhancement: Sign uninstall.exe.
3. Change the slogan in installer.
4. Fix eventual memory leak while reading Utf8-16 files.
5. Fix dragging tab performance issue while Document List is displayed.
6. Add supperss 2GB file warning option for x64.
7. Fix cloned document disassociated issue after Notepad++ being relaunched.
8. Fix session file saving problem if it's read-only.
9. Fix activating wrong file(s) issue after loading session file.
10. Fix wrong product version value displayed in file's properties.
Notepad++ v8.5.8 bug-fixes and new features:
1. Fix "Clear Read-Only Flag" command not working immediately regression.
2. Fix saving files losing Alternate Data Stream issue.
3. Fix data loss issue due to no room on disk for saving.
4. Add Win10/Win11 Restart-application feature.
5. Fix user created session being modified behaviour on exit.
6. Improve document list display performance.
7. Update Scintilla to v5.3.7 & Lexilla to v5.2.7.
8. Fix unwanted Afrikaans installer language issue.
9. Fix a crash issue while reading settings from cloud.
10. Fix security issue CVE-2022-31901.
11. Enhance non-saved search text's persistence in Find dialog combobox while pressing arrow key.
12. Make auto-checking of Find InSelection configurable (resizable & can be disabled).
13. Perl enhancement: Update Stylers & the keywords for Perl v5.38.
14. Fix "Single Line Uncomment" uncommenting an extra line issue.
15. Fix "Next Bookmark" command not resetting current column issue.
16. Allow menu command Window->Windows to be assigned a shortcut.
17. Fix wrong categories in Shortcuts Mapper.
Get more info on
https://notepad-plus-plus.org/downloads/v8.5.7/
https://notepad-plus-plus.org/downloads/v8.5.8/
Included plugins:

View File

@ -19,14 +19,14 @@
//
// Notepad++ version: begin
//
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.5.7")
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.5.8")
// 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_INTERNAL_VALUE TEXT("8.57\0")
#define VERSION_INTERNAL_VALUE TEXT("8.58\0")
#define VERSION_PRODUCT_VALUE TEXT("8.5.7\0")
#define VERSION_DIGITALVALUE 8, 5, 7, 0
#define VERSION_PRODUCT_VALUE TEXT("8.5.8\0")
#define VERSION_DIGITALVALUE 8, 5, 8, 0
// Notepad++ version: end