Add initial support for Google Analytics

This commit is contained in:
Deluan 2020-07-03 12:53:35 -04:00 committed by Deluan Quintão
parent dd91f983b5
commit 1cc03fdd8c
7 changed files with 31 additions and 0 deletions

View file

@ -32,6 +32,7 @@ type configOptions struct {
CoverArtPriority string
CoverJpegQuality int
UIWelcomeMessage string
GATrackingID string
// DevFlags. These are used to enable/disable debugging and incomplete features
DevLogSourceLine bool
@ -81,6 +82,7 @@ func init() {
viper.SetDefault("coverartpriority", "embedded, cover.*, folder.*, front.*")
viper.SetDefault("coverjpegquality", 75)
viper.SetDefault("uiwelcomemessage", "")
viper.SetDefault("gatrackingid", "")
// DevFlags. These are used to enable/disable debugging and incomplete features
viper.SetDefault("devlogsourceline", false)