Skip to content

Commit

Permalink
AU: 3 updated - dropbox Firefox tor-browser
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Feb 20, 2024
1 parent ed15b6a commit 47b0817
Show file tree
Hide file tree
Showing 9 changed files with 223 additions and 223 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": "193.3.5557-beta",
"stable": "192.4.4605"
"stable": "193.4.5594"
}
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>193.3.5557-beta</version>
<version>193.4.5594</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 = '193.3.5557'
$version = '193.4.5594'

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%20193.3.5557%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20193.3.5557%20Offline%20Installer.x64.exe'
checksum = '71c117a6e254e0501060c2ecbacacaf5f15fbf8e5459b52707dd1a240ad62f11'
checksum64 = '7cbbbae4147e804e4045be5bb3f59f47e367962c849b19d809d2c30eb3568f7c'
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20193.4.5594%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20193.4.5594%20Offline%20Installer.x64.exe'
checksum = 'f9d3184a72f84695b4975be1d820063789bd00ec4fd40131d85a904e15fb6515'
checksum64 = 'b5e5f2646d3dad32f386d949ba25058f8764d3b227a2d8c3e2b96e4b6a350445'
fileType = 'exe'
checksumType = 'sha256'
checksumType64 = 'sha256'
Expand Down
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": "122.0.1",
"esr": "115.7.0"
"latest": "123.0",
"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>122.0.1</version>
<version>123.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/122.0.1/releasenotes/</releaseNotes>
<releaseNotes>https://www.mozilla.org/en-US/firefox/123.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 '122.0.1')
$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '123.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-122.0.1-ssl&os=win&lang=${locale}"
Url = "https://download.mozilla.org/?product=firefox-123.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-122.0.1-ssl&os=win64&lang=${locale}"
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-123.0-ssl&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs
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.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'
Url = 'https://archive.torproject.org/tor-package-archive/torbrowser/13.0.10/tor-browser-windows-i686-portable-13.0.10.exe'
Url64 = 'https://archive.torproject.org/tor-package-archive/torbrowser/13.0.10/tor-browser-windows-x86_64-portable-13.0.10.exe'
Checksum = '96c8dba8d45feb7d045d7170227db36b28165be5afb4f8636887d9c3f725cebf'
Checksum64 = '823fff049e410c302c90fc2b81bad5e7a7b28af2096dd0d28a41f2ab0f854ea6'
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.9</version>
<version>13.0.10</version>
<title>Tor Browser</title>
<owners>chocolatey-community</owners>
<authors>Tor Project</authors>
Expand Down

0 comments on commit 47b0817

Please sign in to comment.