- This will start the tray icon on windows startup. If you'd prefer to start the windows service instead, disable this and configure the service from the windows control panel.
+ This will start the tray icon on windows startup. If you'd prefer to start the windows service instead, disable this and configure the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.
diff --git a/dashboard-ui/scripts/Itemdetailpage.js b/dashboard-ui/scripts/Itemdetailpage.js
index 12a116f64e..42a88c34fa 100644
--- a/dashboard-ui/scripts/Itemdetailpage.js
+++ b/dashboard-ui/scripts/Itemdetailpage.js
@@ -48,6 +48,8 @@
$(".autoNumeric").autoNumeric('init');
+ setPeopleHeader(page, item);
+
if (ApiClient.isWebSocketOpen()) {
ApiClient.sendWebSocketMessage("Context", [item.Type, item.Id, item.Name, context].join('|'));
}
@@ -56,6 +58,16 @@
});
}
+ function setPeopleHeader(page, item) {
+
+ if (item.Type == "Audio" || item.Type == "MusicAlbum" || item.MediaType == "Book" || item.MediaType == "Photo") {
+ $('#peopleHeader', page).html('People');
+ } else {
+ $('#peopleHeader', page).html('Cast & Crew');
+ }
+
+ }
+
function getContext(item) {
// should return either movies, tv, music or games
@@ -260,9 +272,9 @@
$('.itemPath', page).hide();
}
}
-
+
function getArtistLinksHtml(artists) {
-
+
var html = [];
for (var i = 0, length = artists.length; i < length; i++) {
@@ -274,7 +286,7 @@
}
html = html.join(' / ');
-
+
if (artists.length == 1) {
return 'Artist: ' + html;
}
diff --git a/dashboard-ui/wizardservice.html b/dashboard-ui/wizardservice.html
index 9b1d408afd..cbc53b9051 100644
--- a/dashboard-ui/wizardservice.html
+++ b/dashboard-ui/wizardservice.html
@@ -16,6 +16,8 @@
Media Browser Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.
+
If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel.