aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* Fix deadlock issue when joining large guilds.Rapptz2016-04-152-7/+13
* Typo fixMatt Gardner2016-04-151-1/+1
* Add optional server parameter to utils.oauth_urlKhazhismel Kumykov2016-04-151-2/+6
* Add a None check when setting status in Client.change_status.Rapptz2016-04-141-2/+6
* Retry if send_message or edit_message encounter a 502.Rapptz2016-04-141-2/+9
* [commands] CommandError derived exceptions in checks don't crash help.Rapptz2016-04-131-1/+5
* Handle bot tag updates in GUILD_MEMBER_UPDATE.Rapptz2016-04-121-0/+2
* Yield from parser coroutine instead of making it a task.Rapptz2016-04-121-1/+1
* Add Channel.overwrites_for function to get allow/deny pairs.Rapptz2016-04-121-0/+31
* User JSON object has 'username' keys not 'name'.Rapptz2016-04-111-1/+1
* Fix Client.login documentation to showcase email/password login.Rapptz2016-04-111-1/+1
* Check the right status code for improper token being passed.Rapptz2016-04-111-1/+1
* Better chunking behaviour and add members on PRESENCE_UPDATE.Rapptz2016-04-111-23/+28
* Fix chunk requests not actually being batched.Khazhismel2016-04-111-3/+5
* Proper chunking for unavailable guilds.Rapptz2016-04-101-24/+66
* Allow Client.edit_profile to work with bot accounts.Rapptz2016-04-091-10/+26
* Add User.bot attribute to check if a user is a bot account.Rapptz2016-04-091-1/+4
* Fix typo in Role.created_atKhazhismel Kumykov2016-04-091-1/+1
* Add utility function for generating OAuth2 urls.Rapptz2016-04-082-0/+21
* Change all email/password pair examples to use token.Rapptz2016-04-0811-13/+13
* Change login, start and run to be variadic.Rapptz2016-04-081-43/+59
* Fix unclosed response and document token login a bit better.Rapptz2016-04-081-3/+4
* Add support for token login (for bots)Max Gurela2016-04-081-0/+18
* Guard against AttributeErrors when clearing cached slot cache.Rapptz2016-04-051-3/+14
* Make Message.clean_content a cached property again.Rapptz2016-04-051-3/+8
* Fix handling of message update in MESSAGE_UPDATEZeta2016-04-052-22/+24
* Clarify channel-specific permissions documentation.Khazhismel Kumykov2016-04-051-2/+6
* Fix handling of unavailable servers in READYKhazhismel Kumykov2016-04-041-1/+1
* [commands] Add deterministic cog unloading.Rapptz2016-04-041-0/+10
* Skip member_update event when a member is not in a guild.Rapptz2016-04-021-1/+1
* [commands] Fix pagination logic a little inside HelpFormatter.Rapptz2016-04-021-10/+10
* [commands] Refactor special cased discord.py converters.Rapptz2016-04-011-40/+77
* Add Server.get_member_named to help with name + discriminator lookups.Rapptz2016-04-011-0/+38
* User.__str__ now includes the discriminator.Rapptz2016-04-011-12/+12
* Clarify that linux users need libffi for PyNaCl.Rapptz2016-04-011-0/+3
* Drop voice packets when it can be potentially blocking.Rapptz2016-03-311-1/+5
* Add PyNaCl to the list of requirements.Rapptz2016-03-311-0/+1
* Encrypted audio working with PyNaclizy5212016-03-311-12/+20
* [commands] Don't yield from inside bot utility functions.Rapptz2016-03-311-14/+5
* Add default avatar property to User.Khazhismel Kumykov2016-03-312-0/+28
* [commands] Fix infinite recursion on subgroups without a command.Will Tekulve2016-03-311-1/+1
* Clarify that Client.close is a coroutine.Rapptz2016-03-291-2/+2
* Add Member.colour property to get rendered role colour of a member.Rapptz2016-03-271-1/+20
* Clarify Channel.position documentation.Rapptz2016-03-251-1/+4
* Server.icon_url uses API url instead of the CDN.Rapptz2016-03-251-1/+1
* Add boolean option to specify if VoiceClient.play_audio should encode.Rapptz2016-03-251-6/+11
* Add a way to set ffmpeg options before the -i flag.Rapptz2016-03-251-7/+13
* Move ffmpeg process cleanup to player threadKhazhismel Kumykov2016-03-251-3/+5
* Add missing created_at properties for other objects.Rapptz2016-03-253-0/+23
* [commands] Add bot decorators into __all__.Rapptz2016-03-111-1/+2