Various updates and fixes before 4.0.5 release (GS).
[rtaudio-cdist.git] / doc / release.txt
1 RtAudio - a set of C++ classes that provide a common API for realtime audio input/output across Linux (native ALSA, JACK, and OSS), Macintosh OS X (CoreAudio and JACK), and Windows (DirectSound and ASIO) operating systems.
2
3 By Gary P. Scavone, 2001-2009.
4
5 v4.0.5: (29 January 2009)
6 - added support in CoreAudio for arbitrary stream channel configurations
7 - added getStreamSampleRate() function because the actual sample rate can sometimes vary slightly from the specified one (thanks to Theo Veenker)
8 - added new StreamOptions flag "RTAUDIO_SCHEDULE_REALTIME" and attribute "priority" to StreamOptions (thanks to Theo Veenker)
9 - replaced usleep(50000) in callbackEvent() by a wait on condition variable which gets signaled in startStream() (thanks to Theo Veenker)
10 - fix for Jack API when user callback function signals stop or abort calls
11 - fix to way stream state is changed to avoid infinite loop problem
12 - fix to int<->float conversion in convertBuffer() (thanks to Theo Veenker)
13 - bug fix in byteSwapBuffer() (thanks to Stefan Muller Arisona and Theo Veenker)
14 - fixed a few gcc 4.4 errors in OS-X
15 - fixed bug in rtaudio-config script
16 - revised configure script and Makefile structures
17 - 64-bit fixes in ALSA API (thanks to Stefan Muller Arisona)
18 - fixed ASIO sample rate selection bug (thanks to Sasha Zheligovsky)
19
20 v4.0.4: (24 January 2008)
21 - added functionality to allow getDeviceInfo() to work in ALSA for an open device (like ASIO)
22 - fixes in configure script
23 - fixed clearing of error message stream in error()
24 - fixed RtAudio::DeviceInfo description in "probing" documentation
25 - memory leak fixes in ALSA and OSS
26 - Jack in/out port flag fix
27 - Windows changes for thread priority and GLOBALFOCUS
28
29 v4.0.3: (7 December 2007)
30 - added support for MinGW compiler to configure script
31 - a few MinGW-related changes to RtAudio.cpp
32 - renamed test program probe.cpp to audioprobe.cpp
33 - moved various header files into single "include" directory and updated VC++ project files
34
35 v4.0.2: (21 August 2007)
36 - fix to RtError::WARNING typo in RtAudio.h (RtApiDummy)
37 - removed "+1"s in RtApiCore c++ append when getting device name
38
39 v4.0.1: (13 August 2007)
40 - fix to RtError::WARNING typo in RtAudio.cpp
41
42 v4.0.0: (7 August 2007)
43 - new support for non-interleaved user data
44 - additional input/output parameter specifications, including channel offset
45 - new support for dynamic connection of devices
46 - new support for stream time
47 - revised callback arguments, including separate input and output buffer arguments
48 - revised C++ exception handling
49 - revised OSS support for version 4.0
50 - discontinued support of blocking functionality
51 - discontinued support of SGI
52 - Windows DirectSound API bug fix
53 - NetBSD support (using OSS API) by Emmanuel Dreyfus
54 - changed default pthread scheduling priority to SCHED_RR when defined in the system
55 - new getCompiledApi() static function
56 - new getCurrentApi(), getStreamTime(), getStreamLatency(), and isStreamRunning() functions
57 - modified RtAudioDeviceInfo structure to distinguish default input and output devices
58
59 v3.0.3: (18 November 2005)
60 - UNICODE fix for Windows DirectSound API
61 - MinGW compiler fix for ASIO API
62
63 v3.0.2: (14 October 2005)
64 - modification of ALSA read/write order to fix duplex under/overruns
65 - added synchronization of input/output devices for ALSA duplex operation
66 - cleaned up and improved error reporting throughout
67 - bug fix in Windows DirectSound support for 8-bit audio
68 - bug fix in Windows DirectSound support during device capture query
69 - added ASIOOutputReady() call near end of callbackEvent to fix some driver behavior
70 - added #include <stdio.h> to RtAudio.cpp
71 - fixed bug in RtApiCore for duplex operation with different I/O devices
72 - improvements to DirectX pointer chasing (by Robin Davies)
73 - backdoor RtDsStatistics hook provides DirectX performance information (by Robin Davies)
74 - bug fix for non-power-of-two Asio granularity used by Edirol PCR-A30 (by Robin Davies)
75 - auto-call CoInitialize for DSOUND and ASIO platforms (by Robin Davies)
76
77 v3.0.1: (22 March 2004)
78 - bug fix in Windows DirectSound support for cards with output only
79
80 v3.0: (11 March 2004)
81 - added Linux Jack audio server support
82 - new multi-api support by subclassing all apis and making rtaudio a controller class
83 - added over/underload check to Mac OS X support
84 - new scheme for blocking functionality in callback-based apis (CoreAudio, ASIO, and JACK)
85 - removed multiple stream support (all stream indentifier arguments removed)
86 - various style and name changes to conform with standard C++ practice
87
88 v2.1.1: (24 October 2002)
89 - bug fix in duplex for Mac OS X and Windows ASIO code
90 - duplex example change in tutorial 
91
92 v2.1: (7 October 2002)
93 - added Mac OS X CoreAudio support
94 - added Windows ASIO support
95 - API change to getDeviceInfo(): device argument must be an integer between 1 - getDeviceCount().
96 - "configure" support added for unix systems
97 - adopted MIT-like license
98 - various internal structural changes and bug fixes
99
100 v2.01: (27 April 2002)
101 - Windows destructor bug fix when no devices available
102 - RtAudioError class renamed to RtError
103 - Preprocessor definitions changed slightly (i.e. __LINUX_OSS_ to __LINUX_OSS__) to conform with new Synthesis ToolKit distribution
104
105 v2.0: (22 January 2002)
106 - first release of new independent class
107