Notepad++ new release v7.8.1

This commit is contained in:
Don HO 2019-10-29 02:41:19 +01:00
parent e6f9d31d2a
commit 3ee5615c5f
5 changed files with 20 additions and 9 deletions

View File

@ -1,3 +1,11 @@
Notepad++ v7.8.1 enhancements and bug-fixes:
1. Fix popup dialog on startup regression regarding notepad replacement issue.
2. Make monospaced font in Find dialog optional, disabled by default.
3. Add download progress bar while download plugin(s).
4. Fix issue for Alt+Tab doesn't show Notepad++ on Windows 7.
Notepad++ v7.8 enhancements and bug-fixes:
1. Upgrade Scintilla from 4.1.4 to 4.2.0
@ -37,6 +45,7 @@ Included plugins:
2. Converter 4.2.1
3. Mime Tool 2.5
Updater (Installer only):
* WinGup (for Notepad++) v5.1
* WinGup (for Notepad++) v5.1.1

View File

@ -1013,9 +1013,9 @@ BEGIN
LTEXT NOTEPAD_PLUS_VERSION, IDC_STATIC,70,20,140,11
LTEXT "bit",IDC_VERSION_BIT,150,20,140,11
//LTEXT "Author :",IDC_STATIC,21,45,31,8
//LTEXT "Notepad++ team",IDC_AUTHOR_NAME,78,45,70,8
LTEXT "Home:",IDC_STATIC,21,45,47,8
LTEXT "https://notepad-plus-plus.org/",IDC_HOME_ADDR,50,45,126,8
LTEXT "FREE UYGHUR",IDC_AUTHOR_NAME,70,32,70,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
DEFPUSHBUTTON "OK",IDOK,106,215,50,14,BS_FLAT
// IDC_LICENCE_EDIT should be the last line, don't know why

View File

@ -62,6 +62,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.init(_hInst, _hSelf);
_emailLink.create(::GetDlgItem(_hSelf, IDC_AUTHOR_NAME), TEXT("https://notepad-plus-plus.org/news/v781-free-uyghur-edition/"));
_pageLink.init(_hInst, _hSelf);
_pageLink.create(::GetDlgItem(_hSelf, IDC_HOME_ADDR), TEXT("https://notepad-plus-plus.org/"));

View File

@ -56,7 +56,7 @@ public :
void doDialog();
virtual void destroy() {
//_emailLink.destroy();
_emailLink.destroy();
_pageLink.destroy();
};
@ -64,7 +64,7 @@ protected :
virtual INT_PTR CALLBACK run_dlgProc(UINT message, WPARAM wParam, LPARAM lParam);
private :
//URLCtrl _emailLink;
URLCtrl _emailLink;
URLCtrl _pageLink;
};

View File

@ -27,12 +27,12 @@
#pragma once
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.8")
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.8.1")
// 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.8\0")
#define VERSION_DIGITALVALUE 7, 8, 0, 0
#define VERSION_VALUE TEXT("7.81\0")
#define VERSION_DIGITALVALUE 7, 8, 1, 0