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 Mar 24, 2022
1 parent 33d3ba9 commit 86cef12
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>85.0.4341.13-beta</version>
<version>86.0.4363.9-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-85/#b4341.13</releaseNotes>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-86/#b4363.9</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/85.0.4341.13/win/Opera_beta_85.0.4341.13_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-beta/85.0.4341.13/win/Opera_beta_85.0.4341.13_Setup_x64.exe'
checksum = '1cc8b7b5d5f4667a65de472ace7c8f6fde4deca4cdef352eebd743a2849f8b79'
checksum64 = '28e764d802acac1f43e10f07cc60db6276295c7e95e8888d974f25d573fd7be6'
url = 'https://get.geo.opera.com/pub/opera-beta/86.0.4363.9/win/Opera_beta_86.0.4363.9_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-beta/86.0.4363.9/win/Opera_beta_86.0.4363.9_Setup_x64.exe'
checksum = '234777e7b8da855ef42f1a2c5faeff1db373dff808e244527d385d09b41b63b6'
checksum64 = 'c216365193d4e1df6ab44d6d680fcf19a1daa7ccf182b724bfe0fe09f78da16b'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/install /silent /launchopera 0 /setdefaultbrowser 0' + $parameters
validExitCodes = @(0)
}

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

0 comments on commit 86cef12

Please sign in to comment.