Skip to content

Commit 1c0e0ce

Browse files
author
Andrew Start
committed
Added the changes that we want to keep.
1 parent 8fe20d8 commit 1c0e0ce

7 files changed

Lines changed: 294 additions & 200 deletions

File tree

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,10 @@ The Ease class provides a collection of easing functions for use with TweenJS. I
6565

6666
## Thanks
6767
Special thanks to [Robert Penner](http://flashblog.robertpenner.com/) for his easing equations, which form the basis for the Ease class.
68+
69+
## SpringRoll changes
70+
* 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.
71+
* 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.
72+
* Moved when finished tweens are paused in setPosition() so that in a callback they can be added to and unpaused.
73+
* While a bug is fixed, added a check to avoid an [error](http://github.com/CreateJS/TweenJS/issues/56)
74+
* Removed version number from built files, versioning is handled by the Git tags & Bower. 

bower.json

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
{
2-
"name": "TweenJS",
3-
"version": "0.6.0",
4-
"homepage": "https://github.com/CreateJS/TweenJS",
5-
"authors": [
6-
"gskinner",
7-
"lannymcnie",
8-
"wdamien"
9-
],
10-
"description": "A simple but powerful tweening / animation library for Javascript. Part of the CreateJS suite of libraries.",
11-
"main": "lib/tweenjs-0.6.0.combined.js",
12-
"keywords": [
13-
"tween",
14-
"tweening",
15-
"animation",
16-
"createjs"
17-
],
18-
"license": "MIT",
19-
"ignore": [
20-
"**/.*",
21-
"node_modules",
22-
"_assets",
23-
"bower_components",
24-
"build",
25-
"docs",
26-
"examples",
27-
"icon.png",
28-
"LICENSE.txt",
29-
"README.md",
30-
"src",
31-
"VERSIONS.txt"
32-
]
33-
}
2+
"name": "TweenJS",
3+
"version": "0.6.0",
4+
"homepage": "https://github.com/CreateJS/TweenJS",
5+
"authors": [
6+
"gskinner",
7+
"lannymcnie",
8+
"wdamien"
9+
],
10+
"description": "A simple but powerful tweening / animation library for Javascript. Part of the CreateJS suite of libraries.",
11+
"main": "lib/tweenjs.combined.js",
12+
"keywords": [
13+
"tween",
14+
"tweening",
15+
"animation",
16+
"createjs"
17+
],
18+
"license": "MIT",
19+
"ignore": [
20+
"**/.*",
21+
"node_modules",
22+
"_assets",
23+
"bower_components",
24+
"build",
25+
"docs",
26+
"examples",
27+
"icon.png",
28+
"LICENSE.txt",
29+
"README.md",
30+
"src",
31+
"VERSIONS.txt"
32+
]
33+
}

docs/TweenJS_docs.zip

417 KB
Binary file not shown.

lib/tweenjs-0.6.0.min.js

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)