0.2.0 Alpha (1/6/07) Added a new package: net.jinx.audio.synth is useable for real-time audio synthesis Added a new package: net.jinx.audio.synth.source holds classes that function as sources of sound Fixed a Javadoc typo in Buffer :-) Clarified a statement and fixed some grammar in the lead comment for Source This library has been tested and now functions (wheee!!!); had to fix some bugs and update to a new version (1.1b01) of JOAL (forcing me to fix 17 compile errors due to JOAL having been refactored: WTF? it doesn't even match the OpenAL spec anymore; Sun does really weird stuff) The audio synthesis package can output white noise quite nicely; after a bit of testing, it functions flawlessly; I suggest larger buffer sizes if you're working in real-time, as this prevents buffer underflow StreamSource is functional now; I had to add a first run flag to make sure the source starts out paused; this is the only way I could make it function properly; I may refine the algorithm in the future, because it's really ugly Fixed Buffer so it throws an exception when you give it an empty ByteBuffer; JOAL gives a native crash when you try to do this; it's better to catch it in Java; native crashes are a pain to debug and I seem to keep doing this over and over (forgetting to reposition the buffer to it's start) 0.1.0 Alpha (10/17/05) Initial release; this is currently an untested library