From b653365fb7705c3945139d5a00abd7fa1cf92879 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Mon, 22 Jul 2024 16:33:36 -0700 Subject: feat(Manga): allow preferring native chapter count --- src/stores/settings.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/stores/settings.ts') diff --git a/src/stores/settings.ts b/src/stores/settings.ts index 37558cba..214433d6 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -26,6 +26,7 @@ export interface Settings { displayTitleFormat: 'english' | 'romaji' | 'native'; calculateGuessMethod: 'median' | 'iqr_median' | 'iqr_mode' | 'mode'; calculateDisableOutOfDateVolumeWarning: boolean; + calculatePreferNativeChapterCount: boolean; displayPlannedAnime: boolean; displayFurigana: boolean; displayAoButa: @@ -106,6 +107,7 @@ const defaultSettings: Settings = { calculateDisableOutOfDateVolumeWarning: false, calculateGuessingDisabled: true, calculateGuessMethod: 'iqr_mode', + calculatePreferNativeChapterCount: false, // Cache cacheMangaMinutes: 120, -- cgit v1.2.3