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 @@
${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 @@