Skip to content

Commit d5767a7

Browse files
committed
add CreateJS#115; version up 1.0.4
1 parent 6df2b9c commit d5767a7

13 files changed

Lines changed: 10268 additions & 154 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ docs/**/
1515
#-----------------------------
1616
*[\<\>\:\"\/\\\|\?\*]*
1717
main.css
18+
main.css.map
1819
*.codekit
1920
*.sass-cache
2021
tests/.grunt

README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ createjs.Tween.get(target,null,true); // this will remove any existing tweens on
5858
* Discuss, share projects, and interact with other users on [reddit](http://www.reddit.com/r/createjs/).
5959
* Ask technical questions on [Stack Overflow](http://stackoverflow.com/questions/tagged/tweenjs).
6060
* File verified bugs or formal feature requests using Issues on [GitHub](https://github.com/createjs/TweenJS/issues).
61-
* Have a look at the included [examples](https://github.com/CreateJS/TweenJS/tree/master/examples) and
61+
* Have a look at the included [examples](https://github.com/CreateJS/TweenJS/tree/master/examples) and
6262
[API documentation](http://createjs.com/docs/tweenjs/) for more in-depth information.
6363

64-
It was built by [gskinner.com](http://www.gskinner.com), and is released for free under the MIT license, which means you
65-
can use it for almost any purpose (including commercial projects). We appreciate credit where possible, but it is not a
64+
It was built by [gskinner.com](http://www.gskinner.com), and is released for free under the MIT license, which means you
65+
can use it for almost any purpose (including commercial projects). We appreciate credit where possible, but it is not a
6666
requirement.
6767

6868
## Classes
@@ -74,9 +74,15 @@ Returns a new Tween instance.
7474
The Timeline class synchronizes multiple tweens and allows them to be controlled as a group.
7575

7676
**Ease**
77-
The Ease class provides a collection of easing functions for use with TweenJS. It does not use the standard 4 param
77+
The Ease class provides a collection of easing functions for use with TweenJS. It does not use the standard 4 param
7878
easing signature. Instead it uses a single param which indicates the current linear ratio (0 to 1) of the tween.
7979

8080
## Thanks
81-
Special thanks to [Robert Penner](http://flashblog.robertpenner.com/) for his easing equations, which form the basis for
81+
Special thanks to [Robert Penner](http://flashblog.robertpenner.com/) for his easing equations, which form the basis for
8282
the Ease class.
83+
84+
## Build the library
85+
86+
All source code is in the `./src` folder. After updating any source code, run the tests to verify your changes. See [`./tests/README.md`](./tests/README.md). If you add new code, please add a test case to validate your new code. In order to run the tests you need to run the `build next` process as the tests are run against the `tweenjs-NEXT.js` library.
87+
88+
Do not edit the library files in `./lib` directly, these files are generated from the `./src` folder by the build process. To build this library, see [`./build/README.md`](./build/README.md).

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "TweenJS",
3-
"version": "1.0.0",
3+
"version": "1.0.4",
44
"homepage": "https://github.com/CreateJS/TweenJS",
55
"authors": [
66
"gskinner",

build/Gruntfile.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ module.exports = function (grunt) {
2424
global_defs: {
2525
"DEBUG": false
2626
}
27-
},
28-
mangle: {
29-
except: getExclusions()
3027
}
3128
},
3229
build: {
@@ -147,8 +144,7 @@ module.exports = function (grunt) {
147144
sass: {
148145
docs: {
149146
options: {
150-
style: 'compressed',
151-
sourcemap:"none"
147+
style: 'compressed'
152148
},
153149
files: {
154150
'createjsTheme/assets/css/main.css': 'createjsTheme/assets/scss/main.scss'

build/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ Note that this requires a familiarity with using the command line. The example c
77
### Install dependencies
88

99
sass (3.3 or greater is required):
10-
10+
1111
# ruby is required for sass. Check http://sass-lang.com/install for dependencies.
1212
# Install (or update) sass
1313
gem install sass;
14-
14+
1515
Node (0.10.x or greater is required):
1616

1717
# check the version via the command line
@@ -67,5 +67,5 @@ The same as the NEXT process, but will not minify the source code. All code form
6767
* grunt next - Build everything using the NEXT version.
6868
* grunt combine - Build a NEXT version, but leave comments and formatting intact.
6969
* grunt docs - Build only the docs
70-
* grunt exportScriptTags - Export valid <script /> tags from the config.json file.
70+
* grunt exportScriptTags - Export valid `<script />` tags from the config.json file.
7171
* grunt nextlib - Export NEXT versions of the lib.

0 commit comments

Comments
 (0)