From 2e638cf2f8b0044728e2ed5665bd67de0e62a667 Mon Sep 17 00:00:00 2001 From: Juan <93552629+P0rsche-911@users.noreply.github.com> Date: Mon, 12 Feb 2024 20:28:17 +0100 Subject: [PATCH] Update gup.rc Regarding this issue: https://github.com/notepad-plus-plus/notepad-plus-plus/issues/14668, I think it can be solved by changing line 75 and also, in line 81 I think it is "Cancel" rather than "Never", as it allows to try again from the "Update Notepad++" option inside the "?" symbol. It is possible that I am not doing it right. My idea is to collaborate, but I lack a lot of knowledge to do it correctly. I apologise for the possible mistakes. --- src/gup.rc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gup.rc b/src/gup.rc index e371b08d3..f6a25167a 100644 --- a/src/gup.rc +++ b/src/gup.rc @@ -1,5 +1,5 @@ /* - Copyright 2007 Don HO + Copyright 2024 Don HO This file is part of GUP. @@ -41,7 +41,7 @@ BEGIN VALUE "FileDescription", "GUP : a free (LGPL) Generic Updater\0" VALUE "FileVersion", VERSION_VALUE VALUE "InternalName", "gup.exe\0" - VALUE "LegalCopyright", "Copyright 2007 by Don HO\0" + VALUE "LegalCopyright", "Copyright 2024 by Don HO\0" VALUE "OriginalFilename", "gup.exe\0" VALUE "ProductName", "GUP\0" VALUE "ProductVersion", VERSION_VALUE @@ -72,11 +72,11 @@ END IDD_YESNONEVERDLG DIALOGEX 0, 0, 285, 94 STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU EXSTYLE WS_EX_TOOLWINDOW | WS_EX_WINDOWEDGE -CAPTION "Update available" +CAPTION "Notepad++ Updater" FONT 8, "MS Shell Dlg", 0, 0, 0x1 BEGIN LTEXT "An update package is available, do you want to download it?",IDC_YESNONEVERMSG,13,20,300,16 PUSHBUTTON "Yes",IDYES,50,60,50,14 PUSHBUTTON "No",IDNO,110,60,50,14 - PUSHBUTTON "Never",IDCANCEL,170,60,50,14 + PUSHBUTTON "Cancel",IDCANCEL,170,60,50,14 END