Updated yt_dlp version; added extremly basic dumb cache setup in thumbnailer; moved build and script as well as deb folder to build
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
from __future__ import annotations
|
||||
import os
|
||||
from collections import defaultdict
|
||||
|
||||
@@ -30,3 +31,11 @@ plugin_ies_overrides = Indirect(defaultdict(list))
|
||||
IN_CLI = Indirect(False)
|
||||
LAZY_EXTRACTORS = Indirect(None) # `False`=force, `None`=disabled, `True`=enabled
|
||||
WINDOWS_VT_MODE = Indirect(False if os.name == 'nt' else None)
|
||||
|
||||
# JS Runtimes
|
||||
# If adding support for another runtime, register it here to allow `js_runtimes` option to accept it.
|
||||
# key is the runtime name, value a JsRuntime subclass (internal-only) or None
|
||||
supported_js_runtimes = Indirect({})
|
||||
|
||||
# List of remote components supported with --remote-components option
|
||||
supported_remote_components = Indirect([])
|
||||
|
||||
Reference in New Issue
Block a user