Skip to content

Commit

Permalink
AU: 1 updated - opera-developer
Browse files Browse the repository at this point in the history
  • Loading branch information
mkevenaar committed Dec 7, 2020
1 parent 5efb4d1 commit 79c5c88
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions automatic/opera-developer/opera-developer.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>74.0.3890.0</version>
<version>74.0.3897.0</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 developer cross-platform internet admin</tags>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-74/#b3890.0</releaseNotes>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-74/#b3897.0</releaseNotes>
<licenseUrl>http://www.operasoftware.com/eula/browser</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<packageSourceUrl>https://github.com/mkevenaar/chocolatey-packages/tree/master/automatic/opera-developer</packageSourceUrl>
Expand Down
10 changes: 5 additions & 5 deletions automatic/opera-developer/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-developer/74.0.3890.0/win/Opera_Developer_74.0.3890.0_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-developer/74.0.3890.0/win/Opera_Developer_74.0.3890.0_Setup_x64.exe'
checksum = '913649bdde3f75648a92411bb1a60f8c871bc38ccefbb2e51cc98819b2552f83'
checksum64 = '3f778573ede9eba531bcaf14e22c4ca4e6ceb7080147d9763e4e69bee92cd7fd'
url = 'https://get.geo.opera.com/pub/opera-developer/74.0.3897.0/win/Opera_Developer_74.0.3897.0_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-developer/74.0.3897.0/win/Opera_Developer_74.0.3897.0_Setup_x64.exe'
checksum = '64ce5a3b3a3ea17035c87a2b9cc6a3ef03eb8c26717ed06ca3b5681fd3eee5fb'
checksum64 = '553e8b770a273693d971e0517d48898f2d38c4477c3fa021a409896ea9508e56'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/install /silent /launchopera 0 /setdefaultbrowser 0' + $parameters
validExitCodes = @(0)
}

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

0 comments on commit 79c5c88

Please sign in to comment.