feat: add toggle to hide streamystats watchlist tab/functions

This commit is contained in:
Fredrik Burmester
2026-01-04 14:31:55 +01:00
parent 4121502bfe
commit d22827bc9b
5 changed files with 32 additions and 3 deletions

View File

@@ -202,6 +202,7 @@ export type Settings = {
videoPlayerIOS: VideoPlayerIOS;
// Appearance
hideRemoteSessionButton: boolean;
hideWatchlistsTab: boolean;
// Audio look-ahead caching
audioLookaheadEnabled: boolean;
audioLookaheadCount: number;
@@ -290,6 +291,7 @@ export const defaultValues: Settings = {
videoPlayerIOS: VideoPlayerIOS.VLC,
// Appearance
hideRemoteSessionButton: false,
hideWatchlistsTab: false,
// Audio look-ahead caching defaults
audioLookaheadEnabled: true,
audioLookaheadCount: 2,