Skip to content

Commit

Permalink
Updates to SoundJS pre-tagging 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Lanny McNie committed Aug 24, 2012
1 parent dd78e38 commit 84ceac3
Show file tree
Hide file tree
Showing 27 changed files with 380 additions and 338 deletions.
8 changes: 4 additions & 4 deletions CREATEJS_NAMESPACE.txt → README_CREATEJS_NAMESPACE.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
In the NEXT version of CreateJS class definitions reside in a "createjs" namespace by default.
In this version of SoundJS, class definitions reside in a "createjs" namespace by default.

For example, instead of instantiating a Shape like this:
var foo = new Shape();
For example, instead of playing a sound like this:
var foo = SoundJS.play(id);

You will need to reach into the createjs namespace:
var bar = new createjs.Shape();
var bar = createjs.SounJS.play(id);

This functionality is configurable though. You can easily shortcut the namespace or get rid of it completely.

Expand Down
Binary file modified dev/FlashAudioPluginShim.fla
Binary file not shown.
2 changes: 1 addition & 1 deletion dev/com/gskinner/soundjs/FlashAudioPlugin.as

Large diffs are not rendered by default.

Binary file removed docs/SoundJS_docs-0.2.0.zip
Binary file not shown.
Binary file added docs/SoundJS_docs-0.3.0.zip
Binary file not shown.
Binary file removed docs/SoundJS_docs-NEXT.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion examples/Convolution.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=9" /> <!-- req for IE 9 else audio tag won't work -->
<title>SoundJS: Convolution Example</title>

<script type="text/javascript" src="./assets/preloadjs-NEXT.min.js"></script>
<script type="text/javascript" src="./assets/preloadjs-0.2.0.min.js"></script>

<script type="text/javascript" src="../src/soundjs/SoundJS.js"></script>
<script type="text/javascript" src="../src/soundjs/HTMLAudioPlugin.js"></script>
Expand Down
4 changes: 2 additions & 2 deletions examples/Game.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>CreateJS Example: Space Rocks Game</title>

<script type="text/javascript" src="./assets/preloadjs-NEXT.min.js"></script>
<script type="text/javascript" src="./assets/easeljs-NEXT.min.js"></script>
<script type="text/javascript" src="./assets/preloadjs-0.2.0.min.js"></script>
<script type="text/javascript" src="./assets/easeljs-0.5.0.min.js"></script>

<script type="text/javascript" src="../src/soundjs/SoundJS.js"></script>
<script type="text/javascript" src="../src/soundjs/HTMLAudioPlugin.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion examples/MediaPlayer.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>SoundJS: Media Player Example</title>

<script type="text/javascript" src="./assets/preloadjs-NEXT.min.js"></script>
<script type="text/javascript" src="./assets/preloadjs-0.2.0.min.js"></script>

<script type="text/javascript" src="../src/soundjs/SoundJS.js"></script>
<script type="text/javascript" src="../src/soundjs/HTMLAudioPlugin.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion examples/PreloadAndPlay.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>SoundJS: Preload & Sound APIs</title>

<script type="text/javascript" src="./assets/preloadjs-NEXT.min.js"></script>
<script type="text/javascript" src="./assets/preloadjs-0.2.0.min.js"></script>

<script type="text/javascript" src="../src/soundjs/SoundJS.js"></script>
<script type="text/javascript" src="../src/soundjs/HTMLAudioPlugin.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion examples/SoundGrid.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>SoundJS: Sound Grid</title>

<script src="./assets/preloadjs-NEXT.min.js"></script>
<script type="text/javascript" src="./assets/preloadjs-0.2.0.min.js"></script>

<script type="text/javascript" src="../src/soundjs/SoundJS.js"></script>
<script type="text/javascript" src="../src/soundjs/HTMLAudioPlugin.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion examples/TestSuite.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>SoundJS: Test Suite</title>

<script src="./assets/preloadjs-NEXT.min.js"></script>
<script type="text/javascript" src="./assets/preloadjs-0.2.0.min.js"></script>

<script type="text/javascript" src="../src/soundjs/SoundJS.js"></script>
<script type="text/javascript" src="../src/soundjs/HTMLAudioPlugin.js"></script>
Expand Down
122 changes: 122 additions & 0 deletions examples/assets/easeljs-0.5.0.min.js

Large diffs are not rendered by default.

103 changes: 0 additions & 103 deletions examples/assets/easeljs-NEXT.min.js

This file was deleted.

45 changes: 45 additions & 0 deletions examples/assets/preloadjs-0.2.0.min.js

Large diffs are not rendered by default.

39 changes: 0 additions & 39 deletions examples/assets/preloadjs-NEXT.min.js

This file was deleted.

32 changes: 32 additions & 0 deletions examples/assets/tweenjs-0.3.0.min.js

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

Loading

0 comments on commit 84ceac3

Please sign in to comment.