aboutsummaryrefslogtreecommitdiff
path: root/discord
Commit message (Expand)AuthorAgeFilesLines
* [commands] Rename __check to __global_check for cogs.Rapptz2017-01-261-3/+3
* [commands] Allow customising the Context class in get_context.Rapptz2017-01-261-3/+9
* Replace wait_for_* with a generic Client.wait_forRapptz2017-01-251-288/+84
* Add compatibility shim for asyncio.Future creation.Rapptz2017-01-254-4/+13
* Remove unused ChannelPermissions namedtuple.Rapptz2017-01-252-4/+1
* Remove Client.__getattr__ and Client.__setattr__ shims.Rapptz2017-01-251-25/+28
* Optimise attribute access when dispatching.Rapptz2017-01-252-23/+18
* Implement User.profile coroutine to get a user's profile.Rapptz2017-01-243-2/+41
* Add option to disable auto member chunking.Rapptz2017-01-233-97/+142
* Fix issue with user bots chunking unavailable guilds.Rapptz2017-01-211-2/+2
* Allow unique invites for Client.create_invite.Rapptz2017-01-212-3/+6
* Update copyright year to 2017.Rapptz2017-01-2042-47/+47
* Add support for relationships.Rapptz2017-01-207-5/+233
* Add ClientUser.premium boolean.Rapptz2017-01-201-1/+4
* Make ClientUser separate from a regular User.Rapptz2017-01-195-153/+214
* Remove email/password based login.Rapptz2017-01-192-113/+11
* Reimplement Guild.me property without patching it in.Rapptz2017-01-182-8/+8
* Fix bug with GuildChannel.edit and Role.edit with positions.Rapptz2017-01-163-5/+12
* Fix AutoShardedClient docstring.Rapptz2017-01-161-1/+1
* [commands] Guarantee that local error handler is called before generic.Rapptz2017-01-152-4/+4
* [commands] Change UserConverter to actually work with User, not Member.Rapptz2017-01-141-1/+27
* Remove _get_guild_id from Messageable ABC.Rapptz2017-01-147-39/+11
* [commands] Split process_commands into lower level bits.Rapptz2017-01-142-49/+98
* Fix documentation to properly use Messageable.sendRapptz2017-01-132-12/+12
* [commands] Make Command a descriptor for #426.Rapptz2017-01-132-2/+5
* Use the improved role creation endpoint for making roles.Rapptz2017-01-132-10/+49
* Remove extraneous kwargs from Permissions constructor.Rapptz2017-01-131-1/+1
* Fix 404s in pins_from and create_role routes.Rapptz2017-01-121-2/+2
* Make Reaction.users return an async iterator.Rapptz2017-01-112-15/+117
* Fix NameError inside Messageable.get_messageRapptz2017-01-111-1/+1
* Rename NoMoreMessages to NoMoreItems.Rapptz2017-01-113-9/+10
* Allow HistoryIterator to be flattened into a list.Rapptz2017-01-112-9/+36
* Propagate event loop in Messageable.history.Rapptz2017-01-111-3/+4
* Remove extraneous unneeded hash calls.Rapptz2017-01-102-2/+2
* Fix NameError inside HTTPClient.edit_member.Rapptz2017-01-091-1/+1
* Fix HTTP.application_info 404ing.Rapptz2017-01-091-1/+1
* Change version info to 1.0.0a0.Rapptz2017-01-091-2/+2
* Implement rate limit headers.Rapptz2017-01-091-131/+185
* Allow Messageable.send to work with non-truthy types.Rapptz2017-01-091-1/+1
* Simple parser for CHANNEL_PINS_UPDATEIan Salmons2017-01-091-0/+5
* Use CDN URL for Guild.icon_url.Rapptz2017-01-091-1/+1
* Return default avatar URL if an avatar is not given for User.avatar_urlRapptz2017-01-091-4/+7
* Use CDN URL for default avatars.Rapptz2017-01-092-13/+7
* Fix typo in Guild.invitesRapptz2017-01-091-1/+1
* Add Guild.create_text_channel and Guild.create_voice_channel.Rapptz2017-01-081-0/+97
* Add missing fields to Embed.from_data()Ian Salmons2017-01-081-1/+1
* Allow uploading of GIFs for users.SunDwarf2017-01-081-0/+2
* Add ability to edit guild invite splashes.Rapptz2017-01-081-0/+16
* [commands] Add AutoShardedBot counterpart to AutoShardedClient.Rapptz2017-01-082-62/+70
* VoiceChannel.voice_members is now computed when needed.Rapptz2017-01-083-23/+17