Skip to content

Commit

Permalink
Merge branch 'GMC-0.6.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Lanny McNie committed Dec 4, 2015
2 parents fc1d351 + a834f77 commit b7f7567
Show file tree
Hide file tree
Showing 22 changed files with 795 additions and 603 deletions.
4 changes: 4 additions & 0 deletions VERSIONS.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Version NEXT [not yet released]
****************************************************************************************************


Version 0.6.2 [November 26, 2015]
****************************************************************************************************
- Fixed SpriteSheetLoader's JSONP loading
- Changed LoadQueue Array checks from instanceof to Array.isArray()
- Fixed using XHR to load sounds and video
Expand Down
6 changes: 3 additions & 3 deletions _assets/libs/easeljs-NEXT.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions _assets/libs/soundjs-NEXT.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions _assets/libs/tweenjs-NEXT.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "PreloadJS",
"version": "0.6.1",
"version": "0.6.2",
"homepage": "https://github.com/CreateJS/PreloadJS",
"authors": [
"gskinner",
"lannymcnie",
"wdamien"
],
"description": "PreloadJS makes preloading assets & getting aggregate progress events easier in JavaScript. It uses XHR2 when available, and falls back to tag-based loading when not. Part of the CreateJS suite of libraries.",
"main": "lib/preloadjs-0.6.1.combined.js",
"main": "lib/preloadjs-0.6.2.combined.js",
"keywords": [
"preload",
"xhr",
Expand Down
2 changes: 1 addition & 1 deletion build/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"../src/preloadjs/version.js",
"../src/createjs/utils/extend.js",
"../src/createjs/utils/promote.js",
"../src/createjs/utils/indexOf.js",
"../src/createjs/utils/proxy.js",
"../src/createjs/utils/indexOf.js",
"../src/createjs/events/Event.js",
"../src/createjs/events/ErrorEvent.js",
"../src/createjs/events/EventDispatcher.js",
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": "PreloadJS",
"version": "0.6.1",
"version": "0.6.2",
"description": "PreloadJS Docs",
"url": "http://www.createjs.com/preloadjs",
"logo": "assets/docs-icon-PreloadJS.png",
Expand Down
Binary file removed docs/PreloadJS_docs-0.6.1.zip
Binary file not shown.
Binary file added docs/PreloadJS_docs-0.6.2.zip
Binary file not shown.
Binary file modified docs/preloadjs_docs-NEXT.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion examples/MediaGrid.html
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ <h1>Example: Media Grid</h1>
break;

case createjs.AbstractLoader.IMAGE:
div.innerText = "";
div.innerHTML = "";
result.width = div.clientWidth;
result.height = div.clientHeight;
div.appendChild(result);
Expand Down
20 changes: 18 additions & 2 deletions lib/README.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
This directory contains a compressed version of the PreloadJS library.
# lib directory
This directory contains compressed versions of the PreloadJS library, including the most recent tagged release and the
in-progress NEXT release.

You can also gzip the file to further reduce its size (by about 75%). Many servers do this automatically.
Both combined and minified versions of the library are included. The former being useful for debugging, and the latter
for deployment.

You can also link to the libraries on the [CreateJS CDN](http://code.createjs.com/), to benefit from faster load times
and shared caching across sites.


# libraries
**preloadjs-VERSION.min.js** contains minified versions of all of the EaselJS classes (comments and white space stripped).
**preloadjs-VERSION.combined.js** contains all the EaselJS classes, including whitespace and comments.


# license
The libraries are ©2010 gskinner.com, inc., and made available under the highly permissive MIT open source software
license. See the source file header for the full license text.
13 changes: 0 additions & 13 deletions lib/preloadjs-0.6.1.min.js

This file was deleted.

Loading

0 comments on commit b7f7567

Please sign in to comment.