aboutsummaryrefslogtreecommitdiff
path: root/discord
Commit message (Collapse)AuthorAgeFilesLines
* Explicit namespacing in the PermissionOverwrite example.Rapptz2019-04-191-1/+1
| | | | Apparently some people get confused by this.
* [commands] Missing an extra ] in the documented return type.Rapptz2019-04-191-1/+1
|
* [commands] Allow passing cls to the commands.group decoratorVexs2019-04-191-3/+8
|
* Add reason to TextChannel.create_webhookRapptz2019-04-182-4/+10
| | | | | The reason parameter does not work with webhook deletes or edits so they're not added. Probably a Discord bug.
* Add abc.GuildChannel.clone to clone a channel with another name.Rapptz2019-04-182-0/+71
| | | | Fixes #2093
* Add note about overriding Client.close vs Client.logoutRapptz2019-04-181-0/+6
|
* Add versionchanged to Message.deleteRapptz2019-04-181-0/+3
|
* [commands] Update default on_command_errorsirtezza4512019-04-181-2/+1
|
* Add delay kwarg to message.delete()Vexs2019-04-182-17/+20
| | | | Refactor delete_after kwargs to use new delay kwarg
* Add support for <:name:id> format for adding reactionsVexs2019-04-171-1/+3
| | | | Adjust FAQ to match.
* add read-only cached_messages property to Clientkhazhyk2019-04-172-0/+35
| | | | For those of us who want access to this sweet trove of zero hop messages
* [commands] Add new MessageConverter to commands prose page.Rapptz2019-04-171-4/+6
|
* [commands] Add MessageConverter to fetch messages by URL or ID.retke2019-04-171-1/+36
|
* Remove legacy nsfw check.Rapptz2019-04-161-6/+3
|
* Make discord --version a bit more helpful.Rapptz2019-04-161-4/+24
|
* Remove Python 3.5 check in __main__.pyRapptz2019-04-161-7/+1
|
* Improve performance of value -> enum by about 5x.Rapptz2019-04-153-4/+57
|
* [tasks] Fix assignment of tuple when appendingDanny2019-04-151-1/+1
|
* Fix UnboundLocalError when RequestsWebhookAdapter raises an error.Rapptz2019-04-151-1/+4
|
* Add notes to all relationship endpoints that they don't work on bots.Rapptz2019-04-141-10/+74
|
* Internal consistency with message related HTTPClient methodsRapptz2019-04-144-16/+16
|
* Bump version to 1.1.0aRapptz2019-04-141-2/+2
|
* Add compute_prune_count to Guild.prune_membersRapptz2019-04-142-7/+14
| | | | Fix #2085
* [commands] Use message creation as the reference time in cooldownsRapptz2019-04-141-1/+3
|
* [commands] Allow passing reference time to update_rate_limitRapptz2019-04-141-2/+2
|
* Fix abc.GuildChannel.overwrites returning None keys.Rapptz2019-04-141-1/+8
| | | | | This has potential for data loss as a consequence of how the function works.
* Fix attribute error in Widget.__repr__Rapptz2019-04-131-1/+1
|
* Add equality comparisons between two assets and hashing an asset.Rapptz2019-04-131-0/+21
|
* Bool fix in TextChannel.purge documentation.Lorenzo2019-04-131-1/+1
|
* [commands] Support callables in Greedy converterRapptz2019-04-131-1/+1
|
* [commands] Fix lambda converters in non-module contexts.Rapptz2019-04-131-1/+1
| | | | Not sure why anyone would do this but might as well fix it.
* Change slowmode max value in docsapple502j2019-04-131-1/+1
|
* Add `Permissions.stream`NCPlayz2019-04-121-3/+10
| | | | Add stream to Permissions classmethods
* [tasks] set internal task to None after cancelingSteve C2019-04-121-0/+1
|
* [tasks] Add before_loop and after_loop decoratorsRapptz2019-04-121-16/+79
|
* [commands] Add versionadded to dm_onlyRapptz2019-04-121-0/+2
|
* [tasks] Ensure total number of seconds is not less than 0.Rapptz2019-04-111-3/+6
|
* [tasks] Rename Loop.run to Loop.start to avoid blocking connotationsRapptz2019-04-111-3/+3
|
* [tasks] Add a new background helper 'tasks' extension.Rapptz2019-04-111-0/+209
|
* [commands] Fix erroneous string in dm_only checkRapptz2019-04-111-1/+1
|
* [commands] Added dm_only checkDante Dam2019-04-112-7/+29
| | | | Raises PrivateMessageOnly on failure.
* [commands] Fix references in Bot to actually link.Rapptz2019-04-102-70/+64
| | | | Exceptions can't seem to link due to a bug in Sphinx.
* Version bump to v1.0.1Rapptz2019-04-101-2/+2
|
* [commands] Properly name heading for ExtensionErrorRapptz2019-04-101-2/+2
|
* Fix voice handshake race conditionImayhaveborkedit2019-04-101-0/+10
| | | In the event that two voice_server_updates are received in a short time frame, the second one is now ignored.
* Add notes warning that fetch_ methods are api callsVexs2019-04-102-0/+25
| | | | Also recommends using cache attributes/methods instead
* Fix various bugs with Asset._url None handling.Rapptz2019-04-091-2/+4
|
* Fix cleanup code on Linux not working properly.Rapptz2019-04-091-9/+17
|
* Stop the event loop if it's running during cleanup.Rapptz2019-04-091-1/+8
| | | | Also handle the coroutine directly instead of using run_until_complete
* Use is_connected() instead of _connected in checksDaniel2019-04-091-2/+2
| | | Was doing a falsy check on an Event object instead of using the (unused) is_connected() function.