diff --git a/plugins/DupFileManager/DupFileManager.py b/plugins/DupFileManager/DupFileManager.py index c2b10fd..25e307c 100644 --- a/plugins/DupFileManager/DupFileManager.py +++ b/plugins/DupFileManager/DupFileManager.py @@ -3,6 +3,9 @@ # Get the latest developers version from following link: https://github.com/David-Maisonave/Axter-Stash/tree/main/plugins/DupFileManager # Note: To call this script outside of Stash, pass any argument. # Example: python DupFileManager.py start + +# Research following links to complete this plugin: +# https://github.com/WithoutPants/stash-plugin-duplicate-finder import os import sys import time diff --git a/plugins/FileMonitor/filemonitor_config.py b/plugins/FileMonitor/filemonitor_config.py index 93371ed..2cf62d9 100644 --- a/plugins/FileMonitor/filemonitor_config.py +++ b/plugins/FileMonitor/filemonitor_config.py @@ -9,7 +9,7 @@ config = { # Enable to monitor changes in file system for modification flag. This option is NOT needed for Windows, because on Windows changes are triggered via CREATE, DELETE, and MOVE flags. Other OS may differ. "scanModified": False, # Timeout in seconds. This is how often it will check if a stop signal is sent. - "timeOut": 60, + "timeOut": 3600, # Enable to exit FileMonitor by creating special file in plugin folder\working "createSpecFileToExit": True, # Enable to delete special file imediately after it's created in stop process