diff --git a/dashboard-ui/bower_components/emby-webcomponents/.bower.json b/dashboard-ui/bower_components/emby-webcomponents/.bower.json index 33bbfb0094..aba9a70b4f 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/.bower.json +++ b/dashboard-ui/bower_components/emby-webcomponents/.bower.json @@ -14,12 +14,12 @@ }, "devDependencies": {}, "ignore": [], - "version": "1.4.234", - "_release": "1.4.234", + "version": "1.4.235", + "_release": "1.4.235", "_resolution": { "type": "version", - "tag": "1.4.234", - "commit": "6e3e3425ec8e10a968bc92be565f62166da4ae18" + "tag": "1.4.235", + "commit": "228f893d3748b11d61946cf48fc78a018599be93" }, "_source": "https://github.com/MediaBrowser/emby-webcomponents.git", "_target": "^1.2.1", diff --git a/dashboard-ui/bower_components/emby-webcomponents/browserdeviceprofile.js b/dashboard-ui/bower_components/emby-webcomponents/browserdeviceprofile.js index 103bd28b72..bfe32f4ebf 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/browserdeviceprofile.js +++ b/dashboard-ui/bower_components/emby-webcomponents/browserdeviceprofile.js @@ -285,9 +285,12 @@ define(['browser'], function (browser) { hlsVideoAudioCodecs.push('mp3'); } + if (browser.tizen) { + videoAudioCodecs.push('dca'); + videoAudioCodecs.push('dts'); + } + if (browser.edgeUwp) { - //videoAudioCodecs.push('dca'); - //videoAudioCodecs.push('dts'); //videoAudioCodecs.push('truehd'); } @@ -484,7 +487,7 @@ define(['browser'], function (browser) { }] }); - var videoAudioChannels = '6'; + var videoAudioChannels = browser.tizen ? '8' : '6'; // Handle he-aac not supported if (!videoTestElement.canPlayType('video/mp4; codecs="avc1.640029, mp4a.40.5"').replace(/no/, '')) { diff --git a/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/cardbuilder.js b/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/cardbuilder.js index e81b1a1dd6..86e6ffa371 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/cardbuilder.js +++ b/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/cardbuilder.js @@ -1247,7 +1247,9 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo actionAttribute = ''; } - className += ' card-withuserdata'; + if (item.Type != 'MusicAlbum' && item.Type != 'MusicArtist' && item.Type != 'Audio') { + className += ' card-withuserdata'; + } var positionTicksData = item.UserData && item.UserData.PlaybackPositionTicks ? (' data-positionticks="' + item.UserData.PlaybackPositionTicks + '"') : ''; var collectionIdData = options.collectionId ? (' data-collectionid="' + options.collectionId + '"') : ''; @@ -1346,13 +1348,13 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo return indicatorsElem; } - indicatorsElem = card.querySelector('.indicators'); + indicatorsElem = card.querySelector('.cardIndicators'); if (!indicatorsElem) { var cardImageContainer = card.querySelector('.cardImageContainer'); indicatorsElem = document.createElement('div'); - indicatorsElem.classList.add('indicators'); + indicatorsElem.classList.add('cardIndicators'); cardImageContainer.appendChild(indicatorsElem); } diff --git a/dashboard-ui/bower_components/emby-webcomponents/dialoghelper/dialoghelper.js b/dashboard-ui/bower_components/emby-webcomponents/dialoghelper/dialoghelper.js index 8e3c0d7ebf..edf8cff209 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/dialoghelper/dialoghelper.js +++ b/dashboard-ui/bower_components/emby-webcomponents/dialoghelper/dialoghelper.js @@ -79,7 +79,9 @@ } } - activeElement.focus(); + if (layoutManager.tv) { + activeElement.focus(); + } if (dlg.getAttribute('data-removeonclose') != 'false') { removeCenterFocus(dlg); diff --git a/dashboard-ui/bower_components/emby-webcomponents/guide/guide.css b/dashboard-ui/bower_components/emby-webcomponents/guide/guide.css index 8545913ce3..f45caf1226 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/guide/guide.css +++ b/dashboard-ui/bower_components/emby-webcomponents/guide/guide.css @@ -49,7 +49,7 @@ border-radius: 2px; margin-right: .5em; color: #fff; - font-size: 80%; + font-size: 74%; padding: .2em .25em; display: inline-flex; align-items: center; diff --git a/dashboard-ui/bower_components/iron-icon/.bower.json b/dashboard-ui/bower_components/iron-icon/.bower.json index 87e3dad5d3..f76855b27a 100644 --- a/dashboard-ui/bower_components/iron-icon/.bower.json +++ b/dashboard-ui/bower_components/iron-icon/.bower.json @@ -32,14 +32,14 @@ "web-component-tester": "^4.0.0", "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" }, - "homepage": "https://github.com/polymerelements/iron-icon", + "homepage": "https://github.com/PolymerElements/iron-icon", "_release": "1.0.10", "_resolution": { "type": "version", "tag": "v1.0.10", "commit": "f4e146da4982ff96bb25db85290c09e8de4ec734" }, - "_source": "git://github.com/polymerelements/iron-icon.git", + "_source": "git://github.com/PolymerElements/iron-icon.git", "_target": "^1.0.0", - "_originalSource": "polymerelements/iron-icon" + "_originalSource": "PolymerElements/iron-icon" } \ No newline at end of file diff --git a/dashboard-ui/itemdetails.html b/dashboard-ui/itemdetails.html index c2907c7e96..501d1ea8b1 100644 --- a/dashboard-ui/itemdetails.html +++ b/dashboard-ui/itemdetails.html @@ -147,11 +147,11 @@

- +
-
TOMATOMETER®
-
-
+

TOMATOMETER®

+
+
diff --git a/dashboard-ui/scripts/itemdetailpage.js b/dashboard-ui/scripts/itemdetailpage.js index 682e85119f..30c1eb6066 100644 --- a/dashboard-ui/scripts/itemdetailpage.js +++ b/dashboard-ui/scripts/itemdetailpage.js @@ -1455,15 +1455,15 @@ else if (review.Likes != null) { if (review.Likes) { - html += '
'; + html += '
'; } else { - html += '
'; + html += '
'; } } html += '
'; - html += '
' + review.Caption + '
'; + html += '

' + review.Caption + '

'; var vals = []; @@ -1474,7 +1474,7 @@ vals.push(review.Publisher); } - html += '
' + vals.join(', ') + '.'; + html += '
' + vals.join(', ') + '.'; if (review.Date) { try { @@ -1491,7 +1491,7 @@ html += '
'; if (review.Url) { - html += ''; + html += ''; } html += '
'; diff --git a/dashboard-ui/scripts/registrationservices.js b/dashboard-ui/scripts/registrationservices.js index 65d5680115..f43dbe6e74 100644 --- a/dashboard-ui/scripts/registrationservices.js +++ b/dashboard-ui/scripts/registrationservices.js @@ -90,22 +90,27 @@ function showPlaybackOverlay(resolve, reject) { - require(['dialogHelper', 'listViewStyle', 'emby-button'], function (dialogHelper) { + require(['dialogHelper', 'listViewStyle', 'emby-button', 'formDialogStyle'], function (dialogHelper) { var dlg = dialogHelper.createDialog({ size: 'fullscreen-border', - removeOnClose: true + removeOnClose: true, + scrollY: false }); - dlg.classList.add('ui-body-b'); - dlg.classList.add('background-theme-b'); + dlg.classList.add('formDialog'); var html = ''; - html += '

'; - html += ''; - html += '

'; + html += '
'; + html += ''; + html += '

'; + html += '

'; - html += '
'; + html += '
'; + + + html += '
'; + html += '
'; html += '

' + Globalize.translate('HeaderTryEmbyPremiere') + '

'; @@ -122,9 +127,10 @@ html += '
'; - html += ''; - html += ''; + html += ''; + html += ''; + html += '
'; html += '
'; dlg.innerHTML = html; diff --git a/dashboard-ui/wizardagreement.html b/dashboard-ui/wizardagreement.html index 9f020758d5..cde7e4bc2f 100644 --- a/dashboard-ui/wizardagreement.html +++ b/dashboard-ui/wizardagreement.html @@ -18,11 +18,11 @@
- - diff --git a/dashboard-ui/wizardcomponents.html b/dashboard-ui/wizardcomponents.html index 9343c9300e..8321ce8ecc 100644 --- a/dashboard-ui/wizardcomponents.html +++ b/dashboard-ui/wizardcomponents.html @@ -51,11 +51,11 @@
- - diff --git a/dashboard-ui/wizardfinish.html b/dashboard-ui/wizardfinish.html index eaead9024f..089805e0f6 100644 --- a/dashboard-ui/wizardfinish.html +++ b/dashboard-ui/wizardfinish.html @@ -37,8 +37,8 @@

- - + +
diff --git a/dashboard-ui/wizardlibrary.html b/dashboard-ui/wizardlibrary.html index 275616c32b..ed198497b6 100644 --- a/dashboard-ui/wizardlibrary.html +++ b/dashboard-ui/wizardlibrary.html @@ -16,8 +16,8 @@

- - + +
diff --git a/dashboard-ui/wizardlivetvguide.html b/dashboard-ui/wizardlivetvguide.html index ee07ae0148..310298fc6a 100644 --- a/dashboard-ui/wizardlivetvguide.html +++ b/dashboard-ui/wizardlivetvguide.html @@ -27,9 +27,9 @@

- - - + + +
diff --git a/dashboard-ui/wizardlivetvtuner.html b/dashboard-ui/wizardlivetvtuner.html index ac49c12e93..92ea3d4d34 100644 --- a/dashboard-ui/wizardlivetvtuner.html +++ b/dashboard-ui/wizardlivetvtuner.html @@ -27,9 +27,9 @@
- - - + + +
diff --git a/dashboard-ui/wizardservice.html b/dashboard-ui/wizardservice.html index 0b3bfc80a1..d1b533306b 100644 --- a/dashboard-ui/wizardservice.html +++ b/dashboard-ui/wizardservice.html @@ -14,8 +14,8 @@

${WindowsServiceIntro2}

- - + +
diff --git a/dashboard-ui/wizardsettings.html b/dashboard-ui/wizardsettings.html index c5e208d248..4b19f41666 100644 --- a/dashboard-ui/wizardsettings.html +++ b/dashboard-ui/wizardsettings.html @@ -29,8 +29,8 @@
- - + +
diff --git a/dashboard-ui/wizardstart.html b/dashboard-ui/wizardstart.html index dd514113b5..cc31f64a0a 100644 --- a/dashboard-ui/wizardstart.html +++ b/dashboard-ui/wizardstart.html @@ -22,7 +22,7 @@
- +
diff --git a/dashboard-ui/wizarduser.html b/dashboard-ui/wizarduser.html index 12257dac2e..7651968ae4 100644 --- a/dashboard-ui/wizarduser.html +++ b/dashboard-ui/wizarduser.html @@ -24,8 +24,8 @@
- - + +