Notepad++ 7.9.2 release

Notepad++ Stand with Hong Kong edition.
This commit is contained in:
Don HO 2021-01-01 00:01:37 +01:00
parent a68805b7ff
commit 0762af5ce2
4 changed files with 50 additions and 37 deletions

View File

@ -1,34 +1,47 @@
Notepad++ v7.9.1 Enhancements & bug-fixes:
Notepad++ v7.9.2 Enhancements & bug-fixes:
1. Fix NUL file-corruption bug after Windows shutdown brutally.
2. Fix inaccurate URL detection by replacing a new URL parser.
3. Fix RegEx look behind operations and \A and and \b and \z.
4. Split functionList.xml into multifile in "functionList" Folder.
5. Make tray icon work again in administrator mode.
6. Fix dialogs & floating dockable panels don't minimize to system tray issue.
7. Add alternative icon set for tab bar.
8. Add ability to remove any duplicate lines in a document, keeping the first occurrence.
9. Fix incorrect icon for monitoring status in Document list panel and in Document switcher.
10. Add copy marked text & styled text to clipboard commands to menu.
11. Fix find-all-open-docs not finding all matches in ANSI files.
12. Display long lines better in Find-result panel by increasing its max length to 2048.
13. Fix double clicking on find result line not working.
14. Fix Find-result rclick-Copy incomplete data bug.
15. Add case insensitive lines sorting.
16. Add "Open Containing Folder as Workspace" command in main menu and in context menu of tabs.
17. Enhance Sel info of status bar.
18. Add new option for save type of normal text files in Save dialog.
19. Fix file path truncated issue in save confirmation dialog.
20. Fix auto-Indent not working for PowerShell.
21. Allow setting of background color for bookmark margin.
22. Fix smart-highlighting not applying to cloned view.
23. Fix smart highlight issue related to EOF.
24. Fix closing file in 2nd view not removed from Doc Switcher.
25. Add Delete keystroke to remove selected root from Folder as Workspace.
26. Add TAB keystroke in Function List to switch between search field and list.
27. Add ESC keystroke in Function List to switch to edit window.
28. Add ESC keystroke to close Search Results Window.
29. Fix data-prefixed attributes are not recognized in HTML.
1. Fix regression of auto-Indent.
2. Add custom URI schemes ability.
3. Improve URL parser: fix apostrophe in an URL issue.
4. Add context menu with "Copy link" ability.
5. Add color samples on menu items for styling features.
6. Add "-settingsDir" argument for overriding default settings path.
7. Fix crash while exit command issued by plugin.
8. Fix several bugs of PHP parser rule for function list.
9. Move "Normal Text" to top in Languages Menu.
10. Add new API NPPM_GETSETTINGSONCLOUDPATH for plugins.
11. Add an option for displaying constant line number width.
12. Fix function list is empty with new user profile in the same PC issue.
13. Fix single-quoted string being badly recognized as attribute value in XML.
14. Fix docked panels appear with "-nosession" cmd line parameters.
15. Improve text selection after Replace All In Selection operation.
16. Add the number of total documents on windows dialog's title bar.
17. Fix scroll to last line problem after main window resizing.
18. Fix Plugin admin display UTF-8 issue in its description.
19. Fix Search result's text direction (RTL) not always synchronized with main edit zone's one issue.
20. Fix dockable panels display issue in RTL direction.
21. Fix Search result line number highlighting inaccurate issue.
22. Make "Line" preceding each line number on Search Results translatable.
23. Fix menu check marks not being removed after closing "Clipboard History" and "Character Panel" panels.
24. Fix command line arguments -p, -n & -c negative value's undefined behaviour.
25. Add new Margin/Border/Edge sub-page in Preferences.
26. Fix find in files failure issue due to directory path with leading/trailing spaces.
27. Fix folder icon display issue in "Folder as Workspace" after "Expand/Collapse All".
28. Make "Clipboard History" and "Character Panel" togglable.
29. Fix Find in found results dialog launch failure after macro execution.
30. Disallow Goto dlg offset option from moving to position inside multi-byte char or between CR and LF.
31. Fix "Go to..." dialog wrong Offset value in empty files.
32. Prevent corruption possibility when using -p command line parameter in a UTF file.
33. Improve indent guidelines on non-brace control block languages.
34. Prevent names of untitled tabs from duplication.
35. Add tooltips for Folder as Workspace 3 commands.
36. Fix "SCI_NEWLINE" inside a macro not working issue.
37. Fix bug where search-results won't open 'new 1' file.
38. Fix tab close button remain pushed issue.
39. Enhance ghost typing command line argument feature - using white space directly instead of %20.
More fixes & implementations detail:
https://notepad-plus-plus.org/downloads/v7.9.2/
Included plugins:

View File

@ -1044,8 +1044,8 @@ BEGIN
LTEXT "bit",IDC_VERSION_BIT,150,20,140,11
//LTEXT "Author :",IDC_STATIC,21,45,31,8
//LTEXT "FREE UYGHUR",IDC_AUTHOR_NAME,70,32,70,8
//LTEXT "Stand with Hong Kong",IDC_AUTHOR_NAME,70,32,80,8
LTEXT "pour Samuel Paty",IDC_AUTHOR_NAME,70,32,80,8
LTEXT "Stand with Hong Kong",IDC_AUTHOR_NAME,70,32,80,8
//LTEXT "pour Samuel Paty",IDC_AUTHOR_NAME,70,32,80,8
LTEXT "Home:",IDC_STATIC,21,52,47,8
LTEXT "https://notepad-plus-plus.org/",IDC_HOME_ADDR,50,52,126,8
GROUPBOX "GNU General Public Licence",IDC_STATIC,19,75,231,131,BS_CENTER

View File

@ -63,8 +63,8 @@ INT_PTR CALLBACK AboutDlg::run_dlgProc(UINT message, WPARAM wParam, LPARAM lPara
//_emailLink.init(_hInst, _hSelf);
//_emailLink.create(::GetDlgItem(_hSelf, IDC_AUTHOR_NAME), TEXT("mailto:don.h@free.fr"));
//_emailLink.create(::GetDlgItem(_hSelf, IDC_AUTHOR_NAME), TEXT("https://notepad-plus-plus.org/news/v781-free-uyghur-edition/"));
//_emailLink.create(::GetDlgItem(_hSelf, IDC_AUTHOR_NAME), TEXT("https://notepad-plus-plus.org/news/v789-stand-with-hong-kong/"));
_emailLink.create(::GetDlgItem(_hSelf, IDC_AUTHOR_NAME), TEXT("https://notepad-plus-plus.org/news/v791-pour-samuel-paty/"));
_emailLink.create(::GetDlgItem(_hSelf, IDC_AUTHOR_NAME), TEXT("https://notepad-plus-plus.org/news/v792-stand-with-hong-kong/"));
//_emailLink.create(::GetDlgItem(_hSelf, IDC_AUTHOR_NAME), TEXT("https://notepad-plus-plus.org/news/v791-pour-samuel-paty/"));
_pageLink.init(_hInst, _hSelf);
_pageLink.create(::GetDlgItem(_hSelf, IDC_HOME_ADDR), TEXT("https://notepad-plus-plus.org/"));

View File

@ -30,12 +30,12 @@
//
// Notepad++ version: begin
//
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.9.1")
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.9.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("7.91\0")
#define VERSION_DIGITALVALUE 7, 9, 1, 0
#define VERSION_VALUE TEXT("7.92\0")
#define VERSION_DIGITALVALUE 7, 9, 2, 0
// Notepad++ version: end