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 Jun 2, 2022
1 parent edb7037 commit 5575170
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.1.1</version>
<version>2022.1.2</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.1.1.exe'
$checksum = '7d8c837831bfc4de5702f0ffc3a3f96d6aa63c6d476ba214d4c27a7d2c436654'
$url = 'https://download.jetbrains.com/go/goland-2022.1.2.exe'
$checksum = '8ce4cd1786ff0cea93afdf121c7735653225b3a43571c1589c33ae26bff13eb6'
$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>88.0.4412.18-beta</version>
<version>88.0.4412.20-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-88/#b4412.18</releaseNotes>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-88/#b4412.20</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/88.0.4412.18/win/Opera_beta_88.0.4412.18_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-beta/88.0.4412.18/win/Opera_beta_88.0.4412.18_Setup_x64.exe'
checksum = '7f36d4bb98799742de66981dd87d9a0a93f11ce57ce5f50422e813918c33835e'
checksum64 = 'd314169630733c4202a910e6362f7e68426fb229a22b3d90bbb90eeaacaacdca'
url = 'https://get.geo.opera.com/pub/opera-beta/88.0.4412.20/win/Opera_beta_88.0.4412.20_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-beta/88.0.4412.20/win/Opera_beta_88.0.4412.20_Setup_x64.exe'
checksum = '86a45ed65422717026cfc79cb6634876de81272ebe173942c8aa5320d437e551'
checksum64 = '6236dfb912b3ef0215a71515d5a8e5d296d0220ba7259cc5bbbfec9a7d18ee67'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/install /silent /launchopera 0 /setdefaultbrowser 0' + $parameters
validExitCodes = @(0)
}

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

0 comments on commit 5575170

Please sign in to comment.