diff options
| author | Fuwn <[email protected]> | 2023-08-27 17:22:40 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-08-27 17:22:40 -0700 |
| commit | 7fc05993446392f5342815734a7a2e99cf63bddb (patch) | |
| tree | fb14a5ab35b6e4fdbcfb83ec18ad3ca594269134 /src/routes/settings | |
| parent | feat(layout): cache user identity (diff) | |
| download | due.moe-7fc05993446392f5342815734a7a2e99cf63bddb.tar.xz due.moe-7fc05993446392f5342815734a7a2e99cf63bddb.zip | |
feat: cache media
Diffstat (limited to 'src/routes/settings')
| -rw-r--r-- | src/routes/settings/+page.svelte | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/routes/settings/+page.svelte b/src/routes/settings/+page.svelte index 941f0715..f7b64296 100644 --- a/src/routes/settings/+page.svelte +++ b/src/routes/settings/+page.svelte @@ -4,6 +4,7 @@ import closeMangaByDefault from '../../stores/closeMangaByDefault'; import { chapterDatabase } from '$lib/chapterDatabase'; import cacheMangaMinutes from '../../stores/cacheMangaMinutes'; + import cacheMinutes from '../../stores/cacheMinutes'; export let data; @@ -67,7 +68,11 @@ > </li> <li> - Re-cache <b>ALL</b> manga every <input type="number" bind:value={$cacheMangaMinutes} /> minutes + Re-cache <b>ALL</b> media keys every <input type="number" bind:value={$cacheMinutes} /> minutes + </li> + <li> + Re-cache <b>ALL</b> manga chapter counts every + <input type="number" bind:value={$cacheMangaMinutes} /> minutes </li> </ul> {/if} |