forked from Github/Axter-Stash
### 1.1.6 beta Note: This is a beta version, because not all of the javascript ajax functions have been tested yet. - Added the following to [**Advance Duplicate File Menu**] - Scene cover preview image option - Webp preview video option - Fix json string return for all calls made from javascript. - Added DupFileManagerPyVer field to json when called from javascript. - When deleting scene using Report, replaced completion prompt with scene background set to gray. - In Report, when rename occurs, the scene gets renamed inline, without having to reload report page. - Added GetRunPluginOperationJson to DupFileManager_report.js which allows result to safely be converted to json. If fails, it gracefully returns null.
105 lines
4.4 KiB
YAML
105 lines
4.4 KiB
YAML
name: DupFileManager
|
|
description: Manages duplicate files.
|
|
version: 1.1.6 beta
|
|
url: https://github.com/David-Maisonave/Axter-Stash/tree/main/plugins/DupFileManager
|
|
ui:
|
|
# css:
|
|
# - https://axter.com/js/easyui/themes/black/easyui.css
|
|
# - https://axter.com/js/easyui/themes/icon.css
|
|
# - https://www.axter.com/js/jquery.prompt.css
|
|
javascript:
|
|
- https://axter.com/js/jquery-3.7.1.min.js
|
|
# - https://axter.com/js/easyui/jquery.easyui.min.js
|
|
# - https://www.axter.com/js/jquery.prompt.js
|
|
- DupFileManager.js
|
|
settings:
|
|
matchDupDistance:
|
|
displayName: Match Duplicate Distance
|
|
description: (Default=0) Where 0 = Exact Match, 1 = High Match, 2 = Medium Match, and 3 = Low Match.
|
|
type: NUMBER
|
|
mergeDupFilename:
|
|
displayName: Merge Duplicate Tags
|
|
description: Before deletion, merge metadata from duplicate. E.g. Tag names, performers, studios, title, galleries, rating, details, etc...
|
|
type: BOOLEAN
|
|
whitelistDelDupInSameFolder:
|
|
displayName: Whitelist Delete In Same Folder
|
|
description: Allow whitelist deletion of duplicates within the same whitelist folder.
|
|
type: BOOLEAN
|
|
zvWhitelist:
|
|
displayName: White List
|
|
description: A comma seperated list of paths NOT to be deleted. E.g. C:\Favorite\,E:\MustKeep\
|
|
type: STRING
|
|
zwGraylist:
|
|
displayName: Gray List
|
|
description: Preferential paths to determine which duplicate should be kept. E.g. C:\2nd_Fav,C:\3rd_Fav,C:\4th_Fav,H:\ShouldKeep
|
|
type: STRING
|
|
zxBlacklist:
|
|
displayName: Black List
|
|
description: Least preferential paths; Determine primary deletion candidates. E.g. C:\Downloads,C:\DelMe-3rd,C:\DelMe-2nd,C:\DeleteMeFirst
|
|
type: STRING
|
|
zxPinklist:
|
|
displayName: Pink List
|
|
description: An [Advance Duplicate File Deletion Menu] option for deletion using paths. E.g. C:\SomeRandomDir,E:\DelPath2
|
|
type: STRING
|
|
zyMaxDupToProcess:
|
|
displayName: Max Dup Process
|
|
description: (Default=0) Maximum number of duplicates to process. If 0, infinity.
|
|
type: NUMBER
|
|
zySwapBetterBitRate:
|
|
displayName: Swap Better Bit Rate
|
|
description: Swap better bit rate for duplicate files. Use with DupFileManager_config.py file option favorHighBitRate
|
|
type: BOOLEAN
|
|
zySwapBetterFrameRate:
|
|
displayName: Swap Better Frame Rate
|
|
description: Swap better frame rate for duplicates. Use with DupFileManager_config.py file option favorHigherFrameRate
|
|
type: BOOLEAN
|
|
zySwapCodec:
|
|
displayName: Swap Better Codec
|
|
description: If enabled, swap better codec duplicate files to preferred path.
|
|
type: BOOLEAN
|
|
zySwapHighRes:
|
|
displayName: Swap Higher Resolution
|
|
description: If enabled, swap higher resolution duplicate files to preferred path.
|
|
type: BOOLEAN
|
|
zySwapLongLength:
|
|
displayName: Swap Longer Duration
|
|
description: If enabled, swap longer duration media files to preferred path. Longer is determine by significantLongerTime field.
|
|
type: BOOLEAN
|
|
zzDebug:
|
|
displayName: Debug
|
|
description: Enable debug so-as to add additional debug logging in Stash\plugins\DupFileManager\DupFileManager.log
|
|
type: BOOLEAN
|
|
zzTracing:
|
|
displayName: Tracing
|
|
description: Enable tracing and debug so-as to add additional tracing and debug logging in Stash\plugins\DupFileManager\DupFileManager.log
|
|
type: BOOLEAN
|
|
zzdryRun:
|
|
displayName: Dry Run
|
|
description: Enable to run script in [Dry Run] mode. In dry run mode, files are NOT deleted, and only logging is performed. Use the logging to determine if deletion will occur as expected.
|
|
type: BOOLEAN
|
|
exec:
|
|
- python
|
|
- "{pluginDir}/DupFileManager.py"
|
|
interface: raw
|
|
tasks:
|
|
- name: Create Duplicate Report
|
|
description: Create a report listing duplicates, which can be viewed using Stash->Settings->Tools->[Duplicate File Report]
|
|
defaultArgs:
|
|
mode: create_duplicate_report_task
|
|
- name: Tag Duplicates
|
|
description: Set tag DuplicateMarkForDeletion to the duplicates with lower resolution, duration, file name length, or black list path.
|
|
defaultArgs:
|
|
mode: tag_duplicates_task
|
|
- name: Clear Tags
|
|
description: Clear tag DuplicateMarkForDeletion. Remove the tag from all files.
|
|
defaultArgs:
|
|
mode: clear_duplicate_tags_task
|
|
- name: Delete Tagged Scenes
|
|
description: Only delete scenes having DuplicateMarkForDeletion tag.
|
|
defaultArgs:
|
|
mode: delete_tagged_duplicates_task
|
|
- name: Delete Duplicates
|
|
description: Delete duplicate scenes. Performs deletion without first tagging.
|
|
defaultArgs:
|
|
mode: delete_duplicates_task
|