Skip to content

Commit

Permalink
adjust moz-checksum-generator for new SeaMonkey website
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Mar 5, 2024
1 parent ee4bbc5 commit ae8c13b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions moz-checksum-generator/MainForm.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, 2020, 2021, 2022, 2023 Dirk Stolle
Copyright (C) 2017, 2018, 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 @@ -294,15 +294,15 @@ void getSmChecksums()
lblVersion.Text = "Version " + version;

/* Checksums are found in a file like
* https://archive.mozilla.org/pub/seamonkey/releases/2.53.17/SHA512SUMS.txt
* https://archive.seamonkey-project.org/releases/2.53.17/SHA512SUMS.txt
* Common lines look like
* 16695546e9a77cfebdb6e1dafe64f40a5f775116209f3c85e380439c32d3c320dd77129706def5c9592a2684009f1c060e370cac7098103c999b0969bc350748 sha512 40218176 win32/en-GB/seamonkey-2.53.17.en-GB.win32.installer.exe
* for the 32 bit installer, or like
* 6bcf4bf0c5ddef06e8345c012707eff1ebf81798c47dd737332bdedc2d5e69a39dd200ddfa63149d5e540de06eb3accf6f65063a57110dc6da9a731443f0108a sha512 43261904 win64/en-GB/seamonkey-2.53.17.en-GB.win64.installer.exe
* for the 64 bit installer.
*/

string url = "https://archive.mozilla.org/pub/seamonkey/releases/" + version + "/SHA512SUMS.txt";
string url = "https://archive.seamonkey-project.org/releases/" + version + "/SHA512SUMS.txt";
string sha512SumsContent;
using (var client = new HttpClient())
{
Expand Down
6 changes: 3 additions & 3 deletions moz-checksum-generator/moz-checksum-generator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>disable</ImplicitUsings>
<Description>Utility to generates checksums for Mozilla Firefox / SeaMonkey / Thunderbird setups.</Description>
<Copyright>Copyright © 2017-2023 Dirk Stolle</Copyright>
<FileVersion>1.2.0.0</FileVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<Copyright>Copyright © 2017-2024 Dirk Stolle</Copyright>
<FileVersion>1.2.1.0</FileVersion>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
</PropertyGroup>

Expand Down

0 comments on commit ae8c13b

Please sign in to comment.