Skip to content

Commit

Permalink
AU: 1 updated - opera-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
mkevenaar committed Dec 17, 2019
1 parent 8c37f99 commit e924217
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions automatic/opera-beta/opera-beta.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- version should MATCH as closely as possible with the underlying software -->
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
<version>66.0.3515.7-beta</version>
<version>66.0.3515.14-beta</version>
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<owners>Maurice Kevenaar</owners>
<!-- ============================== -->
Expand All @@ -41,7 +41,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- copyright is usually years and software vendor, but not required for internal feeds -->
<copyright>Opera Software</copyright>
<tags>browser opera beta cross-platform internet admin</tags>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-66/#b3515.7</releaseNotes>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-66/#b3515.14</releaseNotes>
<licenseUrl>http://www.operasoftware.com/eula/browser</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<packageSourceUrl>https://github.com/mkevenaar/chocolatey-packages/tree/master/automatic/opera-beta</packageSourceUrl>
Expand Down
10 changes: 5 additions & 5 deletions automatic/opera-beta/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 "
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
url = 'https://get.geo.opera.com/pub/opera-beta/66.0.3515.7/win/Opera_beta_66.0.3515.7_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-beta/66.0.3515.7/win/Opera_beta_66.0.3515.7_Setup_x64.exe'
checksum = '3b7e61353477c47c253846ece978584508c199db7f453cbb2fe62d3dc56e5b52'
checksum64 = 'bbe6b3429d028b8bd71d0e06aa2ed6fbb79ed137f3bd58b3f0a45391cc6de77f'
url = 'https://get.geo.opera.com/pub/opera-beta/66.0.3515.14/win/Opera_beta_66.0.3515.14_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-beta/66.0.3515.14/win/Opera_beta_66.0.3515.14_Setup_x64.exe'
checksum = 'b0b459f02cae66d8cd62b03f269087eeb9037291288a2cb88945905178baebb9'
checksum64 = 'b5bbc1abbed739e0d53678efceefabf45bd33662bdb9838ac0a4923e832bd048'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/install /silent /launchopera 0 /setdefaultbrowser 0' + $parameters
validExitCodes = @(0)
}

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

0 comments on commit e924217

Please sign in to comment.