diff --git a/dashboard-ui/css/librarybrowser.css b/dashboard-ui/css/librarybrowser.css index 8dd3f253be..3b9563fc53 100644 --- a/dashboard-ui/css/librarybrowser.css +++ b/dashboard-ui/css/librarybrowser.css @@ -273,6 +273,10 @@ overflow: hidden; } + .tileName + .tileName { + margin-top: .75em; + } + .tileItem .userDataIcons img { height: 14px; width: 14px; @@ -438,9 +442,9 @@ width: 23.5%; } - .cdTileItem .tileImage { - height: 140px; - } + .cdTileItem .tileImage { + height: 140px; + } } diff --git a/dashboard-ui/musicartists.html b/dashboard-ui/musicartists.html index 49f93b0728..99c476bab1 100644 --- a/dashboard-ui/musicartists.html +++ b/dashboard-ui/musicartists.html @@ -65,6 +65,13 @@ + +
+ + + + +
diff --git a/dashboard-ui/scripts/itembynamedetailpage.js b/dashboard-ui/scripts/itembynamedetailpage.js index 2cdb12fbaf..cd878dc58f 100644 --- a/dashboard-ui/scripts/itembynamedetailpage.js +++ b/dashboard-ui/scripts/itembynamedetailpage.js @@ -353,7 +353,7 @@ SortOrder: "Ascending", IncludeItemTypes: "Movie", Recursive: true, - Fields: "PrimaryImageAspectRatio,UserData,DisplayMediaType,ItemCounts,DateCreated", + Fields: "PrimaryImageAspectRatio,UserData,DisplayMediaType,ItemCounts,DateCreated,AudioInfo,SeriesInfo", Limit: LibraryBrowser.getDetaultPageSize(), StartIndex: 0 }; diff --git a/dashboard-ui/scripts/musicartists.js b/dashboard-ui/scripts/musicartists.js index f08541feab..d501485605 100644 --- a/dashboard-ui/scripts/musicartists.js +++ b/dashboard-ui/scripts/musicartists.js @@ -87,6 +87,13 @@ reloadItems(page); }); + $('#chkIsOnTour', this).on('change', function () { + + query.IsOnTour = this.checked || null; + + reloadItems(page); + }); + }).on('pagebeforeshow', "#musicArtistsPage", function () { reloadItems(this); @@ -105,6 +112,8 @@ this.checked = query.SortOrder == this.getAttribute('data-sortorder'); }).checkboxradio('refresh'); + + $('#chkIsOnTour', this).checked(query.IsOnTour === true).checkboxradio('refresh'); }); })(jQuery, document); \ No newline at end of file