From 4e2742b3850b9f8567732316971d1b71975b5994 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Mon, 6 Nov 2023 10:01:57 -0800 Subject: feat(manga): estimate settings --- src/stores/settings.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/stores/settings.ts') 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 = () => { -- cgit v1.2.3