web/settings: add an option to hide the remux tab on mobile
This commit is contained in:
@@ -12,6 +12,7 @@ const defaultSettings: CobaltSettings = {
|
||||
theme: "auto",
|
||||
language: defaultLocale,
|
||||
autoLanguage: true,
|
||||
hideRemuxTab: false,
|
||||
},
|
||||
accessibility: {
|
||||
reduceMotion: false,
|
||||
|
||||
@@ -2,7 +2,9 @@ import { type CobaltSettingsV4 } from "$lib/types/settings/v4";
|
||||
|
||||
export type CobaltSettingsV5 = Omit<CobaltSettingsV4, 'schemaVersion' | 'advanced' | 'save' | 'privacy' | 'appearance'> & {
|
||||
schemaVersion: 5,
|
||||
appearance: Omit<CobaltSettingsV4['appearance'], 'reduceMotion' | 'reduceTransparency'>,
|
||||
appearance: Omit<CobaltSettingsV4['appearance'], 'reduceMotion' | 'reduceTransparency'> & {
|
||||
hideRemuxTab: boolean,
|
||||
},
|
||||
accessibility: {
|
||||
reduceMotion: boolean;
|
||||
reduceTransparency: boolean;
|
||||
|
||||
Reference in New Issue
Block a user