Skip to content

Commit

Permalink
Merge pull request #40 from mcdonagj/feature/update-package-to-releas…
Browse files Browse the repository at this point in the history
…e-2.0.1

Updated package to bundle CrewLink release 2.0.1.
  • Loading branch information
mcdn7gj authored Feb 24, 2021
2 parents d43f804 + d077cda commit ff386b2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions crewlink/crewlink.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>crewlink</id>
<version>2.0.0</version>
<version>2.0.1</version>
<owners>mcdonagj</owners>
<title>crewlink</title>
<authors>ottomated</authors>
Expand All @@ -12,7 +12,7 @@
<tags>crewlink amongus</tags>
<summary>Free, open, Among Us proximity voice chat.</summary>
<description>Chocolatey package for released versions of CrewLink.</description>
<releaseNotes>Package release 2.0.0 containing CrewLink release 2.0.0.</releaseNotes>
<releaseNotes>Package release 2.0.1 containing CrewLink release 2.0.1.</releaseNotes>
</metadata>
<files>
<file src="tools\**" target="tools" />
Expand Down
8 changes: 4 additions & 4 deletions crewlink/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = 'https://github.com/ottomated/CrewLink/releases/download/v2.0.0/CrewLink-Setup-2.0.0.exe'
$url = 'https://github.com/ottomated/CrewLink/releases/download/v2.0.1/CrewLink-Setup-2.0.1.exe'

$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $toolsDir
fileType = 'exe'
url = $url
url64bit = $url64
softwareName = 'CrewLink 2.0.0'
checksum = '4ED5492A7E7B0EC6C1DF852886A42943'
softwareName = 'CrewLink 2.0.1'
checksum = '985E5042C5ECC431A905707F45031238'
checksumType = 'md5'
checksum64 = '5429D2CD7D3FB9FF08D15BF13DAD5FC212BD0FF5F849D18425BC55FA0F0AF27C'
checksum64 = '2C2D1242A36083BE3E4E1A18DD234438863E469834ADF4140C801471105D90AD'
checksumType64= 'sha256'
silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
validExitCodes= @(0, 3010, 1641)
Expand Down

0 comments on commit ff386b2

Please sign in to comment.