Skip to content

Commit

Permalink
AU: 1 updated - kid3
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Jun 20, 2021
1 parent 0c20392 commit 5bb1c34
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion automatic/kid3/kid3.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>kid3</id>
<version>3.8.6</version>
<version>3.8.7</version>
<packageSourceUrl>https://github.com/chtof/chocolatey-packages/tree/master/automatic/kid3</packageSourceUrl>
<owners>chtof</owners>
<title>Kid3 - Audio Tagger</title>
Expand Down
8 changes: 4 additions & 4 deletions automatic/kid3/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ Package can be verified like this:

1. Download:

x32: https://pilotfiber.dl.sourceforge.net/project/kid3/kid3/3.8.6/kid3-3.8.6-win32.zip
x64: https://pilotfiber.dl.sourceforge.net/project/kid3/kid3/3.8.6/kid3-3.8.6-win32-x64.zip
x32: https://iweb.dl.sourceforge.net/project/kid3/kid3/3.8.7/kid3-3.8.7-win32.zip
x64: https://managedway.dl.sourceforge.net/project/kid3/kid3/3.8.7/kid3-3.8.7-win32-x64.zip

2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'

checksum type: sha256
checksum32: 81C10E8AFCB7B7EEB7D96D3F3463CB653B380464CBD4432644DF05038EF5D8A9
checksum64: 3A66CA6B8C9973DBF46B07CC8BE4F11223040BC36A5AD7D0255B977FAE5C1D70
checksum32: 5D876F6A3250CF46B64779F1D761A22671EFF703FAFDAD174EB9D24224248ABD
checksum64: 54CEBF09A4C0C7CED90CF2AE9B339141CA68EB51C7795B533C7F6ECA365EEE48

File 'LICENSE.txt' is obtained from:
https://sourceforge.net/p/kid3/code/ci/master/tree/LICENSE
6 changes: 3 additions & 3 deletions automatic/kid3/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$packageArgs = @{
packageName = $env:ChocolateyPackageName
destination = "$toolsDir"
file = "$toolsDir\kid3-3.8.6-win32.zip"
file64 = "$toolsDir\kid3-3.8.6-win32-x64.zip"
file = "$toolsDir\kid3-3.8.7-win32.zip"
file64 = "$toolsDir\kid3-3.8.7-win32-x64.zip"
}

if (Get-OSArchitectureWidth -compare 32) {
Expand All @@ -20,5 +20,5 @@ Remove-Item $packageArgs.file
# Install start menu shortcut
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs)
$shortcutFilePath = Join-Path $programs "Kid3.lnk"
$targetPath = Join-Path $toolsDir "kid3-3.8.6-win32${architectureWidth}\kid3.exe"
$targetPath = Join-Path $toolsDir "kid3-3.8.7-win32${architectureWidth}\kid3.exe"
Install-ChocolateyShortcut -shortcutFilePath $shortcutFilePath -targetPath $targetPath

0 comments on commit 5bb1c34

Please sign in to comment.