Display
Always show card stats
Show unread and download counts without needing to hover
updateSettings({ libraryStatsAlways: !(settingsState.settings.libraryStatsAlways ?? false) })}>
Crop cover images
Fills the card with the cover art instead of letterboxing
updateSettings({ libraryCropCovers: !settingsState.settings.libraryCropCovers })}>
Show all in Saved tab
Include manga that are in folders — lets you see your whole library in one place
updateSettings({ libraryShowAllInSaved: !(settingsState.settings.libraryShowAllInSaved ?? true) })}>
{#if settingsState.settings.libraryShowAllInSaved ?? true}
Hide completed in Saved tab
Keep manga in the Completed folder out of the Saved view
updateSettings({ libraryHideCompletedInSaved: !(settingsState.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' }[settingsState.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
updateSettings({ autoLinkOnOpen: !(settingsState.settings.autoLinkOnOpen ?? false) })}>
Disable auto-complete
Don't move manga to the Completed folder when all chapters are read
updateSettings({ disableAutoComplete: !settingsState.settings.disableAutoComplete })}>
Reading history
{homeState.history?.length ?? 0} entries
Clear