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 May 6, 2019
1 parent cd2cef5 commit 59e1283
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
9 changes: 5 additions & 4 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>60.0.3255.60-beta</version>
<version>60.0.3255.79-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,12 +41,12 @@ 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-60/#b3255.60</releaseNotes>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-60/#b3255.79</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>
<summary>The Opera web browser makes the Web fast and fun, giving you a better web browser experience on any computer.</summary>
<description>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
Expand All @@ -58,7 +58,8 @@ For example: `--params '"/NoDesktopShortcut /NoTaskbarShortcut"'`
**Please Note**: This is an automatically updated package. If you find it is
out of date by more than a day or two, please contact the maintainer(s) and
let them know the package is no longer updating correctly.</description>
let them know the package is no longer updating correctly.
]]></description>
<!-- =============================== -->

<!-- Specifying dependencies and version ranges? https://docs.nuget.org/create/versioning#specifying-version-ranges-in-.nuspec-files -->
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/60.0.3255.60/win/Opera_beta_60.0.3255.60_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-beta/60.0.3255.60/win/Opera_beta_60.0.3255.60_Setup_x64.exe'
checksum = '2c3c9317b0839aac3f4482929161e5c7e20e9618dea9f0204c8fd6bc10f102af'
checksum64 = 'd36b70468a591a27087586451a60b8c2e1ffcb4e4924d37857eb966d63217467'
url = 'https://get.geo.opera.com/pub/opera-beta/60.0.3255.79/win/Opera_beta_60.0.3255.79_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-beta/60.0.3255.79/win/Opera_beta_60.0.3255.79_Setup_x64.exe'
checksum = '6913da5eb93322931286362aa9d1cc4e54dbc44cd0e768f86aa942e14b232755'
checksum64 = 'aca0cf89dfe9f7b5e47fe627cbd8d12be50605fa8910efbd93702d89b13b5769'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/install /silent /launchopera 0 /setdefaultbrowser 0' + $parameters
validExitCodes = @(0)
}

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

0 comments on commit 59e1283

Please sign in to comment.