Skip to content

Commit

Permalink
AU: 3 updated - Firefox mp3tag mpc-hc-clsid2
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Jun 11, 2024
1 parent 2f960cb commit 789b9c3
Show file tree
Hide file tree
Showing 10 changed files with 226 additions and 226 deletions.
4 changes: 2 additions & 2 deletions automatic/firefox/firefox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"latest": "126.0.1",
"esr": "115.11.0"
"latest": "127.0",
"esr": "115.12.0"
}
4 changes: 2 additions & 2 deletions automatic/firefox/firefox.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<version>126.0.1</version>
<version>127.0</version>
<authors>Mozilla</authors>
<projectUrl>https://www.mozilla.org/en-US/firefox/new/</projectUrl>
<projectSourceUrl>https://hg.mozilla.org/mozilla-central/</projectSourceUrl>
Expand Down Expand Up @@ -63,7 +63,7 @@ Command-line options for installer configuration. See the [official page](https:
]]></description>
<summary>Bringing together all kinds of awesomeness to make browsing better for you</summary>
<tags>browser mozilla firefox admin foss cross-platform</tags>
<releaseNotes>https://www.mozilla.org/en-US/firefox/126.0.1/releasenotes/</releaseNotes>
<releaseNotes>https://www.mozilla.org/en-US/firefox/127.0/releasenotes/</releaseNotes>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/firefox</packageSourceUrl>
<dependencies>
<dependency id="chocolatey-core.extension" version="1.3.3" />
Expand Down
408 changes: 204 additions & 204 deletions automatic/firefox/tools/LanguageChecksums.csv

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions automatic/firefox/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ $softwareName = 'Mozilla Firefox'

$pp = Get-PackageParameters

$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '126.0.1')
$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '127.0')

if (Get-32bitOnlyInstalled -product $softwareName) {
Write-Output $(
Expand Down Expand Up @@ -62,15 +62,15 @@ else {
softwareName = "$softwareName*"
Checksum = $checksums.Win32
ChecksumType = 'sha512'
Url = "https://download.mozilla.org/?product=firefox-126.0.1-ssl&os=win&lang=${locale}"
Url = "https://download.mozilla.org/?product=firefox-127.0-ssl&os=win&lang=${locale}"
silentArgs = "$sa /S"
validExitCodes = @(0)
}

if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
$packageArgs.Checksum64 = $checksums.Win64
$packageArgs.ChecksumType64 = 'sha512'
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-126.0.1-ssl&os=win64&lang=${locale}"
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-127.0-ssl&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs
Expand Down
8 changes: 4 additions & 4 deletions automatic/mp3tag/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <https://community.mp3tag.de/t/mp3tag-development-build-status/455>
and can be verified by doing the following:

1. Download the following:
32-Bit software: <http://download.mp3tag.de/mp3tagv326setup.exe>
64-Bit software: <http://download.mp3tag.de/mp3tagv326-x64-setup.exe>
32-Bit software: <http://download.mp3tag.de/mp3tagv326asetup.exe>
64-Bit software: <http://download.mp3tag.de/mp3tagv326a-x64-setup.exe>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

checksum type: sha256
checksum32: AE1BA0D8B3F73C53A0F12886590E2D6D6159769C1BC99579C3C3CC0E46F07972
checksum64: 02A277625061D2999A9AF143D84B8D76387CF5683D11BAEB599BC4A5DF0E615E
checksum32: C4D7B1B5A5CBDD9CD705F7947D5B751F02E0B63CABDB1FCDCEC79E6E8AA30C1E
checksum64: 6529ABE5BF4FDFF33D82B68E0B0FD136A591FF87556B5794D32517029596AE60

The file 'LICENSE.txt' has been obtained from <http://help.mp3tag.de/misc_license.html>
2 changes: 1 addition & 1 deletion automatic/mp3tag/mp3tag.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>mp3tag</id>
<version>3.26</version>
<version>3.26.1-beta</version>
<title>Mp3tag</title>
<owners>chocolatey-community</owners>
<authors>Florian Heidenreich</authors>
Expand Down
4 changes: 2 additions & 2 deletions automatic/mp3tag/tools/ChocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ New-Item $iniFile -type file -force -value $iniContent
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
file = "$toolsPath\mp3tagv326setup.exe"
file64 = "$toolsPath\mp3tagv326-x64-setup.exe"
file = "$toolsPath\mp3tagv326asetup.exe"
file64 = "$toolsPath\mp3tagv326a-x64-setup.exe"
silentArgs = "/S"
validExitCodes = @(0)
}
Expand Down
10 changes: 5 additions & 5 deletions automatic/mpc-hc-clsid2/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The embedded software have been downloaded from the listed download
location on <https://github.com/clsid2/mpc-hc/releases/tag/2.2.1>
location on <https://github.com/clsid2/mpc-hc/releases/tag/2.3.0>
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://github.com/clsid2/mpc-hc/releases/download/2.2.1/MPC-HC.2.2.1.x86.exe>
64-Bit software: <https://github.com/clsid2/mpc-hc/releases/download/2.2.1/MPC-HC.2.2.1.x64.exe>
32-Bit software: <https://github.com/clsid2/mpc-hc/releases/download/2.3.0/MPC-HC.2.3.0.x86.exe>
64-Bit software: <https://github.com/clsid2/mpc-hc/releases/download/2.3.0/MPC-HC.2.3.0.x64.exe>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

checksum type: sha256
checksum32: 643629286DA58FCF17047721ACC4B9C395282AFFBEA28E9D389D0EEA284FCF2B
checksum64: 626B31239A0534B23ABD15DD60BA12275BCA12DE32561C206E96A96DFE6A6E44
checksum32: 16913AAA2E78CBB08AAE6425415F1837FBD78248D7F39A292CFAAAB3A499F721
checksum64: E4B14E3E677D8A1203603BFDAD57AD39D68DEC9EB44D548C9BAA72A4E02C708A

The file 'LICENSE.txt' has been obtained from <https://www.gnu.org/licenses/gpl.txt>
2 changes: 1 addition & 1 deletion automatic/mpc-hc-clsid2/mpc-hc-clsid2.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>mpc-hc-clsid2</id>
<version>2.2.1</version>
<version>2.3.0</version>
<title>MPC-HC (fork by clsid2)</title>
<owners>chocolatey-community,jack1142</owners>
<authors>clsid2, MPC-HC Team</authors>
Expand Down
4 changes: 2 additions & 2 deletions automatic/mpc-hc-clsid2/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ $toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
file = "$toolsPath\MPC-HC.2.2.1.x86.exe"
file64 = "$toolsPath\MPC-HC.2.2.1.x64.exe"
file = "$toolsPath\MPC-HC.2.3.0.x86.exe"
file64 = "$toolsPath\MPC-HC.2.3.0.x64.exe"
softwareName = 'MPC-HC*'
silentArgs = "/VERYSILENT /NORESTART /SUPPRESSMSGBOXES /SP- /LOG=`"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).InnoInstall.log`""
validExitCodes = @(0)
Expand Down

0 comments on commit 789b9c3

Please sign in to comment.