From 0dd5de9df01636b1212e97e9c6eaa8060246720e Mon Sep 17 00:00:00 2001 From: Audionut Date: Mon, 18 Nov 2024 19:42:08 +1000 Subject: [PATCH] Clarify PTP config --- data/example-config.py | 4 ++++ src/trackers/PTP.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/data/example-config.py b/data/example-config.py index 2279437d..74344f11 100644 --- a/data/example-config.py +++ b/data/example-config.py @@ -31,8 +31,12 @@ # Number of screenshots to use for each (ALL) disc/episode when uploading packs to supported sites. # 0 equals old behavior where only the original description and images are added. + # This setting also effect PTP, however PTP requries at least 2 images for each. + # PTP will always use a *minimum* of 2, regardless of what is set here. "multiScreens": "2", + # The below options for packed content do not effect PTP. PTP has a set standard. + # When uploading packs, you can specifiy a different screenshot thumbnail size, default 300. "pack_thumb_size": "300", diff --git a/src/trackers/PTP.py b/src/trackers/PTP.py index 764e07a4..fb8efcd7 100644 --- a/src/trackers/PTP.py +++ b/src/trackers/PTP.py @@ -619,9 +619,9 @@ async def edit_desc(self, meta): prep = Prep(screens=meta['screens'], img_host=meta['imghost'], config=self.config) base = open(f"{meta['base_dir']}/tmp/{meta['uuid']}/DESCRIPTION.txt", 'r', encoding="utf-8").read() multi_screens = int(self.config['DEFAULT'].get('multiScreens', 2)) - if multi_screens == 0: + if multi_screens < 2: multi_screens = 2 - console.print("[yellow]PTP requires screenshots for multi disc/file content, overriding config") + console.print("[yellow]PTP requires at least 2 screenshots for multi disc/file content, overriding config") with open(f"{meta['base_dir']}/tmp/{meta['uuid']}/[{self.tracker}]DESCRIPTION.txt", 'w', encoding="utf-8") as desc: images = meta['image_list']