Add option to disable album cover animation in the player. Closes #1185

This commit is contained in:
Deluan 2021-06-28 17:10:58 -04:00
parent 167fe46288
commit a73f885afb
5 changed files with 23 additions and 1 deletions

View file

@ -46,6 +46,7 @@ type configOptions struct {
EnableStarRating bool
EnableUserEditing bool
DefaultTheme string
EnableCoverAnimation bool
GATrackingID string
EnableLogRedacting bool
AuthRequestLimit int
@ -201,6 +202,7 @@ func init() {
viper.SetDefault("enablestarrating", true)
viper.SetDefault("enableuserediting", true)
viper.SetDefault("defaulttheme", "Dark")
viper.SetDefault("enablecoveranimation", true)
viper.SetDefault("gatrackingid", "")
viper.SetDefault("enablelogredacting", true)
viper.SetDefault("authrequestlimit", 5)