Comparing version 0.0.9 to 0.0.10
@@ -0,1 +1,8 @@ | ||
0.0.10 / 2013-05-08 | ||
=================== | ||
- pass the "open" error the the Speaker instance. Closes #11. | ||
- package: add "sound" as a keyword | ||
- travis: test node v0.10 | ||
0.0.9 / 2013-03-06 | ||
@@ -2,0 +9,0 @@ ================== |
@@ -181,3 +181,7 @@ | ||
// this is the first time write() is being called; need to _open() | ||
handle = this._open(); | ||
try { | ||
handle = this._open(); | ||
} catch (e) { | ||
return done(e); | ||
} | ||
} | ||
@@ -184,0 +188,0 @@ var chunkSize = this.blockAlign * this.samplesPerFrame; |
@@ -7,2 +7,3 @@ { | ||
"audio", | ||
"sound", | ||
"music", | ||
@@ -22,3 +23,3 @@ "output", | ||
], | ||
"version": "0.0.9", | ||
"version": "0.0.10", | ||
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)", | ||
@@ -25,0 +26,0 @@ "repository": { |
Sorry, the diff of this file is not supported yet
3405643
437