feat: add stats to rows and covers

This commit is contained in:
Fredrik Burmester
2024-08-25 12:12:52 +02:00
parent 36f1ea384d
commit 275923dbdd
3 changed files with 57 additions and 8 deletions

View File

@@ -29,6 +29,7 @@ export type LibraryOptions = {
cardStyle: "compact" | "detailed";
imageStyle: "poster" | "cover";
showTitles: boolean;
showStats: boolean;
};
type Settings = {
@@ -72,6 +73,7 @@ const loadSettings = async (): Promise<Settings> => {
cardStyle: "detailed",
imageStyle: "cover",
showTitles: true,
showStats: true,
},
};