Skip to content

Commit

Permalink
AU: 5 updated - Firefox mp3tag prey tor-browser Waterfox
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Jan 23, 2024
1 parent 573edef commit 445c396
Show file tree
Hide file tree
Showing 17 changed files with 237 additions and 237 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": "121.0.1",
"esr": "115.6.0"
"latest": "122.0",
"esr": "115.7.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>121.0.1</version>
<version>122.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/121.0.1/releasenotes/</releaseNotes>
<releaseNotes>https://www.mozilla.org/en-US/firefox/122.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 '121.0.1')
$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '122.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-121.0.1-ssl&os=win&lang=${locale}"
Url = "https://download.mozilla.org/?product=firefox-122.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-121.0.1-ssl&os=win64&lang=${locale}"
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-122.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/mp3tagv323dsetup.exe>
64-Bit software: <http://download.mp3tag.de/mp3tagv323d-x64-setup.exe>
32-Bit software: <http://download.mp3tag.de/mp3tagv323esetup.exe>
64-Bit software: <http://download.mp3tag.de/mp3tagv323e-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: 5831FCF89A6872E35DE1A2DCFCF465AEA00A8A10899D93F819B2488BF1C33B76
checksum64: 12A64A174268791CDB7B4194ED8B9CBE8559D183287E1D3065158CA8745768B5
checksum32: 21F835E72243D7E6F62F299EF6B67D03B80941580E3AEF58B6F49393B3397582
checksum64: FFA315A76E2A00269583FAFC6647C9F2B28ABD9FC088668AB4595D40BDCEC5C2

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.23.4-beta</version>
<version>3.23.5-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\mp3tagv323dsetup.exe"
file64 = "$toolsPath\mp3tagv323d-x64-setup.exe"
file = "$toolsPath\mp3tagv323esetup.exe"
file64 = "$toolsPath\mp3tagv323e-x64-setup.exe"
silentArgs = "/S"
validExitCodes = @(0)
}
Expand Down
8 changes: 4 additions & 4 deletions automatic/prey/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <>
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://github.com/prey/prey-node-client/releases/download/v1.12.0/prey-windows-1.12.0-x86.msi>
64-Bit software: <https://github.com/prey/prey-node-client/releases/download/v1.12.0/prey-windows-1.12.0-x64.msi>
32-Bit software: <https://github.com/prey/prey-node-client/releases/download/v1.12.1/prey-windows-1.12.1-x86.msi>
64-Bit software: <https://github.com/prey/prey-node-client/releases/download/v1.12.1/prey-windows-1.12.1-x64.msi>
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: A6D1839DCEABF60A14A5FBBDB37F3AF60B8A631B760DD23A2F4675CE333CAD19
checksum64: 98BBAD81B94607B7EAD3DE979580E4B28A58CC9BEC930818D48EF7E7BF7B5399
checksum32: 1D8EC93D5731932D392D83CA505262C41EB24659B972EA5F5750AF8B37545130
checksum64: A488A43C3F4800A345F6B30429A5711B7ECAE725D46A3539EC2BA5247497586A

