save and load play queue on exit/startup (partial impl)

This commit is contained in:
Drew Weymouth
2024-01-07 16:25:15 -08:00
parent d2743815bf
commit c4c4a71d5e
4 changed files with 134 additions and 25 deletions
+2
View File
@@ -41,6 +41,7 @@ type AppConfig struct {
SettingsTab string
AllowMultiInstance bool
MaxImageCacheSizeMB int
SavePlayQueue bool
// Experimental - may be removed in future
FontNormalTTF string
@@ -147,6 +148,7 @@ func DefaultConfig(appVersionTag string) *Config {
AllowMultiInstance: false,
MaxImageCacheSizeMB: 50,
UIScaleSize: "Normal",
SavePlayQueue: false,
},
AlbumPage: AlbumPageConfig{
TracklistColumns: []string{"Artist", "Time", "Plays", "Favorite", "Rating"},