From e1e6972a1b2d690f94716937122c2c116b7c0de8 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 24 Apr 2014 01:08:10 -0400 Subject: [PATCH] updated dlna profiles --- dashboard-ui/scripts/itemdetailpage.js | 4 ++++ dashboard-ui/scripts/itemlistpage.js | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/dashboard-ui/scripts/itemdetailpage.js b/dashboard-ui/scripts/itemdetailpage.js index ec41940069..0dfc1524fa 100644 --- a/dashboard-ui/scripts/itemdetailpage.js +++ b/dashboard-ui/scripts/itemdetailpage.js @@ -1133,6 +1133,10 @@ attributes.push(createAttribute("Sample Rate", stream.SampleRate + ' khz')); } + if (stream.BitDepth) { + attributes.push(createAttribute("Bit Depth", stream.BitDepth + ' bit')); + } + if (stream.PixelFormat) { attributes.push(createAttribute("Pixel Format", stream.PixelFormat)); } diff --git a/dashboard-ui/scripts/itemlistpage.js b/dashboard-ui/scripts/itemlistpage.js index 1d0194d4ef..0f34f49244 100644 --- a/dashboard-ui/scripts/itemlistpage.js +++ b/dashboard-ui/scripts/itemlistpage.js @@ -7,7 +7,7 @@ SortBy: "SortName", SortOrder: "Ascending", - Fields: "DateCreated", + Fields: "DateCreated,PrimaryImageAspectRatio", StartIndex: 0 };