Skip to content

Commit

Permalink
version 4.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bodymovin committed Jul 9, 2017
1 parent 36453e8 commit f07d23f
Show file tree
Hide file tree
Showing 11 changed files with 1,249 additions and 879 deletions.
5 changes: 5 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## V 4.9.0
- Full repeaters support
- Keyframes interpolation fix for stretched layers
- inBrowser method added

## V 4.8.0
- Fonts fix for Lottie compatibility
- fonts reduced exported filesize
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# bodymovin
After Effects plugin for exporting animations to svg/canvas/html + js or natively on Android and iOS through [Lottie](https://github.com/airbnb/lottie-android)

## V 4.9.0
- Full repeaters support
- Keyframes interpolation fix for stretched layers
- inBrowser method added

## V 4.8.0
- Fonts fix for Lottie compatibility
- fonts reduced exported filesize
Expand Down
Binary file modified build/extension/bodymovin.zxp
Binary file not shown.
1,220 changes: 716 additions & 504 deletions build/player/bodymovin.js

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions build/player/bodymovin.min.js

Large diffs are not rendered by default.

859 changes: 505 additions & 354 deletions build/player/bodymovin_light.js

Large diffs are not rendered by default.

13 changes: 5 additions & 8 deletions build/player/bodymovin_light.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var htmlreplace = require('gulp-html-replace');
var eventstream = require("event-stream");
var jslint = require('gulp-jslint');

var bm_version = '4.8.0';
var bm_version = '4.9.0';

var files = [
{
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bodymovin",
"version": "4.8.0",
"version": "4.9.0",
"description": "After Effects plugin for exporting animations to SVG + JavaScript or canvas + JavaScript",
"main": "./build/player/bodymovin.js",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions player/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

#bodymovin{
background-color:#333;
width:1024px;
height:768px;
width:100%;
height:100%;
/*width:800px;
height:500px;*/
display:block;
Expand Down
2 changes: 1 addition & 1 deletion player/js/elements/ShapeElement.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ IShapeElement.prototype.setGradientOpacity = function(arr, data, styleOb){
IShapeElement.prototype.createStyleElement = function(data, level, dynamicProperties){
var elementData = {
};
styleOb = {
var styleOb = {
data: data,
type: data.ty,
d: '',
Expand Down

0 comments on commit f07d23f

Please sign in to comment.