Skip to content

Commit 21bd3b9

Browse files
author
Lanny McNie
committed
EaselJS version 0.7.0
Signed-off-by: Lanny McNie <[email protected]>
1 parent 691ba13 commit 21bd3b9

11 files changed

+36
-164
lines changed

VERSIONS.txt

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Version NEXT [Not Released]
1+
Version 0.7.0 [September 25, 2013]
22
****************************************************************************************************
33
CRITICAL (may break existing content):
44
- removed all onEvent handlers (ex. onClick, onTick, onAnimationEnd, etc)
@@ -10,9 +10,7 @@ CRITICAL (may break existing content):
1010
- removed "target" from MouseEvent's param list
1111
- returning false from an event handler no longer causes dispatchEvent to return false, see Event.preventDefault
1212
- Added "use strict"; to everything.
13-
- Fixed clone on AlphaMapFilter
1413
- renamed BoxBlurFilter to BlurFilter
15-
- Updated the build process to use NodeJS & Grunt.js. Please refer to the readme in the build folder.
1614

1715
*****
1816
DEPRECATED (will be removed in a future version):
@@ -21,7 +19,7 @@ DEPRECATED (will be removed in a future version):
2119
- SpriteSheetUtils.mergeAlpha()
2220

2321
*****
24-
OTHER:
22+
Other changes:
2523
- implemented createjs Utils
2624
- implemented "use strict" mode
2725
- BitmapAnimation renamed to Sprite
@@ -56,7 +54,6 @@ OTHER:
5654
- DisplayObject, SpriteSheet, and SpriteSheetBuilder now inherit from EventDispatcher
5755
- fixed an issue with the tick event's time value being epoch time instead of Timer time
5856
- added Ticker.getEventTime()
59-
- added Ticker.maxDelta
6057
- the initialize methods for Point, Rectangle, and Matrix2D are now public
6158
- added .copy() to Point, Rectangle, and Matrix2D
6259
- fixed an issue that could occur when reinitializing Matrix2D
@@ -73,6 +70,8 @@ OTHER:
7370
- bounds for cache() are now automatically adjusted for filters
7471
- improved BlurFilter performance and results (thanks to Mario Klingemann)
7572
- objects added to a MovieClip via addChild will now display over objects managed by the MovieClip
73+
- Fixed clone on AlphaMapFilter
74+
- Updated the build process to use NodeJS & Grunt.js. Please refer to the readme in the build folder.
7675

7776

7877
Version 0.6.1 [May 14, 2013]

build/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "EaselJS",
3-
"version": "0.6.1",
3+
"version": "0.7.0",
44
"description": "EaselJS Docs",
55
"url": "http://www.createjs.com/#!/EaselJS",
66
"logo": "http://createjs.com/resources/SuiteIcons/EaselJS/docs-icon-EaselJS.png",

docs/EaselJS_docs-0.7.0.zip

612 KB
Binary file not shown.

docs/easeljs_docs-NEXT.zip

0 Bytes
Binary file not shown.

lib/easeljs-0.6.1.min.js

-135
This file was deleted.

lib/easeljs-0.7.0.min.js

+14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/easeljs-NEXT.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/movieclip-0.6.1.min.js

-18
This file was deleted.

lib/movieclip-0.7.0.min.js

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/easeljs/version.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ this.createjs = this.createjs || {};
1919
* @type String
2020
* @static
2121
**/
22-
s.version = /*version*/"NEXT"; // injected by build process
22+
s.version = /*version*/"0.7.0"; // injected by build process
2323

2424
/**
2525
* The build date for this release in UTC format.
2626
* @property buildDate
2727
* @type String
2828
* @static
2929
**/
30-
s.buildDate = /*date*/"Tue, 17 Sep 2013 19:51:04 GMT"; // injected by build process
30+
s.buildDate = /*date*/"Wed, 25 Sep 2013 17:09:35 GMT"; // injected by build process
3131

3232
})();

src/easeljs/version_movieclip.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ this.createjs = this.createjs || {};
1616
* @type String
1717
* @static
1818
**/
19-
s.version = /*version*/"NEXT"; // injected by build process
19+
s.version = /*version*/"0.7.0"; // injected by build process
2020

2121
/**
2222
* The build date for this release in UTC format.
@@ -25,6 +25,6 @@ this.createjs = this.createjs || {};
2525
* @type String
2626
* @static
2727
**/
28-
s.buildDate = /*date*/"Tue, 17 Sep 2013 19:51:04 GMT"; // injected by build process
28+
s.buildDate = /*date*/"Wed, 25 Sep 2013 17:09:35 GMT"; // injected by build process
2929

3030
})();

0 commit comments

Comments
 (0)