diff --git a/automatic/opera/opera.nuspec b/automatic/opera/opera.nuspec index f4242abc7c5..86e8aa1bfce 100644 --- a/automatic/opera/opera.nuspec +++ b/automatic/opera/opera.nuspec @@ -3,7 +3,7 @@ Opera - 108.0.5067.20 + 108.0.5067.24 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-108/#b5067.20 + https://blogs.opera.com/desktop/changelog-for-108/#b5067.24 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 93e23502326..ac77dafa47e 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/108.0.5067.20/win/Opera_108.0.5067.20_Setup.exe' - url64 = 'https://get.geo.opera.com/pub/opera/desktop/108.0.5067.20/win/Opera_108.0.5067.20_Setup_x64.exe' - checksum = 'eaf0eca52f9989c1c58cab49d1051ae086b6a50c366a47411856d983cd7dff3a' - checksum64 = '6c3ea4ad263f3bee542f87a9d17177adb869c912d97a26c9bb169495c614dca0' + url = 'https://get.geo.opera.com/pub/opera/desktop/108.0.5067.24/win/Opera_108.0.5067.24_Setup.exe' + url64 = 'https://get.geo.opera.com/pub/opera/desktop/108.0.5067.24/win/Opera_108.0.5067.24_Setup_x64.exe' + checksum = '0f9a43105ec4454126474c761f48f6a7be3a3857389dd51d10e59f824464e534' + checksum64 = 'ae30bbe755d624bda2cc4445c9c5f29143e3c12f13f779e1e9bf88625f68d5b3' checksumType = 'sha256' checksumType64 = 'sha256' silentArgs = '/install /silent /launchopera=0 /setdefaultbrowser=0 /allusers=1' + $parameters validExitCodes = @(0) } -$version = '108.0.5067.20' +$version = '108.0.5067.24' if (!$Env:ChocolateyForce -and (IsVersionAlreadyInstalled $version)) { Write-Output "Opera $version is already installed. Skipping download and installation." }