Skip to content

Commit

Permalink
Notepad++ v8.4.4 - Happy Users' Edition
Browse files Browse the repository at this point in the history
Now Notepad++ happy users are also allowed to get a refund!
  • Loading branch information
donho committed Jul 15, 2022
1 parent b77faf7 commit 08acfe9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
8 changes: 7 additions & 1 deletion PowerEditor/bin/change.log
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion PowerEditor/src/Notepad_plus.rc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion PowerEditor/src/WinControls/AboutDlg/AboutDlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
6 changes: 3 additions & 3 deletions PowerEditor/src/resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 08acfe9

Please sign in to comment.