Skip to content

Commit de2f1d0

Browse files
author
Bastian Bechtold
committed
increments version number
and updates changelog
1 parent 035a921 commit de2f1d0

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

README.rst

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,12 +152,12 @@ as silence for both playback and recording.
152152

153153
FAQ
154154
---
155-
Q: How to make it work on a headless Raspberry Pi?
155+
Q: How to make it work on a headless Raspberry Pi?
156156

157-
A: PulseAudio is not installed by default on the Raspberry Pi OS Lite distribution (https://www.raspberrypi.org/software/operating-systems/). In order to use ``soundcard``, you have to install PulseAudio first, and edit the configuration (with a fix to avoid the main output to be in mono-only). ::
157+
A: PulseAudio is not installed by default on the Raspberry Pi OS Lite distribution (https://www.raspberrypi.org/software/operating-systems/). In order to use ``soundcard``, you have to install PulseAudio first, and edit the configuration (with a fix to avoid the main output to be in mono-only). ::
158158

159-
sudo apt install -y python3-pip python3-numpy pulseaudio
160-
sudo nano /usr/share/pulseaudio/alsa-mixer/profile-sets/default.conf
159+
sudo apt install -y python3-pip python3-numpy pulseaudio
160+
sudo nano /usr/share/pulseaudio/alsa-mixer/profile-sets/default.conf
161161
# comment the block [Mapping analog-mono] with ';'
162162
pulseaudio -D
163163
python3 -m pip install soundcard
@@ -208,3 +208,16 @@ Changelog
208208
(Thank you, Bob Thomas!)
209209
- 2020-05-19 adds compatibility with Windows 7
210210
(Thank you, demberto!)
211+
- 2020-07-22 fixes freezing bug on Linux during startup
212+
(Thank you, zhujisheng!)
213+
- 2020-08-01 improves error reporting on Linux
214+
(Thank you, Rik van Riel!)
215+
- 2020-08-13 fixes crash due to use-after-free on Linux
216+
(Thank you, Rik van Riel!)
217+
- 2021-01-13 fixes unicode error on Windows
218+
(Thank you, paulzzh!)
219+
- 2021-11-24 adds compatibility with NixOS library naming
220+
(Thank you, shithead!)
221+
- 2021-12-23 fixes deprecation for Python 3.10
222+
(Thank you, Nekyo!)
223+
- 2022-04-29 fixes deprecation in recent Numpy

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='SoundCard',
5-
version='0.4.0',
5+
version='0.4.2',
66
description='Play and record audio without resorting to CPython extensions',
77
author='Bastian Bechtold',
88
url='https://github.com/bastibe/SoundCard',

0 commit comments

Comments
 (0)