diff --git a/.idea/config/applicationhost.config b/.idea/config/applicationhost.config new file mode 100644 index 0000000..1e63b77 --- /dev/null +++ b/.idea/config/applicationhost.config @@ -0,0 +1,996 @@ + + + + + + +
+
+
+
+
+
+
+
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+ +
+
+ +
+
+
+ + +
+
+
+
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Jellylist/Controllers/GetListController.cs b/Jellylist/Controllers/GetListController.cs index 9ff1da6..c5bc2d2 100644 --- a/Jellylist/Controllers/GetListController.cs +++ b/Jellylist/Controllers/GetListController.cs @@ -124,7 +124,10 @@ public string GetAlbum(string albumId, string? authToken = null, string? usernam returnstring += $"\n#PLAYLIST:{test!.Items[0].Album}"; - + returnstring += $"\n#EXTALB:{test!.Items[0].Album}"; + returnstring += $"\n#EXTART:{test!.Items[0].AlbumArtist}"; + //returnstring += $"\n#EXTIMG: front cover\n{Program.PublicUrl}/Items/{albumId}/Images/Primary"; // VLC doesn't like this for some reason + foreach (var test2 in test.Items) { returnstring += $"\n#EXTINF:{test2.RunTimeTicks / 10000 / 1000 /* seconds */},{test2.Album}, " + diff --git a/Jellylist/publish.cmd b/Jellylist/publish.cmd new file mode 100644 index 0000000..d9fad0c --- /dev/null +++ b/Jellylist/publish.cmd @@ -0,0 +1,9 @@ +@echo off +echo Publishing for Windows... +dotnet publish -c Release /p:PublishProfile=Properties/PublishProfiles/Windows.pubxml --self-contained true +echo Publishing for macOS... +dotnet publish -c Release /p:PublishProfile=Properties/PublishProfiles/macOS.pubxml --self-contained true +echo Publishing for Linux... +dotnet publish -c Release /p:PublishProfile=Properties/PublishProfiles/Linux.pubxml --self-contained true +echo Done! +@echo on \ No newline at end of file