Cover art thumbnails

library scan creates thumbnails, cover grid component defaults to
thumbnail if available.
This commit is contained in:
2026-02-14 15:25:12 -05:00
parent 7579a768be
commit 38f3abbd3e
9 changed files with 213 additions and 17 deletions
+2
View File
@@ -5,6 +5,7 @@ export namespace library {
Name: string;
ArtistName: string;
CoverArtPath: string;
CoverArtThumbnailPath: string;
Year: number;
static createFrom(source: any = {}) {
@@ -17,6 +18,7 @@ export namespace library {
this.Name = source["Name"];
this.ArtistName = source["ArtistName"];
this.CoverArtPath = source["CoverArtPath"];
this.CoverArtThumbnailPath = source["CoverArtThumbnailPath"];
this.Year = source["Year"];
}
}