diff options
| author | Fuwn <[email protected]> | 2025-03-29 15:25:47 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-03-29 15:25:47 -0700 |
| commit | 2e209e9f1ab1571d2333504da59f097fd4844089 (patch) | |
| tree | 880f8fabaec0e7272fb5f8718a9782655a6369f4 /src/stores/settings.ts | |
| parent | fix(BadgePreview): Correct badge preview width (diff) | |
| download | due.moe-2e209e9f1ab1571d2333504da59f097fd4844089.tar.xz due.moe-2e209e9f1ab1571d2333504da59f097fd4844089.zip | |
feat(Anime): Add additional sort options
Diffstat (limited to 'src/stores/settings.ts')
| -rw-r--r-- | src/stores/settings.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts index 4ccb5ca0..df2691b5 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -16,7 +16,6 @@ export interface Settings { displayNotStarted: boolean; displayUnresolved: boolean; calculateChaptersRoundedDown: boolean; - displaySortedByDifference: boolean; displayOutboundLinksTo: 'anilist' | 'livechartme' | 'animeschedule' | 'myanimelist'; displayPausedMedia: boolean; displayLimitListHeight: boolean; @@ -68,6 +67,7 @@ export interface Settings { debugDummyLists: boolean; displayScheduleFilterList: boolean; displayReverseSort: boolean; + displayAnimeSort: 'difference' | 'start_date' | 'end_date' | 'time_remaining'; } const defaultSettings: Settings = { @@ -85,7 +85,6 @@ const defaultSettings: Settings = { displayUpcomingAnimeCollapsed: false, displayAnimeCollapsed: false, displayMangaCollapsed: false, - displaySortedByDifference: false, displayAoButa: 'none', disableManga: false, disableAnime: false, @@ -112,6 +111,7 @@ const defaultSettings: Settings = { displayDataSaver: false, displayScheduleFilterList: false, displayReverseSort: false, + displayAnimeSort: 'time_remaining', // Debug debugDummyLists: false, |