1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update components

This commit is contained in:
Luke Pulverenti 2016-11-03 13:40:27 -04:00
parent c203b7253b
commit d7846a5280
7 changed files with 17 additions and 27 deletions

View file

@ -14,12 +14,12 @@
},
"devDependencies": {},
"ignore": [],
"version": "1.4.328",
"_release": "1.4.328",
"version": "1.4.329",
"_release": "1.4.329",
"_resolution": {
"type": "version",
"tag": "1.4.328",
"commit": "5e1e99f67a55c923bdff70554642c31c0c6dd1ee"
"tag": "1.4.329",
"commit": "ccda7e5d3b991feaec966c4ec9433cda4d93a9e7"
},
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
"_target": "^1.2.1",

View file

@ -347,7 +347,7 @@
}
.programTextIcon-tv {
font-size: .7em;
font-size: .6em;
}
.guideChannelNumber {

View file

@ -1,7 +1,7 @@
{
"name": "webcomponentsjs",
"main": "webcomponents.js",
"version": "0.7.22",
"version": "0.7.23",
"homepage": "http://webcomponents.org",
"authors": [
"The Polymer Authors"
@ -18,14 +18,13 @@
"devDependencies": {
"web-component-tester": "^4.0.1"
},
"_release": "0.7.22",
"_release": "0.7.23",
"_resolution": {
"type": "version",
"tag": "v0.7.22",
"commit": "50f9751f8e638301603aebb33ba9f1e90d2b0d32"
"tag": "v0.7.23",
"commit": "9d6cb3a3571241e4cda0617e043629c5c9002b34"
},
"_source": "https://github.com/Polymer/webcomponentsjs.git",
"_target": "^0.7.22",
"_originalSource": "webcomponentsjs",
"_direct": true
"_originalSource": "webcomponentsjs"
}

View file

@ -1,7 +1,7 @@
{
"name": "webcomponentsjs",
"main": "webcomponents.js",
"version": "0.7.22",
"version": "0.7.23",
"homepage": "http://webcomponents.org",
"authors": [
"The Polymer Authors"

View file

@ -1,6 +1,6 @@
{
"name": "webcomponents.js",
"version": "0.7.22",
"version": "0.7.23",
"description": "webcomponents.js",
"main": "webcomponents.js",
"directories": {

File diff suppressed because one or more lines are too long

View file

@ -154,21 +154,12 @@ define(['appSettings', 'userSettings', 'appStorage', 'datetime', 'browser'], fun
if (!AppInfo.isNativeApp) {
var disableHlsVideoAudioCodecs = [];
if (!self.canPlayNativeHls()) {
// hls.js does not support this
if (!self.canPlayNativeHls() || (browser.edge && !item.RunTimeTicks)) {
// hls.js does not support these
disableHlsVideoAudioCodecs.push('mp3');
}
if (!item.RunTimeTicks) {
// hls.js does not support this
disableHlsVideoAudioCodecs.push('ac3');
}
options.enableMkvProgressive = item.RunTimeTicks != null;
if (item.RunTimeTicks == null) {
options.enableHls = true;
}
options.enableMkvProgressive = false;
options.disableHlsVideoAudioCodecs = disableHlsVideoAudioCodecs;
}