Add generic-mode URL validation and UI
Introduce a "generic_mode" option to allow validating/downloading from non-YouTube sites and wire it through the UI, config, and validation logic. Key changes: - Add generic_mode default to ConfigManager and persist setting from DownloadSettingsDialog (checkbox + help text). - Extend validate_video_url to accept a generic_mode flag and allow any http/https URL with a domain when enabled; pass this flag from Analysis and Download flows. - Update YTSageApp to load/save generic_mode, update URL placeholder and settings tooltip behavior, and refresh tooltip when settings change. - Improve robustness in FormatTableMixin: handle None/incorrect types for format_note, abr, resolution, ext, and codec values to avoid type errors and ensure consistent display. - Add localization entries for generic mode, placeholder, and related help text across multiple language files and update the in-app default localization strings. These changes enable broader site support via yt-dlp while hardening UI format handling and keeping user settings persistent.
This commit is contained in:
@@ -272,6 +272,9 @@
|
||||
"browse": "Gözat...",
|
||||
"speed_limit": "Hız sınırı",
|
||||
"speed_limit_placeholder": "Yok",
|
||||
"generic_mode": "Genel mod",
|
||||
"enable_generic_mode": "Genel modu etkinleştir (YouTube dışı siteleri destekle)",
|
||||
"generic_mode_help": "Dailymotion, CBC Gem ve yt-dlp tarafından desteklenen diğer sitelerden indirmeye izin verir.",
|
||||
"auto_update_ytdlp": "yt-dlp otomatik güncelleme",
|
||||
"enable_auto_updates": "yt-dlp otomatik güncellemelerini etkinleştir",
|
||||
"update_frequency": "Güncelleme sıklığı:",
|
||||
@@ -335,6 +338,7 @@
|
||||
},
|
||||
"main_ui": {
|
||||
"url_placeholder": "YouTube video veya oynatma listesi URL'sini girin",
|
||||
"url_placeholder_generic": "Desteklenen herhangi bir siteden video veya oynatma listesi URL'si girin",
|
||||
"merge_subtitles": "Altyazıları birleştir",
|
||||
"save_thumbnail": "Küçük resmi kaydet",
|
||||
"save_description": "Açıklamayı kaydet",
|
||||
|
||||
Reference in New Issue
Block a user