| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix issue with members not copying correctly. | Rapptz | 2017-03-05 | 1 | -0/+6 |
| | | |||||
| * | Forward keyword arguments in Member.ban | Rapptz | 2017-02-21 | 1 | -2/+2 |
| | | |||||
| * | Fix Member.display_name to work. | Rapptz | 2017-02-10 | 1 | -0/+10 |
| | | |||||
| * | Fix Member.permissions_in passing in the wrong self parameter. | Rapptz | 2017-01-31 | 1 | -0/+16 |
| | | |||||
| * | Make all public is_ functions into methods instead of properties. | Rapptz | 2017-01-29 | 1 | -3/+3 |
| | | |||||
| * | Add missing int casts in many different events in the state. | Rapptz | 2017-01-28 | 1 | -5/+0 |
| | | | | | Also remove redundant role parsing in Member._update_roles. | ||||
| * | Update copyright year to 2017. | Rapptz | 2017-01-20 | 1 | -1/+1 |
| | | |||||
| * | Add support for relationships. | Rapptz | 2017-01-20 | 1 | -2/+3 |
| | | |||||
| * | Make ClientUser separate from a regular User. | Rapptz | 2017-01-19 | 1 | -2/+2 |
| | | | | | This removes Client.edit_profile in favour of ClientUser.edit. | ||||
| * | Remove _get_guild_id from Messageable ABC. | Rapptz | 2017-01-14 | 1 | -3/+0 |
| | | |||||
| * | VoiceChannel.voice_members is now computed when needed. | Rapptz | 2017-01-08 | 1 | -1/+4 |
| | | |||||
| * | Fix bug that made member roles go missing. | Rapptz | 2017-01-03 | 1 | -10/+19 |
| | | |||||
| * | Make User and Member messageable. | Rapptz | 2017-01-03 | 1 | -1/+11 |
| | | |||||
| * | Move message creation to a factory method inside ConnectionState. | Rapptz | 2017-01-03 | 1 | -4/+4 |
| | | |||||
| * | Add useful repr to all data classes. | Rapptz | 2017-01-03 | 1 | -1/+5 |
| | | |||||
| * | Absolute import some circular dependencies to appease Python 3.4. | Rapptz | 2017-01-03 | 1 | -4/+4 |
| | | |||||
| * | Rename try_insert_user to store_user | Rapptz | 2017-01-03 | 1 | -1/+1 |
| | | |||||
| * | Make emojis and members stateful. | Rapptz | 2017-01-03 | 1 | -6/+195 |
| | | |||||
| * | Rename Server to Guild everywhere. | Rapptz | 2017-01-03 | 1 | -20/+20 |
| | | |||||
| * | Optimise VoiceState for memory. | Rapptz | 2017-01-03 | 1 | -60/+20 |
| | | | | | | | Instead of storing one VoiceState per Member, only store them if necessary. This should bring down the number of instances significantly. | ||||
| * | Begin working on the rewrite. | Rapptz | 2017-01-03 | 1 | -17/+113 |
| | | |||||
| * | Fix Member.server_permissions docstring. | Rapptz | 2016-10-04 | 1 | -1/+1 |
| | | |||||
| * | Add Member.server_permissions to calculate server permissions. | Rapptz | 2016-09-21 | 1 | -0/+27 |
| | | |||||
| * | Make Roles totally ordered. | Rapptz | 2016-09-21 | 1 | -1/+1 |
| | | | | | | This also fixes a bug with Member.top_role that chose the wrong role should they have the same position. | ||||
| * | Fix voice state update issue in on_voice_state_update | Rapptz | 2016-07-23 | 1 | -4/+7 |
| | | | | | | | | | | 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. | ||||
| * | Remove unused internal code in Member. | Rapptz | 2016-07-22 | 1 | -18/+0 |
| | | |||||
| * | Add support for querying information about group calls. | Rapptz | 2016-07-15 | 1 | -25/+77 |
| | | |||||
| * | Add Member.top_role property to get the highest role. | Rapptz | 2016-06-18 | 1 | -0/+13 |
| | | |||||
| * | Fix Member.colour to use the new algorithm for determining colour. | Rapptz | 2016-05-12 | 1 | -4/+11 |
| | | |||||
| * | Remove setting read-only __doc__ in Member overrides. | Rapptz | 2016-04-29 | 1 | -4/+0 |
| | | |||||
| * | Add User.mentioned_in helper to check if a message mentions you. | Rapptz | 2016-04-29 | 1 | -2/+16 |
| | | |||||
| * | Member.mention now uses nickname hint if needed. | Rapptz | 2016-04-29 | 1 | -0/+8 |
| | | |||||
| * | Add support for server specific nicknames. | Rapptz | 2016-04-29 | 1 | -1/+4 |
| | | |||||
| * | Add Member.colour property to get rendered role colour of a member. | Rapptz | 2016-03-27 | 1 | -1/+20 |
| | | |||||
| * | Move Member.permissions_in to User.permissions_in. | Rapptz | 2016-01-21 | 1 | -16/+0 |
| | | |||||
| * | Change member constructor to not rely on order of json data object | Khazhismel | 2016-01-12 | 1 | -7/+7 |
| | | |||||
| * | Handle cases where people put False-like values for game presences. | Rapptz | 2016-01-11 | 1 | -2/+2 |
| | | |||||
| * | Change internal update functions to have a leading underscore. | Rapptz | 2016-01-11 | 1 | -2/+2 |
| | | |||||
| * | Add Member.permissions_in. | Rapptz | 2016-01-06 | 1 | -0/+16 |
| | | | | | Fixes #63 | ||||
| * | Update license of files to 2016. | Rapptz | 2016-01-04 | 1 | -1/+1 |
| | | |||||
| * | Add game data class, replace game_id. | Khazhismel | 2015-12-23 | 1 | -5/+6 |
| | | |||||
| * | Add __slots__ where appropriate to data classes. | Rapptz | 2015-12-19 | 1 | -1/+5 |
| | | |||||
| * | Add enumerators instead of strings. | Rapptz | 2015-12-04 | 1 | -33/+24 |
| | | | | | Changes channel type, status and server region into 3.4 enums. | ||||
| * | Member.roles array now has the default role as the first element. | Rapptz | 2015-11-28 | 1 | -1/+2 |
| | | |||||
| * | Use try-except instead of checking for membership. | Rapptz | 2015-11-20 | 1 | -7/+10 |
| | | | | | | | Basically, a lot of the checks revolving "if x in y" could be written more efficiently by doing the task anyway and ignoring the exception a la the EAFP guideline. | ||||
| * | fixed voice_members not updating when changing channels | Azza | 2015-11-19 | 1 | -0/+4 |
| | | |||||
| * | Split data classes into more files. | Rapptz | 2015-10-27 | 1 | -0/+101 |