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

restore ForceLiveStream param

This commit is contained in:
Luke Pulverenti 2016-04-21 00:04:57 -04:00
parent da7c9a4899
commit d0f7abaae8
23 changed files with 149 additions and 94 deletions

View file

@ -28,14 +28,14 @@
"web-animations-next-lite.dev.html",
"web-animations-next-lite.dev.js"
],
"version": "2.1.4",
"_release": "2.1.4",
"version": "2.2.0",
"_release": "2.2.0",
"_resolution": {
"type": "version",
"tag": "2.1.4",
"commit": "37184a99ab51d7fd8b3c9a60c3faa5c440ade147"
"tag": "2.2.0",
"commit": "b5d91413acee82aadd01a18880cb84a5d883047d"
},
"_source": "git://github.com/web-animations/web-animations-js.git",
"_target": "2.1.4",
"_target": "^2.2.0",
"_originalSource": "web-animations/web-animations-js"
}

View file

@ -1,3 +1,36 @@
### 2.2.0 - *April 6 2016*
* Deprecated the use of hyphens in property names.
For example, this is deprecated:
element.animate([{'font-size': '0px'}, {'font-size': '10px'}]);
and this should be used instead:
element.animate([{fontSize: '0px'}, {fontSize: '10px'}]);
* Added arbitrary easing capitalisation.
* Added "id" effect option. (http://w3c.github.io/web-animations/#dom-keyframeanimationoptions-id)
* Added "oncancel" event handler.
* Added value list keyframe syntax.
As as alternative to:
element.animate([{color: 'red'}, {color: 'green'}, {color: 'blue'}]);
you can now use:
element.animate({color: ['red', 'green', 'blue']});
* Fixed easing TypeError in FireFox Nightly when using groups.
* Fixed delayed animation updates on Safari and Firefox
* Fixed infinite recursion when setting onfinish to null.
### 2.1.4 - *December 1 2015*
* Use `Date.now()` instead of `performace.now()` for mobile Safari.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long