Skip to content

Commit

Permalink
Package download dupeguru-me
Browse files Browse the repository at this point in the history
  • Loading branch information
tunisiano187 committed Mar 30, 2024
1 parent b88db93 commit 81dd115
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 0 deletions.
35 changes: 35 additions & 0 deletions automatic/dupeguru-me/dupeguru-me.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>dupeguru-me</id>
<version>6.8.1</version>
<title>dupeGuru Music Edition</title>
<authors>Virgil Dupras</authors>
<owners>dtgm</owners>
<licenseUrl>https://raw.githubusercontent.com/hsoft/dupeguru/master/LICENSE</licenseUrl>
<projectUrl>http://www.hardcoded.net/dupeguru/</projectUrl>
<iconUrl>https://cdn.rawgit.com/dtgm/chocolatey-packages/640f71b3c3e4c89b85daa06c2f3b74433afcf17e/icons/dupeguru-me.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>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)</description>
<summary>Find duplicate pictures in your music collection</summary>
<releaseNotes>http://www.hardcoded.net/dupeguru/help/en/changelog.html</releaseNotes>
<copyright>© Hardcoded Software</copyright>
<tags>music deduplication</tags>
</metadata>
</package>
12 changes: 12 additions & 0 deletions automatic/dupeguru-me/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -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"
9 changes: 9 additions & 0 deletions automatic/dupeguru-me/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -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
}
Binary file added icons/dupeguru-me.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 81dd115

Please sign in to comment.