forked from Github/Axter-Stash
RenameFile Plugin Changes ### 0.5.6 - Fixed bug with studio getting the studio ID instead of the name of the studio in rename process. - Improved performance by having code get all required scene details in one call to stash. - To remove UI clutter, move rarely used options (performerAppendEnable, studioAppendEnable, tagAppendEnable, & fileRenameViaMove) to renamefile_settings.py - Change options (performerAppendEnable, studioAppendEnable, tagAppendEnable) to default to True (enabled) DupFileManager Plugin Changes ### 0.2.2 - Added dropdown menu logic to Advance Menu and reports. - Added Graylist deletion option to Advance Menu. - Report option to clear all flags from report. - Report option to clear all (_DuplicateMarkForDeletion_?) tag from all scenes. - Report option to delete from Stash DB all scenes with missing files in file system. - Added popup tag list to report which list all tags associated with scene. - Added popup performer list to report which list all performers associated with scene. - Added popup gallery list to report which list all galleries associated with scene. - Added popup group list to report which list all groups associated with scene. - After merging tags in report, the report gets updated with the merged scene metadata. - Added graylist deletion option to [**Advance Duplicate File Deletion Menu**]. - Added pinklist option to Settings->Plugins->Plugins and to [**Advance Duplicate File Deletion Menu**] - The pinklist is only used with the [**Advance Duplicate File Deletion Menu**], and it's **NOT** used in the primary process to selected candidates for deletion. - Advance Menu now works with non-tagged scenes that are in the current report.
94 lines
3.8 KiB
YAML
94 lines
3.8 KiB
YAML
name: DupFileManager
|
|
description: Manages duplicate files.
|
|
version: 0.2.2
|
|
url: https://github.com/David-Maisonave/Axter-Stash/tree/main/plugins/DupFileManager
|
|
ui:
|
|
javascript:
|
|
- DupFileManager.js
|
|
css:
|
|
- DupFileManager.css
|
|
- DupFileManager.css.map
|
|
- DupFileManager.js.map
|
|
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
|
|
exec:
|
|
- python
|
|
- "{pluginDir}/DupFileManager.py"
|
|
interface: raw
|
|
tasks:
|
|
- 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
|