aboutsummaryrefslogtreecommitdiff
path: root/discord/server.py
Commit message (Expand)AuthorAgeFilesLines
* Remove request_offline option.Rapptz2016-02-141-1/+5
* Update owner references when we get a chunk.Rapptz2016-02-141-2/+3
* Offline members are now added by default automatically.Rapptz2016-02-141-3/+5
* Add Server.member_count property for actual member count.Rapptz2016-02-131-1/+8
* Remove unneeded owner_id assignment.Rapptz2016-01-181-2/+0
* Support upcoming guild ownership transfership change.Rapptz2016-01-181-4/+3
* Handle cases where people put False-like values for game presences.Rapptz2016-01-111-2/+2
* Change internal update functions to have a leading underscore.Rapptz2016-01-111-1/+1
* Fix conflicts with __slots__ and the new properties under Server.Rapptz2016-01-081-1/+1
* Document the breaking change with the new dictionary storage change.Rapptz2016-01-081-2/+2
* document public get_ methods and make others privateSteven Berler2016-01-081-6/+8
* performance improvementsSteven Berler2016-01-081-8/+36
* Add missing roles attribute to Server.__slots__Rapptz2016-01-071-1/+1
* Add __slots__ for missing classes that didn't have it.Rapptz2016-01-061-2/+6
* Unavailable guilds get added to cache.Rapptz2016-01-061-2/+2
* Update license of files to 2016.Rapptz2016-01-041-1/+1
* Add game data class, replace game_id.Khazhismel2015-12-231-2/+3
* All update related events now pass in the previous state.Rapptz2015-12-171-1/+3
* Most data classes now support hashing.Rapptz2015-12-171-2/+4
* Add Server.me attribute to access the Member version of Client.user.Rapptz2015-12-161-0/+3
* Make more things into properties.Rapptz2015-12-161-6/+7
* All data classes now support !=, == and str(obj).Rapptz2015-12-131-1/+17
* Changed functions that return a constant value into properties.Rapptz2015-12-131-0/+1
* Handle GUILD_UPDATERapptz2015-12-061-5/+10
* Add enumerators instead of strings.Rapptz2015-12-041-30/+30
* "An array" -> "A list" for documentation purposes.Rapptz2015-11-281-3/+3
* Remove afk_channel_id and replace it with afk_channel.Rapptz2015-11-281-3/+4
* Member.roles array now has the default role as the first element.Rapptz2015-11-281-1/+2
* Move server parsing code from Client to Server.Rapptz2015-11-281-13/+57
* icon_url and get_default_channel in ServerHla2015-11-161-3/+14
* Split data classes into more files.Rapptz2015-10-271-77/+0
* Support unavailable servers.Rapptz2015-10-241-0/+8
* Fix bug with member voice state update.Rapptz2015-10-171-3/+4
* Better detection for the @everyone role.Rapptz2015-10-171-1/+1
* Only remove if the user is actually in the voice channel.Rapptz2015-10-161-1/+1
* Add Channel.voice_membersRapptz2015-10-161-0/+9
* Separate colour tuple into its own class.Rapptz2015-10-161-51/+0
* Handle VOICE_STATE_UPDATE websocket events.Rapptz2015-10-151-2/+24
* Handle GUILD_ROLE_UPDATE websocket events.Rapptz2015-10-151-0/+3
* Fixed get_default_role in Server attempting to access the wrong roles.Rasmus Karlsson2015-10-151-1/+1
* Parse role colour and other new role attributes.Rapptz2015-10-131-0/+26
* Pass kwargs to all constructors for future proofing.Rapptz2015-10-131-4/+4
* Add get_default_role for servers to get the 'everyone' role.Rapptz2015-09-071-0/+6
* Remove owner_id from Server and use owner instead.Rapptz2015-09-041-3/+3
* Refactor parse_time into its own utils file.Rapptz2015-09-041-2/+2
* Use kwargs if the number of arguments needed is too many.Rapptz2015-09-041-10/+10
* Python3 import fixes.Rapptz2015-08-281-2/+2
* Quick documentation fixesRapptz2015-08-271-1/+1
* on_status now takes only a member.Rapptz2015-08-271-3/+3
* Give members their server as an attribute.Rapptz2015-08-271-0/+4