Notepad++ release 8.7.7

This commit is contained in:
Don Ho 2025-02-07 15:42:32 +01:00
parent ec961c895c
commit 706d7ae6de
6 changed files with 15 additions and 10 deletions

View File

@ -1,3 +1,8 @@
Notepad++ v8.7.7 regression-fix from v8.7.6:
1. Add new API NPPM_ADDSCNMODIFIEDFLAGS to fix eventual regression regarding SCN_MODIFIED for some plugins.
Notepad++ v8.7.6 regression-fixes, bug-fixes & enhancements:
1. Update to scintilla 5.5.3 & Lexilla 5.4.1.
@ -17,7 +22,7 @@ Notepad++ v8.7.6 regression-fixes, bug-fixes & enhancements:
Get more info on
https://notepad-plus-plus.org/downloads/v8.7.6/
https://notepad-plus-plus.org/downloads/v8.7.7/
Included plugins:

View File

@ -1318,7 +1318,7 @@ Translation note:
<Element name="Disable"/>
</ComboBox>
<ComboBox id="6307">
<Element name="No action to"/>
<Element name="No action on"/>
<Element name="Minimize to"/>
<Element name="Close to"/>
<Element name="Minimize / Close to"/>

View File

@ -1318,7 +1318,7 @@ Translation note:
<Element name="Disable"/>
</ComboBox>
<ComboBox id="6307">
<Element name="No action to"/>
<Element name="No action on"/>
<Element name="Minimize to"/>
<Element name="Close to"/>
<Element name="Minimize / Close to"/>

View File

@ -2474,7 +2474,7 @@ intptr_t CALLBACK MiscSubDlg::run_dlgProc(UINT message, WPARAM wParam, LPARAM)
bCheck = (nppGUI._fileAutoDetection & cdGo2end) ? true : false;
::SendDlgItemMessage(_hSelf, IDC_CHECK_UPDATEGOTOEOF, BM_SETCHECK, bCheck ? BST_CHECKED : BST_UNCHECKED, 0);
::SendDlgItemMessage(_hSelf, IDC_COMBO_SYSTRAY_ACTION_HOICE, CB_ADDSTRING, 0, reinterpret_cast<LPARAM>(L"No action to"));
::SendDlgItemMessage(_hSelf, IDC_COMBO_SYSTRAY_ACTION_HOICE, CB_ADDSTRING, 0, reinterpret_cast<LPARAM>(L"No action on"));
::SendDlgItemMessage(_hSelf, IDC_COMBO_SYSTRAY_ACTION_HOICE, CB_ADDSTRING, 0, reinterpret_cast<LPARAM>(L"Minimize to"));
::SendDlgItemMessage(_hSelf, IDC_COMBO_SYSTRAY_ACTION_HOICE, CB_ADDSTRING, 0, reinterpret_cast<LPARAM>(L"Close to"));
::SendDlgItemMessage(_hSelf, IDC_COMBO_SYSTRAY_ACTION_HOICE, CB_ADDSTRING, 0, reinterpret_cast<LPARAM>(L"Minimize / Close to"));

View File

@ -11,8 +11,8 @@
<GUIConfig name="noUpdate" intervalDays="15" nextUpdateDate="20080426">yes</GUIConfig>
<GUIConfig name="Auto-detection">yes</GUIConfig>
<GUIConfig name="CheckHistoryFiles">no</GUIConfig>
<GUIConfig name="TrayIcon">no</GUIConfig>
<GUIConfig name="MaitainIndent">yes</GUIConfig>
<GUIConfig name="TrayIcon">0</GUIConfig>
<GUIConfig name="MaintainIndent">1</GUIConfig>
<GUIConfig name="TagsMatchHighLight" TagAttrHighLight="yes" HighLightNonHtmlZone="no">yes</GUIConfig>
<GUIConfig name="RememberLastSession">yes</GUIConfig>
<GUIConfig name="DetectEncoding">yes</GUIConfig>

View File

@ -19,14 +19,14 @@
//************ Notepad++ version **************************
#define NOTEPAD_PLUS_VERSION L"Notepad++ v8.7.6"
#define NOTEPAD_PLUS_VERSION L"Notepad++ v8.7.7"
// should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71
// ex : #define VERSION_VALUE L"5.63\0"
#define VERSION_INTERNAL_VALUE L"8.76\0"
#define VERSION_INTERNAL_VALUE L"8.77\0"
#define VERSION_PRODUCT_VALUE L"8.7.6\0"
#define VERSION_DIGITALVALUE 8, 7, 6, 0
#define VERSION_PRODUCT_VALUE L"8.7.7\0"
#define VERSION_DIGITALVALUE 8, 7, 7, 0
//**********************************************************