aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* 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
* Removing acking on channels.Rapptz2017-03-182-28/+0
* Fix Client inability to shard by actually propagating the shard_idRapptz2017-03-161-1/+1
* Handle case when guild owner somehow doesn't exist in permissions_forRapptz2017-03-151-1/+2
* Speed up message update handling.Rapptz2017-03-141-8/+11
* Remove Message.edited_timestamp in favour of Message.edited_atRapptz2017-03-141-5/+8
* Handle aware datetimes in embeds.Rapptz2017-03-131-2/+9
* Remove call handling for now.Rapptz2017-03-131-19/+0
* Fix premium key being missing in profile endpoint.Rapptz2017-03-132-4/+6
* Retry on more exceptions in auto reconnect code.Rapptz2017-03-071-1/+4
* Fix issue with members not copying correctly.Rapptz2017-03-052-1/+7
* Fix NameError in Role.editRapptz2017-03-051-1/+1
* Add underscore to HTTPClient.session to imply privateness.Rapptz2017-03-041-6/+3
* Add commit number to pip version for easy identification.Rapptz2017-03-042-1/+13
* Remove Client.accept_inviteRapptz2017-03-042-30/+0
* [commands] Add Context.me property.Rapptz2017-03-011-0/+5
* Reconnect even if we close with 1000 since Discord can send it.Rapptz2017-03-011-7/+10
* Remove remaining voice_member tracking.Rapptz2017-02-281-11/+0
* Add TextChannel.members to get members that can see a channel.Rapptz2017-02-281-0/+5
* Rename VoiceChannel.voice_members to VoiceChannel.membersRapptz2017-02-281-1/+1
* Remove extra space.Rapptz2017-02-281-1/+1
* Add Messageable.ackRapptz2017-02-282-0/+28
* Add User.is_blocked and User.is_friend shortcut methods.Rapptz2017-02-271-0/+14
* Add support for message acking.Rapptz2017-02-273-2/+53
* Remove nonce when sending messages.Rapptz2017-02-271-4/+1
* Move purge and delete_messages from Messageable.Rapptz2017-02-262-144/+145
* Check for PrivateChannel before GuildChannel in Client.get_channelRapptz2017-02-251-4/+4