From 3ee5615c5f3d584c97a33cd649d17894747c58b0 Mon Sep 17 00:00:00 2001 From: Don HO Date: Tue, 29 Oct 2019 02:41:19 +0100 Subject: [PATCH] Notepad++ new release v7.8.1 --- PowerEditor/bin/change.log | 11 ++++++++++- PowerEditor/src/Notepad_plus.rc | 6 +++--- PowerEditor/src/WinControls/AboutDlg/AboutDlg.cpp | 2 ++ PowerEditor/src/WinControls/AboutDlg/AboutDlg.h | 4 ++-- PowerEditor/src/resource.h | 6 +++--- 5 files changed, 20 insertions(+), 9 deletions(-) diff --git a/PowerEditor/bin/change.log b/PowerEditor/bin/change.log index e3dc494e6..0fdb1be93 100644 --- a/PowerEditor/bin/change.log +++ b/PowerEditor/bin/change.log @@ -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 \ No newline at end of file +* WinGup (for Notepad++) v5.1.1 \ No newline at end of file diff --git a/PowerEditor/src/Notepad_plus.rc b/PowerEditor/src/Notepad_plus.rc index e17b4c7fa..36c7740f7 100644 --- a/PowerEditor/src/Notepad_plus.rc +++ b/PowerEditor/src/Notepad_plus.rc @@ -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 diff --git a/PowerEditor/src/WinControls/AboutDlg/AboutDlg.cpp b/PowerEditor/src/WinControls/AboutDlg/AboutDlg.cpp index c5f8c81a0..8efd773b1 100644 --- a/PowerEditor/src/WinControls/AboutDlg/AboutDlg.cpp +++ b/PowerEditor/src/WinControls/AboutDlg/AboutDlg.cpp @@ -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/")); diff --git a/PowerEditor/src/WinControls/AboutDlg/AboutDlg.h b/PowerEditor/src/WinControls/AboutDlg/AboutDlg.h index 41be3711f..2dd6705c0 100644 --- a/PowerEditor/src/WinControls/AboutDlg/AboutDlg.h +++ b/PowerEditor/src/WinControls/AboutDlg/AboutDlg.h @@ -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; }; diff --git a/PowerEditor/src/resource.h b/PowerEditor/src/resource.h index ea03062ae..b8fdbd718 100644 --- a/PowerEditor/src/resource.h +++ b/PowerEditor/src/resource.h @@ -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