add option to configure queue size

This commit is contained in:
David Roman
2024-10-01 21:39:00 +02:00
parent b6a082ddc1
commit 58fd4bbb4a
3 changed files with 8 additions and 3 deletions
+2
View File
@@ -48,6 +48,7 @@ type AppConfig struct {
ShowTrackChangeNotification bool
EnableLrcLib bool
SkipSSLVerify bool
EnqueueBatchSize int
// Experimental - may be removed in future
FontNormalTTF string
@@ -173,6 +174,7 @@ func DefaultConfig(appVersionTag string) *Config {
ShowTrackChangeNotification: false,
EnableLrcLib: true,
SkipSSLVerify: false,
EnqueueBatchSize: 100,
},
AlbumPage: AlbumPageConfig{
TracklistColumns: []string{"Artist", "Time", "Plays", "Favorite", "Rating"},