mirror of
https://github.com/Ryujinx/libsoundio.git
synced 2024-12-22 23:15:32 +00:00
Release 1.0.3
This commit is contained in:
parent
2f14aa569e
commit
581c5a487a
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,3 +1,14 @@
|
|||
### 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.
|
||||
|
|
|
@ -19,7 +19,7 @@ endif()
|
|||
|
||||
set(LIBSOUNDIO_VERSION_MAJOR 1)
|
||||
set(LIBSOUNDIO_VERSION_MINOR 0)
|
||||
set(LIBSOUNDIO_VERSION_PATCH 2)
|
||||
set(LIBSOUNDIO_VERSION_PATCH 3)
|
||||
set(LIBSOUNDIO_VERSION "${LIBSOUNDIO_VERSION_MAJOR}.${LIBSOUNDIO_VERSION_MINOR}.${LIBSOUNDIO_VERSION_PATCH}")
|
||||
message("Configuring libsoundio version ${LIBSOUNDIO_VERSION}")
|
||||
|
||||
|
|
Loading…
Reference in a new issue