Skip to content

Commit

Permalink
AU: 4 updated - dropbox Firefox mp3tag palemoon
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Mar 21, 2023
1 parent 131d919 commit 66d05e4
Show file tree
Hide file tree
Showing 12 changed files with 225 additions and 225 deletions.
2 changes: 1 addition & 1 deletion automatic/dropbox/dropbox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"beta": "170.3.5866-beta",
"stable": "169.4.5684"
"stable": "170.4.5895"
}
2 changes: 1 addition & 1 deletion automatic/dropbox/dropbox.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>dropbox</id>
<version>170.3.5866-beta</version>
<version>170.4.5895</version>
<title>Dropbox</title>
<authors>Dropbox</authors>
<owners>chocolatey-community,ferventcoder,the-running-dev</owners>
Expand Down
10 changes: 5 additions & 5 deletions automatic/dropbox/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if (!$PSScriptRoot) {
}
. "$PSScriptRoot\helper.ps1"

$version = '170.3.5866'
$version = '170.4.5895'

if (!(IsVersionAlreadyInstalled $version)) {
$stop_dropbox = if (Get-Process -Name Dropbox -ErrorAction SilentlyContinue) { $false } else { $true }
Expand All @@ -13,10 +13,10 @@ if (!(IsVersionAlreadyInstalled $version)) {
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = "Dropbox"
url = 'https://edge.dropboxstatic.com/dbx-releng/client/experimental/Dropbox%20170.3.5866%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/experimental/Dropbox%20170.3.5866%20Offline%20Installer.x64.exe'
checksum = '761240fdba5bf1c6fa3c6fb6885c7992d09ca192a4b11600c513ca24deda7fb7'
checksum64 = 'ba2c33062a70095a23264d659ebe2cffff4b973c945607247ce7992bb44bad77'
url = 'https://edge.dropboxstatic.com/dbx-releng/client/experimental/Dropbox%20170.4.5895%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/experimental/Dropbox%20170.4.5895%20Offline%20Installer.x64.exe'
checksum = '0a8fd833b45e70507021a99cdb41285776206815f8f38150698fcd565b08f142'
checksum64 = '36d93dc400c543179e5e6bc07544298f93a692a9f6496fde0d6150f7638e2e7c'
fileType = 'exe'
checksumType = 'sha256'
checksumType64 = 'sha256'
Expand Down
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": "111.0",
"latest": "111.0.1",
"esr": "102.9.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>111.0</version>
<version>111.0.1</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/111.0/releasenotes/</releaseNotes>
<releaseNotes>https://www.mozilla.org/en-US/firefox/111.0.1/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
400 changes: 200 additions & 200 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 '111.0')
$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '111.0.1')

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-111.0-ssl&os=win&lang=${locale}"
Url = "https://download.mozilla.org/?product=firefox-111.0.1-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-111.0-ssl&os=win64&lang=${locale}"
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-111.0.1-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/mp3tagv319bsetup.exe>
64-Bit software: <http://download.mp3tag.de/mp3tagv319b-x64-setup.exe>
32-Bit software: <http://download.mp3tag.de/mp3tagv319csetup.exe>
64-Bit software: <http://download.mp3tag.de/mp3tagv319c-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: FBA861FE4E7B2D4BE324AD761C72EEE906D8BD84A08C135BF552EF60DD316A74
checksum64: E63DE99DEC914A03A0EBAD17031E953490916E73D32C904F36B50C577AE44432
checksum32: 3B5254EED4C08BE8524DA28F43F64B49A404D48067E6299623DAA1467B5D9B95
checksum64: 2096A9B688D73DBAF2AFE16629A592EC0B0E8D4DF708DD9FC85E48F7427B3B3E

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.19.2-beta</version>
<version>3.19.3-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\mp3tagv319bsetup.exe"
file64 = "$toolsPath\mp3tagv319b-x64-setup.exe"
file = "$toolsPath\mp3tagv319csetup.exe"
file64 = "$toolsPath\mp3tagv319c-x64-setup.exe"
silentArgs = "/S"
validExitCodes = @(0)
}
Expand Down
2 changes: 1 addition & 1 deletion automatic/palemoon/palemoon.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>palemoon</id>
<title>Pale Moon browser</title>
<version>32.0.1</version>
<version>32.1.0</version>
<authors>Moonchild Productions</authors>
<owners>chocolatey-community,Redsandro</owners>
<summary>A Firefox-based web browser optimized for modern hardware.</summary>
Expand Down
8 changes: 4 additions & 4 deletions automatic/palemoon/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
$packageArgs = @{
packageName = 'palemoon'
fileType = 'exe'
url = 'https://rm-eu.palemoon.org/release/palemoon-32.0.1.win32.installer.exe'
url64 = 'https://rm-eu.palemoon.org/release/palemoon-32.0.1.win64.installer.exe'
url = 'https://rm-eu.palemoon.org/release/palemoon-32.1.0.win32.installer.exe'
url64 = 'https://rm-eu.palemoon.org/release/palemoon-32.1.0.win64.installer.exe'

softwareName = 'Pale Moon*'

checksum = 'c81177e3032bc5d37251c78675a2dbb80bc91b5846149bed245caedcc275ab7e'
checksum = 'b835150b0aef83e3d168bc7a55b4fcff11b4ec87390e3c6e5a792498820cd9bb'
checksumType = 'sha256'
checksum64 = 'c824b5be4e3a5bb5984fcd967286a6fddad5ba5e4f956247d44d186bd111904c'
checksum64 = '4430a2d744620d6b85eb842715e72e698937e2e6e05fd02831b5da013b642d0f'
checksumType64= 'sha256'

silentArgs = "/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-"
Expand Down

0 comments on commit 66d05e4

Please sign in to comment.