Skip to content

Commit

Permalink
AU: 2 updated - Firefox mp3tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Apr 10, 2019
1 parent 3bf868e commit f8f6a75
Show file tree
Hide file tree
Showing 7 changed files with 208 additions and 208 deletions.
2 changes: 1 addition & 1 deletion automatic/firefox/firefox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"latest": "66.0.2",
"latest": "66.0.3",
"esr": "60.6.1"
}
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>66.0.2</version>
<version>66.0.3</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 @@ -44,7 +44,7 @@
]]></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/66.0.2/releasenotes/</releaseNotes>
<releaseNotes>https://www.mozilla.org/en-US/firefox/66.0.3/releasenotes/</releaseNotes>
<packageSourceUrl>https://github.com/chocolatey/chocolatey-coreteampackages/tree/master/automatic/firefox</packageSourceUrl>
<dependencies>
<dependency id="chocolatey-core.extension" version="1.3.3" />
Expand Down
396 changes: 198 additions & 198 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 @@ -7,7 +7,7 @@ $toolsPath = Split-Path $MyInvocation.MyCommand.Definition
$packageName = 'Firefox'
$softwareName = 'Mozilla Firefox'

$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '66.0.2')
$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '66.0.3')

if (Get-32bitOnlyInstalled -product $softwareName) {
Write-Output $(
Expand All @@ -34,7 +34,7 @@ if ($alreadyInstalled -and ($env:ChocolateyForce -ne $true)) {

Checksum = $checksums.Win32
ChecksumType = 'sha512'
Url = "https://download.mozilla.org/?product=firefox-66.0.2-ssl&os=win&lang=${locale}"
Url = "https://download.mozilla.org/?product=firefox-66.0.3-ssl&os=win&lang=${locale}"

silentArgs = '-ms'
validExitCodes = @(0)
Expand All @@ -43,7 +43,7 @@ if ($alreadyInstalled -and ($env:ChocolateyForce -ne $true)) {
if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
$packageArgs.Checksum64 = $checksums.Win64
$packageArgs.ChecksumType64 = 'sha512'
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-66.0.2-ssl&os=win64&lang=${locale}"
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-66.0.3-ssl&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs
Expand Down
4 changes: 2 additions & 2 deletions automatic/mp3tag/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ 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/mp3tagv294csetup.exe>
32-Bit software: <http://download.mp3tag.de/mp3tagv294dsetup.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: 95EE7DEDDED73A622A1F6868ADFE16161815188CF78943CCD19D119D74D96F06
checksum32: 391EB3BAF0634178184A25693090DA0A00DB95B4F32BB928D287B0FE849118DD

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>2.94.3-beta</version>
<version>2.94.4-beta</version>
<title>Mp3tag</title>
<owners>chocolatey</owners>
<authors>Florian Heidenreich</authors>
Expand Down
2 changes: 1 addition & 1 deletion automatic/mp3tag/tools/ChocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ New-Item $iniFile -type file -force -value $iniContent
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
file = "$toolsPath\mp3tagv294csetup.exe"
file = "$toolsPath\mp3tagv294dsetup.exe"
silentArgs = "/S"
validExitCodes = @(0)
}
Expand Down

0 comments on commit f8f6a75

Please sign in to comment.