Skip to content

Commit

Permalink
AU: 4 updated - dropbox GoogleChrome googlechromebeta Waterfox
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Nov 1, 2023
1 parent 84f61c5 commit 4b4427f
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 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": "186.3.6190-beta",
"beta": "187.3.5526-beta",
"stable": "186.4.6207"
}
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>186.4.6207</version>
<version>187.3.5526-beta</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 = '186.4.6207'
$version = '187.3.5526'

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%20186.4.6207%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20186.4.6207%20Offline%20Installer.x64.exe'
checksum = 'a22d81a4a0050fef5e57e3c31c2a45e1eefb6618469ca8cff18d95de4e4cca21'
checksum64 = '7c7db820024463a422bc1bb12340ac8bf222ff617baab1c4d31436037600fa84'
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20187.3.5526%20Offline%20Installer.x86.exe'
url64 = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20187.3.5526%20Offline%20Installer.x64.exe'
checksum = 'b4f5f0b4642967a49d02b18d23a0d9181de64c2933c306cccb86a64d87e38c8f'
checksum64 = '6ad7d2a3e1f36cf8b16fdbe3c23511f08978c8cf7b684b2248b16af0cae07349'
fileType = 'exe'
checksumType = 'sha256'
checksumType64 = 'sha256'
Expand Down
2 changes: 1 addition & 1 deletion automatic/googlechrome/googlechrome.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>GoogleChrome</id>
<version>118.0.5993.118</version>
<version>119.0.6045.106</version>
<title>Google Chrome</title>
<owners>chocolatey-community</owners>
<authors>Google LLC.</authors>
Expand Down
6 changes: 3 additions & 3 deletions automatic/googlechrome/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

$version = '118.0.5993.118'
$version = '119.0.6045.106'
if ($version -eq (Get-ChromeVersion)) {
Write-Host "Google Chrome $version is already installed."
return
Expand All @@ -12,8 +12,8 @@ $packageArgs = @{
fileType = 'MSI'
url = 'https://dl.google.com/tag/s/dl/chrome/install/googlechromestandaloneenterprise.msi'
url64bit = 'https://dl.google.com/tag/s/dl/chrome/install/googlechromestandaloneenterprise64.msi'
checksum = '31efe0bd7c88f2b2effebfa722a8e434f23654a87296acbfd524b857b58bc55c'
checksum64 = '541ad4a465003ae292d3e34b8463cf708374dac6f42a931d770be1ede57f4331'
checksum = '2bf8e0a9a57c537e0def3a5c9a2619c4a9c15989e775290d575f3714289795d0'
checksum64 = 'f6e8b755895ccaf15690b56a336e325054b3a3269b51d9918352a01ae252b7fb'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = "/quiet /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
Expand Down
2 changes: 1 addition & 1 deletion automatic/googlechromebeta/googlechromebeta.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>googlechromebeta</id>
<version>119.0.6045.59-beta</version>
<version>119.0.6045.105-beta</version>
<title>Google Chrome Beta</title>
<owners>chocolatey-community,nsleigh</owners>
<authors>Google LLC.</authors>
Expand Down
6 changes: 3 additions & 3 deletions automatic/googlechromebeta/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

$version = '119.0.6045.59-beta'
$version = '119.0.6045.105-beta'
if ($version -eq (Get-ChromeBetaVersion)) {
Write-Host "Google Chrome Beta $version is already installed."
return
Expand All @@ -12,8 +12,8 @@ $packageArgs = @{
fileType = 'MSI'
url = 'https://dl.google.com/tag/s/dl/chrome/install/beta/googlechromebetastandaloneenterprise.msi'
url64bit = 'https://dl.google.com/tag/s/dl/chrome/install/beta/googlechromebetastandaloneenterprise64.msi'
checksum = '28215da330221a883b08e9b98f62256a5721a53794c6b26ba667f534136b4f5c'
checksum64 = '0630df11e11a397168cf2e4e3c1e723224498070440cae73692118f3253284a9'
checksum = '93065124d2a130c7ed1b196dede870282906dda89debc743a0bac8886137f38f'
checksum64 = 'f95346581ee72a03fdb25e66117429435fef13491eb1144c3de0a26316ff357b'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = "/quiet /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
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": "23106.0.5",
"current": "23116.0.5",
"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>23106.0.5</version>
<version>23116.0.5</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 4b4427f

Please sign in to comment.