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": {}, "devDependencies": {},
"ignore": [], "ignore": [],
"version": "1.4.328", "version": "1.4.329",
"_release": "1.4.328", "_release": "1.4.329",
"_resolution": { "_resolution": {
"type": "version", "type": "version",
"tag": "1.4.328", "tag": "1.4.329",
"commit": "5e1e99f67a55c923bdff70554642c31c0c6dd1ee" "commit": "ccda7e5d3b991feaec966c4ec9433cda4d93a9e7"
}, },
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git", "_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
"_target": "^1.2.1", "_target": "^1.2.1",

View file

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

View file

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

View file

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

View file

@ -1,6 +1,6 @@
{ {
"name": "webcomponents.js", "name": "webcomponents.js",
"version": "0.7.22", "version": "0.7.23",
"description": "webcomponents.js", "description": "webcomponents.js",
"main": "webcomponents.js", "main": "webcomponents.js",
"directories": { "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) { if (!AppInfo.isNativeApp) {
var disableHlsVideoAudioCodecs = []; var disableHlsVideoAudioCodecs = [];
if (!self.canPlayNativeHls()) { if (!self.canPlayNativeHls() || (browser.edge && !item.RunTimeTicks)) {
// hls.js does not support this // hls.js does not support these
disableHlsVideoAudioCodecs.push('mp3'); disableHlsVideoAudioCodecs.push('mp3');
}
if (!item.RunTimeTicks) {
// hls.js does not support this
disableHlsVideoAudioCodecs.push('ac3'); disableHlsVideoAudioCodecs.push('ac3');
} }
options.enableMkvProgressive = item.RunTimeTicks != null;
if (item.RunTimeTicks == null) {
options.enableHls = true;
}
options.enableMkvProgressive = false; options.enableMkvProgressive = false;
options.disableHlsVideoAudioCodecs = disableHlsVideoAudioCodecs; options.disableHlsVideoAudioCodecs = disableHlsVideoAudioCodecs;
} }