diff --git a/automatic/openmpt/Changelog.md b/automatic/openmpt/Changelog.md index 4eab757c1..f3c0592a4 100644 --- a/automatic/openmpt/Changelog.md +++ b/automatic/openmpt/Changelog.md @@ -1,4 +1,5 @@ # ![OpenMPT Changelog](https://img.shields.io/badge/OpenMPT-Package%20Changelog-blue.svg?style=for-the-badge) -## UPCOMING +## Version: 1.28.1.0 (2019-01-05) - Taken over as a new maintainer of the openmpt package (original maintainer: nipsky) + diff --git a/automatic/openmpt/Readme.md b/automatic/openmpt/Readme.md index bb4a34c80..6da753120 100644 --- a/automatic/openmpt/Readme.md +++ b/automatic/openmpt/Readme.md @@ -1,4 +1,4 @@ -# [ ![OpenMPT](https://img.shields.io/chocolatey/v/openmpt.svg?label=OpenMPT&style=for-the-badge)](https://chocolatey.org/packages/openmpt) +# [ ![OpenMPT](https://img.shields.io/chocolatey/v/openmpt.svg?label=OpenMPT&style=for-the-badge)](https://chocolatey.org/packages/openmpt) **OpenMPT** is a popular [tracker](https://en.wikipedia.org/wiki/Tracker_%28music_software%29) software for Windows. OpenMPT (short hand for **Open ModPlug Tracker**) is completely free and allows you to create and play back some great music on your computer. Based on the original ModPlug Tracker written by Olivier Lapicque, OpenMPT is free software, can import a wide variety of module formats and offers an intuitive, native GUI as well as advanced features such as [VST][] plugins and [ASIO][] output. In addition to its own song format, OpenMPT can natively edit Impulse Tracker, FastTracker, Scream Tracker and ProTracker module files diff --git a/automatic/openmpt/legal/VERIFICATION.txt b/automatic/openmpt/legal/VERIFICATION.txt index 0d606f059..12c07319e 100644 --- a/automatic/openmpt/legal/VERIFICATION.txt +++ b/automatic/openmpt/legal/VERIFICATION.txt @@ -7,15 +7,15 @@ location on and can be verified by doing the following: 1. Download the following: - 32-Bit software: <> - 64-Bit software: <> + 32-Bit software: + 64-Bit software: 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: - checksum32: - checksum64: + checksum type: sha256 + checksum32: 9CA8A09F46CB64ECA159AB19DF5819106602C52A3447842E09C9339C38B7ECD5 + checksum64: F3DE7047C7D4C28310DDC6898C7BA993F9452214E802CE2C5E030088851729F5 The file 'LICENSE.txt' has been obtained from diff --git a/automatic/openmpt/openmpt.nuspec b/automatic/openmpt/openmpt.nuspec index 7f8d0b0ed..c01c743ce 100644 --- a/automatic/openmpt/openmpt.nuspec +++ b/automatic/openmpt/openmpt.nuspec @@ -3,13 +3,13 @@ openmpt - 1.27.05.00 + 1.28.1.0 https://github.com/AdmiringWorm/chocolatey-packages/tree/master/automatic/openmpt AdmiringWorm, nipsky AdmiringWorm OpenMPT ModPlug Central http://openmpt.org - https://cdn.jsdelivr.net/gh/AdmiringWorm/chocolatey-packages@36f480238c82ed040dee8926cf562c1c78e73ac3/icons/openmpt.png + https://cdn.jsdelivr.net/gh/AdmiringWorm/chocolatey-packages@abc1aeedc7fd4e466d99f084b878fc616e79129c/icons/openmpt.png ModPlug Central https://source.openmpt.org/browse/openmpt/trunk/OpenMPT/LICENSE false @@ -20,45 +20,15 @@ openmpt music mod tracker notsilent admin OpenMPT is a powerful audio application that makes writing music fun, easy and efficient. - OpenMPT is being developed since 1997 (initially named ModPlug Tracker) and has grown a lot since then. It can be used as a "classic" sample-based tracker to edit and play your favourite tracked music, but also as a modern DAW with plugin support and other great features. Here, you can find some of the key features of the tracker. - v1.27.05.00 (11 February 2018, revision 9643) - --------------------------------------------- - Pattern tab - [Imp] <js> Seeking with sample sync now supports fine volume slides. - [Mod] <js> Interpolating the note column no longer overwrites existing instrument numbers. - [Fix] <js> Possible crash when trying to enter notes after deleting all patterns. + +[ASIO]: https://en.wikipedia.org/wiki/Audio_Stream_Input/Output +[VST]: https://en.wikipedia.org/wiki/Virtual_Studio_Technology +*[ASIO]: Audio Stream Input/Output, a common low-latency audio driver protocol +*[VST]: Virtual Studio Technology, a common audio plugin interface +]]> + [Software Changelog](https://openmpt.org/release_notes/) +[Package Changelog](https://github.com/AdmiringWorm/chocolatey-packages/blob/master/automatic/openmpt/Changelog.md) diff --git a/automatic/openmpt/tools/chocolateyInstall.ps1 b/automatic/openmpt/tools/chocolateyInstall.ps1 index fee1a6407..204ea0cb3 100644 --- a/automatic/openmpt/tools/chocolateyInstall.ps1 +++ b/automatic/openmpt/tools/chocolateyInstall.ps1 @@ -5,8 +5,8 @@ $toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition $packageArgs = @{ packageName = $env:ChocolateyPackageName fileType = 'exe' - file = "$toolsPath\" - file64 = "$toolsPath\" + file = "$toolsPath\OpenMPT-1.28.01.00-Setup.exe" + file64 = "$toolsPath\OpenMPT-1.28.01.00-Setup-x64.exe" softwareName = 'OpenMPT*' silentArgs = "/VERYSILENT /NORESTART /SUPPRESSMSGBOXES /SP- /LOG=`"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).InnoInstall.log`"" validExitCodes = @(0) @@ -14,4 +14,4 @@ $packageArgs = @{ Install-ChocolateyInstallPackage @packageArgs -ls $toolsPath\*.exe | % { rm $_ -ea 0; if (Test-Path $_) { sc "$_.ignore" } } +Get-ChildItem $toolsPath\*.exe | ForEach-Object { Remove-Item $_ -ea 0; if (Test-Path $_) { Set-Content "$_.ignore" } }