feat(tv): add setting to show series poster on episode detail pages

This commit is contained in:
Fredrik Burmester
2026-01-25 23:01:08 +01:00
parent 875a017e8c
commit dca7cc99f2
5 changed files with 41 additions and 16 deletions

View File

@@ -211,6 +211,7 @@ export type Settings = {
showHomeBackdrop: boolean;
showTVHeroCarousel: boolean;
tvTypographyScale: TVTypographyScale;
showSeriesPosterOnEpisode: boolean;
// Appearance
hideRemoteSessionButton: boolean;
hideWatchlistsTab: boolean;
@@ -301,6 +302,7 @@ export const defaultValues: Settings = {
showHomeBackdrop: true,
showTVHeroCarousel: true,
tvTypographyScale: TVTypographyScale.Default,
showSeriesPosterOnEpisode: false,
// Appearance
hideRemoteSessionButton: false,
hideWatchlistsTab: false,