Notepad++ v8.4.4 - Happy Users' Edition
Now Notepad++ happy users are also allowed to get a refund!
This commit is contained in:
parent
b77faf77af
commit
08acfe99b8
|
@ -1,3 +1,9 @@
|
|||
Notepad++ v8.4.4 crash/regression-fixes and new enhancement:
|
||||
|
||||
1. Fix Find in Files crash regression.
|
||||
2. Add shortcuts toward the settings of preferences dialog into Styler Configurator.
|
||||
|
||||
|
||||
Notepad++ v8.4.3 crash/regression-fixes, bug-fixes & new enhancement:
|
||||
|
||||
1. Add an option which allows to show only 1 entry per found line in search result.
|
||||
|
@ -17,7 +23,7 @@ Notepad++ v8.4.3 crash/regression-fixes, bug-fixes & new enhancement:
|
|||
15. Fix a small regression in DebugInfo dialog.
|
||||
|
||||
Get more info on
|
||||
https://notepad-plus-plus.org/downloads/v8.4.3/
|
||||
https://notepad-plus-plus.org/downloads/v8.4.4/
|
||||
|
||||
|
||||
Included plugins:
|
||||
|
|
|
@ -1250,7 +1250,8 @@ BEGIN
|
|||
//LTEXT "Declare variables, not war",IDC_AUTHOR_NAME,85,38,100,8
|
||||
//LTEXT "Make Apps, not war",IDC_AUTHOR_NAME,85,38,100,8
|
||||
//LTEXT "Stand Up For Ukraine",IDC_AUTHOR_NAME,85,38,100,8
|
||||
LTEXT "Unhappy Users' Edition",IDC_AUTHOR_NAME,85,38,100,8
|
||||
//LTEXT "Unhappy Users' Edition",IDC_AUTHOR_NAME,85,38,100,8
|
||||
LTEXT "Happy Users' Edition",IDC_AUTHOR_NAME,85,38,100,8
|
||||
LTEXT "I want to get a refund",IDC_HOME_ADDR,85,48,126,8
|
||||
//LTEXT "Home:",IDC_STATIC,21,58,47,8
|
||||
//LTEXT "https://notepad-plus-plus.org/",IDC_HOME_ADDR,50,58,126,8
|
||||
|
|
|
@ -52,9 +52,10 @@ intptr_t CALLBACK AboutDlg::run_dlgProc(UINT message, WPARAM wParam, LPARAM lPar
|
|||
//_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/v792-stand-with-hong-kong/"));
|
||||
//_emailLink.create(::GetDlgItem(_hSelf, IDC_AUTHOR_NAME), TEXT("https://notepad-plus-plus.org/news/v791-pour-samuel-paty/"));
|
||||
//_pageLink.create(::GetDlgItem(_hSelf, IDC_HOME_ADDR), TEXT("https://notepad-plus-plus.org/news/v843-unhappy-users-edition/"));
|
||||
|
||||
_pageLink.init(_hInst, _hSelf);
|
||||
_pageLink.create(::GetDlgItem(_hSelf, IDC_HOME_ADDR), TEXT("https://notepad-plus-plus.org/news/v843-unhappy-users-edition/"));
|
||||
_pageLink.create(::GetDlgItem(_hSelf, IDC_HOME_ADDR), TEXT("https://notepad-plus-plus.org/news/v844-happy-users-edition/"));
|
||||
|
||||
getClientRect(_rc);
|
||||
|
||||
|
|
|
@ -19,12 +19,12 @@
|
|||
//
|
||||
// Notepad++ version: begin
|
||||
//
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.4.3")
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.4.4")
|
||||
|
||||
// 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.43\0")
|
||||
#define VERSION_DIGITALVALUE 8, 4, 3, 0
|
||||
#define VERSION_VALUE TEXT("8.44\0")
|
||||
#define VERSION_DIGITALVALUE 8, 4, 4, 0
|
||||
|
||||
// Notepad++ version: end
|
||||
|
||||
|
|
Loading…
Reference in New Issue