| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix crash on duplicate or out of order reactions. | khazhyk | 2016-11-30 | 1 | -2/+5 |
| | | | | | Eventual consistency ftw | ||||
| * | Support MESSAGE_REACTION_REMOVE_ALL event. | Rapptz | 2016-11-21 | 1 | -0/+7 |
| | | |||||
| * | Fix crash on reaction remove. | khazhyk | 2016-11-05 | 1 | -1/+1 |
| | | | | | | | | | Discord can sometimes send integer 0 as the emoji id instead of null to signify a non-custom emoji, which was causing a crash due to a 'is not None' check assuming the reaction was for an emoji with id 0. Probably a discord bug, but preferable to handle here rather than crash users. | ||||
| * | Change reaction events signature and name. | Rapptz | 2016-11-03 | 1 | -2/+2 |
| | | | | | | | | | | This changes the event signature to be (reaction, user) instead of (message, reaction, user) since the reaction data class already has the message being reacted to as a member. The name was shortened from on_message_reaction_ to on_reaction_ since the message prefix was deemed redundant. | ||||
| * | Inject full Emoji to Reaction if we have it. | khazhyk | 2016-11-03 | 1 | -14/+31 |
| | | | | | | | | Reaction objects with custom Emoji are partial. If we know of this Emoji (can find it on this client) then inject it. Otherwise, leave it as a hollow Emoji. We can still react with a hollow Emoji, but can't get other metadata about it. | ||||
| * | Add support for reactions. | khazhyk | 2016-10-27 | 1 | -0/+55 |
| | | | | | | | | | | | | Reactions can be be standard emojis, or custom server emojis. Adds - add/remove_reaction - get_reaction_users - Messages have new field reactions - new events - message_reaction_add, message_reaction_remove - new permission - add_reactions | ||||
| * | Add custom emoji support. | Khazhismel | 2016-07-31 | 1 | -0/+7 |
| | | |||||
| * | Fix voice state update issue in on_voice_state_update | Rapptz | 2016-07-23 | 1 | -2/+2 |
| | | | | | | | | | | Bug was caused to the shallow copy not copying over the VoiceState information embedded into the copy. This would mean that when the event is called, before and after voice state information is essentially equivalent. The solution to fix this is to also copy the VoiceState objects. | ||||
| * | Fix bug where discriminators would not update in PRESENCE_UPDATE. | Rapptz | 2016-07-21 | 1 | -0/+1 |
| | | |||||
| * | Add utility properties to CallMessage to query information. | Rapptz | 2016-07-15 | 1 | -1/+1 |
| | | |||||
| * | Add support for querying information about group calls. | Rapptz | 2016-07-15 | 1 | -4/+29 |
| | | |||||
| * | Handle adding and removal of group members. | Rapptz | 2016-07-15 | 1 | -1/+16 |
| | | |||||
| * | Handle private channel CHANNEL_CREATE better. | Rapptz | 2016-07-15 | 1 | -2/+2 |
| | | |||||
| * | Add support for different message types and call message. | Rapptz | 2016-07-13 | 1 | -1/+4 |
| | | |||||
| * | Handle CHANNEL_UPDATE for group direct messages. | Rapptz | 2016-07-13 | 1 | -4/+14 |
| | | |||||
| * | Begin working on gateway v6 changes. | Rapptz | 2016-07-13 | 1 | -5/+2 |
| | | | | | | The first batch of changes are related to channel types and group direct messages. Support these first so READY begins parsing. | ||||
| * | Fix voice states being overwritten after a GUILD_SYNC. | Rapptz | 2016-06-28 | 1 | -3/+4 |
| | | | | | | | | | | This was a two-fold problem. The first of which involved the overwriting of members during a GUILD_SYNC. Since we are requesting a chunk anyway, we have all the member references we need without actually chunking. The second problem came from the order. We were doing a GUILD_SYNC and then doing the chunking requests. We should do the GUILD_SYNC after the chunking in order to just update presences. | ||||
| * | Handle MESSAGE_DELETE_BULK. | Rapptz | 2016-06-22 | 1 | -0/+7 |
| | | |||||
| * | Support for v5 Gateway. | Rapptz | 2016-06-22 | 1 | -3/+13 |
| | | |||||
| * | Update positions when a role is added or removed. | Rapptz | 2016-06-01 | 1 | -2/+2 |
| | | |||||
| * | Add Role.server attribute. | Rapptz | 2016-06-01 | 1 | -4/+3 |
| | | | | | This breaks events that expected a server parameter for the role events. | ||||
| * | Update voice client main ws references when reconnecting. | Rapptz | 2016-06-01 | 1 | -0/+4 |
| | | |||||
| * | Add RESUME support. | Rapptz | 2016-06-01 | 1 | -0/+3 |
| | | |||||
| * | Only trigger on_voice_state_update if the member actually exists. | Rapptz | 2016-05-20 | 1 | -2/+3 |
| | | |||||
| * | Fix bug where members leaving will stay in Channel.voice_members. | Rapptz | 2016-05-20 | 1 | -0/+9 |
| | | |||||
| * | Fix issue with Member.joined_at being None. | Rapptz | 2016-05-10 | 1 | -1/+2 |
| | | |||||
| * | Working multi-server voice support. | Rapptz | 2016-05-01 | 1 | -0/+21 |
| | | |||||
| * | Attempt to consistently sort of all Member.roles | Rapptz | 2016-04-29 | 1 | -4/+3 |
| | | |||||
| * | Sort member.roles by ID but keep the default role in index 0. | Rapptz | 2016-04-29 | 1 | -1/+4 |
| | | | | | | This should make the events checking if `before` and `after` roles are equivalent more sane for users. | ||||
| * | Add support for server specific nicknames. | Rapptz | 2016-04-29 | 1 | -1/+6 |
| | | |||||
| * | Begin working on gateway v4 support. | Rapptz | 2016-04-27 | 1 | -3/+5 |
| | | | | | | | Bump websockets requirement to v3.1 Should be squashed... | ||||
| * | Fix deadlock issue when joining large guilds. | Rapptz | 2016-04-15 | 1 | -5/+13 |
| | | |||||
| * | Handle bot tag updates in GUILD_MEMBER_UPDATE. | Rapptz | 2016-04-12 | 1 | -0/+2 |
| | | |||||
| * | User JSON object has 'username' keys not 'name'. | Rapptz | 2016-04-11 | 1 | -1/+1 |
| | | |||||
| * | Better chunking behaviour and add members on PRESENCE_UPDATE. | Rapptz | 2016-04-11 | 1 | -23/+28 |
| | | | | | | | | This should hopefully cover all cases where members are added. There was a bug where an array of chunks received would get entirely processed if only a single chunk was received. This was fixed by explicitly bailing early if we're requesting for chunks. | ||||
| * | Fix chunk requests not actually being batched. | Khazhismel | 2016-04-11 | 1 | -3/+5 |
| | | |||||
| * | Proper chunking for unavailable guilds. | Rapptz | 2016-04-10 | 1 | -24/+66 |
| | | | | | This will also delay on_ready until all chunking is complete. | ||||
| * | Fix handling of message update in MESSAGE_UPDATE | Zeta | 2016-04-05 | 1 | -6/+5 |
| | | |||||
| * | Skip member_update event when a member is not in a guild. | Rapptz | 2016-04-02 | 1 | -1/+1 |
| | | |||||
| * | Change parsing of READY to be eager again. | Rapptz | 2016-03-06 | 1 | -12/+14 |
| | | |||||
| * | Fix bug where large servers in GUILD_CREATE did not get chunked. | Rapptz | 2016-03-06 | 1 | -3/+14 |
| | | |||||
| * | Move chunking logic back into ConnectionState. | Rapptz | 2016-03-06 | 1 | -3/+21 |
| | | | | | | This allows for a nicer design when dealing with parsers that could end up being coroutines. | ||||
| * | Server.me is now a dynamic property to avoid outdated references. | Rapptz | 2016-03-01 | 1 | -1/+1 |
| | | |||||
| * | Do not overwrite members that are already in cache during chunking. | Rapptz | 2016-02-17 | 1 | -1/+2 |
| | | |||||
| * | Remove request_offline option. | Rapptz | 2016-02-14 | 1 | -10/+7 |
| | | |||||
| * | Update owner references when we get a chunk. | Rapptz | 2016-02-14 | 1 | -0/+4 |
| | | |||||
| * | Offline members are now added by default automatically. | Rapptz | 2016-02-14 | 1 | -6/+54 |
| | | | | | | This commit adds support for GUILD_MEMBERS_CHUNK which had to be done due to forced large_threshold requirements in the library. | ||||
| * | Handle case where PRESENCE_UPDATE adds members to cache. | Rapptz | 2016-02-13 | 1 | -21/+31 |
| | | | | | | | | | When we don't request offline members, members that are going from offline to online in the server will become available via the PRESENCE_UPDATE event. This should be transparent to the user since technically the member exists in the server and thus on_member_update is used instead of on_member_join. | ||||
| * | Add Server.member_count property for actual member count. | Rapptz | 2016-02-13 | 1 | -0/+2 |
| | | | | | This will always work regardless of chunking or not. | ||||
| * | Fix cases where Member.roles would have a string instead of Role. | Rapptz | 2016-02-01 | 1 | -1/+8 |
| | | | | | Fixes #81. | ||||