From ae29904ed2488a6f697848e7f1b2c16766ee97b4 Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Sun, 23 Mar 2025 01:21:45 +0100 Subject: [PATCH] Make "hideHistory" settings global --- src/modules/metadata/Metadata.constants.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/modules/metadata/Metadata.constants.ts b/src/modules/metadata/Metadata.constants.ts index f23ca9e4..6237594c 100644 --- a/src/modules/metadata/Metadata.constants.ts +++ b/src/modules/metadata/Metadata.constants.ts @@ -78,6 +78,7 @@ const APP_METADATA_OBJECT: Record = { shouldShowTapZoneLayoutPreview: undefined, shouldInformAboutMissingChapter: undefined, shouldInformAboutScanlatorChange: undefined, + hideHistory: undefined, }; export const VALID_APP_METADATA_KEYS = Object.keys(APP_METADATA_OBJECT); @@ -128,6 +129,9 @@ export const GLOBAL_METADATA_KEYS: AppMetadataKeys[] = [ // browse 'hideLibraryEntries', + // history + 'hideHistory', + // tracking 'updateProgressAfterReading', 'updateProgressManualMarkRead',