The file 'LICENSE.txt' has been obtained from <https://github.com/prey/prey-node-client/blob/master/license.txt>
2 changes: 1 addition & 1 deletion automatic/prey/prey.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"1.9": "1.9.24",
"1.10": "1.10.10",
"1.11": "1.11.10",
"1.12": "1.12.0"
"1.12": "1.12.1"
}
4 changes: 2 additions & 2 deletions automatic/prey/prey.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>prey</id>
<version>1.12.0</version>
<version>1.12.1</version>
<title>Prey</title>
<owners>chocolatey-community</owners>
<authors>Fork Ltd</authors>
Expand All @@ -21,7 +21,7 @@ Prey lets you keep track of your laptop, phone and tablet whenever stolen or mis
- You may need to run `C:\Windows\Prey\current\bin\prey config gui -f` after installation to configure Prey.
]]></description>
<summary>Prey is a lightweight application to track a laptop or mobile if it gets stolen or missing.</summary>
<releaseNotes>https://github.com/prey/prey-node-client/releases/tag/v1.12.0</releaseNotes>
<releaseNotes>https://github.com/prey/prey-node-client/releases/tag/v1.12.1</releaseNotes>
<tags>prey anti-theft lockdown tracking admin foss cross-platform</tags>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/prey</packageSourceUrl>
<projectSourceUrl>https://github.com/prey/prey-node-client</projectSourceUrl>
Expand Down
4 changes: 2 additions & 2 deletions automatic/prey/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ $toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'msi'
file = "$toolsPath\prey-windows-1.12.0-x86.msi"
file64 = "$toolsPath\prey-windows-1.12.0-x64.msi"
file = "$toolsPath\prey-windows-1.12.1-x86.msi"
file64 = "$toolsPath\prey-windows-1.12.1-x64.msi"
softwareName = 'prey*'
silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
validExitCodes = @(0, 2010, 1641)
Expand Down
8 changes: 4 additions & 4 deletions automatic/tor-browser/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ $destinationFolder = GetInstallDirectory -toolsPath $toolsDir
$packageArgs = @{
PackageName = 'tor-browser'
FileType = 'exe'
Url = 'https://archive.torproject.org/tor-package-archive/torbrowser/13.0.8/tor-browser-windows-i686-portable-13.0.8.exe'
Url64 = 'https://archive.torproject.org/tor-package-archive/torbrowser/13.0.8/tor-browser-windows-x86_64-portable-13.0.8.exe'
Checksum = '154d0b1c61bdef015759d41f1ecf005f92e1474439da241d94fad3b2679202b7'
Checksum64 = '6c28f95f6485c8dd771f9290b1ed049523f4c41d8fb1594aeefc8a515388d30c'
Url = 'https://archive.torproject.org/tor-package-archive/torbrowser/13.0.9/tor-browser-windows-i686-portable-13.0.9.exe'
Url64 = 'https://archive.torproject.org/tor-package-archive/torbrowser/13.0.9/tor-browser-windows-x86_64-portable-13.0.9.exe'
Checksum = '623d49650e0cbf81d6c04fb2f4e650b4ecce9ae3d9b1b30d69420cd61d793692'
Checksum64 = '73b3d43f1d7940714e19e0f58c55682d46cf7e1c062a95b9327244b9894eddf9'
ChecksumType = 'sha256'
SilentArgs = "/S","/D=$destinationFolder"
}
Expand Down
2 changes: 1 addition & 1 deletion automatic/tor-browser/tor-browser.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>tor-browser</id>
<version>13.0.8</version>
<version>13.0.9</version>
<title>Tor Browser</title>
<owners>chocolatey-community</owners>
<authors>Tor Project</authors>
Expand Down
4 changes: 2 additions & 2 deletions automatic/waterfox/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ in verifying that this package's contents are trustworthy.
The installer has been downloaded from their official download link listed on <>
and can be verified like this:

1. Download <https://cdn1.waterfox.net/waterfox/releases/G6.0.7/WINNT_x86_64/Waterfox%20Setup%20G6.0.7.exe>
1. Download <https://cdn1.waterfox.net/waterfox/releases/G6.0.8/WINNT_x86_64/Waterfox%20Setup%20G6.0.8.exe>
2. Then use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type: sha256
checksum: 1DD3E27173FB6CF7D6760D3C15F5D7C20B95163133E8E55B2F5DD414ABAE1DC5
checksum: A3BABCA9CD93D95D2D3C77BAA1A09F91EA08BB3A889AB695191E53112F4E709E

File 'LICENSE.md' is obtained from <https://github.com/MrAlex94/Waterfox/blob/1bc2fb60abf0fa173b69ca94f660115d76f09f4f/LICENSE>
2 changes: 1 addition & 1 deletion automatic/waterfox/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ $packageArgs = @{
packageName = 'Waterfox'
fileType = 'exe'
softwareName = 'Waterfox*'
file = "$toolsDir\Waterfox Setup G6.0.7_x64.exe"
file = "$toolsDir\Waterfox Setup G6.0.8_x64.exe"
silentArgs = "/S"
validExitCodes= @(0)
}
Expand Down
2 changes: 1 addition & 1 deletion automatic/waterfox/waterfox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"current": "24016.0.7",
"current": "24016.0.8",
"classic": "2022.11"
}
2 changes: 1 addition & 1 deletion automatic/waterfox/waterfox.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Waterfox</id>
<version>24016.0.7</version>
<version>24016.0.8</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/waterfox</packageSourceUrl>
<owners>chocolatey-community,tonigellida,admiringworm</owners>
<title>Waterfox</title>
Expand Down

0 comments on commit 445c396

Please sign in to comment.