From 26fec272a3e250b039115a890a9b3940524b82f7 Mon Sep 17 00:00:00 2001 From: desofity <6726250@rambler.ru> Date: Mon, 28 Jul 2025 20:22:50 +0300 Subject: [PATCH] fixed prompts --- src/iSponsorBlockTV/config_setup.py | 2 +- src/iSponsorBlockTV/setup_wizard.py | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/iSponsorBlockTV/config_setup.py b/src/iSponsorBlockTV/config_setup.py index 6c16d6b..fc19c23 100644 --- a/src/iSponsorBlockTV/config_setup.py +++ b/src/iSponsorBlockTV/config_setup.py @@ -5,7 +5,7 @@ import aiohttp from . import api_helpers, ytlounge # Constants for user input prompts -USE_PROXY_PROMPT = "Do you want to use system-wide proxy?" +USE_PROXY_PROMPT = "Do you want to use system-wide proxy? (y/N)" ATVS_REMOVAL_PROMPT = ( "Do you want to remove the legacy 'atvs' entry (the app won't start with it present)? (y/N) " ) diff --git a/src/iSponsorBlockTV/setup_wizard.py b/src/iSponsorBlockTV/setup_wizard.py index 934660c..707cec3 100644 --- a/src/iSponsorBlockTV/setup_wizard.py +++ b/src/iSponsorBlockTV/setup_wizard.py @@ -901,7 +901,11 @@ class UseProxyManager(Vertical): yield Label("Use proxy", classes="title") yield Label( "This feature allows application to use system proxy," - " if it is set in environmental variables.", + " if it is set in environment variables." + " This parameter will be passed in all [i]aiohttp.ClientSession[/i]" + " calls. For further information, see \"[i]trust_env[/i]\" section at" + " [link='https://docs.aiohttp.org/en/stable/client_reference.html']" + "aiohttp documentation[/link].", classes="subtitle", id="useproxy-subtitle", )