show release-group artist (as credited)

This commit is contained in:
2025-07-23 23:08:29 +02:00
parent c2c85260bf
commit 744dca7c1d
4 changed files with 7 additions and 3 deletions

View File

@@ -11,6 +11,7 @@ BEGIN { OFS="\t" }
sectype = $3
year = substr($4, 1, 4) + 0
title = $5
artist = $6
switch (type) {
case "Single": line_type=format_single; break
case "Album": line_type=format_album; break
@@ -44,6 +45,7 @@ BEGIN { OFS="\t" }
line_sectype = sprintf(format_secondary, line_sectype)
}
sub("<<title>>", title, line_release)
sub("<<artist>>", artist, line_release)
line_year = year ? format_year : ""
sub("<<year>>", year, line_year)
sort = year ? year : 0