Skip to content

Commit

Permalink
AU: 2 updated - jetbrainstoolbox opera-developer
Browse files Browse the repository at this point in the history
  • Loading branch information
mkevenaar committed Oct 22, 2019
1 parent 80e4e92 commit 305401c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion automatic/jetbrainstoolbox/jetbrainstoolbox.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>1.15.5796</version>
<version>1.16.6016</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/jetbrainstoolbox/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/toolbox/jetbrains-toolbox-1.15.5796.exe'
$checksum = '3f4979d34aa9010d4a2d9b5b9a69ab5dad7583a196c868bd7953c41df3a7d228'
$url = 'https://download.jetbrains.com/toolbox/jetbrains-toolbox-1.16.6016.exe'
$checksum = 'f12cb56563646c6051d62916db7a2e6a2a7b5facdaef93c59d99c5299f764a37'
$checksumType = 'sha256'

$packageArgs = @{
Expand Down
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>66.0.3475.0</version>
<version>66.0.3480.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-66/#b3475.0</releaseNotes>
<releaseNotes>https://blogs.opera.com/desktop/changelog-for-66/#b3480.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/66.0.3475.0/win/Opera_Developer_66.0.3475.0_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-developer/66.0.3475.0/win/Opera_Developer_66.0.3475.0_Setup_x64.exe'
checksum = '4218530c62c7c2c1355b9627b705dfc9d06767eef359b58b8715e0d8f7ae6dd7'
checksum64 = '627721b4373f5ee1d2e653b721ae39ca3b8116f8b557ef91cdfc8e5fea6abb52'
url = 'https://get.geo.opera.com/pub/opera-developer/66.0.3480.0/win/Opera_Developer_66.0.3480.0_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-developer/66.0.3480.0/win/Opera_Developer_66.0.3480.0_Setup_x64.exe'
checksum = '9c335bc4b5c131bd5a7aa03aaa4754486edb28079e51ac8bad8a5c11cd7517ca'
checksum64 = 'efab9ad73b45935d328674669aa544b9babb83b31ca2108e03db4de04ab7f6ab'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/install /silent /launchopera 0 /setdefaultbrowser 0' + $parameters
validExitCodes = @(0)
}

$version = '66.0.3475.0'
$version = '66.0.3480.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 305401c

Please sign in to comment.