diff options
| author | Fuwn <[email protected]> | 2023-11-06 10:50:31 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-11-06 10:50:31 -0800 |
| commit | be9a02cd3cbbda885a478fabd373ed8afff6cc06 (patch) | |
| tree | 93a89728973d64e2e6d199051540647d889f980c /src/stores | |
| parent | feat(settinsg): guess method hint (diff) | |
| download | due.moe-be9a02cd3cbbda885a478fabd373ed8afff6cc06.tar.xz due.moe-be9a02cd3cbbda885a478fabd373ed8afff6cc06.zip | |
feat(manga): option to disable volume ood
Diffstat (limited to 'src/stores')
| -rw-r--r-- | src/stores/settings.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts index d5a854d6..b6ad02bf 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -19,6 +19,7 @@ export interface Settings { hoverNavigation: boolean; displayNativeTitles: boolean; guessMethod: 'median' | 'trimmed_mean' | 'weighted_average'; + disableOutOfDateVolumeWarning: boolean; } const defaultSettings: Settings = { @@ -38,7 +39,8 @@ const defaultSettings: Settings = { disableGuessing: false, hoverNavigation: false, displayNativeTitles: false, - guessMethod: 'trimmed_mean' + guessMethod: 'trimmed_mean', + disableOutOfDateVolumeWarning: false }; const createStore = () => { |