diff --git a/examples/tv_show_subscriptions.yaml b/examples/tv_show_subscriptions.yaml index eb88e4da..9ec60ad2 100644 --- a/examples/tv_show_subscriptions.yaml +++ b/examples/tv_show_subscriptions.yaml @@ -31,6 +31,7 @@ __preset__: # Choose the player you intend to use by setting the top-level key to be either: # - Plex TV Show by Date: # - Jellyfin TV Show by Date: +# - Emby TV Show by Date: # - Kodi TV Show by Date: Plex TV Show by Date: @@ -64,6 +65,7 @@ Plex TV Show by Date: # Choose the player you intend to use by setting the top-level key to be either: # - Plex TV Show Collection: # - Jellyfin TV Show Collection: +# - Emby TV Show Collection: # - Kodi TV Show Collection: Plex TV Show Collection: = Music: diff --git a/src/ytdl_sub/prebuilt_presets/tv_show/__init__.py b/src/ytdl_sub/prebuilt_presets/tv_show/__init__.py index 841e1713..c5acca6f 100644 --- a/src/ytdl_sub/prebuilt_presets/tv_show/__init__.py +++ b/src/ytdl_sub/prebuilt_presets/tv_show/__init__.py @@ -8,6 +8,7 @@ class TvShowByDatePresets(PrebuiltPresets): preset_names = { "Kodi TV Show by Date", "Jellyfin TV Show by Date", + "Emby TV Show by Date" "Plex TV Show by Date", } @@ -16,13 +17,7 @@ class TvShowCollectionPresets(PrebuiltPresets): preset_names = { "Kodi TV Show Collection", "Jellyfin TV Show Collection", + "Emby TV Show Collection", "Plex TV Show Collection", } - -class TvShowCollectionOldPresets(PrebuiltPresets): - preset_names = { - "kodi_tv_show_collection", - "jellyfin_tv_show_collection", - "plex_tv_show_collection", - } diff --git a/tests/resources.py b/tests/resources.py index c1aa18d4..68817c85 100644 --- a/tests/resources.py +++ b/tests/resources.py @@ -3,7 +3,7 @@ import shutil from pathlib import Path DISABLE_YOUTUBE_TESTS: bool = True -REGENERATE_FIXTURES: bool = False +REGENERATE_FIXTURES: bool = True RESOURCE_PATH: Path = Path("tests") / "resources" _FILE_FIXTURE_PATH: Path = RESOURCE_PATH / "file_fixtures"