aboutsummaryrefslogtreecommitdiff
path: root/discord
Commit message (Expand)AuthorAgeFilesLines
* [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
* Drop voice packets when it can be potentially blocking.Rapptz2016-03-311-1/+5
* 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
* Support ytsearch and playlists in youtube_dl_playerKhazhismel2016-03-091-0/+3
* Add support for aiohttp connectors.Rapptz2016-03-071-1/+7
* Fix crashing when an unhandled event occurs.Rapptz2016-03-061-4/+4
* Change parsing of READY to be eager again.Rapptz2016-03-061-12/+14
* Fix bug where large servers in GUILD_CREATE did not get chunked.Rapptz2016-03-061-3/+14
* Move chunking logic back into ConnectionState.Rapptz2016-03-062-31/+26
* Add created_at properties for Server and User.Rapptz2016-03-062-0/+14
* Clean up documentation of utils.snowflake_timeRapptz2016-03-061-3/+1
* Add util method to extract creation date from discord idsKhazhismel2016-03-061-0/+7
* Remove Server.me from __slots__ since it is a property now.Rapptz2016-03-051-1/+1
* [commands] Add when_mentioned_or helper to have mentions and prefixes.Rapptz2016-03-052-1/+22
* Disconnect from voice server properlyJake2016-03-041-1/+1
* Fix bug where @everyone usernames bypass Message.clean_content.Rapptz2016-03-021-2/+2
* [commands] Fix typo in Bot.upload docstring.Rapptz2016-03-021-1/+1
* Ensure the auth cache file is not world readable.Nelson Minar2016-03-021-1/+1
* Clean up zombiesKhazhismel Kumykov2016-03-021-0/+2
* [commands] Fix NameError in bot_has_permissions.Rapptz2016-03-021-1/+1
* [commands] bot_has_permissions decorator actually checks for bot.Rapptz2016-03-021-1/+1
* Server.me is now a dynamic property to avoid outdated references.Rapptz2016-03-011-1/+1
* [commands] Do not swallow AttributeErrors raised by the setup functionRapptz2016-02-241-4/+3
* Fix bug where the everyone role was not being properly resolved.Rapptz2016-02-241-2/+19
* Switch URLs from Client.delete_server and Client.leave_server.Rapptz2016-02-231-2/+2
* Add Client.delete_server.Rapptz2016-02-231-2/+29
* [commands] Helper functions now take *args and **kwargs.Rapptz2016-02-181-30/+24
* Client.send_file can now send content along with the message.Rapptz2016-02-181-6/+16
* Add channel specific bitrates.Rapptz2016-02-181-0/+3
* Fix NameError issue in Client.send_file.Rapptz2016-02-171-4/+2
* Do not overwrite members that are already in cache during chunking.Rapptz2016-02-171-1/+2
* Switch to using ClientSession objects for aiohttp v0.21Rapptz2016-02-151-42/+42
* Fix case when no chunks are necessary.Rapptz2016-02-141-1/+4
* Remove request_offline option.Rapptz2016-02-143-23/+15
* Update owner references when we get a chunk.Rapptz2016-02-142-2/+7
* Offline members are now added by default automatically.Rapptz2016-02-143-16/+139