Summary
Voice rework to support 3rd party libraries.
Improvements
- Add `VoiceServerUpdateEvent`.
- Add `Client.events.voice_server_update`.
- `VoiceState.channel` is now a property.
- Add `VoiceState.channel_id`.
- `VoiceState.user` is now a property.
- Add `VoiceState.user_id`.
- Add `Client.events.voice_client_ghost`.
- Add `VoiceState._update_channel`.
- Add `Client.events.voice_client_join`.
- Add `Client.events.voice_client_move`.
- Add `Client.events.voice_client_leave`.
- Add `Client.events.user_voice_move`.
- `Client.events.user_voice_leave` now accepts 3 parameters (from 2).
- `Guild._update_voice_state` is now a generator.
- Add `Client.events.voice_client_update`.
- Add `VoiceState._cache_user`.
- Add `Client.events.voice_client_shutdown`.
- `Client.client_login_static` could return string (instead of dict) when using custom host. (Forest2913)
- `Embed.title` and `Embed.description` is now casted to string. (Nova3379)
- `Embed.add_field`, `Embed.insert_field`, `_EmbedFieldsProxy.add_field` and `EmbedFieldsProxy.insert_field` now
casts `name` and `value` parameters to string. (Nova3379)
- `Embed.add_footer` now casts `text` parameter to string. (Nova3379)
- `Embed.add_author` now casts `name` parameter to string. (Nova3379)
- Add `ChannelBase.guild_id` property.
- Add `ActivityFlag.party_privacy_friends`.
- Add `ActivityFlag.party_privacy_voice_channel`.
- Add `ActivityFlag.embedded`.
Bug Fixes
- Fix a `NameError` in `Client.application_command_permission_edit`. (Gilgamesh8939)
- Fix a possible `AttributeError` in `Client.custom`. (Gilgamesh8939)
- `Message.custom` was not setting `.guild_id` accordingly. (Gilgamesh8939)
- Fix an `AttributeError` in `convert_thread_created`. (Gilgamesh8939)
- `Message.custom` was not marking the message as partial accordingly.
- Fix a `NameError` in `Client.message_delete_sequence`. (Gilgamesh8939)
Renames, Deprecation & Removals
- Rename `Client._gateway_for` to `.gateway_for`.
- Rename `DiscordGateway._change_voice_state` to `.change_voice_state`.
- Rename `Message.custom`'s `channel` parameter to `channel_id`.
- Deprecate `Message.custom`'s `channel`.