forked from Github/Axter-Stash
Added special menu to advance menu.
This commit is contained in:
@@ -68,7 +68,11 @@ $(document).ready(function(){
|
||||
|
||||
if (this.id === "tag_duplicates_task")
|
||||
{
|
||||
RunPluginDupFileManager(this.id, 0, true);
|
||||
RunPluginDupFileManager(this.id, this.value, true);
|
||||
}
|
||||
else if (this.id.startsWith("tag_duplicates_task"))
|
||||
{
|
||||
RunPluginDupFileManager("tag_duplicates_task", this.value + ":" + $("#significantTimeDiff").val(), true);
|
||||
}
|
||||
else if (this.id === "viewreport")
|
||||
{
|
||||
@@ -139,7 +143,7 @@ function DeleteDupInPath(){
|
||||
<center><table style="color:darkgreen;background-color:powderblue;">
|
||||
<tr><th>DupFileManager Advance <b style="color:red;">_DuplicateMarkForDeletion</b> Tagged Files Menu</th></tr>
|
||||
<tr><td><center>
|
||||
<button type="button" id="tag_duplicates_task" title="Create new report which tags duplicates with tag name _DuplicateMarkForDeletion.">Create Duplicate Report with Tagging</button>
|
||||
<button type="button" id="tag_duplicates_task" value="-1" title="Create new report which tags duplicates with tag name _DuplicateMarkForDeletion using user settings for [Match Duplicate Distance].">Create Duplicate Report with Tagging</button>
|
||||
<button type="button" id="viewreport" title="View duplicate file report.">View Dup Report</button>
|
||||
</center></td></tr>
|
||||
<tr><td><form id="pathToDeleteForm" action="javascript:DeleteDupInPath();" target="_self">
|
||||
@@ -150,8 +154,8 @@ function DeleteDupInPath(){
|
||||
</form>
|
||||
</td></tr>
|
||||
<tr><td><form id="sizeToDeleteForm" action="javascript:DeleteDupInPath();" target="_self">
|
||||
<label for="sizeToDelete" title="File size in kilobytes (1024 bytes).">File Size (KB):</label>
|
||||
<input type="number" id="sizeToDelete" name="sizeToDelete" title="File size in kilobytes (1024 bytes)." value="123456">
|
||||
<label for="sizeToDelete" title="File size in bytes.">File Size (bytes):</label>
|
||||
<input type="number" id="sizeToDelete" name="sizeToDelete" title="File size in bytes." value="123456">
|
||||
<label for="sizeToDeleteLess">All:</label>
|
||||
<button type="button" id="sizeToDeleteLess" title="Delete tagged duplicates with file size less than"><</button>
|
||||
<button type="button" id="sizeToDeleteGreater" title="Delete tagged duplicates with file size greater than">></button>
|
||||
@@ -1659,8 +1663,65 @@ function DeleteDupInPath(){
|
||||
<button type="button" id="resolutionToDeleteBlacklistGreater" title="Delete blacklist tagged duplicates with resolution greater than">></button>
|
||||
</form>
|
||||
</td></tr>
|
||||
</td></tr></table></center>
|
||||
</table></center>
|
||||
<div id="div1"></div>
|
||||
<br>
|
||||
|
||||
<center><table style="color:darkgreen;background-color:powderblue;">
|
||||
<tr><th>Create report with different <b style="color:red;">[Match Duplicate Distance]</b> options
|
||||
<br><div style="font-size: 12px;">Overrides user [Match Duplicate Distance] and [significantTimeDiff] settings</div>
|
||||
<form id="significantTimeDiffForm" action="javascript:DeleteDupInPath();" target="_self">
|
||||
<label for="significantTimeDiff" title="Significant time difference setting, where 1 equals 100% and (.9) equals 90%.">Time Difference%:</label>
|
||||
<input type="number" min="0.25" max="1.00" step="0.01" id="significantTimeDiff" name="significantTimeDiff" title="Significant time difference setting, where 1 equals 100% and (.9) equals 90%." value="0.90">
|
||||
</form>
|
||||
</th></tr>
|
||||
<tr><td><center>
|
||||
<button type="button" id="tag_duplicates_task0" value="0" title="Create report which tags duplicates with tag name _DuplicateMarkForDeletion_0 and using [Match Duplicate Distance]=0 (Exact Match).">Create Duplicate Tagging Report [Exact Match]</button>
|
||||
</center></td></tr>
|
||||
<tr><td><center>
|
||||
<button type="button" id="tag_duplicates_task1" value="1" title="Create report which tags duplicates with tag name _DuplicateMarkForDeletion_1 and using [Match Duplicate Distance]=1 (High Match).">Create Duplicate Tagging Report [High Match]</button>
|
||||
</center></td></tr>
|
||||
<tr><td><center>
|
||||
<button type="button" id="tag_duplicates_task2" value="2" title="Create report which tags duplicates with tag name _DuplicateMarkForDeletion_2 and using [Match Duplicate Distance]=2 (Medium Match).">Create Duplicate Tagging Report [Medium Match]</button>
|
||||
</center></td></tr>
|
||||
<tr><td><center>
|
||||
<button type="button" id="tag_duplicates_task3" value="3" title="Create report which tags duplicates with tag name _DuplicateMarkForDeletion_3 and using [Match Duplicate Distance]=3 (Low Match).">Create Duplicate Tagging Report [Low Match]</button>
|
||||
</center></td></tr>
|
||||
<tr><td style="font-size: 12px;">
|
||||
<b>Details:</b>
|
||||
<ol type="I" style="padding-left: 16px;">
|
||||
<li>Match Duplicate Distance Number Details</li>
|
||||
<ol type="1" start="0" style="padding-left: 16px;">
|
||||
<li><b style="color:red;">Exact Match</b></li>
|
||||
<ol type="a" style="padding-left: 16px;">
|
||||
<li>Safest and most reliable option</li>
|
||||
<li>Uses tag name _DuplicateMarkForDeletion<b>_0</b></li>
|
||||
<li>Has the fewest results</li>
|
||||
</ol>
|
||||
<li><b style="color:red;">High Match</b></li>
|
||||
<ol type="a" style="padding-left: 16px;">
|
||||
<li>Recommended Setting</li>
|
||||
<li>Safe and usually reliable</li>
|
||||
<li>Uses tag name _DuplicateMarkForDeletion<b>_1</b></li>
|
||||
<li>Scenes tagged by Exact Match will have both tags (_DuplicateMarkForDeletion_0 and _DuplicateMarkForDeletion_1)</li>
|
||||
</ol>
|
||||
<li><b style="color:red;">Medium Match</b></li>
|
||||
<ol type="a" style="padding-left: 16px;">
|
||||
<li>Not so safe. Some false matches</li>
|
||||
<li>Uses tag name _DuplicateMarkForDeletion<b>_2</b></li>
|
||||
<li>Scenes tagged by 0 and 1 will have three tags.</li>
|
||||
</ol>
|
||||
<li><b style="color:red;">Low Match</b></li>
|
||||
<ol type="a" style="padding-left: 16px;">
|
||||
<li>Unsafe, and many false matches</li>
|
||||
<li>Uses tag name _DuplicateMarkForDeletion<b>_3</b></li>
|
||||
<li>Scenes tagged by 0, 1, and 2 will have four tags.</li>
|
||||
<li>Has the most results, but with many false matches</li>
|
||||
</ol>
|
||||
</ol>
|
||||
</ol>
|
||||
</td></tr>
|
||||
</table></center>
|
||||
|
||||
</body></html>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user