Skip to content

Commit

Permalink
update known information for VLC media player to version 3.0.21
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Jun 10, 2024
1 parent bcfc4d0 commit 11aca7a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ improvements may be omitted.)_
__[maintenance]__

* Update certificate information for KeePass installers.
* Update certificate information for VLC media player installers.

## Version 2024.05.30.0

Expand Down
10 changes: 5 additions & 5 deletions updater/software/VLC.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
This file is part of the updater command line interface.
Copyright (C) 2017, 2018, 2019, 2020, 2021, 2022 Dirk Stolle
Copyright (C) 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Dirk Stolle
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -55,7 +55,7 @@ public VLC(bool autoGetNewer)
/// <summary>
/// certificate expiration date
/// </summary>
private static readonly DateTime certificateExpiration = new(2023, 12, 18, 23, 59, 59, DateTimeKind.Utc);
private static readonly DateTime certificateExpiration = new(2027, 6, 8, 23, 59, 59, DateTimeKind.Utc);


/// <summary>
Expand All @@ -66,7 +66,7 @@ public VLC(bool autoGetNewer)
public override AvailableSoftware knownInfo()
{
var signature = new Signature(publisherX509, certificateExpiration);
const string version = "3.0.20";
const string version = "3.0.21";
return new AvailableSoftware("VLC media player",
version,
"^VLC media player$",
Expand All @@ -75,14 +75,14 @@ public override AvailableSoftware knownInfo()
new InstallInfoExe(
"https://get.videolan.org/vlc/" + version + "/win32/vlc-" + version + "-win32.exe",
HashAlgorithm.SHA256,
"e197583514fa600f24a3b88cf6b24102c5c09dc39bad6ac9626bd55f23ff9def",
"4bd03202b6633f9611b3fc8757880a9b2b38c7c0c40ed6bcbefec71c0099d493",
signature,
"/S"),
// 64 bit installer
new InstallInfoExe(
"https://get.videolan.org/vlc/" + version + "/win64/vlc-" + version + "-win64.exe",
HashAlgorithm.SHA256,
"d8055b6643651ca5b9ad58c438692a481483657f3f31624cdfa68b92e8394a57",
"9742689a50e96ddc04d80ceff046b28da2beefd617be18166f8c5e715ec60c59",
signature,
"/S")
);
Expand Down

0 comments on commit 11aca7a

Please sign in to comment.