Skip to content

Commit

Permalink
AU: 2 updated - goland opera-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
mkevenaar committed Oct 12, 2022
1 parent e742a72 commit 8bf16aa
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion automatic/goland/goland.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>2022.2.3</version>
<version>2022.2.4</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 Down
4 changes: 2 additions & 2 deletions automatic/goland/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
$ErrorActionPreference = 'Stop';

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = 'https://download.jetbrains.com/go/goland-2022.2.3.exe'
$checksum = '91d23053aa2a6a85b147348a21be8a5d88ed85e90db600626d06d2119cd9d50a'
$url = 'https://download.jetbrains.com/go/goland-2022.2.4.exe'
$checksum = '6eaebec66027706b003be7c9ea03be6f13725b71ea0cfb02a7e3c739eb197c1a'
$checksumType = 'sha256'

# Workaround for https://youtrack.jetbrains.com/issue/IDEA-202935
Expand Down
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>92.0.4561.8-beta</version>
<version>92.0.4561.11-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-92/#b4561.8</releaseNotes>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-92/#b4561.11</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/92.0.4561.8/win/Opera_beta_92.0.4561.8_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-beta/92.0.4561.8/win/Opera_beta_92.0.4561.8_Setup_x64.exe'
checksum = '60c088a760566edadebe2bfc93613b96d3ea9f4412566521b7e515d259fdd2b5'
checksum64 = '8fea0c77da37891b7e7e2cd54fd6a91fb6bf3c5a76a84ff8d0a62c0ff4799a0d'
url = 'https://get.geo.opera.com/pub/opera-beta/92.0.4561.11/win/Opera_beta_92.0.4561.11_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-beta/92.0.4561.11/win/Opera_beta_92.0.4561.11_Setup_x64.exe'
checksum = '91660bba1d078480e060e73341e4e77db5a46f8f4745d61e77d6b040355238cb'
checksum64 = '76e8300243c72afac3afe60174a502e8a8cb2aa8c9d8aa5443bdf65d941d6a9e'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/install /silent /launchopera 0 /setdefaultbrowser 0' + $parameters
validExitCodes = @(0)
}

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

0 comments on commit 8bf16aa

Please sign in to comment.