Skip to content

Commit

Permalink
update known information for KeePass to version 2.57
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Jun 1, 2024
1 parent 144545c commit 4f41243
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 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 KeePass installers.

## Version 2024.05.30.0

__[changes]__
Expand Down
10 changes: 5 additions & 5 deletions updater/software/KeePass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ public KeePass(bool autoGetNewer)
/// <summary>
/// publisher of signed binaries
/// </summary>
private const string publisherX509 = "[email protected], CN=\"Open Source Developer, Dominik Reichl\", O=Open Source Developer, L=Metzingen, C=DE";
private const string publisherX509 = "CN=\"Open Source Developer, Dominik Reichl\", O=Open Source Developer, L=Metzingen, S=Baden-Württemberg, C=DE";


/// <summary>
/// expiration date of certificate
/// </summary>
private static readonly DateTime certificateExpiration = new(2024, 2, 6, 8, 28, 53, DateTimeKind.Utc);
private static readonly DateTime certificateExpiration = new(2025, 2, 6, 15, 2, 0, DateTimeKind.Utc);


/// <summary>
Expand All @@ -65,13 +65,13 @@ public override AvailableSoftware knownInfo()
{
var signature = new Signature(publisherX509, certificateExpiration);
return new AvailableSoftware("KeePass",
"2.56",
"2.57",
"^KeePass Password Safe [2-9]\\.[0-9]{2}(\\.[0-9]+)?$",
null,
new InstallInfoExe(
"https://netcologne.dl.sourceforge.net/project/keepass/KeePass%202.x/2.56/KeePass-2.56-Setup.exe",
"https://netcologne.dl.sourceforge.net/project/keepass/KeePass%202.x/2.57/KeePass-2.57-Setup.exe",
HashAlgorithm.SHA256,
"92529DC0 E6449ECA 21688601 02045550 54628192 17B8E8D5 1F6E7B1D D05A69EF",
"EA53F7F9 44FADA95 0CD7BB15 4DEB0781 23A357B7 BC5E2484 851762B3 552EB48B",
signature,
"/VERYSILENT"),
// There is no 64 bit installer yet.
Expand Down

0 comments on commit 4f41243

Please sign in to comment.