aboutsummaryrefslogtreecommitdiff
path: root/discord
Commit message (Expand)AuthorAgeFilesLines
* 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
* Handle case where PRESENCE_UPDATE adds members to cache.Rapptz2016-02-131-21/+31
* Add Server.member_count property for actual member count.Rapptz2016-02-132-1/+10
* [commands] Raise RuntimeError instead of StopIteration.Rapptz2016-02-061-2/+3
* Add new US Central and US South voice regions.Rapptz2016-02-041-0/+2
* Add ability to set bandwith and bitrate.Rapptz2016-02-021-2/+39
* Fix cases where Member.roles would have a string instead of Role.Rapptz2016-02-011-1/+8
* Make VoiceClient.create_ytdl_player a coroutine.Rapptz2016-01-311-10/+78
* Change options in VoiceClient.create_ytdl_player to ytdl_options.Rapptz2016-01-311-11/+10
* [commands] Fix crash when a group has no commands and help is requestedRapptz2016-01-301-1/+3
* Message.clean_content now handles everyone mentions properly.Rapptz2016-01-301-0/+3
* Update member references when status changes.Rapptz2016-01-301-3/+7
* [commands] Change signature convention to use POSIX standards.Rapptz2016-01-291-4/+9
* [commands] Raise TypeError if the name is not a string.Rapptz2016-01-291-0/+3
* Force content-type for file uploads.Rapptz2016-01-291-2/+2
* [commands] Context.invoke will now return what the command returns.Rapptz2016-01-281-1/+2
* [commands] Context.invoke just invokes a command with no special case.Rapptz2016-01-281-5/+33
* [commands] Fix typo on HelpFormatter.show_check_failure attribute.Rapptz2016-01-271-5/+5
* Try to make the pause/resume loop not busy.Rapptz2016-01-261-6/+9
* add ``headers`` option to create_ffmpeg_player()Alexey Glushko2016-01-261-3/+10
* Add and remove some of the on_socket_* events.Rapptz2016-01-251-5/+12
* HTTPException now has a text attribute if JSON is not available.Rapptz2016-01-252-6/+17
* [commands] Fix discord.Invite special case handling in parameters.Rapptz2016-01-241-10/+16