Implement artist art priority (#2266)

* implement artist art priority

* add tests
This commit is contained in:
Joakim Repomaa 2023-03-31 00:28:05 +02:00 committed by GitHub
parent 406554f1c4
commit 2ccc5bc941
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 73 additions and 16 deletions

View file

@ -56,6 +56,7 @@ type configOptions struct {
FFmpegPath string
CoverArtPriority string
CoverJpegQuality int
ArtistArtPriority string
EnableGravatar bool
EnableFavourites bool
EnableStarRating bool
@ -272,6 +273,7 @@ func init() {
viper.SetDefault("ffmpegpath", "")
viper.SetDefault("coverartpriority", "cover.*, folder.*, front.*, embedded, external")
viper.SetDefault("coverjpegquality", 75)
viper.SetDefault("artistartpriority", "artist.*, album/artist.*, external")
viper.SetDefault("enablegravatar", false)
viper.SetDefault("enablefavourites", true)
viper.SetDefault("enablestarrating", true)