feat: hide libraries

This commit is contained in:
Fredrik Burmester
2025-01-05 15:46:44 +01:00
parent 49d157a95a
commit cf2beb8299
6 changed files with 125 additions and 89 deletions

View File

@@ -88,6 +88,7 @@ export type Settings = {
remuxConcurrentLimit: 1 | 2 | 3 | 4;
safeAreaInControlsEnabled: boolean;
jellyseerrServerUrl?: string;
hiddenLibraries?: string[];
};
const loadSettings = (): Settings => {
@@ -126,6 +127,7 @@ const loadSettings = (): Settings => {
remuxConcurrentLimit: 1,
safeAreaInControlsEnabled: true,
jellyseerrServerUrl: undefined,
hiddenLibraries: [],
};
try {