aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Add VoiceClient.source to get the AudioSource being played.Rapptz2017-04-191-0/+5
* Fix static cut-off when playing.Rapptz2017-04-181-2/+8
* Clean cache when TimeoutError occurs.Rapptz2017-04-181-1/+1
* Better handling of VOICE_SERVER_UPDATE.Rapptz2017-04-183-29/+34
* Fix FFmpegPCMAudio not working with spaces in filename.Rapptz2017-04-181-1/+1
* Remove unused imports.Rapptz2017-04-189-31/+10
* Properly cleanup of VoiceClients in cache.Rapptz2017-04-182-3/+7
* Add Guild.voice_client shortcut.Rapptz2017-04-181-1/+5
* Re-implement voice sending.Rapptz2017-04-1811-527/+599
* Don't clear state when READY is reached for auto sharded clients.Rapptz2017-04-161-1/+0
* Support for API v7 error handling.Rapptz2017-04-152-7/+37
* Start typing immediately when using async typing context manager.Rapptz2017-04-121-6/+17
* Export missing enums.Rapptz2017-04-122-1/+4
* Add Guild.explicit_content_filter.Rapptz2017-04-123-2/+30
* Use create_future wrapper for initially created Future.Rapptz2017-04-121-1/+1
* Improve logging in more places.Rapptz2017-04-123-14/+21
* [commands] Bot.get_all_emojis no longer exists.Rapptz2017-04-121-2/+2
* [commands] Export missing built-in converters.Rapptz2017-04-121-1/+1
* Use global user cache to fetch reaction event data.Rapptz2017-04-091-9/+6
* Fix view_audit_log incorrect pluralisation.Rapptz2017-04-081-1/+1
* Fix File not using the filename if givenFrostLuma2017-04-081-0/+2
* Add support for multiple file attachments.Rapptz2017-04-085-31/+122
* Proper recursion when launching shards.Rapptz2017-04-071-1/+1
* Fix KeyError in certain logging cases.Rapptz2017-04-071-2/+2
* Use an asyncio.Event instead of an asyncio.Lock for global rate limits.Rapptz2017-04-011-6/+8
* Proper termination of HistoryIterator.flatten.Rapptz2017-03-301-1/+1
* Keep track of Emoji instances myself.Rapptz2017-03-292-3/+9
* [commands] Fix User converter not working with IDs.Rapptz2017-03-271-1/+1
* [commands] Add is_owner check and Bot.is_owner.Rapptz2017-03-273-2/+49
* [commands] Remove Command.no_pm for commands.guild_only check.Rapptz2017-03-262-15/+22
* Always overwrite Emoji references in the state.Rapptz2017-03-261-5/+2
* Remove unnecessary shielding.Rapptz2017-03-251-1/+1
* Make Role.members use a list comprehension.Rapptz2017-03-251-5/+1
* Allow Emoji to be used in a weakref.Rapptz2017-03-241-1/+1
* Fix memory leak by holding on to Emoji references weakly.Rapptz2017-03-241-1/+1
* Revert "Reference the ConnectionState by weakref."Rapptz2017-03-241-19/+19
* Set closed state before actually finishing cleaning up.Rapptz2017-03-241-1/+2
* More robust cleanup for Client.run.Rapptz2017-03-242-13/+28
* Sort Guild.text_channels and Guild.voice_channels in UI order.Rapptz2017-03-231-4/+14
* Upgrade aiohttp requirement to 2.0.Rapptz2017-03-231-1/+1
* Reference the ConnectionState by weakref instead of a strong reference.Rapptz2017-03-221-19/+19
* Add Permissions.view_audit_logRapptz2017-03-211-3/+12
* [commands] Fix minor spacing issue in Command.signatureRapptz2017-03-211-1/+1
* Aggregate shard closing futures instead of doing them sequentially.Rapptz2017-03-211-3/+2
* Check if we're closed before attempting to do a reconnect.Rapptz2017-03-212-1/+5
* Eventual consistency fixes.Rapptz2017-03-211-3/+41
* [commands] Add Command.signatureRapptz2017-03-212-31/+40
* [commands] Add BotBase.get_cog_commands to get all a cog's commands.Rapptz2017-03-211-0/+25
* [commands] Change GroupMixin.commands to all_commandsRapptz2017-03-213-20/+25
* Reconnect on any OSError.Rapptz2017-03-201-3/+1