From 4b53304f9a449c5609318e0c269580a8305f651f Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Sat, 11 May 2024 20:21:04 +0200 Subject: [PATCH] update known information for Notepad++ to version 8.6.6 --- updater/software/NotepadPlusPlus.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/updater/software/NotepadPlusPlus.cs b/updater/software/NotepadPlusPlus.cs index 670679db..f946693c 100644 --- a/updater/software/NotepadPlusPlus.cs +++ b/updater/software/NotepadPlusPlus.cs @@ -68,8 +68,8 @@ public override AvailableSoftware knownInfo() { var signature = new Signature(publisherX509, certificateExpiration); // Both version and tag are usually the same, except for major releases like 8.0. - const string version = "8.6.5"; - const string tag = "8.6.5"; + const string version = "8.6.6"; + const string tag = "8.6.6"; return new AvailableSoftware("Notepad++", version, "^Notepad\\+\\+ \\(32\\-bit x86\\)$|^Notepad\\+\\+$", @@ -77,13 +77,13 @@ public override AvailableSoftware knownInfo() new InstallInfoExe( "https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v" + tag + "/npp." + version + ".Installer.exe", HashAlgorithm.SHA256, - "5180a17f24df75ccc000cdc2904b14c865ccfd7521909bf06cc75189a65c3e2f", + "732574cd602beb41c5bc74da6d660b3ce0fe53deed400e7d712073479129c99c", signature, "/S"), new InstallInfoExe( "https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v" + tag + "/npp." + version + ".Installer.x64.exe", HashAlgorithm.SHA256, - "eedf45e0803ce36c4b745e54fc7a7136d9b364c2a795e646548a4350cf88a366", + "b03d9ed51c1851c636174e45be0cbd197a896084423fde8bc23fc64b7a72ce28", signature, "/S") );