Skip to content

Commit

Permalink
Merge pull request #31 from mcdonagj/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdn7gj authored Feb 10, 2021
2 parents 5d29244 + f904587 commit 7aef888
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>1.1.4</version>
<version>1.1.5</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 1.1.4 containing CrewLink release 1.1.4.</releaseNotes>
<releaseNotes>Package release 1.1.5 containing CrewLink release 1.1.5.</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/v1.1.4/CrewLink-Setup-1.1.4.exe'
$url = 'https://github.com/ottomated/CrewLink/releases/download/v1.1.5/CrewLink-Setup-1.1.5.exe'

$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $toolsDir
fileType = 'exe'
url = $url
url64bit = $url64
softwareName = 'CrewLink 1.1.4'
checksum = 'A78970DC4D1156157872D59E9B9A0051'
softwareName = 'CrewLink 1.1.5'
checksum = '0C63C9E0A83DBA04F39E0C5385DDA894'
checksumType = 'md5'
checksum64 = '56E55536AFF7699AEE174944961ABB2531DA66E41E2BD3CE803F3444A170A7B0'
checksum64 = '64378876F20C262FA167FECBCDA915BAFBE4B388BD36C161BF610DBE56A860E5'
checksumType64= 'sha256'
silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
validExitCodes= @(0, 3010, 1641)
Expand Down

0 comments on commit 7aef888

Please sign in to comment.