forked from auracaster/pyalsaaudio
Compare commits
1 Commits
larsimmisc
...
0.11.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0b3f1f41c7 |
18
CHANGES.md
18
CHANGES.md
@@ -1,7 +1,17 @@
|
|||||||
# Version 0.10.1
|
# Version 0.11.0
|
||||||
- revert to not throwing an exception on playback buffer underrun;
|
- Fixed `Mixer.getvolume()` returning outdated value (#126)
|
||||||
instead, return -EPIPE like `PCM.read()` does on overrun; #131
|
- Fixed PCM crashing with some sample formats due to buffer size
|
||||||
- type hints
|
miscalculation
|
||||||
|
- Fixed `PCM.read()` ignoring overruns (regression in 0.10.0)
|
||||||
|
- Reverted to `PCM.write()` not throwing an exception on playback buffer
|
||||||
|
underrun; instead, return -EPIPE like `PCM.read()` does on overrun (#130)
|
||||||
|
- Added `PCM.avail()` and `PCM.polldescriptors_revents()` functions
|
||||||
|
- Added `nominal_bits` and `physical_bits` entries to `PCM.info()`'s
|
||||||
|
return value
|
||||||
|
- Added Python type hint file, and adjusted documentation accordingly (#58)
|
||||||
|
- Improvements to the examples, in particular isine.py (#42)
|
||||||
|
|
||||||
|
Contributions by @ossilator and @viinikv.
|
||||||
|
|
||||||
# Version 0.10.0
|
# Version 0.10.0
|
||||||
- assorted improvements (#123 from @ossilator)
|
- assorted improvements (#123 from @ossilator)
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -8,7 +8,7 @@ from setuptools import setup
|
|||||||
from setuptools.extension import Extension
|
from setuptools.extension import Extension
|
||||||
from sys import version
|
from sys import version
|
||||||
|
|
||||||
pyalsa_version = '0.10.1'
|
pyalsa_version = '0.11.0'
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
setup(
|
setup(
|
||||||
|
|||||||
Reference in New Issue
Block a user