Skip to content

Commit

Permalink
Merge pull request #35 from mcdonagj/develop
Browse files Browse the repository at this point in the history
Merge develop's changes into master.
  • Loading branch information
mcdn7gj authored Feb 17, 2021
2 parents 7c7a54b + 4f47953 commit 7b19f52
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.6</version>
<version>1.2.0</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.6 containing CrewLink release 1.1.6.</releaseNotes>
<releaseNotes>Package release 1.2.0 containing CrewLink release 1.2.0.</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.6/CrewLink-Setup-1.1.6.exe'
$url = 'https://github.com/ottomated/CrewLink/releases/download/v1.2.0/CrewLink-Setup-1.2.0.exe'

$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $toolsDir
fileType = 'exe'
url = $url
url64bit = $url64
softwareName = 'CrewLink 1.1.6'
checksum = 'CC37A6C5870C8062A941C4D092DA0937'
softwareName = 'CrewLink 1.2.0'
checksum = '354C786CFAAD5757D66F938C576E2AD9'
checksumType = 'md5'
checksum64 = 'C3FF2B0E8846D18A1C781454D671AB03CE4715B4D3086CF3EF0E22844EF0652A'
checksum64 = 'BF976BB8204E77F79AEEC46854B577721CF20AC03CE33D69933C2B26827D5FCE'
checksumType64= 'sha256'
silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
validExitCodes= @(0, 3010, 1641)
Expand Down

0 comments on commit 7b19f52

Please sign in to comment.