Skip to content

Commit

Permalink
AU: 1 updated - mattermost-desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Nov 15, 2024
1 parent 1bb0b07 commit 44e0d85
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions automatic/mattermost-desktop/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ The installer has been downloaded from the Github release page <https://github.c
and can be verified like this:

1. Download the following installers:
32-Bit: <https://releases.mattermost.com/desktop/5.9.0/mattermost-desktop-5.9.0-win-arm64.msi>
64-Bit: <https://releases.mattermost.com/desktop/5.9.0/mattermost-desktop-5.9.0-win-x64.msi>
32-Bit: <https://releases.mattermost.com/desktop/5.10.0/mattermost-desktop-5.10.0-win-arm64.msi>
64-Bit: <https://releases.mattermost.com/desktop/5.10.0/mattermost-desktop-5.10.0-win-x64.msi>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type: sha256
checksum32: 2A13566E780CCAED7A944C974AE547E7B045D2A4D25602740D210AECE3F028C8
checksum64: 2E8592BC18E1AA18A59365547135778FE462A76549ECC4A8FA005452F74BF162
checksum32: 4E98AE04E3B64422CA4D222EE9CB13E8D097DD8B2FAD384782DCDAA8CBEFAC6D
checksum64: BBE85376C3FF14D1FEE8467A34985DA938A051518C7E26E6BCAF371BBFFC39C1

File 'LICENSE.txt' is obtained from <https://github.com/mattermost/desktop/blob/06ddc6099e9b6296e7031c04e3e4bd29743bedb4/LICENSE.txt>
2 changes: 1 addition & 1 deletion automatic/mattermost-desktop/mattermost-desktop.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<metadata>
<id>mattermost-desktop</id>
<title>Mattermost Desktop</title>
<version>5.9.0</version>
<version>5.10.0</version>
<authors>https://github.com/mattermost/desktop/graphs/contributors</authors>
<owners>chocolatey-community,wget, hans0</owners>
<summary>Native desktop application for Mattermost running on Windows</summary>
Expand Down
8 changes: 4 additions & 4 deletions automatic/mattermost-desktop/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$packageArgs = @{
packageName = 'mattermost-desktop'
fileType = 'msi'
file = "$toolsDir\mattermost-desktop-5.9.0-win-arm64.msi"
file64 = "$toolsDir\mattermost-desktop-5.9.0-win-x64.msi"
checksum = '2A13566E780CCAED7A944C974AE547E7B045D2A4D25602740D210AECE3F028C8'
checksum64 = '2E8592BC18E1AA18A59365547135778FE462A76549ECC4A8FA005452F74BF162'
file = "$toolsDir\mattermost-desktop-5.10.0-win-arm64.msi"
file64 = "$toolsDir\mattermost-desktop-5.10.0-win-x64.msi"
checksum = '4E98AE04E3B64422CA4D222EE9CB13E8D097DD8B2FAD384782DCDAA8CBEFAC6D'
checksum64 = 'BBE85376C3FF14D1FEE8467A34985DA938A051518C7E26E6BCAF371BBFFC39C1'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
Expand Down

0 comments on commit 44e0d85

Please sign in to comment.