From ff2610bb63b301dc6b665cebac93dfa2318cadf3 Mon Sep 17 00:00:00 2001 From: Chocolatey Community Date: Tue, 11 Jun 2024 00:45:47 +0000 Subject: [PATCH] AU: 1 updated - mumble [skip ci] https://gist.github.com/choco-bot/a14b1e5bfaf70839b338eb1ab7f8226f/5dd2b6dd7072f330af06578e8dbf22ceb5430353 --- automatic/mumble/legal/VERIFICATION.txt | 6 +++--- automatic/mumble/mumble.nuspec | 4 ++-- automatic/mumble/tools/chocolateyInstall.ps1 | 2 +- automatic/mumble/update.ps1 | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/automatic/mumble/legal/VERIFICATION.txt b/automatic/mumble/legal/VERIFICATION.txt index e93d58c0366..eb1f74a7276 100644 --- a/automatic/mumble/legal/VERIFICATION.txt +++ b/automatic/mumble/legal/VERIFICATION.txt @@ -3,16 +3,16 @@ Verification is intended to assist the Chocolatey moderators and community in verifying that this package's contents are trustworthy. The embedded software have been downloaded from the listed download -location on +location on and can be verified by doing the following: -1. Download the following +1. Download the following 2. Get the checksum using one of the following methods: - Using powershell function 'Get-FileHash' - Use chocolatey utility 'checksum.exe' 3. The checksums should match the following: checksum type: sha256 - checksum: BBD8D57FD450C98E08553518C523A07DDADF3CFF503F70DB561F4B53FDB1C292 + checksum: AD4A49D9AC08C0F281BB90F34742BC60887D969F91420CDCFAB1F88C7D25AB3E The file 'LICENSE.txt' has been obtained from diff --git a/automatic/mumble/mumble.nuspec b/automatic/mumble/mumble.nuspec index ce1a55cdcf5..2659023f993 100644 --- a/automatic/mumble/mumble.nuspec +++ b/automatic/mumble/mumble.nuspec @@ -5,7 +5,7 @@ mumble Mumble chocolatey-community - 1.4.287 + 1.5.634 Natvig, et. al. https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@edba4a5849ff756e767cba86641bea97ff5721fe/icons/mumble.svg Mumble is an open source, low-latency, high quality voice chat software primarily intended for use while gaming. @@ -45,7 +45,7 @@ Example `choco install mumble --package-parameters="/IncludeAll"` Natvig, et. al. See License for more information. https://github.com/mumble-voip/mumble/blob/master/LICENSE false - https://www.mumble.info/blog/mumble-1.4.287 + https://www.mumble.info/blog/mumble-1.5.634/ https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/mumble https://github.com/mumble-voip/mumble https://github.com/mumble-voip/mumble/issues diff --git a/automatic/mumble/tools/chocolateyInstall.ps1 b/automatic/mumble/tools/chocolateyInstall.ps1 index fd28d8a9f7b..929d158521b 100644 --- a/automatic/mumble/tools/chocolateyInstall.ps1 +++ b/automatic/mumble/tools/chocolateyInstall.ps1 @@ -7,7 +7,7 @@ $packageName = $env:ChocolateyPackageName $packageArgs = @{ packageName = $packageName fileType = 'msi' - file = "$toolsPath\mumble_client-1.4.287.x64.msi" + file = "$toolsPath\mumble_client-1.5.634.x64.msi" softwareName = 'Mumble*' silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`"" validExitCodes = @(0, 2010, 1641) diff --git a/automatic/mumble/update.ps1 b/automatic/mumble/update.ps1 index d99661a94fd..56e20ff7c1c 100644 --- a/automatic/mumble/update.ps1 +++ b/automatic/mumble/update.ps1 @@ -26,7 +26,7 @@ function global:au_GetLatest { $LatestRelease = Get-GitHubRelease mumble-voip mumble $download_page = Invoke-WebRequest -Uri $releases -UseBasicParsing $url32 = $LatestRelease.assets | Where-Object {$_.name.StartsWith("mumble_client")} | Where-Object {$_.name.EndsWith(".msi")} | Select-Object -ExpandProperty browser_download_url - $releaseNotes = $download_page.Links | ? href -match "www.mumble.info\/blog" | Select-Object -first 1 -expand href + $releaseNotes = $download_page.Links | Where-Object href -match "www.mumble.info\/blog" | Select-Object -first 1 -expand href if (!$releaseNotes) { $releaseNotes = "$LatestRelease.body" }