feat(settings): add toggle to disable auto-play next episode (#1342)

This commit is contained in:
Fredrik Burmester
2026-01-11 13:07:38 +01:00
committed by GitHub
parent 0e238ad10e
commit 62b45121e5
4 changed files with 36 additions and 16 deletions

View File

@@ -180,6 +180,7 @@ export type Settings = {
enableH265ForChromecast: boolean;
maxAutoPlayEpisodeCount: MaxAutoPlayEpisodeCount;
autoPlayEpisodeCount: number;
autoPlayNextEpisode: boolean;
// Playback speed settings
defaultPlaybackSpeed: number;
playbackSpeedPerMedia: Record<string, number>;
@@ -264,6 +265,7 @@ export const defaultValues: Settings = {
enableH265ForChromecast: false,
maxAutoPlayEpisodeCount: { key: "3", value: 3 },
autoPlayEpisodeCount: 0,
autoPlayNextEpisode: true,
// Playback speed defaults
defaultPlaybackSpeed: 1.0,
playbackSpeedPerMedia: {},