1
0
Fork 0

Show Artist & Song metadata in config

This commit is contained in:
ivan tkachenko 2026-01-23 14:19:22 +02:00
parent 6a71ed578b
commit f20a500992
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
## MuzikaGromche 1337.9001.69
- Show real Artist & Song info in the config.
## MuzikaGromche 1337.9001.68 - LocalHost hotfix

View File

@ -1640,7 +1640,7 @@ namespace MuzikaGromche
// Create slider entry for track
var seasonal = track.Season is Season season ? $"This is seasonal content for {season.Name}.\n\n" : "";
string warning = track.IsExplicit ? "Explicit Content/Lyrics!\n\n" : "";
string description = $"Language: {language.Full}\n\n{seasonal}{warning}Random (relative) chance of selecting this track.\n\nSet to zero to effectively disable the track.";
string description = $"Song: {track.Song} by {track.Artist}\n\nLanguage: {language.Full}\n\n{seasonal}{warning}Random (relative) chance of selecting this track.\n\nSet to zero to effectively disable the track.";
track.Weight = configFile.Bind(
new ConfigDefinition(section, track.Name),
50,