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 Apr 8, 2024
1 parent 16ded57 commit c55ba3c
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
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>110.0.5120.60797</version>
<version>111.0.5131.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-110/#b5120.60797</releaseNotes>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-111/#b5131.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
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/110.0.5120.60797/win/Opera_Developer_110.0.5120.60797_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-developer/110.0.5120.60797/win/Opera_Developer_110.0.5120.60797_Setup_x64.exe'
checksum = 'bb57cbb683416b283fdb47f657c07159d6a2339bbc463679bdd88934e42cb0a5'
checksum64 = '680d56d427ead1475d2ccd767e9b9520953670c930fe456935c1fdbd7d9620c7'
url = 'https://get.geo.opera.com/pub/opera-developer/111.0.5131.0/win/Opera_Developer_111.0.5131.0_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-developer/111.0.5131.0/win/Opera_Developer_111.0.5131.0_Setup_x64.exe'
checksum = '8e8cc03514ff3cfb6090886034acbf033e5e8030663f87d2457bfc5cd1614ee6'
checksum64 = 'e4e922512307890f4b90dcd1ba2d7f037e4788aa0bb293f7835713c4a1f1f8be'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/install /silent /launchopera 0 /setdefaultbrowser 0' + $parameters
validExitCodes = @(0)
}

$version = '110.0.5120.60797'
$version = '111.0.5131.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 c55ba3c

Please sign in to comment.