Skip to content

Commit

Permalink
AU: 1 updated - mumble
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Jun 11, 2024
1 parent e47802c commit ff2610b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions automatic/mumble/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/mumble-voip/mumble/releases/tag/v1.4.287>
location on <https://github.com/mumble-voip/mumble/releases/tag/v1.5.634>
and can be verified by doing the following:

1. Download the following <https://github.com/mumble-voip/mumble/releases/download/v1.4.287/mumble_client-1.4.287.x64.msi>
1. Download the following <https://github.com/mumble-voip/mumble/releases/download/v1.5.634/mumble_client-1.5.634.x64.msi>
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 <https://github.com/mumble-voip/mumble/blob/master/LICENSE>
4 changes: 2 additions & 2 deletions automatic/mumble/mumble.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<id>mumble</id>
<title>Mumble</title>
<owners>chocolatey-community</owners>
<version>1.4.287</version>
<version>1.5.634</version>
<authors>Natvig, et. al.</authors>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@edba4a5849ff756e767cba86641bea97ff5721fe/icons/mumble.svg</iconUrl>
<summary>Mumble is an open source, low-latency, high quality voice chat software primarily intended for use while gaming.</summary>
Expand Down Expand Up @@ -45,7 +45,7 @@ Example `choco install mumble --package-parameters="/IncludeAll"`
<copyright>Natvig, et. al. See License for more information.</copyright>
<licenseUrl>https://github.com/mumble-voip/mumble/blob/master/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>https://www.mumble.info/blog/mumble-1.4.287</releaseNotes>
<releaseNotes>https://www.mumble.info/blog/mumble-1.5.634/</releaseNotes>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/mumble</packageSourceUrl>
<projectSourceUrl>https://github.com/mumble-voip/mumble</projectSourceUrl>
<bugTrackerUrl>https://github.com/mumble-voip/mumble/issues</bugTrackerUrl>
Expand Down
2 changes: 1 addition & 1 deletion automatic/mumble/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion automatic/mumble/update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down

0 comments on commit ff2610b

Please sign in to comment.