diff --git a/plugins/DupFileManager/DupFileManager.py b/plugins/DupFileManager/DupFileManager.py index 3e5b0b1..778ead5 100644 --- a/plugins/DupFileManager/DupFileManager.py +++ b/plugins/DupFileManager/DupFileManager.py @@ -1721,12 +1721,12 @@ def updateScenesInReports(scene, ReportName = htmlReportName): stash.Log(f"Report file does not exist: {ReportName}") def addPropertyToSceneClass(fileName, scene, property): - stash.Log(f"Inserting property {property} for scene {scene} in file {fileName}") + stash.Debug(f"Inserting property {property} for scene {scene} in file {fileName}") doStyleEndTagCheck = True lines = None with open(fileName, 'r') as file: lines = file.readlines() - stash.Log(f"line count = {len(lines)}") + stash.Debug(f"line count = {len(lines)}") with open(fileName, 'w') as file: for line in lines: # stash.Debug(f"line = {line}") @@ -1744,7 +1744,7 @@ def addPropertyToSceneClass(fileName, scene, property): if line.startswith(""): if property != "" and property != "remove highlight": styleSetting = f".ID_{scene}{property}\n" - stash.Log(f"styleSetting = {styleSetting}") + stash.Debug(f"styleSetting = {styleSetting}") file.write(styleSetting) doStyleEndTagCheck = False file.write(line) @@ -1794,6 +1794,7 @@ def copyScene(moveScene=False): return if moveScene: stash.mergeMetadata(scene1, scene2) + stash.Debug(f"Coping file {scene1['files'][0]['path']} to {scene2['files'][0]['path']}") result = shutil.copy(scene1['files'][0]['path'], scene2['files'][0]['path']) if moveScene: if dry_run: diff --git a/plugins/DupFileManager/DupFileManager.yml b/plugins/DupFileManager/DupFileManager.yml index e1c755f..8544b65 100644 --- a/plugins/DupFileManager/DupFileManager.yml +++ b/plugins/DupFileManager/DupFileManager.yml @@ -1,6 +1,6 @@ name: DupFileManager description: Manages duplicate files. -version: 1.0.0.3 +version: 1.0.0 url: https://github.com/David-Maisonave/Axter-Stash/tree/main/plugins/DupFileManager ui: javascript: diff --git a/plugins/DupFileManager/README.md b/plugins/DupFileManager/README.md index f850c9e..ed40e70 100644 --- a/plugins/DupFileManager/README.md +++ b/plugins/DupFileManager/README.md @@ -1,4 +1,4 @@ -# DupFileManager: Ver 1.0.0.3 (By David Maisonave) +# DupFileManager: Ver 1.0.0 (By David Maisonave) DupFileManager is a [Stash](https://github.com/stashapp/stash) plugin which manages duplicate files in the Stash system. It has both **task** and **tools-UI** components. diff --git a/plugins/DupFileManager/version_history/README.md b/plugins/DupFileManager/version_history/README.md index 736c2a1..cd939ea 100644 --- a/plugins/DupFileManager/version_history/README.md +++ b/plugins/DupFileManager/version_history/README.md @@ -1,4 +1,5 @@ ##### This page was added starting on version 0.2.0 to keep track of newly added features between versions. +- Note: Sub versions (x.x.x.**x**) are only listed on this page. ### 0.2.0 - For report, added logic to transfer option settings **[Disable Complete Confirmation]** and **[Disable Delete Confirmation]** when paginating. - Fixed minor bug in advance_options.html for GQL params.