Skip to content

Commit 39474c9

Browse files
committed
Updated docs and libs
1 parent ec20604 commit 39474c9

8 files changed

+110
-69
lines changed

VERSIONS.txt

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,19 @@ Version NEXT [Not yet released]
33
CRITICAL
44
- removed deprecated properties, particularly getValue/setValue properties, in favour of .value
55
this particularly affects instance and global properties like mute, volume, pan, etc.
6+
- removed deprecated TYPE duplicates, notably the loader types (LoadQueue.SOUND, AbstractLoader.SOUND)
7+
in place of the Types.SOUND, and request methods (LoadQueue.POST, AbstractLoader.POST) in place
8+
of Methods.POST.
69

7-
OTHER
8-
* changed XHR error conditions to only include 400-599. Specifically removed status=0 as an error,
10+
*****
11+
- changed XHR error conditions to only include 400-599. Specifically removed status=0 as an error,
912
which affects compiled applications.
10-
* fixed issue where values don't get appended to GET requests in XHRRequest
11-
* added "touchstart" as an audio unlocking event, which seems to be the best for iOS
12-
* checked if preload candidates are videos, since SoundJS mistakenly handles these when they are mp4.
13-
* added missing Methods and Types classes from recent PreloadJS changes
14-
* handled case where audio duration returned < 0, resulting in a DOM Error
15-
* fixed issue where new instances wouldn't get the global mute/volume (thanks @PythonFanboy)
13+
- fixed issue where values don't get appended to GET requests in XHRRequest
14+
- added "touchstart" as an audio unlocking event, which seems to be the best for iOS
15+
- checked if preload candidates are videos, since SoundJS mistakenly handles these when they are mp4.
16+
- added missing Methods and Types classes from recent PreloadJS changes
17+
- handled case where audio duration returned < 0, resulting in a DOM Error
18+
- fixed issue where new instances wouldn't get the global mute/volume (thanks @PythonFanboy)
1619

1720

1821
Version 0.6.2 [November 26, 2015]

docs/soundjs_docs-NEXT.zip

1.7 KB
Binary file not shown.

lib/cordovaaudioplugin-NEXT.combined.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ this.createjs = this.createjs || {};
4848
* @protected
4949
*/
5050
function Loader(loadItem) {
51-
this.AbstractLoader_constructor(loadItem, true, createjs.AbstractLoader.SOUND);
51+
this.AbstractLoader_constructor(loadItem, true, createjs.Types.SOUND);
5252

5353
/**
5454
* A Media object used to determine if src exists and to get duration
@@ -450,7 +450,7 @@ this.createjs = this.createjs || {};
450450
* of the available properties.
451451
* @property _capabilities
452452
* @type {Object}
453-
* @protected
453+
* @private
454454
* @static
455455
*/
456456
s._capabilities = null;
@@ -474,7 +474,7 @@ this.createjs = this.createjs || {};
474474
* method for an overview of plugin capabilities.
475475
* @method _generateCapabilities
476476
* @static
477-
* @protected
477+
* @private
478478
*/
479479
s._generateCapabilities = function () {
480480
if (s._capabilities != null || !(window.cordova || window.PhoneGap || window.phonegap) || !window.Media) {return;}
@@ -566,6 +566,6 @@ this.createjs = this.createjs || {};
566566
* @type String
567567
* @static
568568
**/
569-
s.buildDate = /*=date*/"Thu, 08 Jun 2017 21:05:43 GMT"; // injected by build process
569+
s.buildDate = /*=date*/"Wed, 21 Jun 2017 16:53:32 GMT"; // injected by build process
570570

571571
})();

lib/cordovaaudioplugin-NEXT.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/flashaudioplugin-NEXT.combined.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ this.createjs = this.createjs || {};
829829
* @protected
830830
*/
831831
function Loader(loadItem) {
832-
this.AbstractLoader_constructor(loadItem, false, createjs.AbstractLoader.SOUND);
832+
this.AbstractLoader_constructor(loadItem, false, createjs.Types.SOUND);
833833

834834

835835
// Public properties
@@ -850,15 +850,15 @@ this.createjs = this.createjs || {};
850850
* A reference to the Flash instance that gets created.
851851
* @property flash
852852
* @type {Object | Embed}
853-
* @protected
853+
* @private
854854
*/
855855
s._flash = null;
856856

857857
/**
858858
* A list of loader instances that tried to load before _flash was set
859859
* @property _preloadInstances
860860
* @type {Array}
861-
* @protected
861+
* @private
862862
*/
863863
s._preloadInstances = [];
864864

@@ -1286,7 +1286,7 @@ this.createjs = this.createjs || {};
12861286
* @type {String}
12871287
* @default registerflashid
12881288
* @static
1289-
* @protected
1289+
* @private
12901290
*/
12911291
s._REG_FLASHID = "registerflashid";
12921292

@@ -1296,7 +1296,7 @@ this.createjs = this.createjs || {};
12961296
* @type {String}
12971297
* @default unregisterflashid
12981298
* @static
1299-
* @protected
1299+
* @private
13001300
*/
13011301
s._UNREG_FLASHID = "unregisterflashid";
13021302

@@ -1306,7 +1306,7 @@ this.createjs = this.createjs || {};
13061306
* capabilities.
13071307
* @property _capabilities
13081308
* @type {Object}
1309-
* @protected
1309+
* @private
13101310
* @static
13111311
*/
13121312
s._capabilities = null;
@@ -1343,7 +1343,7 @@ this.createjs = this.createjs || {};
13431343
* method for an overview of plugin capabilities.
13441344
* @method _generateCapabilities
13451345
* @static
1346-
* @protected
1346+
* @private
13471347
*/
13481348
s._generateCapabilities = function () {
13491349
if (s._capabilities != null) {return;}
@@ -1587,6 +1587,6 @@ this.createjs = this.createjs || {};
15871587
* @type String
15881588
* @static
15891589
**/
1590-
s.buildDate = /*=date*/"Thu, 08 Jun 2017 21:05:43 GMT"; // injected by build process
1590+
s.buildDate = /*=date*/"Wed, 21 Jun 2017 16:53:32 GMT"; // injected by build process
15911591

15921592
})();

lib/flashaudioplugin-NEXT.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)