Skip to content

Commit

Permalink
AU: 1 updated - Opera
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Oct 23, 2019
1 parent 26980fa commit f7c2a02
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
9 changes: 4 additions & 5 deletions automatic/opera/opera.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,26 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Opera</id>
<version>64.0.3417.61</version>
<version>64.0.3417.73</version>
<title>Opera</title>
<owners>chocolatey</owners>
<authors>Opera</authors>
<projectUrl>http://www.opera.com/browser/</projectUrl>
<licenseUrl>http://www.opera.com/eula/computers</licenseUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-coreteampackages@b7466aa44fbbc7e8022c05be2d866e63cd915c8d/icons/opera.svg</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description><![CDATA[
The Opera web browser makes the Web fast and fun, giving you a better web browser experience on any computer.
<description><![CDATA[The Opera web browser makes the Web fast and fun, giving you a better web browser experience on any computer.
## Parameters
- `/NoDesktopShortcut` - Do not create desktop shortcut for Opera
- `/NoTaskbarShortcut` - Do not pin Opera to taskbar
These parameters can be passed to the installer with the use of `--params`.
For example: `--params '"/NoDesktopShortcut /NoTaskbarShortcut"'`
]]></description>
<summary>The Opera web browser makes the Web fast and fun, giving you a better web browser experience on any computer.</summary>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-64/#b3417.61</releaseNotes>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-64/#b3417.73</releaseNotes>
<tags>browser opera cross-platform internet admin</tags>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-coreteampackages/tree/master/automatic/opera</packageSourceUrl>
</metadata>
Expand Down
10 changes: 5 additions & 5 deletions automatic/opera/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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/64.0.3417.61/win/Opera_64.0.3417.61_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera/desktop/64.0.3417.61/win/Opera_64.0.3417.61_Setup_x64.exe'
checksum = '926a7f39719e8a8826bc4afb388fc6e0430abd55322b755696045441a5ce4396'
checksum64 = '1ba15230f2ca8753c1607a848c9d1ba58fe36a6a5c629b2a995d25b26c8c01ae'
url = 'https://get.geo.opera.com/pub/opera/desktop/64.0.3417.73/win/Opera_64.0.3417.73_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera/desktop/64.0.3417.73/win/Opera_64.0.3417.73_Setup_x64.exe'
checksum = '05d940203ce814db9302a0a1b04870a994136e8baf2b257e0239e42a7dc96f6b'
checksum64 = '3123845a8410bc1fe3813b57491142bbb2702e982e6952301d4dc09d04a5f42b'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/install /silent /launchopera=0 /setdefaultbrowser=0 /allusers=1' + $parameters
validExitCodes = @(0)
}

$version = '64.0.3417.61'
$version = '64.0.3417.73'
if (!$Env:ChocolateyForce -and (IsVersionAlreadyInstalled $version)) {
Write-Output "Opera $version is already installed. Skipping download and installation."
}
Expand Down

0 comments on commit f7c2a02

Please sign in to comment.