Skip to content

Commit

Permalink
AU: 2 updated - dropbox Firefox
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
Chocolatey Community committed Mar 5, 2024
1 parent 53f87c4 commit 40bec9b
Show file tree
Hide file tree
Showing 7 changed files with 217 additions and 217 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": "194.3.6258-beta",
"stable": "193.4.5594"
"stable": "194.4.6267"
}
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>194.3.6258-beta</version>
<version>194.4.6267</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 = '194.3.6258'
$version = '194.4.6267'

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/Dropbox%20194.3.6258%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20194.3.6258%20Offline%20Installer.x64.exe'
checksum = '5735073a7a946d86a11a4e2c699361da905537e830bc6f51201a090b95360419'
checksum64 = '5eaae33bec7789f1de31884207e8996b474d627e1a66b46f65d694c1aaecedd8'
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20194.4.6267%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20194.4.6267%20Offline%20Installer.x64.exe'
checksum = '9824ef2c3fe76f3c55553efb344f8e75a2a545f83768d3a3198e74245fc10292'
checksum64 = 'a6048688b5a981a396710f3dcbe55710dd598ba0c5507c74ba9277226418b346'
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": "123.0",
"latest": "123.0.1",
"esr": "115.8.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>123.0</version>
<version>123.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/123.0/releasenotes/</releaseNotes>
<releaseNotes>https://www.mozilla.org/en-US/firefox/123.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
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 '123.0')
$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '123.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-123.0-ssl&os=win&lang=${locale}"
Url = "https://download.mozilla.org/?product=firefox-123.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-123.0-ssl&os=win64&lang=${locale}"
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-123.0.1-ssl&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs
Expand Down

0 comments on commit 40bec9b

Please sign in to comment.