Display
Always show card stats
Show unread and download counts without needing to hover
updateSettings({ libraryStatsAlways: !(store.settings.libraryStatsAlways ?? false) })}>
Crop cover images
Fills the card with the cover art instead of letterboxing
updateSettings({ libraryCropCovers: !store.settings.libraryCropCovers })}>
Show all in Saved tab
Include manga that are in folders — lets you see your whole library in one place
updateSettings({ libraryShowAllInSaved: !(store.settings.libraryShowAllInSaved ?? true) })}>
{#if store.settings.libraryShowAllInSaved ?? true}
Hide completed in Saved tab
Keep manga in the Completed folder out of the Saved view
updateSettings({ libraryHideCompletedInSaved: !(store.settings.libraryHideCompletedInSaved ?? false) })}>
{/if}
Chapters
Default sort direction
Initial chapter list order when opening a manga
toggleSelect("sort-dir")}>
{{ "desc":"Newest first","asc":"Oldest first" }[store.settings.chapterSortDir]}
{#if selectOpen === "sort-dir"}
{#each [["desc","Newest first"],["asc","Oldest first"]] as [v, l]}
{ updateSettings({ chapterSortDir: v as Settings["chapterSortDir"] }); toggleSelect("sort-dir"); }}>{l}
{/each}
{/if}
Series
Auto-link on open
When opening a manga, automatically link it to similarly-titled entries and notify you of new matches
updateSettings({ autoLinkOnOpen: !(store.settings.autoLinkOnOpen ?? false) })}>
Disable auto-complete
Don't move manga to the Completed folder when all chapters are read
updateSettings({ disableAutoComplete: !store.settings.disableAutoComplete })}>
Reading history
{store.history.length} entries
Clear
Wipe all data
History, stats, pins, and manga links
Wipe