mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update components
This commit is contained in:
parent
cbaac63619
commit
a5f98e52ac
10 changed files with 35 additions and 30 deletions
|
@ -14,12 +14,12 @@
|
|||
},
|
||||
"devDependencies": {},
|
||||
"ignore": [],
|
||||
"version": "1.4.387",
|
||||
"_release": "1.4.387",
|
||||
"version": "1.4.389",
|
||||
"_release": "1.4.389",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "1.4.387",
|
||||
"commit": "9c9c5e0dbbab5107fbf3258f201e2facccbddffa"
|
||||
"tag": "1.4.389",
|
||||
"commit": "a52d7a592187de64c84c956b1c0dcf51d78736a2"
|
||||
},
|
||||
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
||||
"_target": "^1.2.1",
|
||||
|
|
|
@ -63,6 +63,7 @@
|
|||
|
||||
.formDialogFooter-flex {
|
||||
position: static;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.formDialogFooterItem {
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
|
||||
.guideHeaderDateSelection {
|
||||
font-size: 86%;
|
||||
padding: .4em 0;
|
||||
}
|
||||
|
||||
.guideHeaderTimeslots {
|
||||
|
@ -424,8 +425,8 @@
|
|||
.guide-date-tab-button {
|
||||
font-weight: 500 !important;
|
||||
color: inherit !important;
|
||||
padding-top: .8em !important;
|
||||
padding-bottom: .8em !important;
|
||||
padding-top: .3em !important;
|
||||
padding-bottom: .3em !important;
|
||||
opacity: .25;
|
||||
}
|
||||
|
||||
|
@ -443,6 +444,7 @@
|
|||
|
||||
.layout-tv .guide-date-tab-button:focus {
|
||||
background-color: #52B54B !important;
|
||||
border-radius: .25em !important;
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
|
@ -453,11 +455,3 @@
|
|||
padding-right: 1em !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (min-width: 1400px) {
|
||||
|
||||
.guide-date-tab-button {
|
||||
padding-left: 1.1em !important;
|
||||
padding-right: 1.1em !important;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hls.js",
|
||||
"version": "0.6.13",
|
||||
"version": "0.6.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
||||
"homepage": "https://github.com/dailymotion/hls.js",
|
||||
|
@ -16,11 +16,11 @@
|
|||
"test",
|
||||
"tests"
|
||||
],
|
||||
"_release": "0.6.13",
|
||||
"_release": "0.6.14",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "v0.6.13",
|
||||
"commit": "ac72ae33a7c260ebafd44ebc1046206e37d1cfdd"
|
||||
"tag": "v0.6.14",
|
||||
"commit": "0e12670c875f4e3235b02ccc7455abb923333eb2"
|
||||
},
|
||||
"_source": "https://github.com/dailymotion/hls.js.git",
|
||||
"_target": "^0.6.11",
|
||||
|
|
10
dashboard-ui/bower_components/hlsjs/API.md
vendored
10
dashboard-ui/bower_components/hlsjs/API.md
vendored
|
@ -402,6 +402,16 @@ Enable WebWorker (if available on browser) for TS demuxing/MP4 remuxing, to impr
|
|||
|
||||
Enable to use JavaScript version AES decryption for fallback of WebCrypto API.
|
||||
|
||||
|
||||
#### `enableLazyURLResolve`
|
||||
|
||||
(default: `false`)
|
||||
|
||||
Enable lazy URL resolving in fragment/key object.
|
||||
Instead of resolving relative fragment/key URL on playlist parsing, URL are resolved on `FRAG_LOADING` / `KEY_LOADING`
|
||||
this improves manifest parsing performance.
|
||||
the drawback is that `frag.url` is not set in frag object, instead it is replaced by `frag.baseurl and `frag.relurl`
|
||||
|
||||
#### `startLevel`
|
||||
|
||||
(default: `undefined`)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hls.js",
|
||||
"version": "0.6.13",
|
||||
"version": "0.6.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
||||
"homepage": "https://github.com/dailymotion/hls.js",
|
||||
|
|
|
@ -146,7 +146,7 @@ design idea is pretty simple :
|
|||
- [src/remux/mp4-remuxer.js][]
|
||||
- in charge of converting AVC/AAC/MP3 samples provided by demuxer into fragmented ISO BMFF boxes, compatible with MediaSource
|
||||
- this remuxer is able to deal with small gaps between fragments and ensure timestamp continuity. it is also able to create audio padding (silent AAC audio frames) in case there is a significant audio 'hole' in the stream.
|
||||
- it notifies remuxing completion using events (```FRAG_PARSING_INIT_SEGMENT```and ```FRAG_PARSING_DATA```)
|
||||
- it notifies remuxing completion using events (```FRAG_PARSING_INIT_SEGMENT```, ```FRAG_PARSING_DATA``` and ```FRAG_PARSED```)
|
||||
- [src/utils/attr-list.js][]
|
||||
- Attribute List parsing helper class, used by playlist-loader
|
||||
- [src/utils/binary-search.js][]
|
||||
|
@ -240,6 +240,7 @@ design idea is pretty simple :
|
|||
- if frag level is 0 or auto level switch is disabled, this error is marked as fatal and a call to ```hls.startLoad()``` could help recover it.
|
||||
- ```FRAG_DECRYPT_ERROR``` is raised by [src/demux/demuxer.js][] upon fragment decrypting error. this error is fatal.
|
||||
- ```FRAG_PARSING_ERROR``` is raised by [src/demux/tsdemuxer.js][] upon TS parsing error. this error is not fatal.
|
||||
- ```REMUX_ALLOC_ERROR``` is raised by [src/remux/mp4-remuxer.js][] upon memory allocation error while remuxing. this error is not fatal if in auto-mode and loaded frag level is greater than 0. in that case a level switch down will occur.
|
||||
- ```KEY_LOAD_ERROR``` is raised by [src/loader/key-loader.js][] upon xhr failure detected by [src/utils/xhr-loader.js][].
|
||||
- if auto level switch is enabled and loaded frag level is greater than 0, this error is not fatal: in that case [src/controller/level-controller.js][] will trigger an emergency switch down to level 0.
|
||||
- if frag level is 0 or auto level switch is disabled, this error is marked as fatal and a call to ```hls.startLoad()``` could help recover it.
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hls.js",
|
||||
"version": "0.6.13",
|
||||
"version": "0.6.14",
|
||||
"license": "Apache-2.0",
|
||||
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
||||
"homepage": "https://github.com/dailymotion/hls.js",
|
||||
|
@ -23,7 +23,7 @@
|
|||
"patch": "mversion p && npm run preparerelease",
|
||||
"minor": "mversion mi && npm run preparerelease",
|
||||
"major": "mversion ma && npm run preparerelease",
|
||||
"minify": "uglifyjs dist/hls.js -c sequences=true,dead_code=true,conditionals=true,booleans=true,unused=true,if_return=true,join_vars=true,drop_console=true -m sort --screw-ie8 > dist/hls.min.js",
|
||||
"minify": "uglifyjs dist/hls.js -c sequences=true,dead_code=true,conditionals=true,booleans=true,unused=true,if_return=true,join_vars=true,drop_console=true -m --screw-ie8 > dist/hls.min.js",
|
||||
"watch": "watchify --debug -s Hls src/index.js -t [babelify] -o dist/hls.js",
|
||||
"pretest": "npm run lint",
|
||||
"test": "mocha --compilers js:babel-register --recursive tests/unit",
|
||||
|
@ -36,7 +36,6 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"arraybuffer-equal": "^1.0.4",
|
||||
"babel": "^6.3.26",
|
||||
"babel-cli": "^6.18.0",
|
||||
"babel-preset-es2015": "^6.18.0",
|
||||
"babel-register": "^6.18.0",
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
z-index: 1;
|
||||
margin: 0 !important;
|
||||
/* Page needs to supply padding */
|
||||
top: 98px !important;
|
||||
top: 102px !important;
|
||||
transition: transform 200ms ease-out;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue