OLD | NEW |
| 1 ### 1.0.5 - *January 6 2015* |
| 2 |
| 3 * Fix loading the polyfill in an SVG document |
| 4 * Fix a problem where groups didn't take effect in their first frame |
| 5 * Don't rely on performance.now |
| 6 |
| 7 ### 1.0.4 - *December 8 2014* |
| 8 |
| 9 * Fix a critical bug where deprecation logic wasn't being loaded |
| 10 when `web-animations-next` and `web-animations-next-lite` were |
| 11 executed on top of a native `element.animate`. |
| 12 |
| 13 ### 1.0.3 - *December 4 2014* |
| 14 |
| 15 * Fix a critical bug on iOS 7 and Safari <= 6. Due to limitations, |
| 16 inline style patching is not supported on these platforms. |
| 17 |
| 18 ### 1.0.2 - *November 28 2014* |
| 19 |
| 20 * Deprecated `AnimationTiming.playbackRate`. |
| 21 |
| 22 For example, this is no longer supported: |
| 23 |
| 24 var player = element.animate( |
| 25 keyframes, |
| 26 {duration: 1000, playbackRate: 2}); |
| 27 |
| 28 Use `AnimationPlayer.playbackRate` instead: |
| 29 |
| 30 var player = element.animate( |
| 31 keyframes, |
| 32 {duration: 1000}); |
| 33 player.playbackRate = 2; |
| 34 |
| 35 If you have any feedback on this change, please start a discussion |
| 36 on the public-fx mailing list: |
| 37 http://lists.w3.org/Archives/Public/public-fx/ |
| 38 |
| 39 Or file an issue against the specification on GitHub: |
| 40 https://github.com/w3c/web-animations/issues/new |
| 41 |
1 ### 1.0.1 - *November 26 2014* | 42 ### 1.0.1 - *November 26 2014* |
2 | 43 |
3 * Players should be constructed in idle state | 44 * Players should be constructed in idle state |
4 * `play()` and `reverse()` should not force a start times | 45 * `play()` and `reverse()` should not force a start times |
5 * Add `requestAnimationFrame` ids and `cancelAnimationFrame` | 46 * Add `requestAnimationFrame` ids and `cancelAnimationFrame` |
6 | 47 |
7 ### 1.0.0 — *November 21 2014* | 48 ### 1.0.0 — *November 21 2014* |
8 | 49 |
9 The web-animations-js hackers are pleased to announce the release of | 50 The web-animations-js hackers are pleased to announce the release of |
10 a new codebase for the Web Animations Polyfill: | 51 a new codebase for the Web Animations Polyfill: |
(...skipping 21 matching lines...) Expand all Loading... |
32 | 73 |
33 `web-animations-next-lite.min.js` - A cut down version of | 74 `web-animations-next-lite.min.js` - A cut down version of |
34 web-animations-next, removes several lesser used property handlers | 75 web-animations-next, removes several lesser used property handlers |
35 and some of the larger and less used features such as matrix | 76 and some of the larger and less used features such as matrix |
36 interpolation/decomposition. | 77 interpolation/decomposition. |
37 | 78 |
38 Not all features of the previous polyfill have been ported to the | 79 Not all features of the previous polyfill have been ported to the |
39 new codebase; most notably mutation of Animations and Groups and | 80 new codebase; most notably mutation of Animations and Groups and |
40 Additive Animations are not yet supported. These features are still | 81 Additive Animations are not yet supported. These features are still |
41 important and will be implemented in the coming weeks. | 82 important and will be implemented in the coming weeks. |
OLD | NEW |