Skip to content

Commit fe0ba5d

Browse files
committed
cleanup notes
1 parent 455893d commit fe0ba5d

File tree

5 files changed

+36
-27
lines changed

5 files changed

+36
-27
lines changed

Gruntfile.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
/*
2+
----------------------------------------------------------
23
Build environment
3-
----------------------------------------
4+
----------------------------------------------------------
45
1) Install NodeJS:
56
http://nodejs.org/
67
2) Install dev dependencies
78
npm install
89
3) Install Grunt CLI globally
910
npm install grunt-cli -g
11+
----------------------------------------------------------
1012
*/
1113

1214
module.exports = function (grunt) {

TODO

+20-14
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
1+
----------------------------------------------------------
12
TODO
2-
* Sound on Android/iOS working? Check various devices
3-
* Add browser supports to the project.
4-
* Loading progress feedback example.
5-
* Document how to support from file://
6-
<script src="./soundfont/acoustic_grand_piano-ogg.js"></script>
7-
8-
* better on event listeners for MIDIPlayer, get inspiration from these?
9-
https://github.com/hhromic/midi-utils-js
10-
https://github.com/justinlatimer/node-midi
11-
12-
* add some docs on color music history: http://www.musanim.com/
13-
14-
* List of Developers who work w/ MIDI.js
15-
???
3+
----------------------------------------------------------
4+
* Sound on Android/iOS working? Check various devices
5+
------------------------------------------------------
6+
* Add browser supports to the project
7+
------------------------------------------------------
8+
* Loading progress feedback example
9+
------------------------------------------------------
10+
* Document how to support from file://
11+
<script src="./soundfont/acoustic_grand_piano-ogg.js"></script>
12+
------------------------------------------------------
13+
* better on event listeners for MIDIPlayer, get inspiration from these?
14+
https://github.com/hhromic/midi-utils-js
15+
https://github.com/justinlatimer/node-midi
16+
------------------------------------------------------
17+
* add some docs on color music history: http://www.musanim.com/
18+
------------------------------------------------------
19+
* List of Developers who work w/ MIDI.js
20+
???
21+
------------------------------------------------------

js/color/spaceW3.js

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,31 @@
11
/*
2-
----------------------------------------------------
2+
----------------------------------------------------------
33
Color Space : 1.2 : 2012.11.06
4-
----------------------------------------------------
4+
----------------------------------------------------------
55
https://github.com/mudcube/Color.Space.js
6-
----------------------------------------------------
6+
----------------------------------------------------------
77
RGBA <-> HSLA <-> W3
88
RGBA <-> HSVA
99
RGBA <-> CMY <-> CMYK
1010
RGBA <-> HEX24 <-> W3
1111
RGBA <-> HEX32
1212
RGBA <-> W3
13-
----------------------------------------------------
13+
----------------------------------------------------------
1414
Examples
15-
----------------------------------------------------
15+
----------------------------------------------------------
1616
Color.Space(0x99ff0000, "HEX32>RGBA>HSLA>W3"); // outputs "hsla(60,100%,17%,0.6)"
1717
Color.Space(0xFF0000, "HEX24>RGB>HSL"); // convert hex24 to HSL object.
18-
----------------------------------------------------
18+
----------------------------------------------------------
1919
W3 values
20-
----------------------------------------------------
20+
----------------------------------------------------------
2121
rgb(255,0,0)
2222
rgba(255,0,0,1)
2323
rgb(100%,0%,0%)
2424
rgba(100%,0%,0%,1)
2525
hsl(120, 100%, 50%)
2626
hsla(120, 100%, 50%, 1)
2727
#000000
28+
----------------------------------------------------------
2829
*/
2930

3031
if (typeof(Color) === "undefined") var Color = {};

js/midi/gm.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
---------------------------------------------------
2+
----------------------------------------------------------
33
GeneralMIDI
4-
---------------------------------------------------
4+
----------------------------------------------------------
55
*/
66

77
(function(root) { 'use strict';

js/midi/plugin.webaudio.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
----------------------------------------------------------------------
2+
----------------------------------------------------------
33
Web Audio API - OGG or MPEG Soundbank
4-
----------------------------------------------------------------------
4+
----------------------------------------------------------
55
http://webaudio.github.io/web-audio-api/
6-
----------------------------------------------------------------------
6+
----------------------------------------------------------
77
*/
88

99
(function(root) { 'use strict';

0 commit comments

Comments
 (0)