playlists now save to files, can be restored from files

This commit is contained in:
2026-02-19 23:10:20 -05:00
parent 56cf92a44c
commit 560ab3a3b5
18 changed files with 2454 additions and 113 deletions
+2
View File
@@ -425,6 +425,7 @@ export namespace playlist {
CoverArtMedium: string;
CoverArtLarge: string;
Duration: string;
Phantom: boolean;
static createFrom(source: any = {}) {
return new Track(source);
@@ -443,6 +444,7 @@ export namespace playlist {
this.CoverArtMedium = source["CoverArtMedium"];
this.CoverArtLarge = source["CoverArtLarge"];
this.Duration = source["Duration"];
this.Phantom = source["Phantom"];
}
}
export class WithTracks {