Documentation updates for release 4.0.10 (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-2011.
4
5 v4.0.10: (30 August 2011)
6 - fix for compile bug in Windows DS (counting devices)
7 - update to configure and library Makefile
8
9 v4.0.9: (14 August 2011)
10 - fix for ASIO problem enumerating devices after opening duplex stream (Oliver Larkin)
11 - fix for OS-X problems setting sample rate and bits-per-sample
12 - updates for OS-X "Lion"
13 - updates for wide character support in Windows DS (UNICODE)
14 - fix for possible ALSA callback thread hang (thanks to Tristan Matthews)
15 - fix for DS getDeviceCount bug (vector erase problem)
16
17 v4.0.8: (12 April 2011)
18 - fix for MinGW4 problem enumerating and setting sample rates (iasiothiscallresolver, Dmitry Kostjuchenko)
19 - fix for OS-X problem handling device names in some languages (CFString conversion, Vincent BĂ©nony)
20 - small change to OS-X mutex lock location to avoid lockups
21 - correction to documentation regarding 24-bit data (should be lower 3 bytes, not upper 3 bytes)
22 - bug fix for error handling of warnings (Antoine Lefebvre)
23 - added option to use the ALSA "default" device (Tristan Matthews)
24 - removed use of mutexes in Windows
25 - fix for ASIO4ALL behavior when stopping/closing streams (Antoine Lefebvre)
26 - included python binding in "contrib" directory (beta, Antoine Lefebvre)
27
28 v4.0.7: (4 February 2010)
29 - revised Windows DS code and device enumeration to speed up device queries
30 - OS-X 10.6 updates for deprecated functions
31 - updates to Jack shutdown code to avoid lockup
32
33 v4.0.6: (3 June 2009)
34 - bug fix in ALSA code to set period size to power of two (thanks to Joakim Karrstrom)
35 - bug fix in OS-X for OS < 10.5 ... need preprocessor definition around new variable type (thanks to Tristan Matthews)
36
37 v4.0.5: (2 February 2009)
38 - added support in CoreAudio for arbitrary stream channel configurations
39 - added getStreamSampleRate() function because the actual sample rate can sometimes vary slightly from the specified one (thanks to Theo Veenker)
40 - added new StreamOptions flag "RTAUDIO_SCHEDULE_REALTIME" and attribute "priority" to StreamOptions (thanks to Theo Veenker)
41 - replaced usleep(50000) in callbackEvent() by a wait on condition variable which gets signaled in startStream() (thanks to Theo Veenker)
42 - fix for Jack API when user callback function signals stop or abort calls
43 - fix to way stream state is changed to avoid infinite loop problem
44 - fix to int<->float conversion in convertBuffer() (thanks to Theo Veenker)
45 - bug fix in byteSwapBuffer() (thanks to Stefan Muller Arisona and Theo Veenker)
46 - fixed a few gcc 4.4 errors in OS-X
47 - fixed bug in rtaudio-config script
48 - revised configure script and Makefile structures
49 - 64-bit fixes in ALSA API (thanks to Stefan Muller Arisona)
50 - fixed ASIO sample rate selection bug (thanks to Sasha Zheligovsky)
51
52 v4.0.4: (24 January 2008)
53 - added functionality to allow getDeviceInfo() to work in ALSA for an open device (like ASIO)
54 - fixes in configure script
55 - fixed clearing of error message stream in error()
56 - fixed RtAudio::DeviceInfo description in "probing" documentation
57 - memory leak fixes in ALSA and OSS
58 - Jack in/out port flag fix
59 - Windows changes for thread priority and GLOBALFOCUS
60
61 v4.0.3: (7 December 2007)
62 - added support for MinGW compiler to configure script
63 - a few MinGW-related changes to RtAudio.cpp
64 - renamed test program probe.cpp to audioprobe.cpp
65 - moved various header files into single "include" directory and updated VC++ project files
66
67 v4.0.2: (21 August 2007)
68 - fix to RtError::WARNING typo in RtAudio.h (RtApiDummy)
69 - removed "+1"s in RtApiCore c++ append when getting device name
70
71 v4.0.1: (13 August 2007)
72 - fix to RtError::WARNING typo in RtAudio.cpp
73
74 v4.0.0: (7 August 2007)
75 - new support for non-interleaved user data
76 - additional input/output parameter specifications, including channel offset
77 - new support for dynamic connection of devices
78 - new support for stream time
79 - revised callback arguments, including separate input and output buffer arguments
80 - revised C++ exception handling
81 - revised OSS support for version 4.0
82 - discontinued support of blocking functionality
83 - discontinued support of SGI
84 - Windows DirectSound API bug fix
85 - NetBSD support (using OSS API) by Emmanuel Dreyfus
86 - changed default pthread scheduling priority to SCHED_RR when defined in the system
87 - new getCompiledApi() static function
88 - new getCurrentApi(), getStreamTime(), getStreamLatency(), and isStreamRunning() functions
89 - modified RtAudioDeviceInfo structure to distinguish default input and output devices
90
91 v3.0.3: (18 November 2005)
92 - UNICODE fix for Windows DirectSound API
93 - MinGW compiler fix for ASIO API
94
95 v3.0.2: (14 October 2005)
96 - modification of ALSA read/write order to fix duplex under/overruns
97 - added synchronization of input/output devices for ALSA duplex operation
98 - cleaned up and improved error reporting throughout
99 - bug fix in Windows DirectSound support for 8-bit audio
100 - bug fix in Windows DirectSound support during device capture query
101 - added ASIOOutputReady() call near end of callbackEvent to fix some driver behavior
102 - added #include <stdio.h> to RtAudio.cpp
103 - fixed bug in RtApiCore for duplex operation with different I/O devices
104 - improvements to DirectX pointer chasing (by Robin Davies)
105 - backdoor RtDsStatistics hook provides DirectX performance information (by Robin Davies)
106 - bug fix for non-power-of-two Asio granularity used by Edirol PCR-A30 (by Robin Davies)
107 - auto-call CoInitialize for DSOUND and ASIO platforms (by Robin Davies)
108
109 v3.0.1: (22 March 2004)
110 - bug fix in Windows DirectSound support for cards with output only
111
112 v3.0: (11 March 2004)
113 - added Linux Jack audio server support
114 - new multi-api support by subclassing all apis and making rtaudio a controller class
115 - added over/underload check to Mac OS X support
116 - new scheme for blocking functionality in callback-based apis (CoreAudio, ASIO, and JACK)
117 - removed multiple stream support (all stream indentifier arguments removed)
118 - various style and name changes to conform with standard C++ practice
119
120 v2.1.1: (24 October 2002)
121 - bug fix in duplex for Mac OS X and Windows ASIO code
122 - duplex example change in tutorial 
123
124 v2.1: (7 October 2002)
125 - added Mac OS X CoreAudio support
126 - added Windows ASIO support
127 - API change to getDeviceInfo(): device argument must be an integer between 1 - getDeviceCount().
128 - "configure" support added for unix systems
129 - adopted MIT-like license
130 - various internal structural changes and bug fixes
131
132 v2.01: (27 April 2002)
133 - Windows destructor bug fix when no devices available
134 - RtAudioError class renamed to RtError
135 - Preprocessor definitions changed slightly (i.e. __LINUX_OSS_ to __LINUX_OSS__) to conform with new Synthesis ToolKit distribution
136
137 v2.0: (22 January 2002)
138 - first release of new independent class
139