All classes embedded in the "stk" namespace (except RtAudio, RtMidi, and RtError).
Class WaveLoop renamed FileLoop.
Significant efficiency improvements via code restructuring and inlining.
Some class source (.cpp) files deleted as part of inlining (Generator, Filter, Function, WvIn, WvOut, Effect, Instrmnt, BowTable, ReedTable, JetTable, Vector3D).
Probably a bunch more fixes that I've long since forgotten about.
Version 3.1
New RagaMatic project ... very cool!!!
Less clipping in the Shakers class.
Added "microphone position" to Mandolin in STKdemo.
Fixed MIDI system message exclusion under Irix.
Added a few bitmaps for the Shaker instruments.
Made destructors virtual for Reverb.h, WvIn.h and Simple.h.
Fixed bug setting delay length in DLineA when value too big.
Fixed bug in WinMM realtime code (RTSoundIO).
Added tick() method to BowTabl, JetTabl, and ReedTabl (same as lookup).
Switched to pthread API on SGI platforms.
Added some defines to Object.h for random number generation, FPU overflow checking, etc....
A few minor changes, some bug fixes ... can't remember all of them.
Version 3.0
New #define flags for OS and realtime dependencies (this will probably cause problems for old personal STK code, but it was necessary to make future ports easier).
Expanded and cleaned the Shakers class.
New BowedBar algorithm/class.
Fixed Linux MIDI input bug.
Fixed MIDI status masking problem in Windows.
OS type defines now in Makefile.
New RAWWAVE_PATH define in Object.h.
Syntmono project pulled out to separate directory and cleaned up.
Socketing capabilities under Unix, as well as Windoze.
Multiple simultaneous socket client connections to STK servers now possible.
MD2SKINI now can merge MIDI and piped messages under Irix and Linux (for TCL->MD2SKINI->syntmono control).
Defined INT16 and INT32 types and fixed various WvIn and WvOut classes.
Updated MatWvIn and MatWvOut for new MAT-file documentation from Matlab.
New demo Tcl/Tk GUI (TclDemo.tcl).
Minor fixes to FM behavior.
Added record/duplex capabilities to RTSoundIO (Linux, SGI, and Windoze).
Fixed bugs in WavWvOut and MatWvOut header specifications.
Added RawWvOut class.
New WvIn class with RawWvIn, SndWvIn, WavWvIn, MatWvIn, and RTWvIn subclasses.
Removed RawWave, RawShot, RawInterp, and RawLoop classes (supplanted by RawWvIn).
Multi-channel data support in WvIn and WvOut classes using MY_MULTI data type (pointer to StkFloat) and the methods mtick() and mlastOutput().
Now writing to primary buffer under Windoze when allowed by hardware.
Cleaned up Object.h a bit.
Pulled various utility and thread functions out of syntmono.cpp (to aid readability of the code).
Version 2.02
Created RawWave abstract class, with subclasses of RawLoop (looping rawwave oscillator), RawShot (non-looping, non-interpolating rawwave player ... used to be RawWvIn), and RawInterp (looping or non-looping, interpolating rawwave player ... used to be RawWave).
Modified DrumSynt to correctly handle sample rates different than 22050 Hz.
Modified syntmono parsing vs. tick routine so that some ticking occurs between each message. When multiple messages are waiting to be processed, the time between message updates is inversely proportional to the number of messages in the buffer.
Fixed DirectSound playback bug in WinXX distribution. Sound was being played at 8-bit, 22 kHz in all cases. Playback is now 16-bit and dependent on SRATE.
Fixed bug in MD2SKINI which prevented some NoteOff statements from being output.
This distribution includes an example STK project, mus151, which demonstrates a means for keeping a user's personal projects separate from the main distribution. This is highly recommended, in order to simplify upgrades to future STK releases.
Version 2
Unification of the capabilities of STK across the various platforms. All of the previous SGI functionality has been ported to Linux and Windows, including realtime sound output and MIDI input.
MIDI input (with optional time-stamping) supported on SGI, Linux (OSS device drivers only), and Windows operating systems. Time stamping under IRIX and Windows is quantized to milliseconds and under Linux to hundredths of a second.
Various Sound Output Options - .wav, .snd, and .mat (Matlab MAT-file) soundfile outputs are supported on all operating systems. I hacked out the MAT-file structure, so you don't have to include any platform-specific libraries. Realtime sound output is provided as well, except under NeXTStep.
Multiple Reverberator Implementations - Reverb subclasses of JCRev and NRev (popular reverberator implementations from CCRMA) have been written. Perry's original reverb implementation still exists as PRCRev. All reverberators now take a T60 initializer argument.
MD2SKINI - A program which parses a MIDI input stream and spits out SKINI code. The output of MD2SKINI is typically piped into an STK instrument executable (e.g. MD2SKINI | syntmono Clarinet -r -i). In addition, you can supply a filename argument to MD2SKINI and have it simultaneously record a SKINI score file for future reuse.
Modifications to Object.h for OS_TYPE compilation dependencies. Makefile automatically determines OS_TYPE when invoked (if you have the GNU makefile utilities installed on your system).
A single distribution for all platforms. The Unix and Windows versions have been merged into a single set of classes. Makefiles and Visual C++ workspace/project files are provided for compiling.