diff --git a/automatic/chromium/chromium.json b/automatic/chromium/chromium.json index 9a6d43b4df8..383bcaad301 100644 --- a/automatic/chromium/chromium.json +++ b/automatic/chromium/chromium.json @@ -1,4 +1,4 @@ { - "snapshots": "93.0.4537.0-snapshots", + "snapshots": "93.0.4538.0-snapshots", "stable": "91.0.4472.77" } diff --git a/automatic/chromium/chromium.nuspec b/automatic/chromium/chromium.nuspec index 98f7affdfeb..bf525d3de04 100644 --- a/automatic/chromium/chromium.nuspec +++ b/automatic/chromium/chromium.nuspec @@ -3,7 +3,7 @@ chromium - 93.0.4537.0-snapshots + 93.0.4538.0-snapshots Chromium Snapshots chocolatey-community The Chromium Authors diff --git a/automatic/chromium/legal/VERIFICATION.txt b/automatic/chromium/legal/VERIFICATION.txt index 5a897af1e6e..de381d38490 100644 --- a/automatic/chromium/legal/VERIFICATION.txt +++ b/automatic/chromium/legal/VERIFICATION.txt @@ -7,15 +7,15 @@ location on (the listed mirrors and can be verified by doing the following: 1. Download the following: - 32-Bit software: - 64-Bit software: + 32-Bit software: + 64-Bit software: 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: 0848E86F8B537D8DA842AEEA472234FAFD558BAE4EC254CE0B335B736ED23343 - checksum64: 721B80D80A043DF69C56F669BCEFFD70A11FF6EE86A75E4E1C7E38FF7B420BA8 + checksum32: 31FDE136904BDFD503403F4D23EA78BEB63B808E126E5E75B6EC0E66DCA67D22 + checksum64: 52F855DD6C07A3B4AB615EACC388BED7AE3945C0D02E7F9E06C50085ABAEAA52 The file 'LICENSE.txt' has been obtained from diff --git a/automatic/chromium/tools/chocolateyInstall.ps1 b/automatic/chromium/tools/chocolateyInstall.ps1 index 33aa588e77b..7cdf74eb4e5 100644 --- a/automatic/chromium/tools/chocolateyInstall.ps1 +++ b/automatic/chromium/tools/chocolateyInstall.ps1 @@ -2,7 +2,7 @@ $scriptDir=$toolsDir = $(Split-Path -parent $MyInvocation.MyCommand.Definition) . (Join-Path $scriptDir 'helper.ps1') -$version = "93.0.4537.0-snapshots" +$version = "93.0.4538.0-snapshots" $hive = "hkcu" $chromium_string = "\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Chromium" $Chromium = $hive + ":" + $chromium_string diff --git a/automatic/opera/opera.nuspec b/automatic/opera/opera.nuspec index ebb5e0f5507..9db236d4a8f 100644 --- a/automatic/opera/opera.nuspec +++ b/automatic/opera/opera.nuspec @@ -3,7 +3,7 @@ Opera - 76.0.4017.177 + 77.0.4054.60 Opera chocolatey-community Opera @@ -22,7 +22,7 @@ These parameters can be passed to the installer with the use of `--params`. For example: `--params '"/NoDesktopShortcut /NoTaskbarShortcut"'` ]]> The Opera web browser makes the Web fast and fun, giving you a better web browser experience on any computer. - https://blogs.opera.com/desktop/changelog-for-76/#b4017.177 + https://blogs.opera.com/desktop/changelog-for-77/#b4054.60 browser opera cross-platform internet admin https://github.com/chocolatey-community/chocolatey-coreteampackages/tree/master/automatic/opera diff --git a/automatic/opera/tools/chocolateyInstall.ps1 b/automatic/opera/tools/chocolateyInstall.ps1 index 6fcda76be4b..992ddfad43c 100644 --- a/automatic/opera/tools/chocolateyInstall.ps1 +++ b/automatic/opera/tools/chocolateyInstall.ps1 @@ -10,17 +10,17 @@ $parameters += if ($pp.NoTaskbarShortcut) { " /pintotaskbar=0"; Write-Host "Oper $packageArgs = @{ packageName = $env:ChocolateyPackageName fileType = 'exe' - url = 'https://get.geo.opera.com/pub/opera/desktop/76.0.4017.177/win/Opera_76.0.4017.177_Setup.exe' - url64 = 'https://get.geo.opera.com/pub/opera/desktop/76.0.4017.177/win/Opera_76.0.4017.177_Setup_x64.exe' - checksum = '8a3821aeb693a4f252abf1665d070141503f25f1650e12da027e3a2450096362' - checksum64 = '774df4760f94e42ab430701504fdd43b4b929c55be25ce5acc0d6060db8cbc18' + url = 'https://get.geo.opera.com/pub/opera/desktop/77.0.4054.60/win/Opera_77.0.4054.60_Setup.exe' + url64 = 'https://get.geo.opera.com/pub/opera/desktop/77.0.4054.60/win/Opera_77.0.4054.60_Setup_x64.exe' + checksum = '908067ab263383015abfa8784ec411ade7e25ddb7ca903c77ede67ebf49569db' + checksum64 = '7647656c2f79e1bccbf7e0f7cbc10d222904a17f27ca247d6bde6c4b015f8c4f' checksumType = 'sha256' checksumType64 = 'sha256' silentArgs = '/install /silent /launchopera=0 /setdefaultbrowser=0 /allusers=1' + $parameters validExitCodes = @(0) } -$version = '76.0.4017.177' +$version = '77.0.4054.60' if (!$Env:ChocolateyForce -and (IsVersionAlreadyInstalled $version)) { Write-Output "Opera $version is already installed. Skipping download and installation." }