aboutsummaryrefslogtreecommitdiff
path: root/src/stores
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-11-18 16:43:05 -0800
committerFuwn <[email protected]>2024-11-18 16:43:05 -0800
commitf82a798a099e844084c863624f2d718ab942e197 (patch)
tree712e8cb188621dbc4b1782977e03ab6a4fc0a0c1 /src/stores
parentfeat(CleanMangaList): add total due episode count toggle function (diff)
downloaddue.moe-f82a798a099e844084c863624f2d718ab942e197.tar.xz
due.moe-f82a798a099e844084c863624f2d718ab942e197.zip
feat(List): display total episodes everywhere toggle
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/settings.ts22
1 files changed, 12 insertions, 10 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts
index 9d6b0e3e..3d663a23 100644
--- a/src/stores/settings.ts
+++ b/src/stores/settings.ts
@@ -30,16 +30,16 @@ export interface Settings {
displayPlannedAnime: boolean;
displayFurigana: boolean;
displayAoButa:
- | 'kaede'
- | 'mai'
- | 'mai_2'
- | 'nodoka'
- | 'rio'
- | 'sakuta'
- | 'shouko'
- | 'tomoe'
- | 'random'
- | 'none';
+ | 'kaede'
+ | 'mai'
+ | 'mai_2'
+ | 'nodoka'
+ | 'rio'
+ | 'sakuta'
+ | 'shouko'
+ | 'tomoe'
+ | 'random'
+ | 'none';
disableManga: boolean;
disableAnime: boolean;
disableUpcomingAnime: boolean;
@@ -61,6 +61,7 @@ export interface Settings {
displayBlurAdultContent: boolean;
displayCopyMediaTitleNotLink: boolean;
displayTotalDueEpisodes: boolean;
+ displayTotalEpisodes: boolean;
displayAniListNotifications: boolean;
displayFiltersIncludeCompleted: boolean;
displayDataSaver: boolean;
@@ -104,6 +105,7 @@ const defaultSettings: Settings = {
displayBlurAdultContent: true,
displayCopyMediaTitleNotLink: false,
displayTotalDueEpisodes: false,
+ displayTotalEpisodes: false,
displayAniListNotifications: false,
displayFiltersIncludeCompleted: false,
displayDataSaver: false,