| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [commands] Add Bot.check_once for a global check that is called once. | Rapptz | 2017-06-20 | 2 | -12/+77 |
| | | | | | | | | There is a counterpart for this in cogs, called __global_check_once. This allows for predicates that would filter a command globally that do not necessarily require rechecking in the case of e.g. the help command such as blocking users or blocking channels. | ||||
| * | Fix passing None to afk_channel in Guild.edit. | Rapptz | 2017-06-19 | 1 | -3/+11 |
| | | |||||
| * | [commands] Try to use the proper name when conversion fails. | Rapptz | 2017-06-17 | 1 | -1/+6 |
| | | |||||
| * | Properly quote reason header so non-ASCII works in audit log reasons. | Rapptz | 2017-06-17 | 1 | -1/+2 |
| | | |||||
| * | Make checking for truth-ness of EmbedProxy easier. | Rapptz | 2017-06-16 | 1 | -0/+3 |
| | | |||||
| * | [commands] Fix cog error detection in the default global error handler. | Rapptz | 2017-06-13 | 1 | -1/+1 |
| | | |||||
| * | [commands] Don't display default error handler if a cog local exists. | Rapptz | 2017-06-12 | 1 | -2/+8 |
| | | |||||
| * | Fix format string in documentation. | Rapptz | 2017-06-12 | 1 | -1/+1 |
| | | |||||
| * | Downgrade PartialReactionEmoji to str in non-raw reaction events. | Rapptz | 2017-06-09 | 1 | -1/+4 |
| | | |||||
| * | Defer logging formatting until the logger is actually called. | Rapptz | 2017-06-09 | 6 | -19/+17 |
| | | | | | | This would cause unnecessary format calls even if you didn't have logging enabled. | ||||
| * | Implement "partial" message events. | Rapptz | 2017-06-09 | 7 | -26/+178 |
| | | | | | | These are events that get triggered regardless of the state of the message cache. Useful for getting data from before the bot was booted. | ||||
| * | Allow sending files list smaller than 2 elements in Messageable.send | BeatButton | 2017-06-07 | 1 | -4/+3 |
| | | | | | The previous restriction was unwarranted. | ||||
| * | Fix mixed order in migrating docs. | Rapptz | 2017-06-05 | 1 | -1/+1 |
| | | |||||
| * | [commands] Add docstrings for extension loading. | Rapptz | 2017-06-05 | 1 | -0/+42 |
| | | |||||
| * | Fix AuditLogDiff.__iter__ to return an actual iterable. | Rapptz | 2017-06-04 | 1 | -1/+1 |
| | | | | | Fixes #589. | ||||
| * | Fix typing/history showing up twice in the documentation. | Rapptz | 2017-06-03 | 2 | -7/+7 |
| | | |||||
| * | Fix mistake in migrating docs. | Rapptz | 2017-06-02 | 1 | -1/+1 |
| | | |||||
| * | Log when a player's after function fails. | Rapptz | 2017-06-02 | 1 | -1/+4 |
| | | |||||
| * | Fix FAQ to showcase that there is a single parameter, the error. | Rapptz | 2017-06-02 | 1 | -1/+1 |
| | | |||||
| * | [commands] Allow inline advanced converters via classmethods. | Rapptz | 2017-06-01 | 1 | -4/+10 |
| | | | | | | That way you don't need to have, e.g. Foo and FooConverter and can do it inline via Foo instead. | ||||
| * | Minor fix in migrating page. | Rapptz | 2017-05-31 | 1 | -1/+1 |
| | | |||||
| * | Add some margin for supported operations sections. | Rapptz | 2017-05-31 | 1 | -0/+1 |
| | | |||||
| * | Support for sending a nonce. | Rapptz | 2017-05-31 | 2 | -6/+15 |
| | | |||||
| * | Don't assume the inviter is always there. | Rapptz | 2017-05-31 | 1 | -1/+4 |
| | | |||||
| * | Document Message.embeds and Message.attachments changes. | Rapptz | 2017-05-31 | 1 | -0/+3 |
| | | |||||
| * | Writing to files is 'wb' not 'rb'. | Rapptz | 2017-05-30 | 1 | -1/+1 |
| | | |||||
| * | Export Attachment class. | Rapptz | 2017-05-30 | 1 | -1/+1 |
| | | |||||
| * | Implement an Attachment model. | Rapptz | 2017-05-30 | 3 | -4/+92 |
| | | |||||
| * | Remove unused functions in HTTPClient. | Rapptz | 2017-05-30 | 1 | -15/+0 |
| | | |||||
| * | [commands] Add escape_markdown parameter for clean_content. | Rapptz | 2017-05-28 | 1 | -1/+16 |
| | | |||||
| * | Permissions.view_audit_logs -> Permissions.view_audit_log | Rapptz | 2017-05-28 | 2 | -3/+7 |
| | | |||||
| * | Rename verification level to extreme due to demand. | Rapptz | 2017-05-27 | 2 | -3/+3 |
| | | |||||
| * | Add highest verification level. | Rapptz | 2017-05-27 | 2 | -5/+14 |
| | | |||||
| * | [commands] Fix EmojiConverter not working with underscore names. | Rapptz | 2017-05-26 | 1 | -3/+3 |
| | | |||||
| * | Don't expose Client.messages | Rapptz | 2017-05-26 | 3 | -19/+10 |
| | | | | | | | | Not entirely sure why it was exposed in the first place. Most uses with it essentially boiled down to mis-usage when they meant to use the /messages endpoint (via Client.logs_from or Messageable.history) or complaining about the partial data woes that came from it. | ||||
| * | Less unnecessary padding around functions. | Rapptz | 2017-05-25 | 1 | -2/+6 |
| | | |||||
| * | Log when a KeyboardInterrupt is met in Client.run | Rapptz | 2017-05-25 | 1 | -1/+1 |
| | | |||||
| * | Mention User.avatar_url change in migration page. | Rapptz | 2017-05-25 | 1 | -0/+4 |
| | | |||||
| * | Document that exceptions happen in Guild.audit_logs. | Rapptz | 2017-05-25 | 1 | -0/+7 |
| | | |||||
| * | Mention on_member_ban event change. | Rapptz | 2017-05-23 | 1 | -0/+13 |
| | | |||||
| * | Working fix for one of the bullet points. | Rapptz | 2017-05-23 | 1 | -1/+1 |
| | | | | | Thanks Pirate. | ||||
| * | Don't dispatch on_voice_state_update when Member is not found. | Rapptz | 2017-05-22 | 1 | -1/+3 |
| | | |||||
| * | Add ref links to the commands API page. | Rapptz | 2017-05-22 | 1 | -0/+14 |
| | | |||||
| * | Use Python3Lexer instead of PythonLexer for pygments. | Rapptz | 2017-05-22 | 10 | -37/+37 |
| | | |||||
| * | Raise when an invalid permission is passed to PermissionOverwrite. | Rapptz | 2017-05-20 | 1 | -0/+3 |
| | | |||||
| * | Allow setting a presence upon logging in. | Rapptz | 2017-05-20 | 3 | -1/+29 |
| | | |||||
| * | Rewrite Client.run yet again. | Rapptz | 2017-05-20 | 1 | -16/+32 |
| | | | | | This time it should definitely fix #545. | ||||
| * | Re-raise exceptions from Client.start in Client.run. | Rapptz | 2017-05-20 | 1 | -15/+18 |
| | | |||||
| * | Re-implement how Client.run is done by using run_forever instead. | Rapptz | 2017-05-20 | 1 | -4/+18 |
| | | |||||
| * | Only do loop cleanup in finally block when on windows. | Rapptz | 2017-05-20 | 1 | -2/+4 |
| | | | | | Should also fix #545. | ||||