aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Rename Colour.to_tuple to Colour.to_rgb.Rapptz2017-05-152-1/+6
|
* Add Colour.from_rgb.Rapptz2017-05-151-0/+5
|
* [commands] Update check examples to work with rewrite.Rapptz2017-05-151-10/+10
|
* Use describe for Colour documentation.Rapptz2017-05-151-13/+15
|
* Fix all broken cross references in the migrating page... again.Rapptz2017-05-152-4/+5
|
* Remove a bunch of red from the theme.Rapptz2017-05-151-6/+2
|
* Make buttons in the sidebar not so sticky looking.Rapptz2017-05-151-0/+1
|
* Completely new theme separate from alabaster.Rapptz2017-05-154-32/+481
|
* Fix dead links in the migrating page.Rapptz2017-05-141-3/+3
|
* Add note about upgraded dependencies in the migrating page.Rapptz2017-05-141-0/+29
|
* Fix FAQ using string for IDs.Rapptz2017-05-141-1/+1
|
* Fix some broken cross references in the migrating page.Rapptz2017-05-131-20/+16
|
* Add warning about sharing tokens.Rapptz2017-05-131-0/+9
|
* Use describe instead of tables for supported operations.Rapptz2017-05-139-180/+218
|
* Add Colour.blurple and Colour.greyple.Rapptz2017-05-131-0/+9
|
* Force disconnect in abc.Connectable.connect.Rapptz2017-05-132-6/+10
| | | | | Some cases of is_connected is not set so we need to force it to clear it anyway.
* Be more consistent with period placements.Rapptz2017-05-121-19/+19
|
* Make images in the discord intro have consistent dimensions.Rapptz2017-05-1213-16/+14
|
* Remove ugly background in the FAQ page.Rapptz2017-05-121-0/+9
|
* Rename image file to lower case png.Rapptz2017-05-122-1/+1
| | | | | Apparently Windows likes to make it PNG and not png which is quite odd really.
* Fix some left over incorrect snippets.Rapptz2017-05-122-3/+3
|
* Fix dead cross-reference links in the migrating page.Rapptz2017-05-121-4/+4
|
* Hide the title in the index.Rapptz2017-05-122-2/+7
|
* First pass at documentation reform.Rapptz2017-05-1235-658/+2534
|
* Rename abc.Callable to abc.Connectable.Rapptz2017-05-102-2/+2
|
* [commands] Converter.convert is always a coroutine.Rapptz2017-05-102-78/+83
| | | | | | | | Along with this change comes with the removal of Converter.prepare and adding two arguments to Converter.convert, the context and the argument. I suppose an added benefit is that you don't have to do attribute access since it's a local variable.
* [commands] Fix default error handler to work with the switch.Rapptz2017-05-101-1/+1
|
* Allow comparison between User and Member instances again.Rapptz2017-05-101-1/+1
|
* [commands] Re-order error handler arguments.Rapptz2017-05-102-7/+7
| | | | | They now have Context as the first argument to be consistent with other context-passing functions.
* Only set the attribute if it isn't None.Rapptz2017-05-101-1/+3
|
* Make sure that websockets.connect is a coroutine.Rapptz2017-05-091-2/+11
| | | | | | | | | | In 3.5.0 and 3.5.1 asyncio.ensure_future requires a Future or a coroutine otherwise a TypeError is raised. The issue is that the websockets.connect call is an awaitable rather than a coroutine. asyncio.ensure_future did not gain support for awaitables until 3.5.2. This patch allows 3.5.0 and 3.5.1 to connect regardless of their python version.
* Remove Guild.change_vanity_invite in favour of Guild.editRapptz2017-05-091-29/+11
|
* Add back Client.create_guild.Rapptz2017-05-091-1/+47
|
* Rename GuildRegion to VoiceRegion.Rapptz2017-05-094-11/+11
| | | | | This naming makes more sense since voice regions are not a guild exclusive concept.
* Properly check for audit log entry termination.Rapptz2017-05-071-10/+10
|
* Make AuditLogDiff.roles an empty list instead of None.Rapptz2017-05-072-2/+2
|
* Skip None action types when iterating.Rapptz2017-05-071-0/+4
|
* Add support for audit log reasons.Rapptz2017-05-079-131/+217
| | | | Most routes now have a 'reason' keyword argument.
* Fix NameError when making things Object in audit logs.Rapptz2017-05-071-2/+2
|
* Audit log role add and removes are lists, not single item.Rapptz2017-05-062-14/+19
| | | | Breaking change. role -> roles and it's now a list.
* Replace hasattr with try except in chunker.Rapptz2017-05-051-2/+2
|
* Split on_channel_pins_update as well.Rapptz2017-05-051-2/+16
|
* Rework some events to make more sense.Rapptz2017-05-051-9/+10
| | | | | | | | | | | | | | This is a breaking change. 1. Change on_guild_emojis_update to have 3 arguments. - The first parameter is now the guild object 2. Remove on_channel_create, on_channel_delete, and on_channel_update - They are now split into two. - on_guild_channel_[create|delete|update] - on_private_channel_[create|delete|update] 3. Change on_member_ban to allow User. - (member) -> (guild, user) - user can also be a Member
* [commands] Export is_nsfw check.Rapptz2017-05-051-1/+1
|
* Change some format usage to use %-formatting.Rapptz2017-05-045-9/+9
| | | | | Minor speed increase when we're not doing excessive attribute access or any type of formatting.
* Add support for message delete audit log action type.Rapptz2017-05-043-1/+29
|
* Explicitly close UDP sockets when re-creating them.Rapptz2017-05-021-1/+10
| | | | | This does not actually make a big difference since the GC should technically close them when needed but might as well be more explicit.
* Fix NameError in HTTPClient.kickRapptz2017-05-021-1/+1
|
* [commands] Add is_nsfw check.Rapptz2017-05-011-0/+6
|
* Make sure that the chunker task only runs once.Rapptz2017-05-011-25/+34
|