diff --git a/automatic/dupeguru-me/dupeguru-me.nuspec b/automatic/dupeguru-me/dupeguru-me.nuspec new file mode 100644 index 000000000..7073bc1bd --- /dev/null +++ b/automatic/dupeguru-me/dupeguru-me.nuspec @@ -0,0 +1,35 @@ + + + + dupeguru-me + 6.8.1 + dupeGuru Music Edition + Virgil Dupras + dtgm + https://raw.githubusercontent.com/hsoft/dupeguru/master/LICENSE + http://www.hardcoded.net/dupeguru/ + https://cdn.rawgit.com/dtgm/chocolatey-packages/640f71b3c3e4c89b85daa06c2f3b74433afcf17e/icons/dupeguru-me.png + false + dupeGuru Music Edition (ME for short) is a tool to find duplicate songs in your music collection. It can scan filenames, tags or contents. dupeGuru ME is a big brother of dupeGuru. It does everything dupeGuru does, but it has more information columns (such as bitrate, duration, tags, etc..) and more scan types (filename with fields, tags and audio content). dupeGuru ME runs on Windows, Mac OS X and Linux. + +dupeGuru ME is efficient. Find your duplicate files in minutes, thanks to its quick fuzzy matching algorithm. dupeGuru ME not only finds filenames and tags that are the same, but it also finds similar ones. For example, with the right settings, dupeGuru ME can determine that "The White Stripes - Seven Nation Army" and "White Stripe - Seven Nation Armies" are duplicates. + +dupeGuru ME is customizable. You can tweak its matching engine to find exactly the kind of duplicates you want to find. The Preference page of the help file lists all the scanning engine settings you can change. + +dupeGuru ME is safe. Its engine has been especially designed with safety in mind. Its reference directory system as well as its grouping system prevent you from deleting files you didn't mean to delete. + +dupeGuru ME rocks. With support for MP3, WMA, AAC (iTunes format), OGG, FLAC, loss-less AAC and loss-less WMA, we can say that it got music built-in. Therefore, it rocks. + +Do whatever you want with your duplicates. Not only can you delete duplicates files dupeGuru finds, but you can also move or copy them elsewhere. There are also multiple ways to filter and sort your results to easily weed out false duplicates (for low threshold scans). + +Supported languages: English, French, German, Chinese (Simplified), Czech, Italian, Armenian, Russian, Ukrainian, Brazilian. + +[Documentation](http://hardcoded.net/dupeguru/help/en/) +[User support forum](http://forum.hardcoded.net/1/) +[Source code](https://github.com/hsoft/dupeguru) + Find duplicate pictures in your music collection + http://www.hardcoded.net/dupeguru/help/en/changelog.html + © Hardcoded Software + music deduplication + + \ No newline at end of file diff --git a/automatic/dupeguru-me/tools/chocolateyInstall.ps1 b/automatic/dupeguru-me/tools/chocolateyInstall.ps1 new file mode 100644 index 000000000..3b334c1e8 --- /dev/null +++ b/automatic/dupeguru-me/tools/chocolateyInstall.ps1 @@ -0,0 +1,12 @@ +$packageName = 'dupeguru-me' +$installerType = 'msi' +$silentArgs = '/qn /norestart' +$url = 'http://download.hardcoded.net/dupeguru_me_win64_6.8.1.msi' +$checksum = '201b763b40b01e22553d5ccb2f6ff8c9f6134143' +$checksumType = 'sha1' +$url64 = $url +$checksum64 = $checksum +$checksumType64 = $checksumType +$validExitCodes = @(0) + +Install-ChocolateyPackage -PackageName "$packageName" -FileType "$installerType" -Url "$url" -Url64bit "$url64" -SilentArgs "$silentArgs" -ValidExitCodes $validExitCodes -Checksum "$checksum" -ChecksumType "$checksumType" -Checksum64 "$checksum64" -ChecksumType64 "$checksumType64" \ No newline at end of file diff --git a/automatic/dupeguru-me/tools/chocolateyUninstall.ps1 b/automatic/dupeguru-me/tools/chocolateyUninstall.ps1 new file mode 100644 index 000000000..8cb0f6ab1 --- /dev/null +++ b/automatic/dupeguru-me/tools/chocolateyUninstall.ps1 @@ -0,0 +1,9 @@ +try { + $packageName = 'dupeguru-me' + $packageSearch = "dupeguru " + "music" + "*" + $packageVersion = '6.8.1' + $uninstallPackage = Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -like $packageSearch -and ($_.Version -eq $packageVersion) } + $uninstallResults = $uninstallPackage.Uninstall() +} catch { + throw $_.Exception +} \ No newline at end of file diff --git a/icons/dupeguru-me.png b/icons/dupeguru-me.png new file mode 100644 index 000000000..187c21c8c Binary files /dev/null and b/icons/dupeguru-me.png differ