Skip to content

Commit

Permalink
Added the changes that we want to keep.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Start committed Jan 26, 2015
1 parent 8fe20d8 commit 1c0e0ce
Show file tree
Hide file tree
Showing 7 changed files with 294 additions and 200 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,10 @@ The Ease class provides a collection of easing functions for use with TweenJS. I

## Thanks
Special thanks to [Robert Penner](http://flashblog.robertpenner.com/) for his easing equations, which form the basis for the Ease class.

## SpringRoll changes
* Tween.set() uses this._appendQueueProps(props); so that changes are reflected in subsequent to() calls, to make it the same as to() with a duration of 0.
* Added Tween.reset() to reset a Tween to the initial state. This really only saves a Tween.get() call, and won't particularly help garbage collection, but there it is.
* Moved when finished tweens are paused in setPosition() so that in a callback they can be added to and unpaused.
* While a bug is fixed, added a check to avoid an [error](http://github.com/CreateJS/TweenJS/issues/56)
* Removed version number from built files, versioning is handled by the Git tags & Bower. 
64 changes: 32 additions & 32 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
{
"name": "TweenJS",
"version": "0.6.0",
"homepage": "https://github.com/CreateJS/TweenJS",
"authors": [
"gskinner",
"lannymcnie",
"wdamien"
],
"description": "A simple but powerful tweening / animation library for Javascript. Part of the CreateJS suite of libraries.",
"main": "lib/tweenjs-0.6.0.combined.js",
"keywords": [
"tween",
"tweening",
"animation",
"createjs"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"_assets",
"bower_components",
"build",
"docs",
"examples",
"icon.png",
"LICENSE.txt",
"README.md",
"src",
"VERSIONS.txt"
]
}
"name": "TweenJS",
"version": "0.6.0",
"homepage": "https://github.com/CreateJS/TweenJS",
"authors": [
"gskinner",
"lannymcnie",
"wdamien"
],
"description": "A simple but powerful tweening / animation library for Javascript. Part of the CreateJS suite of libraries.",
"main": "lib/tweenjs.combined.js",
"keywords": [
"tween",
"tweening",
"animation",
"createjs"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"_assets",
"bower_components",
"build",
"docs",
"examples",
"icon.png",
"LICENSE.txt",
"README.md",
"src",
"VERSIONS.txt"
]
}
Binary file added docs/TweenJS_docs.zip
Binary file not shown.
12 changes: 0 additions & 12 deletions lib/tweenjs-0.6.0.min.js

This file was deleted.

Loading

0 comments on commit 1c0e0ce

Please sign in to comment.