diff --git a/dashboard-ui/components/tvguide/tvguide.js b/dashboard-ui/components/tvguide/tvguide.js
index 8e7b7fea6..bcf6684d6 100644
--- a/dashboard-ui/components/tvguide/tvguide.js
+++ b/dashboard-ui/components/tvguide/tvguide.js
@@ -63,7 +63,9 @@
// Add one second to avoid getting programs that are just ending
date = new Date(date.getTime() + 1000);
- var nextDay = new Date(date.getTime() + msPerDay - 1);
+ // Subtract to avoid getting programs that are starting when the grid ends
+ var nextDay = new Date(date.getTime() + msPerDay - 2000);
+
Logger.log(nextDay);
channelsPromise.done(function (channelsResult) {
@@ -213,9 +215,7 @@
var endPercent = (renderEndMs - renderStartMs) / msPerDay;
endPercent *= 100;
- html += '
';
-
- var cssClass = "programCellInner";
+ var cssClass = "programCell";
var addAccent = true;
if (program.IsKids) {
@@ -232,7 +232,7 @@
addAccent = false;
}
- html += '';
+ html += '';
html += '
" + Globalize.translate('MessageConfirmItemGrouping');
+ var msg = Globalize.translate('MessageTheSelectedItemsWillBeGrouped');
Dashboard.confirm(msg, Globalize.translate('HeaderGroupVersions'), function (confirmResult) {
@@ -1361,7 +1355,7 @@
}).done(function () {
Dashboard.hideLoadingMsg();
-
+ hideSelections();
$('.itemsContainer', page).trigger('needsrefresh');
});
}
diff --git a/dashboard-ui/strings/javascript/javascript.json b/dashboard-ui/strings/javascript/javascript.json
index 35112e3f6..109b82688 100644
--- a/dashboard-ui/strings/javascript/javascript.json
+++ b/dashboard-ui/strings/javascript/javascript.json
@@ -215,8 +215,7 @@
"MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.",
"MessagePleaseSelectOneItem": "Please select at least one item.",
"MessagePleaseSelectTwoItems": "Please select at least two items.",
- "MessageTheFollowingItemsWillBeGrouped": "The following titles will be grouped into one item:",
- "MessageConfirmItemGrouping": "Emby apps will automatically choose the optimal version to play based on device and network performance. Are you sure you wish to continue?",
+ "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?",
"HeaderResume": "Resume",
"HeaderMyViews": "My Views",
"HeaderLibraryFolders": "Media Folders",
diff --git a/dashboard-ui/thirdparty/emby-icons.html b/dashboard-ui/thirdparty/emby-icons.html
index 4ace27612..009ce14c8 100644
--- a/dashboard-ui/thirdparty/emby-icons.html
+++ b/dashboard-ui/thirdparty/emby-icons.html
@@ -40,6 +40,7 @@ See [iron-iconset](#iron-iconset) and [iron-iconset-svg](#iron-iconset-svg) for
+
diff --git a/dashboard-ui/vulcanize-out.html b/dashboard-ui/vulcanize-out.html
index 46c02bbc8..a725ff431 100644
--- a/dashboard-ui/vulcanize-out.html
+++ b/dashboard-ui/vulcanize-out.html
@@ -19494,6 +19494,7 @@ iron-selector:not(.narrow-layout) #main ::content [paper-drawer-toggle] {
+