Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
[UNRELEASED]
Improvements:
- Added "Album Artist / Album" to Library Grouping
Bugfixes:
- Make connection to Clementine more robust
- Fix crash when mSocket.getInetAddress() is null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ protected String[] getSelectedFields() {
case "artist-album":
selectedFields = new String[] {"artist", "album", "title"};
break;
case "albumartist-album":
selectedFields = new String[] {"albumartist", "album", "title"};
break;
case "artist-year":
selectedFields = new String[] {"artist", "year", "title"};
break;
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/values/array.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
<string-array name="pref_library_grouping_values">
<item>artist</item>
<item>artist-album</item>
<item>albumartist-album</item>
<item>artist-year</item>
<item>album</item>
<item>genre-album</item>
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@
<string-array name="pref_library_grouping">
<item>Artist</item>
<item>Artist / Album</item>
<item>Album Artist / Album</item>
<item>Artist / Year</item>
<item>Album</item>
<item>Genre / Album</item>
Expand Down