add more info to dialog and adjust layout

This commit is contained in:
Drew Weymouth
2024-07-18 08:11:37 -07:00
parent bb91a0c6b4
commit 03ce1cc115
5 changed files with 73 additions and 21 deletions
+10
View File
@@ -102,7 +102,17 @@ type Track struct {
PlayCount int
FilePath string
BitRate int
ContentType string
Comment string
BPM int
ReplayGain ReplayGainInfo
}
type ReplayGainInfo struct {
TrackGain float64
AlbumGain float64
TrackPeak float64
AlbumPeak float64
}
type Playlist struct {