diff options
| author | Fuwn <[email protected]> | 2024-01-18 00:40:37 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-18 00:40:37 -0800 |
| commit | 86449bc67089f1225e254f421ec1e4171472e446 (patch) | |
| tree | 697aa038d348de5bdf2690aabf4097d4da11716d /src/stores | |
| parent | fix(manga): remove chapter check from completed (diff) | |
| download | due.moe-86449bc67089f1225e254f421ec1e4171472e446.tar.xz due.moe-86449bc67089f1225e254f421ec1e4171472e446.zip | |
feat(airing): shorten countdown setting
Diffstat (limited to 'src/stores')
| -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 b49429d5..b7eddcd1 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -34,6 +34,7 @@ export interface Settings { displayDisableNotifications: boolean; displayCoverMode: boolean; displayCoverWidth: number; + displayShortCountdown: boolean; } const defaultSettings: Settings = { @@ -64,6 +65,7 @@ const defaultSettings: Settings = { displayDisableNotifications: false, displayCoverMode: false, displayCoverWidth: 116.609, + displayShortCountdown: false, // Calculation calculateChaptersRoundedDown: true, |