Skip to content

Commit

Permalink
Choco updates for 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tdanner committed Feb 6, 2018
1 parent 4d2696f commit 9bd4897
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
17 changes: 13 additions & 4 deletions Chocolatey/OrionSDK.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
<id>orionsdk</id>
<title>SolarWinds Orion SDK</title>
<version>2.2.54</version>
<version>2.3.123</version>
<authors>SolarWinds</authors>
<owners>Tim Danner</owners>
<summary>Software development kit for the SolarWinds Orion platform.</summary>
<description>Installs tools for the SolarWinds Orion platform API.</description>
<projectUrl>https://github.com/solarwinds/OrionSDK</projectUrl>
<!-- <packageSourceUrl></packageSourceUrl> -->
<!--<projectSourceUrl></projectSourceUrl>-->
<packageSourceUrl>https://github.com/solarwinds/OrionSDK/blob/master/Chocolatey/OrionSDK.nuspec</packageSourceUrl>
<projectSourceUrl>https://github.com/solarwinds/OrionSDK</projectSourceUrl>
<docsUrl>https://github.com/solarwinds/OrionSDK/wiki</docsUrl>
<mailingListUrl>https://thwack.solarwinds.com/community/labs_tht/orion-sdk</mailingListUrl>
<bugTrackerUrl>https://github.com/solarwinds/OrionSDK/issues</bugTrackerUrl>
Expand All @@ -25,7 +25,16 @@
<dependency id="" version="__VERSION__" />
<dependency id="" />
</dependencies>-->
<releaseNotes><![CDATA[Adds smart autocomplete to SWQL Studio, along with miscellaneous bugfixes and minor enhancements.]]></releaseNotes>
<releaseNotes><![CDATA[
# v2.3.123
* Added Search to Object Explorer
* Fix a crash in SWQL Studio if you double-click the "database" node in the tree
* Use .NET 4.0's InstallUtil.exe to register SwisSnapin, not 2.0
* SwisSnapin is still included in this release, but deprecated in favor of the new PowerShell module [SwisPowerShell](https://www.powershellgallery.com/packages/SwisPowerShell).
# v2.2.54
* Adds smart autocomplete to SWQL Studio, along with miscellaneous bugfixes and minor enhancements.
]]></releaseNotes>
<!--<provides></provides>-->
</metadata>
<files>
Expand Down
10 changes: 5 additions & 5 deletions Chocolatey/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $ErrorActionPreference = 'Stop';

$packageName= 'orionsdk'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = 'https://github.com/solarwinds/OrionSDK/releases/download/v2.2.54/OrionSDK.msi'
$url = 'https://github.com/solarwinds/OrionSDK/releases/download/v2.3.123/OrionSDK.msi'
$url64 = $url

$packageArgs = @{
Expand All @@ -18,10 +18,10 @@ $packageArgs = @{
validExitCodes= @(0, 3010, 1641)

softwareName = 'orionsdk*'
checksum = ''
checksumType = 'md5'
checksum64 = ''
checksumType64= 'md5'
checksum = '4bade89485b5b9a4013aa59272b0bf3c43e8c94ea2c75ec675f7e3a5a31f1e66'
checksumType = 'sha256'
checksum64 = '4bade89485b5b9a4013aa59272b0bf3c43e8c94ea2c75ec675f7e3a5a31f1e66'
checksumType64= 'sha256'
}

Install-ChocolateyPackage @packageArgs

0 comments on commit 9bd4897

Please sign in to comment.