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
Rapptz
a0073c734e
Split data classes into more files.
10 years ago
Rapptz
5efddaf35d
Support unavailable servers.
10 years ago
Rapptz
2813652995
Fix bug with member voice state update.
10 years ago
Rapptz
a9fd4fc4e3
Better detection for the @everyone role.
10 years ago
Rapptz
c4f7664bd9
Only remove if the user is actually in the voice channel.
10 years ago
Rapptz
be14fd1dcc
Add Channel.voice_members
This allows you to see which members are currently in a voice
channel.
10 years ago
Rapptz
411b477a02
Separate colour tuple into its own class.
Also enumerate all the constant colours that Discord currently
supports.
10 years ago
Rapptz
ab2512785b
Handle VOICE_STATE_UPDATE websocket events.
This adds a lot of new attributes into the Member class
such as giving a voice_channel that the user is currently connected
to. Initially there was a plan to have a voice_members attribute
in the Channel class but this proved to be difficult when it came to
actually removing users from the voice channel as the response would
return channel_id as null.
Fixes #16 .
10 years ago
Rapptz
4ff7d22edd
Handle GUILD_ROLE_UPDATE websocket events.
10 years ago
Rasmus Karlsson
75670fa0a2
Fixed get_default_role in Server attempting to access the wrong roles.
10 years ago
Rapptz
608384dd4f
Parse role colour and other new role attributes.
New attributes include hoist, position, and of course colour. An
alias is in place for British and American spellings (i.e. color).
10 years ago
Rapptz
2559051e06
Pass kwargs to all constructors for future proofing.
10 years ago
Rapptz
d93c18b28e
Add get_default_role for servers to get the 'everyone' role.
10 years ago
Rapptz
568c2a773b
Remove owner_id from Server and use owner instead.
owner will be the actual Member who owns the server.
10 years ago
Rapptz
b4e6591c9d
Refactor parse_time into its own utils file.
10 years ago
Rapptz
b00ad4ad79
Use kwargs if the number of arguments needed is too many.
10 years ago
Rapptz
b7fc383013
Python3 import fixes.
10 years ago
Rapptz
faa7b726cd
Quick documentation fixes
10 years ago