1017 B
1017 B
Update notes
Notably, not a changelog, just notes.
0.5.2
- Adds
extras.localplaybackmodule - Adds info about the extras modules to the readme
- Adds
WavSinkas an alias toWaveSink - Fixed a member cleanup error in SpeechRecognitionSink
- Changes the optional dependency format
- Previously it was a single optional dep,
extras. Now there is a dependency per module, withextrasinstalling all of them. See the readme for details.
- Previously it was a single optional dep,
0.5.1
- Fixes a build process related error
- Changes
voice_recv.extrasimport semantics- The
__all__contents of the extras modules are no longer*imported intovoice_recv.extras(this was onlyextras.SpeechRecognitionSink). You will have to access them directly, or import that specific extra module. Example:from discord.ext.voice_recv.extras.speechrecognition import SpeechRecognitionSink # or from discord.ext.voice_recv.extras import speechrecognition sink = speechrecognition.SpeechRecognitionSink(...)
- The