Skip to content

Commit cc92375

Browse files
committed
increments version number
1 parent e41dda4 commit cc92375

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

README.rst

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,11 @@ significantly higher.
125125

126126
Additionally, it might help to experiment with advice from here: https://askubuntu.com/questions/707171/how-can-i-fix-choppy-audio and edit your /etc/pulse/default.pa file to replace the line saying ::
127127

128-
load-module module-udev-detect
128+
load-module module-udev-detect
129129

130130
with ::
131131

132-
load-module module-udev-detect tsched=0
132+
load-module module-udev-detect tsched=0
133133

134134
and then do not forget to restart pulseaudio with ::
135135

@@ -184,5 +184,14 @@ Changelog
184184
(Thank you, Inti Pelupessy!)
185185
- 2019-06-18 fixes crash when opening many streams on Linux
186186
- 2019-08-23 fixes attribute error when accessing stream state on Linux
187-
(Thank you, Davíð Sindri Pétursson)
187+
(Thank you, Davíð Sindri Pétursson!)
188188
- 2019-10-08 fixes inconsistent dtypes when recording on Linux
189+
- 2020-01-06 fixes silent recordings on Windows
190+
- 2020-04-28 get and set the pulseaudio program name on Linux
191+
(Thank you, Philipp A.!)
192+
- 2020-05-14 fixes error with unicode soundcard names on Windows
193+
(Thank you, BAKEZQ!)
194+
- 2020-05-18 adds support for pyinstaller (v4)
195+
(Thank you, Bob Thomas!)
196+
- 2020-05-19 adds compatibility with Windows 7
197+
(Thank you, demberto!)

setup.py

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

33
setup(
44
name='SoundCard',
5-
version='0.3.3',
5+
version='0.4.0',
66
description='Play and record audio without resorting to CPython extensions',
77
author='Bastian Bechtold',
88
url='https://github.com/bastibe/SoundCard',
@@ -21,6 +21,7 @@
2121
'Programming Language :: Python :: 3.5',
2222
'Programming Language :: Python :: 3.6',
2323
'Programming Language :: Python :: 3.7',
24+
'Programming Language :: Python :: 3.8',
2425
'Topic :: Multimedia :: Sound/Audio :: Capture/Recording',
2526
'Topic :: Multimedia :: Sound/Audio :: Players',
2627
],

0 commit comments

Comments
 (0)