Restore Album Artist to the default database menu

Undo the removal as discussed in g#3947.

Change-Id: I5ce291daa17e8fa04cec719d1ed39bf6d08658d2
This commit is contained in:
Aidan MacDonald 2021-12-02 21:27:07 +00:00
parent e3ee1908dd
commit 81da5e6409

View file

@ -131,6 +131,7 @@
# Define the search sub menu # Define the search sub menu
%menu_start "search" "Search by..." %menu_start "search" "Search by..."
"Artist" -> canonicalartist ? canonicalartist ~ "" -> album -> title = "fmt_title" "Artist" -> canonicalartist ? canonicalartist ~ "" -> album -> title = "fmt_title"
"Album Artist" -> albumartist ? albumartist ~ "" -> album -> title = "fmt_title"
"Album" -> album ? album ~ "" -> title = "fmt_title" "Album" -> album ? album ~ "" -> title = "fmt_title"
"Title" -> title = "fmt_title" ? title ~ "" "Title" -> title = "fmt_title" ? title ~ ""
"Album by year" -> album ? year = "" -> title = "fmt_title" "Album by year" -> album ? year = "" -> title = "fmt_title"
@ -167,6 +168,7 @@
# Define the title of the main menu # Define the title of the main menu
%menu_start "main" "Database" %menu_start "main" "Database"
"Artist" -> canonicalartist -> album -> title = "fmt_title" "Artist" -> canonicalartist -> album -> title = "fmt_title"
"Album Artist" -> albumartist -> album -> title = "fmt_title"
"Album" -> album -> title = "fmt_title" "Album" -> album -> title = "fmt_title"
"Genre" -> genre -> canonicalartist -> album -> title = "fmt_title" "Genre" -> genre -> canonicalartist -> album -> title = "fmt_title"
"Composer" -> composer -> album -> title = "fmt_title" "Composer" -> composer -> album -> title = "fmt_title"