diff --git a/automatic/opera/opera.nuspec b/automatic/opera/opera.nuspec index 98e4b25b78b..12062e1180a 100644 --- a/automatic/opera/opera.nuspec +++ b/automatic/opera/opera.nuspec @@ -3,7 +3,7 @@ Opera - 105.0.4970.13 + 105.0.4970.16 Opera chocolatey-community Opera @@ -28,7 +28,7 @@ For example: `--params '"/NoAutostart /NoDesktopShortcut /NoTaskbarShortcut"'` - **If the package is out of date please check [Version History](#versionhistory) for the latest submitted version. If you have a question, please ask it in [Chocolatey Community Package Discussions](https://github.com/chocolatey-community/chocolatey-packages/discussions) or raise an issue on the [Chocolatey Community Packages Repository](https://github.com/chocolatey-community/chocolatey-packages/issues) if you have problems with the package. Disqus comments will generally not be responded to.** ]]> 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-105/#b4970.13 + https://blogs.opera.com/desktop/changelog-for-105/#b4970.16 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 91775ca91bb..b8465427681 100644 --- a/automatic/opera/tools/chocolateyInstall.ps1 +++ b/automatic/opera/tools/chocolateyInstall.ps1 @@ -11,17 +11,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/105.0.4970.13/win/Opera_105.0.4970.13_Setup.exe' - url64 = 'https://get.geo.opera.com/pub/opera/desktop/105.0.4970.13/win/Opera_105.0.4970.13_Setup_x64.exe' - checksum = '9dad13387847dbc8e0f5173e5539397d52f6eab60df0d597d239c3fb7fcf1d38' - checksum64 = 'd814ffd0bb2453c05ec4a4337d3330cfecd5cd6dc95efeff93373cd50cde739f' + url = 'https://get.geo.opera.com/pub/opera/desktop/105.0.4970.16/win/Opera_105.0.4970.16_Setup.exe' + url64 = 'https://get.geo.opera.com/pub/opera/desktop/105.0.4970.16/win/Opera_105.0.4970.16_Setup_x64.exe' + checksum = 'e648526399b651916df4a9defa0202f66494c0e30509ad365aa7a0fad0a05eda' + checksum64 = '717bf46cf341a9a2e09d82c07833a7f8b80f3b0bac6075b8a2184966ef990f47' checksumType = 'sha256' checksumType64 = 'sha256' silentArgs = '/install /silent /launchopera=0 /setdefaultbrowser=0 /allusers=1' + $parameters validExitCodes = @(0) } -$version = '105.0.4970.13' +$version = '105.0.4970.16' if (!$Env:ChocolateyForce -and (IsVersionAlreadyInstalled $version)) { Write-Output "Opera $version is already installed. Skipping download and installation." }