In order to display long description properly at the pypi.org page we
need to specify mime type `text/markdown` for the long desccription if
readme is in markdown.
Current https://pypi.org/project/disco-py/, doesn't looks nice atm.
This commit cleans up a mess I created when I originally added the
`Guild.sync` functionality. The original intention of this function
was to provide a simple interface to ensuring the local state of a
guild was "up to date". This abstraction turned out to be a bad idea
for the following reasons;
- Its completely unclear what "sync" means in the context of a Guild.
Hiding the way syncing guild members works (which is a pretty "developer
unfriendly" as it is) just results in more confusion for very little
value.
- Discord technically supports sending multiple guild ids in a single
`REQUEST_GUILD_MEMBERS` op which this interface didn't support or
handle. Using this function as it was intended on a largeish bot would
result in your gateway client getting rate limited for quite a bit on
startup (which is lame).
- This implementation of guild member syncing resulted in a `synced`
flag on guilds, which is basically completely useless and doesn't mean
anything much at all (since REQUEST_GUILD_MEMBERS is purely async and
there is no correct way to confirm a request was fulfilled.
To cleanup this mess I've made the following changes;
- Entirely deprecate `Guild.sync`. This is just a bad function name and
should die in a fire to save our future children from pain and
frustration.
- Add `Guild.request_guild_members`. This function now properly conveys
what it does and provides a more correct interface to this Discord
functionality (nb: Guild.sync now calls this function, which does not
prevent multiple calls from firing requests).
- Add `GatewayClient.request_guild_members`. This function provides an
alternative interface for sending the request guild members op without
low-level GatewayClient interfacing. Ideally users who need to avoid
being rate limited and/or want better guild member syncing performance
can use this function which accepts multiple guild ids.
TL;DR;
- If you don't call `Guild.sync`; you don't need to worry about
anything.
- If you call `Guild.sync` anywhere at all and you don't really care
about the performance impact of syncing guild members one-by-one; just
change your code to call `Guild.request_guild_members`.
- If you call `Guild.sync` in a `GUILD_CREATE` handler or you care about
the performance impact of syncing multiple Guilds; move to using the
underlying GatewayClient interface and sync multiple guilds at once
(likely in batches).
* initial voice
* some updates
fixed it
* some style updates
replaced the speaking when joining with an actual client_connect event
* please pass
* replaced channel with client in VoiceData and VoiceSpeaking events
Also changed some voice sending stuff
* added more debug logs
* fixed version not being set on the voice gateway
* added voice_clients in state
Removed making a listener for voice state/server update for each voice connection, instead have only one listener and use the voice_clients in state to update based on that
Added priority speaking flag, also added some rtcp stuff, like a new event called 'RTCPData'
This update fixes some issues if you connect to another voice channel, instead of making a whole new voice connection, it just reuses one in the state.
* flake8 error fix
Discord is inconsistent here and doesn't emit a VoiceStateUpdate for the
old session_id when a user connects to voice from a different device
(thus disconnecting the first device). To avoid corrupting our voice
state cache, we need to remove any of the users old sessions (they
should have at most one).
I included tests on this one because its esoteric and undocumented, so
there is a high chance I'll break it in the future.
* initial voice
* some updates
fixed it
* some style updates
replaced the speaking when joining with an actual client_connect event
* please pass
* replaced channel with client in VoiceData and VoiceSpeaking events
Also changed some voice sending stuff
* added more debug logs
* fixed version not being set on the voice gateway