Skip to content

Commit

Permalink
AU: 4 updated - chromium dropbox googlechromebeta vim
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Nov 19, 2021
1 parent 7dc7cb2 commit f8b9867
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"snapshots": "98.0.4713.0-snapshots",
"snapshots": "98.0.4714.0-snapshots",
"stable": "96.0.4664.45"
}
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.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>chromium</id>
<version>98.0.4713.0-snapshots</version>
<version>98.0.4714.0-snapshots</version>
<title>Chromium Snapshots</title>
<owners>chocolatey-community</owners>
<authors>The Chromium Authors</authors>
Expand Down
8 changes: 4 additions & 4 deletions automatic/chromium/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <https://github.com/henrypp/chromium/releases/> (the listed mirrors
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/942947/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/942954/mini_installer.exe>
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/943255/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/943252/mini_installer.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: 1F371C870484F89CE3F4C6649FD5B044C58BA2A30D68B3DBCB35FD9A19F7D421
checksum64: 25C781D7B6D8767E827B2F0F19A1D56D496F27CF2FF3C8E4B4CD1C0C2104CB59
checksum32: B32B9EA9CE019C9033FAF1B97E9301E1B9652A346F908A5E428E09E5ABB20DB5
checksum64: 664194336F375F3507F7AA2AFF5C86C6ABF3697829637C7CC566E60B1B169D93

The file 'LICENSE.txt' has been obtained from <https://chromium.googlesource.com/chromium/src.git/+/master/LICENSE>
2 changes: 1 addition & 1 deletion automatic/chromium/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$scriptDir=$toolsDir = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
. (Join-Path $scriptDir 'helper.ps1')

$version = "98.0.4713.0-snapshots"
$version = "98.0.4714.0-snapshots"
$hive = "hkcu"
$chromium_string = "\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Chromium"
$Chromium = $hive + ":" + $chromium_string
Expand Down
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": "136.3.4318-beta",
"beta": "136.3.4333-beta",
"stable": "135.4.4221"
}
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>136.3.4318-beta</version>
<version>136.3.4333-beta</version>
<title>Dropbox</title>
<authors>Dropbox</authors>
<owners>chocolatey-community,ferventcoder,the-running-dev</owners>
Expand Down
6 changes: 3 additions & 3 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 = '136.3.4318'
$version = '136.3.4333'

if (!(IsVersionAlreadyInstalled $version)) {
$stop_dropbox = if (Get-Process -Name Dropbox -ErrorAction SilentlyContinue) { $false } else { $true }
Expand All @@ -13,8 +13,8 @@ if (!(IsVersionAlreadyInstalled $version)) {
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = "Dropbox"
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20136.3.4318%20Offline%20Installer.exe'
checksum = '4ca6615e3cde3562f3f0bf75f40cabcb3b65932abab3625c997d9d1dd4702f4c'
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20136.3.4333%20Offline%20Installer.exe'
checksum = '119bcdab44a11e053bffe02725aeb3f5be807fec44aaf7d276d807cb29f8ce84'
fileType = 'exe'
checksumType = 'sha256'
silentArgs = '/s'
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>96.0.4664.45-beta</version>
<version>97.0.4692.20-beta</version>
<title>Google Chrome Beta</title>
<owners>chocolatey-community,nsleigh</owners>
<authors>Google Inc.</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 = '96.0.4664.45-beta'
$version = '97.0.4692.20-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 = '5c7a2064160d3f27017229c1d7312c597d956c85d5fd81eb1163300d65c69bb9'
checksum64 = '2ffeff6ddbdc089082df39937bbee3b997a03ca39204bc342f9b9f5dd94ee33d'
checksum = 'f831b26d3a62c40cdc2dfb5d7a23e3064f7c03854e654db90f277c668738abdd'
checksum64 = 'ed32a91de13e2fa6f98be0e1a5a8f5b6926607b69b1054f1102f7c05a6795fde'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = "/quiet /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
Expand Down
8 changes: 4 additions & 4 deletions automatic/vim/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ in verifying that this package's contents are trustworthy.
The embedded software have been downloaded from GitHub and can be verified like this:

1. Download the following zips:
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.3614/gvim_8.2.3614_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.3614/gvim_8.2.3614_x64.zip>
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.3619/gvim_8.2.3619_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.3619/gvim_8.2.3619_x64.zip>
2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'

checksum32: 0C9CDB4D3FB46D04CB7602D43E318EFDD8E9175AF43BA5A3CEF6338611046656
checksum64: 0264A39BA83542CB65A2EA8BA91251E208C73193D5E5504A1006066A56981E64
checksum32: CC20C5150D5AAB0B293B30C0A7E2486CFD443DA07A93B77D1F9435C2D25C5EE2
checksum64: 975327D9AB310A22DA42232DB769554BDCECD423EBCF3B1D37C7484377824F40
4 changes: 2 additions & 2 deletions automatic/vim/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ $installDir = Get-InstallDir
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $installDir
file = "$toolsDir\gvim_8.2.3614_x86.zip"
file64 = "$toolsDir\gvim_8.2.3614_x64.zip"
file = "$toolsDir\gvim_8.2.3619_x86.zip"
file64 = "$toolsDir\gvim_8.2.3619_x64.zip"
}

$installArgs = @{
Expand Down
2 changes: 1 addition & 1 deletion automatic/vim/vim.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>vim</id>
<title>Vim</title>
<version>8.2.3614</version>
<version>8.2.3619</version>
<authors>Bram Moolenaar, Vim Community</authors>
<owners>chocolatey-community, Rob Reynolds, matsuhav</owners>
<summary>Vim is an advanced text editor that seeks to provide the power of the de-facto Unix editor 'Vi', with a more complete feature set. It's useful whether you're already using vi or using a different editor.</summary>
Expand Down

0 comments on commit f8b9867

Please sign in to comment.