diff --git a/automatic/opera/opera.nuspec b/automatic/opera/opera.nuspec index 63e2a90cc5a..4f9a7f9f85d 100644 --- a/automatic/opera/opera.nuspec +++ b/automatic/opera/opera.nuspec @@ -3,7 +3,7 @@ Opera - 56.0.3051.36 + 56.0.3051.43 Opera chocolatey Opera @@ -23,7 +23,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-56/#b3051.36 + https://blogs.opera.com/desktop/changelog-for-56/#b3051.43 browser opera cross-platform internet admin https://github.com/chocolatey/chocolatey-coreteampackages/tree/master/automatic/opera diff --git a/automatic/opera/tools/chocolateyInstall.ps1 b/automatic/opera/tools/chocolateyInstall.ps1 index c5274b538d9..5d02f912f4e 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 " $packageArgs = @{ packageName = $env:ChocolateyPackageName fileType = 'exe' - url = 'https://get.geo.opera.com/pub/opera/desktop/56.0.3051.36/win/Opera_56.0.3051.36_Setup.exe' - url64 = 'https://get.geo.opera.com/pub/opera/desktop/56.0.3051.36/win/Opera_56.0.3051.36_Setup_x64.exe' - checksum = '73716594c8af436b2472bf65200708838477e7db2854e87b0a24e69f3b2ef853' - checksum64 = '7521105794fcc7e90d8f6af0213f8cdab74e094a896fb475446827cee5a9caba' + url = 'https://get.geo.opera.com/pub/opera/desktop/56.0.3051.43/win/Opera_56.0.3051.43_Setup.exe' + url64 = 'https://get.geo.opera.com/pub/opera/desktop/56.0.3051.43/win/Opera_56.0.3051.43_Setup_x64.exe' + checksum = '922b3dc1b966252d4aedd6cad7a812d092cafb91f70c1680e1de8374449ff211' + checksum64 = 'ccfaf853063f529dde101a7c1e2208249f95cfddbf00767487657482dec35547' checksumType = 'sha256' checksumType64 = 'sha256' silentArgs = '/install /silent /launchopera 0 /setdefaultbrowser 0' + $parameters validExitCodes = @(0) } -$version = '56.0.3051.36' +$version = '56.0.3051.43' if (!$Env:ChocolateyForce -and (IsVersionAlreadyInstalled $version)) { Write-Output "Opera $version is already installed. Skipping download and installation." } else {