Rapptz
dff6bcc745
Add support for audit log reasons.
Most routes now have a 'reason' keyword argument.
8 years ago
Rapptz
d24c2a09b6
Change some format usage to use %-formatting.
Minor speed increase when we're not doing excessive attribute
access or any type of formatting.
8 years ago
Rapptz
c54a6a927d
Implement audit logs.
8 years ago
Rapptz
1fc08bc5a2
Remove unused imports.
8 years ago
Rapptz
ead18e3948
Fix issue with members not copying correctly.
8 years ago
Rapptz
67912193ec
Forward keyword arguments in Member.ban
8 years ago
Rapptz
bfe2b4fc03
Fix Member.display_name to work.
8 years ago
Rapptz
a632bdd871
Fix Member.permissions_in passing in the wrong self parameter.
8 years ago
Rapptz
e77012f4d9
Make all public is_ functions into methods instead of properties.
8 years ago
Rapptz
554ae196d3
Add missing int casts in many different events in the state.
Also remove redundant role parsing in Member._update_roles.
8 years ago
Rapptz
ff9f5749e1
Update copyright year to 2017.
8 years ago
Rapptz
4c981ee631
Add support for relationships.
8 years ago
Rapptz
fa384f2114
Make ClientUser separate from a regular User.
This removes Client.edit_profile in favour of ClientUser.edit.
8 years ago
Rapptz
92dd519b1a
Remove _get_guild_id from Messageable ABC.
8 years ago
Rapptz
aae8b783e9
VoiceChannel.voice_members is now computed when needed.
8 years ago
Rapptz
c863d93f69
Fix bug that made member roles go missing.
8 years ago
Rapptz
7690455b21
Make User and Member messageable.
8 years ago
Rapptz
98b981848d
Move message creation to a factory method inside ConnectionState.
8 years ago
Rapptz
dceba9d962
Add useful repr to all data classes.
8 years ago
Rapptz
79a49f9145
Absolute import some circular dependencies to appease Python 3.4.
8 years ago
Rapptz
59a0df5f98
Rename try_insert_user to store_user
9 years ago
Rapptz
5cb3ad14e8
Make emojis and members stateful.
9 years ago
Rapptz
d1d54a468a
Rename Server to Guild everywhere.
9 years ago
Rapptz
31229a53e9
Optimise VoiceState for memory.
Instead of storing one VoiceState per Member, only store them if
necessary. This should bring down the number of instances
significantly.
9 years ago
Rapptz
044b0824e6
Begin working on the rewrite.
9 years ago
Rapptz
14def4b68e
Fix Member.server_permissions docstring.
9 years ago
Rapptz
625ed18cff
Add Member.server_permissions to calculate server permissions.
9 years ago
Rapptz
13f85b3292
Make Roles totally ordered.
This also fixes a bug with Member.top_role that chose the wrong role
should they have the same position.
9 years ago
Rapptz
b0e5357716
Fix voice state update issue in on_voice_state_update
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.
9 years ago
Rapptz
b13029b993
Remove unused internal code in Member.
9 years ago
Rapptz
1c8ab25917
Add support for querying information about group calls.
9 years ago
Rapptz
e19244b041
Add Member.top_role property to get the highest role.
9 years ago
Rapptz
9077b4e319
Fix Member.colour to use the new algorithm for determining colour.
9 years ago
Rapptz
47cccba946
Remove setting read-only __doc__ in Member overrides.
9 years ago
Rapptz
e2bfa90eef
Add User.mentioned_in helper to check if a message mentions you.
9 years ago
Rapptz
3758c0aa83
Member.mention now uses nickname hint if needed.
9 years ago
Rapptz
133e8d3a44
Add support for server specific nicknames.
9 years ago
Rapptz
53a240e0d3
Add Member.colour property to get rendered role colour of a member.
9 years ago
Rapptz
86e9b62303
Move Member.permissions_in to User.permissions_in.
9 years ago
Khazhismel
000e7e57ea
Change member constructor to not rely on order of json data object
9 years ago
Rapptz
4ea015067f
Handle cases where people put False-like values for game presences.
9 years ago
Rapptz
8974dffc4e
Change internal update functions to have a leading underscore.
9 years ago
Rapptz
c8344af103
Add Member.permissions_in.
Fixes #63
9 years ago
Rapptz
db4cc791dd
Update license of files to 2016.
9 years ago
Khazhismel
0aa46e6def
Add game data class, replace game_id.
9 years ago
Rapptz
f1f0e169e4
Add __slots__ where appropriate to data classes.
9 years ago
Rapptz
79bdf2a721
Add enumerators instead of strings.
Changes channel type, status and server region into 3.4 enums.
9 years ago
Rapptz
df3cb831a9
Member.roles array now has the default role as the first element.
9 years ago
Rapptz
5ca04ea08f
Use try-except instead of checking for membership.
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.
10 years ago
Azza
0b4706699f
fixed voice_members not updating when changing channels
10 years ago