aboutsummaryrefslogtreecommitdiff
path: root/src/stores/settings.ts
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-07-22 16:33:36 -0700
committerFuwn <[email protected]>2024-07-22 16:33:36 -0700
commitb653365fb7705c3945139d5a00abd7fa1cf92879 (patch)
tree7eb9038398b619ebe3d44221b8d035fc3b423cec /src/stores/settings.ts
parentfeat(Data): raw manga chapter count handler (diff)
downloaddue.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.ts2
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,