1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
### Version 1.1.0 (2016-01-31)
* JACK: delete broken pause implementation. Previously, calling
`soundio_outstream_pause` or `soundio_instream_pause` during the
`write_callback` or `read_callback` would cause a deadlock. Now, attempting
to pause always results in `SoundIoErrorBackendIncompatible`.
* PulseAudio: improve latency handling code. It now passes the latency test
along with all the other backends.
* PulseAudio: fix incorrect outstream `software_latency`.
* libsoundio source code is now pure C, no C++ mixed in.
* ALSA: better device detection.
- No longer suppress sysdefault.
- If default and sysdefault are missing, use the first device as the default
device.
* Workaround for Raspberry Pi driver that incorrectly reports itself as Output
when it is actually Input.
* ALSA: let alsa lib choose period settings. Fixes behavior with many ALSA
devices.
* ALSA: fix potential cleanup deadlock.
* ALSA: fix crash for devices with null description, thanks to Charles Lehner.
* CoreAudio: drop support for MacOS 10.9. There was a bug for this system that
was never resolved, so it didn't work in the first place.
* Record example handles device not found and probe errors gracefully.
* Fix typo in microphone example, thanks to James Dyson.
* Improve documentation.
* New functions available: `soundio_version_string`, `soundio_version_major`,
`soundio_version_minor`, `soundio_version_patch`.
* libsoundio source code now builds with MSVC, thanks to Raphaƫl Londeix.
### Version 1.0.3 (2015-10-20)
* Architecture independent header files.
* Add --latency and --sample-rate to sine example.
* ALSA: fix deadlock under some circumstances.
* dummy: fix deadlock when pause called from `write_callback`.
* Fix double clean-up corruption when opening stream fails.
* Add --device and --raw to underflow test.
* ALSA: use period size to calculate buffer size, fixes opening output stream
sometimes resulting in an error.
### Version 1.0.2 (2015-09-24)
* build: fix GNUInstallDirs not working.
* docs: fix incorrect docs for `soundio_instream_pause`.
* PulseAudio: fix `soundio_outstream_pause` triggering assertion when called
from within `write_callback`.
* fix mirrored memory not working on Linux (fixes corrupted data in ring
buffer).
* os: fix crash when creating non high priority thread fails.
* docs: fix typos and cleanup.
* fix and add test for `soundio_device_nearest_sample_rate`.
### Version 1.0.1 (2015-09-11)
* libsoundio no longer depends on or links against libm.
* ALSA: treat ALSA as unavailable when /dev/snd does not exist.
* ALSA: remove duplicate assert.
* ALSA: remove stray print statement.
* ALSA: pausing returns error code when state is invalid instead of reaching
assertion failure in pcm.c.
* JACK: fix infinite loop when refreshing devices.
* PulseAudio: better clear buffer implementation.
* dummy backend: fix sometimes calling `write_callback` with
`frame_count_max` equal to 0.
* os: fix some variables accidentally not declared static.
* macos: fix not cleaning up condition variables.
* macos: avoid allocation when getting time.
* docs: note that `read_callback` and `write_callback` must be real time safe.
* docs: record example demonstrates proper real time safety by not calling
fwrite in `read_callback`.
* docs: add note to record example about shutting down.
* docs: make microphone example latency a command line argument.
* build: fix build on linux with clang.
* build: static libs, examples, and tests are optional.
### Version 1.0.0 (2015-09-03)
* Initial public release.
|