Skip to content

Commit

Permalink
update known information for WinMerge to version 2.16.44
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Oct 28, 2024
1 parent d3afe76 commit 7a35619
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ _(Note: This changelog focuses on the major changes between the different
versions. Therefore, it may not contain all changes. Especially smaller fixes or
improvements may be omitted.)_

## Next Version

__[maintenance]__

* Update certificate information for WinMerge installers.

## Version 2024.10.25.0

__[new features]__
Expand Down
14 changes: 7 additions & 7 deletions updater/software/WinMerge.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ public WinMerge(bool autoGetNewer)
/// <summary>
/// publisher of signed binaries
/// </summary>
private const string publisherX509 = "[email protected], CN=Takashi Sawanaka, O=Takashi Sawanaka, S=Chiba, C=JP";
private const string publisherX509 = "CN=Takashi Sawanaka, O=Takashi Sawanaka, L=Chiba, S=Chiba, C=JP";


/// <summary>
/// expiration date of certificate
/// </summary>
private static readonly DateTime certificateExpiration = new(2024, 9, 9, 12, 15, 05, DateTimeKind.Utc);
private static readonly DateTime certificateExpiration = new(2027, 10, 18, 11, 02, 19, DateTimeKind.Utc);


/// <summary>
Expand All @@ -66,19 +66,19 @@ public override AvailableSoftware knownInfo()
{
var signature = new Signature(publisherX509, certificateExpiration);
return new AvailableSoftware("WinMerge",
"2.16.42.1",
"2.16.44",
"^WinMerge [0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+$",
"^WinMerge [0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+ x64$",
new InstallInfoExe(
"https://netcologne.dl.sourceforge.net/project/winmerge/stable/2.16.42.1/WinMerge-2.16.42.1-Setup.exe",
"https://netcologne.dl.sourceforge.net/project/winmerge/stable/2.16.44/WinMerge-2.16.44-Setup.exe",
HashAlgorithm.SHA256,
"0df72ad10ca01d21f15a0ee173a69bbd8f410f85a7c9738330b4d69628c1e3c1",
"66fa368cd3dfeace9e3eaca26c5c94147269adeb7f3e5be03490d3cb155a1580",
signature,
"/VERYSILENT /NORESTART"),
new InstallInfoExe(
"https://netcologne.dl.sourceforge.net/project/winmerge/stable/2.16.42.1/WinMerge-2.16.42.1-x64-Setup.exe",
"https://netcologne.dl.sourceforge.net/project/winmerge/stable/2.16.44/WinMerge-2.16.44-x64-Setup.exe",
HashAlgorithm.SHA256,
"5771f2a0553f53684b0e74161ed8749c4dda270f166edac253982366aee39bd3",
"055e960261fc31723856082d2bf1aec2bcc2c71f1ae2d759efec3d766affeaec",
signature,
"/VERYSILENT /NORESTART")
);
Expand Down

0 comments on commit 7a35619

Please sign in to comment.