diff options
| author | Fuwn <[email protected]> | 2024-07-22 16:33:36 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-07-22 16:33:36 -0700 |
| commit | b653365fb7705c3945139d5a00abd7fa1cf92879 (patch) | |
| tree | 7eb9038398b619ebe3d44221b8d035fc3b423cec /src/stores/settings.ts | |
| parent | feat(Data): raw manga chapter count handler (diff) | |
| download | due.moe-b653365fb7705c3945139d5a00abd7fa1cf92879.tar.xz due.moe-b653365fb7705c3945139d5a00abd7fa1cf92879.zip | |
feat(Manga): allow preferring native chapter count
Diffstat (limited to 'src/stores/settings.ts')
| -rw-r--r-- | src/stores/settings.ts | 2 |
1 files changed, 2 insertions, 0 deletions
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, |