Skip to content

Commit

Permalink
EaselJS version 0.7.0
Browse files Browse the repository at this point in the history
Signed-off-by: Lanny McNie <lanny@gskinner.com>
  • Loading branch information
Lanny McNie committed Sep 25, 2013
1 parent 691ba13 commit 21bd3b9
Show file tree
Hide file tree
Showing 11 changed files with 36 additions and 164 deletions.
9 changes: 4 additions & 5 deletions VERSIONS.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Version NEXT [Not Released]
Version 0.7.0 [September 25, 2013]
****************************************************************************************************
CRITICAL (may break existing content):
- removed all onEvent handlers (ex. onClick, onTick, onAnimationEnd, etc)
Expand All @@ -10,9 +10,7 @@ CRITICAL (may break existing content):
- removed "target" from MouseEvent's param list
- returning false from an event handler no longer causes dispatchEvent to return false, see Event.preventDefault
- Added "use strict"; to everything.
- Fixed clone on AlphaMapFilter
- renamed BoxBlurFilter to BlurFilter
- Updated the build process to use NodeJS & Grunt.js. Please refer to the readme in the build folder.

*****
DEPRECATED (will be removed in a future version):
Expand All @@ -21,7 +19,7 @@ DEPRECATED (will be removed in a future version):
- SpriteSheetUtils.mergeAlpha()

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


Version 0.6.1 [May 14, 2013]
Expand Down
2 changes: 1 addition & 1 deletion build/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "EaselJS",
"version": "0.6.1",
"version": "0.7.0",
"description": "EaselJS Docs",
"url": "http://www.createjs.com/#!/EaselJS",
"logo": "http://createjs.com/resources/SuiteIcons/EaselJS/docs-icon-EaselJS.png",
Expand Down
Binary file added docs/EaselJS_docs-0.7.0.zip
Binary file not shown.
Binary file modified docs/easeljs_docs-NEXT.zip
Binary file not shown.
135 changes: 0 additions & 135 deletions lib/easeljs-0.6.1.min.js

This file was deleted.

14 changes: 14 additions & 0 deletions lib/easeljs-0.7.0.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/easeljs-NEXT.min.js

Large diffs are not rendered by default.

18 changes: 0 additions & 18 deletions lib/movieclip-0.6.1.min.js

This file was deleted.

12 changes: 12 additions & 0 deletions lib/movieclip-0.7.0.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/easeljs/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ this.createjs = this.createjs || {};
* @type String
* @static
**/
s.version = /*version*/"NEXT"; // injected by build process
s.version = /*version*/"0.7.0"; // injected by build process

/**
* The build date for this release in UTC format.
* @property buildDate
* @type String
* @static
**/
s.buildDate = /*date*/"Tue, 17 Sep 2013 19:51:04 GMT"; // injected by build process
s.buildDate = /*date*/"Wed, 25 Sep 2013 17:09:35 GMT"; // injected by build process

})();
4 changes: 2 additions & 2 deletions src/easeljs/version_movieclip.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ this.createjs = this.createjs || {};
* @type String
* @static
**/
s.version = /*version*/"NEXT"; // injected by build process
s.version = /*version*/"0.7.0"; // injected by build process

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

})();

0 comments on commit 21bd3b9

Please sign in to comment.