Skip to content

Commit

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

Updated package to bundle CrewLink release 1.1.2.
  • Loading branch information
mcdn7gj authored Feb 3, 2021
2 parents e6ef50d + d4f2af8 commit d64ac05
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.1</version>
<version>1.1.2</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.1 containing CrewLink release 1.1.1.</releaseNotes>
<releaseNotes>Package release 1.1.2 containing CrewLink release 1.1.2.</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.1/CrewLink-Setup-1.1.1.exe'
$url = 'https://github.com/ottomated/CrewLink/releases/download/v1.1.2/CrewLink-Setup-1.1.2.exe'

$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $toolsDir
fileType = 'exe'
url = $url
url64bit = $url64
softwareName = 'CrewLink 1.1.1'
checksum = '10387352E331619C26C2E24512145056'
softwareName = 'CrewLink 1.1.2'
checksum = '4FCB5C461F5DC3C1FBADF83EABC5BFAA'
checksumType = 'md5'
checksum64 = 'B0C504FA3C3E7050BA9C9E33B924149513C2F0556E818C8D6D7849AE9EEBB860'
checksum64 = '20E4855B385A6E317B165B2BFC6043BC4535E29EC7162C70595CFAFB820834ED'
checksumType64= 'sha256'
silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
validExitCodes= @(0, 3010, 1641)
Expand Down

0 comments on commit d64ac05

Please sign in to comment.