Browse Source

Notepad++ v8.5.2 release

pull/13490/head v8.5.2
Don Ho 2 years ago
parent
commit
28b45ccee4
  1. 2
      .gitignore
  2. 19
      PowerEditor/bin/change.log
  3. 8
      PowerEditor/src/resource.h

2
.gitignore vendored

@ -59,7 +59,7 @@ UpgradeLog*.htm
PowerEditor/bin/notepad++.exe
PowerEditor/bin/Notepad++.exp
PowerEditor/bin/Notepad++.lib
PowerEditor/bin/SciLexer.dll
PowerEditor/bin/NppShell.x86.dll
PowerEditor/bin/config.xml
PowerEditor/bin/stylers.xml
PowerEditor/bin/langs.xml

19
PowerEditor/bin/change.log

@ -1,3 +1,20 @@
Notepad++ v8.5.2 bug-fixes and new features:
1. Enhance "Edit with Notepad++" context menu and fix several issues.
2. Make Find/Replace dialog swap/copy button usage more explicit.
3. Fix unexpected caret column jump post brace match.
4. Add hits in-progress increased number to Search Progress dialog.
5. Add HTML Hexadecimal column and more items to ASCII panel.
6. Add ability to do leading spaces with Column Editor.
7. Add programming language support for Hollywood.
8. Fix dock panels visual glitch while finding in search results.
9. Fix Mark dialog's Copy Marked Text button is not macro-able issue.
10. Dark mode enhancement: make focused combobox more visible.
11. Fix find dialog flicker issue.
12. Enhance Notepad++ icon's display in system tray.
13. Fix some options in Mark dialog not remembered though the session issue.
Notepad++ v8.5.1 bug-fixes and new features:
1. Use new modern shell "Edit with Notepad++" of Windows 11 instead of hijacking "Pin to Quick access".
@ -39,7 +56,7 @@ Notepad++ v8.5 bug-fixes and new features:
24. Make several GUI items translatable.
Get more info on
https://notepad-plus-plus.org/downloads/v8.5.1/
https://notepad-plus-plus.org/downloads/v8.5.2/
Included plugins:

8
PowerEditor/src/resource.h

@ -1,5 +1,5 @@
// This file is part of Notepad++ project
// Copyright (C)2021 Don HO <don.h@free.fr>
// Copyright (C)2023 Don HO <don.h@free.fr>
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@ -19,12 +19,12 @@
//
// Notepad++ version: begin
//
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.5.1")
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.5.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("8.51\0")
#define VERSION_DIGITALVALUE 8, 5, 1, 0
#define VERSION_VALUE TEXT("8.52\0")
#define VERSION_DIGITALVALUE 8, 5, 2, 0
// Notepad++ version: end

Loading…
Cancel
Save