diff --git a/automatic/opera/opera.nuspec b/automatic/opera/opera.nuspec index d1d311787ed..2769642dbe8 100644 --- a/automatic/opera/opera.nuspec +++ b/automatic/opera/opera.nuspec @@ -3,7 +3,7 @@ Opera - 84.0.4316.21 + 84.0.4316.31 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-84/#b4316.21 + https://blogs.opera.com/desktop/changelog-for-84/#b4316.31 browser opera cross-platform internet admin https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/opera diff --git a/automatic/opera/tools/chocolateyInstall.ps1 b/automatic/opera/tools/chocolateyInstall.ps1 index 882de7092da..85f78cf8dc6 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/84.0.4316.21/win/Opera_84.0.4316.21_Setup.exe' - url64 = 'https://get.geo.opera.com/pub/opera/desktop/84.0.4316.21/win/Opera_84.0.4316.21_Setup_x64.exe' - checksum = 'e47f2188f5b43e0891018b6c76ca520001d4b9ecd44066fe0eb92ef51589adce' - checksum64 = '1b8d54bd8636c28dc06979f3ef2d8109cbf51907b316d3ded9e81241612e537c' + url = 'https://get.geo.opera.com/pub/opera/desktop/84.0.4316.31/win/Opera_84.0.4316.31_Setup.exe' + url64 = 'https://get.geo.opera.com/pub/opera/desktop/84.0.4316.31/win/Opera_84.0.4316.31_Setup_x64.exe' + checksum = '70f0d2963445e2e66cb7caffee0eb3c05f0c30899583d524483c62421c5e66c1' + checksum64 = 'a8b708cde27b3c0223cf6a809167a976ded7926be0b0e2ce2319dc7d27afb816' checksumType = 'sha256' checksumType64 = 'sha256' silentArgs = '/install /silent /launchopera=0 /setdefaultbrowser=0 /allusers=1' + $parameters validExitCodes = @(0) } -$version = '84.0.4316.21' +$version = '84.0.4316.31' if (!$Env:ChocolateyForce -and (IsVersionAlreadyInstalled $version)) { Write-Output "Opera $version is already installed. Skipping download and installation." }