diff options
| author | Fuwn <[email protected]> | 2023-11-06 10:01:57 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-11-06 10:09:34 -0800 |
| commit | 4e2742b3850b9f8567732316971d1b71975b5994 (patch) | |
| tree | d1679e2dcd2e7ef435f10a594dd73c7fcfd2b946 /src/stores | |
| parent | feat(wrapped): fix total episode and chapter count (diff) | |
| download | due.moe-4e2742b3850b9f8567732316971d1b71975b5994.tar.xz due.moe-4e2742b3850b9f8567732316971d1b71975b5994.zip | |
feat(manga): estimate settings
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 12ac5d49..d5a854d6 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -18,6 +18,7 @@ export interface Settings { disableGuessing: boolean; hoverNavigation: boolean; displayNativeTitles: boolean; + guessMethod: 'median' | 'trimmed_mean' | 'weighted_average'; } const defaultSettings: Settings = { @@ -36,7 +37,8 @@ const defaultSettings: Settings = { displaySocialButton: false, disableGuessing: false, hoverNavigation: false, - displayNativeTitles: false + displayNativeTitles: false, + guessMethod: 'trimmed_mean' }; const createStore = () => { |