Skip to content

Commit

Permalink
update known information for Notepad++ to version 8.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed May 11, 2024
1 parent de57015 commit 4b53304
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions updater/software/NotepadPlusPlus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,22 +68,22 @@ 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\\+\\+$",
"^Notepad\\+\\+ \\(64\\-bit x64\\)$",
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")
);
Expand Down

0 comments on commit 4b53304

Please sign in to comment.