add LrcLib as a fallback lyric provider

This commit is contained in:
Drew Weymouth
2024-05-25 16:56:41 -07:00
parent e55a13fbdd
commit 3f8a2e1d1e
4 changed files with 142 additions and 23 deletions
+2
View File
@@ -45,6 +45,7 @@ type AppConfig struct {
SaveQueueToServer bool
DefaultPlaylistID string
ShowTrackChangeNotification bool
EnableLrcLib bool
// Experimental - may be removed in future
FontNormalTTF string
@@ -159,6 +160,7 @@ func DefaultConfig(appVersionTag string) *Config {
SavePlayQueue: true,
SaveQueueToServer: false,
ShowTrackChangeNotification: false,
EnableLrcLib: true,
},
AlbumPage: AlbumPageConfig{
TracklistColumns: []string{"Artist", "Time", "Plays", "Favorite", "Rating"},