diff --git a/dashboard-ui/musicalbumartists.html b/dashboard-ui/musicalbumartists.html
index 675b8c2ef1..be472bfa5e 100644
--- a/dashboard-ui/musicalbumartists.html
+++ b/dashboard-ui/musicalbumartists.html
@@ -1,7 +1,7 @@
-
diff --git a/dashboard-ui/musicvideos.html b/dashboard-ui/musicvideos.html
index 8317ffb268..b725172fa5 100644
--- a/dashboard-ui/musicvideos.html
+++ b/dashboard-ui/musicvideos.html
@@ -110,38 +110,38 @@
- Type:
+ ${LabelVideoType}
- Bluray
+ ${OptionBluray}
- Dvd
+ ${OptionDvd}
- Iso
+ ${OptionIso}
- 3D
+ ${Option3D}
- Features:
+ ${LabelFeatures}
- Subtitles
+ ${OptionHasSubtitles}
- Trailer
+ ${OptionHasTrailer}
- Theme song
+ ${OptionHasThemeSong}
- Theme video
+ ${OptionHasThemeVideo}
diff --git a/dashboard-ui/scripts/channelitems.js b/dashboard-ui/scripts/channelitems.js
index ca0f7ad4ff..5d79db6f34 100644
--- a/dashboard-ui/scripts/channelitems.js
+++ b/dashboard-ui/scripts/channelitems.js
@@ -33,7 +33,6 @@
items: result.Items,
shape: "portrait",
context: 'channels',
- useAverageAspectRatio: true,
showTitle: true,
centerText: true
});
diff --git a/dashboard-ui/scripts/channels.js b/dashboard-ui/scripts/channels.js
index 6161ba511d..bb018c0bab 100644
--- a/dashboard-ui/scripts/channels.js
+++ b/dashboard-ui/scripts/channels.js
@@ -27,7 +27,6 @@
items: result.Items,
shape: "square",
context: 'channels',
- useAverageAspectRatio: true,
showTitle: true,
centerText: true
});
diff --git a/dashboard-ui/scripts/dashboardpage.js b/dashboard-ui/scripts/dashboardpage.js
index 0311d20e0c..b8301d5d26 100644
--- a/dashboard-ui/scripts/dashboardpage.js
+++ b/dashboard-ui/scripts/dashboardpage.js
@@ -406,7 +406,7 @@
return html;
},
- systemUpdateTaskName: "Check for application updates",
+ systemUpdateTaskKey: "SystemUpdateTask",
renderRunningTasks: function (page, tasks) {
@@ -418,7 +418,7 @@
if (tasks.filter(function (t) {
- return t.Name == DashboardPage.systemUpdateTaskName;
+ return t.Key == DashboardPage.systemUpdateTaskKey;
}).length) {
@@ -617,8 +617,8 @@
var task = tasks.filter(function (t) {
- return t.Name == DashboardPage.systemUpdateTaskName;
- });
+ return t.Key == DashboardPage.systemUpdateTaskKey;
+ })[0];
ApiClient.startScheduledTask(task.Id).done(function () {
diff --git a/dashboard-ui/scripts/dlnaprofile.js b/dashboard-ui/scripts/dlnaprofile.js
index f4f365885a..a42766de23 100644
--- a/dashboard-ui/scripts/dlnaprofile.js
+++ b/dashboard-ui/scripts/dlnaprofile.js
@@ -241,8 +241,8 @@
$('#txtTranscodingVideoCodec', popup).val(transcodingProfile.VideoCodec || '');
$('#txtTranscodingVideoProfile', popup).val(transcodingProfile.VideoProfile || '');
- $('#chkEnableMpegtsM2TsMode', popup).checked(transcodingProfile.EnableMpegtsM2TsMode).checkboxradio('refresh');
- $('#chkEstimateContentLength', popup).checked(transcodingProfile.EstimateContentLength).checkboxradio('refresh');
+ $('#chkEnableMpegtsM2TsMode', popup).checked(transcodingProfile.EnableMpegtsM2TsMode || false).checkboxradio('refresh');
+ $('#chkEstimateContentLength', popup).checked(transcodingProfile.EstimateContentLength || false).checkboxradio('refresh');
$('#chkReportByteRangeRequests', popup).checked(transcodingProfile.TranscodeSeekInfo == 'Bytes').checkboxradio('refresh');
$('.radioTabButton:first', popup).checked(true).checkboxradio('refresh').trigger('change');
@@ -328,6 +328,13 @@
var index = this.getAttribute('data-profileindex');
deleteContainerProfile(page, index);
});
+
+ $('.lnkEditSubProfile', elem).on('click', function () {
+
+ var index = parseInt(this.getAttribute('data-profileindex'));
+
+ editContainerProfile(page, currentProfile.ContainerProfiles[index]);
+ });
}
function deleteContainerProfile(page, index) {
@@ -337,6 +344,35 @@
renderContainerProfiles(page, currentProfile.ContainerProfiles);
}
+
+ function editContainerProfile(page, containerProfile) {
+
+ isSubProfileNew = containerProfile == null;
+ containerProfile = containerProfile || {};
+ currentSubProfile = containerProfile;
+
+ var popup = $('#containerProfilePopup', page).popup('open');
+
+ $('#selectContainerProfileType', popup).val(containerProfile.Type || 'Video').selectmenu('refresh').trigger('change');
+ $('#txtContainerProfileContainer', popup).val(containerProfile.Container || '');
+ }
+
+ function saveContainerProfile(page) {
+
+ currentSubProfile.Type = $('#selectContainerProfileType', page).val();
+ currentSubProfile.Container = $('#txtContainerProfileContainer', page).val();
+
+ if (isSubProfileNew) {
+
+ currentProfile.ContainerProfiles.push(currentSubProfile);
+ }
+
+ renderSubProfiles(page, currentProfile);
+
+ currentSubProfile = null;
+
+ $('#containerProfilePopup', page).popup('close');
+ }
function renderCodecProfiles(page, profiles) {
@@ -388,6 +424,13 @@
var index = this.getAttribute('data-profileindex');
deleteCodecProfile(page, index);
});
+
+ $('.lnkEditSubProfile', elem).on('click', function () {
+
+ var index = parseInt(this.getAttribute('data-profileindex'));
+
+ editCodecProfile(page, currentProfile.CodecProfiles[index]);
+ });
}
function deleteCodecProfile(page, index) {
@@ -398,6 +441,35 @@
}
+ function editCodecProfile(page, codecProfile) {
+
+ isSubProfileNew = codecProfile == null;
+ codecProfile = codecProfile || {};
+ currentSubProfile = codecProfile;
+
+ var popup = $('#codecProfilePopup', page).popup('open');
+
+ $('#selectCodecProfileType', popup).val(codecProfile.Type || 'Video').selectmenu('refresh').trigger('change');
+ $('#txtCodecProfileCodec', popup).val(codecProfile.Codec || '');
+ }
+
+ function saveCodecProfile(page) {
+
+ currentSubProfile.Type = $('#selectCodecProfileType', page).val();
+ currentSubProfile.Codec = $('#txtCodecProfileCodec', page).val();
+
+ if (isSubProfileNew) {
+
+ currentProfile.CodecProfiles.push(currentSubProfile);
+ }
+
+ renderSubProfiles(page, currentProfile);
+
+ currentSubProfile = null;
+
+ $('#codecProfilePopup', page).popup('close');
+ }
+
function renderResponseProfiles(page, profiles) {
var html = '';
@@ -587,6 +659,18 @@
editTranscodingProfile(page);
});
+
+ $('.btnAddContainerProfile', page).on('click', function () {
+
+ editContainerProfile(page);
+
+ });
+
+ $('.btnAddCodecProfile', page).on('click', function () {
+
+ editCodecProfile(page);
+
+ });
}).on('pageshow', "#dlnaProfilePage", function () {
@@ -635,6 +719,25 @@
return false;
+ },
+
+ onContainerProfileFormSubmit: function() {
+ var form = this;
+ var page = $(form).parents('.page');
+
+ saveContainerProfile(page);
+
+ return false;
+
+ },
+
+ onCodecProfileFormSubmit: function() {
+ var form = this;
+ var page = $(form).parents('.page');
+
+ saveCodecProfile(page);
+
+ return false;
}
};
diff --git a/dashboard-ui/scripts/episodes.js b/dashboard-ui/scripts/episodes.js
index 2e5fa70a40..d596716ffc 100644
--- a/dashboard-ui/scripts/episodes.js
+++ b/dashboard-ui/scripts/episodes.js
@@ -30,7 +30,6 @@
html += LibraryBrowser.getPosterViewHtml({
items: result.Items,
- useAverageAspectRatio: true,
shape: "backdrop",
showTitle: true,
showParentTitle: true,
diff --git a/dashboard-ui/scripts/gamespage.js b/dashboard-ui/scripts/gamespage.js
index 9de7c08bc3..1c319f080f 100644
--- a/dashboard-ui/scripts/gamespage.js
+++ b/dashboard-ui/scripts/gamespage.js
@@ -31,7 +31,6 @@
items: result.Items,
shape: "auto",
context: 'games',
- useAverageAspectRatio: false,
showTitle: true,
showParentTitle: true,
centerText: true
diff --git a/dashboard-ui/scripts/gamesrecommendedpage.js b/dashboard-ui/scripts/gamesrecommendedpage.js
index 4b386c0728..383f296ff4 100644
--- a/dashboard-ui/scripts/gamesrecommendedpage.js
+++ b/dashboard-ui/scripts/gamesrecommendedpage.js
@@ -10,14 +10,14 @@
SortOrder: "Descending",
MediaTypes: "Game",
Limit: 10,
- Recursive: true
+ Recursive: true,
+ Fields: "ItemCounts,AudioInfo,PrimaryImageAspectRatio"
};
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
$('#recentlyAddedItems', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
- useAverageAspectRatio: false,
transparent: true,
borderless: true
}));
@@ -31,7 +31,8 @@
MediaTypes: "Game",
Limit: 10,
Recursive: true,
- Filters: "IsPlayed"
+ Filters: "IsPlayed",
+ Fields: "ItemCounts,AudioInfo,PrimaryImageAspectRatio"
};
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
@@ -44,7 +45,6 @@
$('#recentlyPlayedItems', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
- useAverageAspectRatio: false,
transparent: true,
borderless: true
}));
diff --git a/dashboard-ui/scripts/itembynamedetailpage.js b/dashboard-ui/scripts/itembynamedetailpage.js
index 7852a86d3e..a32e90b137 100644
--- a/dashboard-ui/scripts/itembynamedetailpage.js
+++ b/dashboard-ui/scripts/itembynamedetailpage.js
@@ -436,7 +436,6 @@
items: result.Items,
shape: "portrait",
context: 'movies',
- useAverageAspectRatio: true,
showTitle: true,
centerText: true
});
@@ -446,7 +445,6 @@
html += LibraryBrowser.getPosterViewHtml({
items: result.Items,
- useAverageAspectRatio: true,
shape: "backdrop",
showTitle: true,
showParentTitle: true,
@@ -470,7 +468,6 @@
items: result.Items,
shape: "square",
context: 'music',
- useAverageAspectRatio: true,
showTitle: true,
showParentTitle: true
});
@@ -481,8 +478,8 @@
html = LibraryBrowser.getPosterViewHtml({
items: result.Items,
shape: "square",
- useAverageAspectRatio: true,
- showTitle: true
+ showTitle: true,
+ centerText: true
});
}
diff --git a/dashboard-ui/scripts/itemdetailpage.js b/dashboard-ui/scripts/itemdetailpage.js
index a8b379c945..cefc647a85 100644
--- a/dashboard-ui/scripts/itemdetailpage.js
+++ b/dashboard-ui/scripts/itemdetailpage.js
@@ -438,7 +438,6 @@
var html = LibraryBrowser.getPosterViewHtml({
items: result.Items,
- useAverageAspectRatio: true,
shape: item.Type == "MusicAlbum" ? "portrait" : "square"
});
@@ -546,7 +545,6 @@
var html = LibraryBrowser.getPosterViewHtml({
items: result.Items,
- useAverageAspectRatio: item.MediaType != "Game",
shape: item.Type == "MusicAlbum" ? "square" : "portrait",
showParentTitle: item.Type == "MusicAlbum",
centerText: item.Type != "MusicAlbum",
@@ -680,7 +678,6 @@
html = LibraryBrowser.getPosterViewHtml({
items: result.Items,
shape: "portrait",
- useAverageAspectRatio: true,
showTitle: true,
centerText: true
});
@@ -689,7 +686,6 @@
html = LibraryBrowser.getPosterViewHtml({
items: result.Items,
shape: "smallBackdrop",
- useAverageAspectRatio: true,
showTitle: true,
displayAsSpecial: item.Type == "Season" && item.IndexNumber
});
@@ -699,7 +695,6 @@
items: result.Items,
shape: "auto",
context: 'games',
- useAverageAspectRatio: false,
showTitle: true,
centerText: true
});
@@ -803,7 +798,6 @@
html += LibraryBrowser.getPosterViewHtml({
items: items,
shape: shape,
- useAverageAspectRatio: true,
showTitle: true,
centerText: true
});
diff --git a/dashboard-ui/scripts/itemlistpage.js b/dashboard-ui/scripts/itemlistpage.js
index a777c2107e..39cbc0caca 100644
--- a/dashboard-ui/scripts/itemlistpage.js
+++ b/dashboard-ui/scripts/itemlistpage.js
@@ -35,7 +35,6 @@
html = LibraryBrowser.getPosterViewHtml({
items: result.Items,
shape: "smallBackdrop",
- useAverageAspectRatio: true,
showTitle: true,
centerText: true,
preferBackdrop: true
@@ -45,7 +44,6 @@
html = LibraryBrowser.getPosterViewHtml({
items: result.Items,
shape: "portrait",
- useAverageAspectRatio: true,
showTitle: true,
centerText: true
});
diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js
index 93d74e1cf3..ad24ffd1dc 100644
--- a/dashboard-ui/scripts/librarybrowser.js
+++ b/dashboard-ui/scripts/librarybrowser.js
@@ -450,7 +450,7 @@
var item = items[i];
- primaryImageAspectRatio = options.useAverageAspectRatio ? LibraryBrowser.getAveragePrimaryImageAspectRatio([item]) : null;
+ primaryImageAspectRatio = LibraryBrowser.getAveragePrimaryImageAspectRatio([item]);
var futureDateText;
diff --git a/dashboard-ui/scripts/livetvchannels.js b/dashboard-ui/scripts/livetvchannels.js
index d0f632696b..7df76fde57 100644
--- a/dashboard-ui/scripts/livetvchannels.js
+++ b/dashboard-ui/scripts/livetvchannels.js
@@ -9,7 +9,6 @@
return LibraryBrowser.getPosterViewHtml({
items: channels,
- useAverageAspectRatio: true,
shape: "smallBackdrop",
centerText: true
});
diff --git a/dashboard-ui/scripts/medialibrarypage.js b/dashboard-ui/scripts/medialibrarypage.js
index 63426906e2..06240399de 100644
--- a/dashboard-ui/scripts/medialibrarypage.js
+++ b/dashboard-ui/scripts/medialibrarypage.js
@@ -230,7 +230,7 @@
{ name: "Photos", value: "photos" },
{ name: "Trailers", value: "trailers" },
{ name: "Adult videos", value: "adultvideos" },
- { name: "Mixed content", value: "mixed" }
+ { name: "Mixed movies & tv", value: "mixed" }
];
},
diff --git a/dashboard-ui/scripts/mediaplayer.js b/dashboard-ui/scripts/mediaplayer.js
index 61b4667a5f..87665197a1 100644
--- a/dashboard-ui/scripts/mediaplayer.js
+++ b/dashboard-ui/scripts/mediaplayer.js
@@ -228,7 +228,7 @@
}
if (!videoStream) {
- throw new Error('Null videoStream');
+ return false;
}
if (mediaSource.VideoType != "VideoFile" || mediaSource.LocationType != "FileSystem") {
diff --git a/dashboard-ui/scripts/moviecollections.js b/dashboard-ui/scripts/moviecollections.js
index 15fdc48755..8a04646073 100644
--- a/dashboard-ui/scripts/moviecollections.js
+++ b/dashboard-ui/scripts/moviecollections.js
@@ -32,7 +32,6 @@
items: result.Items,
shape: "portrait",
context: 'movies',
- useAverageAspectRatio: true,
showTitle: true,
centerText: true
});
diff --git a/dashboard-ui/scripts/moviepeople.js b/dashboard-ui/scripts/moviepeople.js
index d7c41d4a84..3e35afca1c 100644
--- a/dashboard-ui/scripts/moviepeople.js
+++ b/dashboard-ui/scripts/moviepeople.js
@@ -32,7 +32,6 @@
items: result.Items,
shape: "portrait",
context: 'movies',
- useAverageAspectRatio: true,
showTitle: true,
showItemCounts: true,
coverImage: true
diff --git a/dashboard-ui/scripts/movies.js b/dashboard-ui/scripts/movies.js
index 5c786a9527..4f44bbe16b 100644
--- a/dashboard-ui/scripts/movies.js
+++ b/dashboard-ui/scripts/movies.js
@@ -54,7 +54,6 @@
items: result.Items,
shape: "portrait",
context: 'movies',
- useAverageAspectRatio: true,
showTitle: true,
centerText: true,
selectionPanel: true
@@ -66,7 +65,6 @@
items: result.Items,
shape: "portrait",
context: 'movies',
- useAverageAspectRatio: true,
showTitle: true,
timeline: true,
centerText: true,
diff --git a/dashboard-ui/scripts/movieslatest.js b/dashboard-ui/scripts/movieslatest.js
index 0e4338ec47..4de0f6f88d 100644
--- a/dashboard-ui/scripts/movieslatest.js
+++ b/dashboard-ui/scripts/movieslatest.js
@@ -20,8 +20,7 @@
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
$('#recentlyAddedItems', page).html(LibraryBrowser.getPosterViewHtml({
- items: result.Items,
- useAverageAspectRatio: true
+ items: result.Items
})).createPosterItemMenus();
});
@@ -47,8 +46,7 @@
}
$('#trailerItems', page).html(LibraryBrowser.getPosterViewHtml({
- items: result.Items,
- useAverageAspectRatio: true
+ items: result.Items
})).createPosterItemMenus();
diff --git a/dashboard-ui/scripts/moviesrecommended.js b/dashboard-ui/scripts/moviesrecommended.js
index aef9399419..ae7d9038db 100644
--- a/dashboard-ui/scripts/moviesrecommended.js
+++ b/dashboard-ui/scripts/moviesrecommended.js
@@ -28,8 +28,7 @@
html += '
';
html += LibraryBrowser.getPosterViewHtml({
- items: recommendation.Items,
- useAverageAspectRatio: true
+ items: recommendation.Items
});
html += '
';
diff --git a/dashboard-ui/scripts/movietrailers.js b/dashboard-ui/scripts/movietrailers.js
index e4364d0e4c..c6ba2481b5 100644
--- a/dashboard-ui/scripts/movietrailers.js
+++ b/dashboard-ui/scripts/movietrailers.js
@@ -30,7 +30,6 @@
items: result.Items,
shape: "portrait",
context: 'movies',
- useAverageAspectRatio: true,
showTitle: true,
centerText: true
});
diff --git a/dashboard-ui/scripts/musicalbums.js b/dashboard-ui/scripts/musicalbums.js
index 45e4e2738a..523835ba29 100644
--- a/dashboard-ui/scripts/musicalbums.js
+++ b/dashboard-ui/scripts/musicalbums.js
@@ -33,7 +33,6 @@
items: result.Items,
shape: "square",
context: 'music',
- useAverageAspectRatio: true,
showTitle: true,
showParentTitle: true
});
@@ -44,7 +43,6 @@
items: result.Items,
shape: "square",
context: 'music',
- useAverageAspectRatio: true,
showTitle: true,
showParentTitle: true,
timeline: true
diff --git a/dashboard-ui/scripts/musicrecommended.js b/dashboard-ui/scripts/musicrecommended.js
index e0deb355ee..56b50393f9 100644
--- a/dashboard-ui/scripts/musicrecommended.js
+++ b/dashboard-ui/scripts/musicrecommended.js
@@ -20,7 +20,6 @@
$('#recentlyAddedAlbums', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
- useAverageAspectRatio: true,
showUnplayedIndicator: false,
shape: "square",
showTitle: true,
@@ -43,7 +42,6 @@
$('#recentlyAddedSongs', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
- useAverageAspectRatio: true,
showUnplayedIndicator: false,
shape: "square",
showTitle: true,
@@ -73,7 +71,6 @@
$('#recentlyPlayedSongs', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
- useAverageAspectRatio: true,
showUnplayedIndicator: false,
shape: "square",
showTitle: true,
@@ -103,7 +100,6 @@
$('#topPlayedSongs', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
- useAverageAspectRatio: true,
showUnplayedIndicator: false,
shape: "square",
showTitle: true,
diff --git a/dashboard-ui/scripts/musicvideos.js b/dashboard-ui/scripts/musicvideos.js
index 2cc211b7cd..c86a0e70d8 100644
--- a/dashboard-ui/scripts/musicvideos.js
+++ b/dashboard-ui/scripts/musicvideos.js
@@ -30,7 +30,6 @@
items: result.Items,
shape: "square",
context: 'music',
- useAverageAspectRatio: true,
showTitle: true,
centerText: true
});
diff --git a/dashboard-ui/scripts/tvgenres.js b/dashboard-ui/scripts/tvgenres.js
index 21efd5d98f..ea8b16f6e7 100644
--- a/dashboard-ui/scripts/tvgenres.js
+++ b/dashboard-ui/scripts/tvgenres.js
@@ -28,7 +28,6 @@
html += LibraryBrowser.getPosterViewHtml({
items: result.Items,
- useAverageAspectRatio: true,
shape: "backdrop",
showTitle: false,
overlayText: false,
diff --git a/dashboard-ui/scripts/tvlatest.js b/dashboard-ui/scripts/tvlatest.js
index 7bc9d4a26e..e12d3681e8 100644
--- a/dashboard-ui/scripts/tvlatest.js
+++ b/dashboard-ui/scripts/tvlatest.js
@@ -22,7 +22,6 @@
$('#latestEpisodes', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
- useAverageAspectRatio: true,
shape: "backdrop",
showTitle: true,
showParentTitle: true,
diff --git a/dashboard-ui/scripts/tvpeople.js b/dashboard-ui/scripts/tvpeople.js
index e38857d637..e8a573ac9a 100644
--- a/dashboard-ui/scripts/tvpeople.js
+++ b/dashboard-ui/scripts/tvpeople.js
@@ -32,7 +32,6 @@
items: result.Items,
shape: "portrait",
context: 'tv',
- useAverageAspectRatio: true,
showTitle: true,
showItemCounts: true,
coverImage: true
diff --git a/dashboard-ui/scripts/tvrecommended.js b/dashboard-ui/scripts/tvrecommended.js
index c4e8bdb028..6eeb98dba7 100644
--- a/dashboard-ui/scripts/tvrecommended.js
+++ b/dashboard-ui/scripts/tvrecommended.js
@@ -26,7 +26,6 @@
$('#resumableItems', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
- useAverageAspectRatio: true,
shape: "backdrop",
showTitle: true,
showParentTitle: true,
@@ -57,7 +56,6 @@
$('#nextUpItems', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
- useAverageAspectRatio: true,
shape: "backdrop",
showTitle: true,
showParentTitle: true,
diff --git a/dashboard-ui/scripts/tvshows.js b/dashboard-ui/scripts/tvshows.js
index da8f0fb630..2e751fa82e 100644
--- a/dashboard-ui/scripts/tvshows.js
+++ b/dashboard-ui/scripts/tvshows.js
@@ -55,7 +55,6 @@
items: result.Items,
shape: "portrait",
context: 'tv',
- useAverageAspectRatio: true,
showTitle: true,
centerText: true
});
@@ -67,7 +66,6 @@
items: result.Items,
shape: "portrait",
context: 'tv',
- useAverageAspectRatio: true,
timeline: true,
showTitle: true
});
diff --git a/dashboard-ui/scripts/tvstudios.js b/dashboard-ui/scripts/tvstudios.js
index 4dffd06a3b..9c5e43d595 100644
--- a/dashboard-ui/scripts/tvstudios.js
+++ b/dashboard-ui/scripts/tvstudios.js
@@ -28,7 +28,6 @@
html += LibraryBrowser.getPosterViewHtml({
items: result.Items,
- useAverageAspectRatio: true,
shape: "backdrop",
showTitle: false,
overlayText: false,
diff --git a/dashboard-ui/support.html b/dashboard-ui/support.html
index f1b9c30eb9..e0d62f336b 100644
--- a/dashboard-ui/support.html
+++ b/dashboard-ui/support.html
@@ -1,7 +1,7 @@
-
Support
+
${TitleSupport}
@@ -10,27 +10,22 @@
-
- Media Browser has a thriving community of users and contributors.
-
-
Visit the Community
+
${MediaBrowserHasCommunity}
+
${VisitTheCommunity}
- Check out our knowledge base to help you get the
- most out of Media Browser.
+ ${CheckoutKnowledgeBase}
-
Search the Knowledge Base
+
${SearchKnowledgeBase}
-
- Visit the Media Browser Web site to catch the latest news and keep up with the developer blog.
-
-
Visit the Media Browser Web Site
+
${VisitMediaBrowserWebsiteLong}
+
${VisitMediaBrowserWebsite}
diff --git a/dashboard-ui/supporter.html b/dashboard-ui/supporter.html
index 64cde430d0..f47d7280c4 100644
--- a/dashboard-ui/supporter.html
+++ b/dashboard-ui/supporter.html
@@ -1,7 +1,7 @@
-
Support
+
${TitleSupport}
@@ -10,11 +10,11 @@
Support the Media Browser Team
diff --git a/dashboard-ui/supporterkey.html b/dashboard-ui/supporterkey.html
index 558a12d43d..4b79a545ac 100644
--- a/dashboard-ui/supporterkey.html
+++ b/dashboard-ui/supporterkey.html
@@ -1,7 +1,7 @@
-
Support
+
${TitleSupport}