add play queue sidebar

This commit is contained in:
Drew Weymouth
2025-10-05 11:20:27 -07:00
parent 7dc4640269
commit 27ae29a88c
10 changed files with 518 additions and 7 deletions
+3
View File
@@ -57,6 +57,8 @@ type AppConfig struct {
EnableAutoUpdateChecker bool
RequestTimeoutSeconds int
EnableOSMediaPlayerAPIs bool
ShowSidebar bool
SidebarWidthFraction float64
FontNormalTTF string
FontBoldTTF string
@@ -207,6 +209,7 @@ func DefaultConfig(appVersionTag string) *Config {
EnableAutoUpdateChecker: true,
RequestTimeoutSeconds: 15,
EnableOSMediaPlayerAPIs: true,
SidebarWidthFraction: 0.8,
},
AlbumPage: AlbumPageConfig{
TracklistColumns: []string{"Artist", "Time", "Plays", "Favorite", "Rating"},