mirror of
https://github.com/Ryujinx/libsoundio.git
synced 2025-01-03 15:25:42 +00:00
Release 1.0.2
This commit is contained in:
parent
be6e654098
commit
6a75dda407
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -1,3 +1,15 @@
|
||||||
|
### 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)
|
### Version 1.0.1 (2015-09-11)
|
||||||
|
|
||||||
* libsoundio no longer depends on or links against libm.
|
* libsoundio no longer depends on or links against libm.
|
||||||
|
|
|
@ -19,7 +19,7 @@ endif()
|
||||||
|
|
||||||
set(LIBSOUNDIO_VERSION_MAJOR 1)
|
set(LIBSOUNDIO_VERSION_MAJOR 1)
|
||||||
set(LIBSOUNDIO_VERSION_MINOR 0)
|
set(LIBSOUNDIO_VERSION_MINOR 0)
|
||||||
set(LIBSOUNDIO_VERSION_PATCH 1)
|
set(LIBSOUNDIO_VERSION_PATCH 2)
|
||||||
set(LIBSOUNDIO_VERSION "${LIBSOUNDIO_VERSION_MAJOR}.${LIBSOUNDIO_VERSION_MINOR}.${LIBSOUNDIO_VERSION_PATCH}")
|
set(LIBSOUNDIO_VERSION "${LIBSOUNDIO_VERSION_MAJOR}.${LIBSOUNDIO_VERSION_MINOR}.${LIBSOUNDIO_VERSION_PATCH}")
|
||||||
message("Configuring libsoundio version ${LIBSOUNDIO_VERSION}")
|
message("Configuring libsoundio version ${LIBSOUNDIO_VERSION}")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue