aboutsummaryrefslogtreecommitdiff
path: root/discord/state.py
Commit message (Expand)AuthorAgeFilesLines
* Sort roles by hierarchy rather than by ID.Rapptz2017-08-291-2/+2
* Fix potential chunking woe.Rapptz2017-01-231-1/+1
* Fix issue with chunking on userbots when a guild is unavailable.Rapptz2017-01-211-1/+1
* Fix case where on_reaction_add returned None in PMs with users.Rapptz2017-01-131-0/+2
* Chunk every guild if it's a user bot.Rapptz2016-12-241-3/+4
* Properly propagate loop. Fixes #420.Rapptz2016-12-211-3/+6
* Timeout waiting for chunking.Rapptz2016-12-161-4/+10
* Fix crash on duplicate or out of order reactions.khazhyk2016-11-301-2/+5
* Support MESSAGE_REACTION_REMOVE_ALL event.Rapptz2016-11-211-0/+7
* Fix crash on reaction remove.khazhyk2016-11-051-1/+1
* Change reaction events signature and name.Rapptz2016-11-031-2/+2
* Inject full Emoji to Reaction if we have it.khazhyk2016-11-031-14/+31
* Add support for reactions.khazhyk2016-10-271-0/+55
* Add custom emoji support.Khazhismel2016-07-311-0/+7
* Fix voice state update issue in on_voice_state_updateRapptz2016-07-231-2/+2
* Fix bug where discriminators would not update in PRESENCE_UPDATE.Rapptz2016-07-211-0/+1
* Add utility properties to CallMessage to query information.Rapptz2016-07-151-1/+1
* Add support for querying information about group calls.Rapptz2016-07-151-4/+29
* Handle adding and removal of group members.Rapptz2016-07-151-1/+16
* Handle private channel CHANNEL_CREATE better.Rapptz2016-07-151-2/+2
* Add support for different message types and call message.Rapptz2016-07-131-1/+4
* Handle CHANNEL_UPDATE for group direct messages.Rapptz2016-07-131-4/+14
* Begin working on gateway v6 changes.Rapptz2016-07-131-5/+2
* Fix voice states being overwritten after a GUILD_SYNC.Rapptz2016-06-281-3/+4
* Handle MESSAGE_DELETE_BULK.Rapptz2016-06-221-0/+7
* Support for v5 Gateway.Rapptz2016-06-221-3/+13
* Update positions when a role is added or removed.Rapptz2016-06-011-2/+2
* Add Role.server attribute.Rapptz2016-06-011-4/+3
* Update voice client main ws references when reconnecting.Rapptz2016-06-011-0/+4
* Add RESUME support.Rapptz2016-06-011-0/+3
* Only trigger on_voice_state_update if the member actually exists.Rapptz2016-05-201-2/+3
* Fix bug where members leaving will stay in Channel.voice_members.Rapptz2016-05-201-0/+9
* Fix issue with Member.joined_at being None.Rapptz2016-05-101-1/+2
* Working multi-server voice support.Rapptz2016-05-011-0/+21
* Attempt to consistently sort of all Member.rolesRapptz2016-04-291-4/+3
* Sort member.roles by ID but keep the default role in index 0.Rapptz2016-04-291-1/+4
* Add support for server specific nicknames.Rapptz2016-04-291-1/+6
* Begin working on gateway v4 support.Rapptz2016-04-271-3/+5
* Fix deadlock issue when joining large guilds.Rapptz2016-04-151-5/+13
* Handle bot tag updates in GUILD_MEMBER_UPDATE.Rapptz2016-04-121-0/+2
* User JSON object has 'username' keys not 'name'.Rapptz2016-04-111-1/+1
* Better chunking behaviour and add members on PRESENCE_UPDATE.Rapptz2016-04-111-23/+28
* Fix chunk requests not actually being batched.Khazhismel2016-04-111-3/+5
* Proper chunking for unavailable guilds.Rapptz2016-04-101-24/+66
* Fix handling of message update in MESSAGE_UPDATEZeta2016-04-051-6/+5
* Skip member_update event when a member is not in a guild.Rapptz2016-04-021-1/+1
* Change parsing of READY to be eager again.Rapptz2016-03-061-12/+14
* Fix bug where large servers in GUILD_CREATE did not get chunked.Rapptz2016-03-061-3/+14
* Move chunking logic back into ConnectionState.Rapptz2016-03-061-3/+21
* Server.me is now a dynamic property to avoid outdated references.Rapptz2016-03-011-1/+1