| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [tasks] Reset iteration count when loop terminates. | Rapptz | 2019-05-12 | 1 | -0/+1 |
| | | |||||
| * | [commands] Explicitly assign invoked_subcommand to None before invoking | Rapptz | 2019-05-11 | 1 | -0/+2 |
| | | | | | | This should fix instances of it not working as expected in nested groups. | ||||
| * | Fix typo in Loop.restart documentation | Steve C | 2019-05-10 | 1 | -1/+1 |
| | | |||||
| * | [tasks] Add Loop.restart | Rapptz | 2019-05-10 | 1 | -1/+28 |
| | | | | | | | | This implementation waits until the task is done before starting it again. Closes #2075 | ||||
| * | [commands] MinimalHelpCommand: add cog description | Benjamin Mintz | 2019-05-09 | 1 | -0/+3 |
| | | |||||
| * | [commands] Better note for Command.invoke | Rapptz | 2019-05-05 | 1 | -6/+11 |
| | | |||||
| * | [tasks] Add way to query cancellation state for Loop.after_loop | Rapptz | 2019-04-30 | 1 | -8/+20 |
| | | | | | Fixes #2121 | ||||
| * | [commands] Fix MessageConverter not inheriting from Converter | Rapptz | 2019-04-29 | 1 | -1/+1 |
| | | | | | Closes #2126 | ||||
| * | [tasks] Remove support for awaitables due to gotchas. | Rapptz | 2019-04-29 | 1 | -17/+17 |
| | | | | | Fixes #2079 | ||||
| * | [commands] Fix Context.send_help to work with the copied HelpCommand | Rapptz | 2019-04-29 | 1 | -0/+2 |
| | | |||||
| * | [commands] Copy HelpCommand instances to prevent race conditions. | Rapptz | 2019-04-29 | 1 | -29/+52 |
| | | | | | | | | | Fixes #2123 Slight breaking change if someone had an expectation that no copies were made behind the scene (which is sensible), however writing code that relies on this expectation is probably buggy anyway. | ||||
| * | [commands] Allow passing `current` to more cooldown mapping methods. | Rapptz | 2019-04-24 | 2 | -5/+9 |
| | | | | | Also adds a CooldownMapping.update_rate_limit helper function. | ||||
| * | [commands] Allow passing of a message to NoPrivateMessage again. | Rapptz | 2019-04-20 | 2 | -4/+5 |
| | | | | | Prevents an accidental breaking change. | ||||
| * | [commands] DM channels are NSFW in commands.is_nsfw check. | Rapptz | 2019-04-20 | 1 | -2/+3 |
| | | |||||
| * | Consistent use of __all__ to prevent merge conflicts. | Rapptz | 2019-04-20 | 6 | -24/+82 |
| | | |||||
| * | [commands] Clean docstrings in Command.parents and Command.root_parent | Rapptz | 2019-04-20 | 1 | -7/+3 |
| | | |||||
| * | [commands] Consistently mention inheritance of exceptions. | Rapptz | 2019-04-20 | 1 | -12/+45 |
| | | |||||
| * | [commands] Add Command.parents | Vexs | 2019-04-20 | 1 | -8/+22 |
| | | | | | Make command.root_parent use new command.parents property | ||||
| * | [commands] Add custom exception classes for built-in checks | Vexs | 2019-04-20 | 2 | -47/+217 |
| | | | | | | | | | Added: * MissingRole * BotMissingRole * MissingAnyRole * BotMissingAnyRole | ||||
| * | [commands] Missing an extra ] in the documented return type. | Rapptz | 2019-04-19 | 1 | -1/+1 |
| | | |||||
| * | [commands] Allow passing cls to the commands.group decorator | Vexs | 2019-04-19 | 1 | -3/+8 |
| | | |||||
| * | [commands] Update default on_command_error | sirtezza451 | 2019-04-18 | 1 | -2/+1 |
| | | |||||
| * | [commands] Add new MessageConverter to commands prose page. | Rapptz | 2019-04-17 | 1 | -4/+6 |
| | | |||||
| * | [commands] Add MessageConverter to fetch messages by URL or ID. | retke | 2019-04-17 | 1 | -1/+36 |
| | | |||||
| * | [tasks] Fix assignment of tuple when appending | Danny | 2019-04-15 | 1 | -1/+1 |
| | | |||||
| * | [commands] Use message creation as the reference time in cooldowns | Rapptz | 2019-04-14 | 1 | -1/+3 |
| | | |||||
| * | [commands] Allow passing reference time to update_rate_limit | Rapptz | 2019-04-14 | 1 | -2/+2 |
| | | |||||
| * | [commands] Support callables in Greedy converter | Rapptz | 2019-04-13 | 1 | -1/+1 |
| | | |||||
| * | [commands] Fix lambda converters in non-module contexts. | Rapptz | 2019-04-13 | 1 | -1/+1 |
| | | | | | Not sure why anyone would do this but might as well fix it. | ||||
| * | [tasks] set internal task to None after canceling | Steve C | 2019-04-12 | 1 | -0/+1 |
| | | |||||
| * | [tasks] Add before_loop and after_loop decorators | Rapptz | 2019-04-12 | 1 | -16/+79 |
| | | |||||
| * | [commands] Add versionadded to dm_only | Rapptz | 2019-04-12 | 1 | -0/+2 |
| | | |||||
| * | [tasks] Ensure total number of seconds is not less than 0. | Rapptz | 2019-04-11 | 1 | -3/+6 |
| | | |||||
| * | [tasks] Rename Loop.run to Loop.start to avoid blocking connotations | Rapptz | 2019-04-11 | 1 | -3/+3 |
| | | |||||
| * | [tasks] Add a new background helper 'tasks' extension. | Rapptz | 2019-04-11 | 1 | -0/+209 |
| | | |||||
| * | [commands] Fix erroneous string in dm_only check | Rapptz | 2019-04-11 | 1 | -1/+1 |
| | | |||||
| * | [commands] Added dm_only check | Dante Dam | 2019-04-11 | 2 | -7/+29 |
| | | | | | Raises PrivateMessageOnly on failure. | ||||
| * | [commands] Fix references in Bot to actually link. | Rapptz | 2019-04-10 | 1 | -5/+2 |
| | | | | | Exceptions can't seem to link due to a bug in Sphinx. | ||||
| * | [commands] Properly name heading for ExtensionError | Rapptz | 2019-04-10 | 1 | -2/+2 |
| | | |||||
| * | [commands] Raise TypeError instead of ClientException in some places | Rapptz | 2019-04-07 | 2 | -18/+18 |
| | | | | | | | | Certain decorators and functions expect coroutines and raise an exception when this is not met. Change these to raise the appropriate TypeError since they can't actually be handled by the user gracefully anyway. | ||||
| * | [commands] Remove extraneous `or` | Rapptz | 2019-04-06 | 1 | -1/+1 |
| | | |||||
| * | [commands] Fix HelpCommand.invoked_with when used in events. | Rapptz | 2019-04-06 | 1 | -2/+3 |
| | | |||||
| * | Add helpers to escape markdown and mentions from text. | Rapptz | 2019-04-06 | 1 | -6/+2 |
| | | | | | Fixes #1673 | ||||
| * | [commands] Disallow bot_ or cog_ commands or listeners in cogs. | Rapptz | 2019-04-06 | 1 | -1/+5 |
| | | |||||
| * | [commands] Raise BadArgument in ColourConverter when using from_hsv/rgb | Rapptz | 2019-04-06 | 1 | -2/+3 |
| | | | | | Fixes #2043 | ||||
| * | Only escape characters as necessary in clean_content | CapnS | 2019-04-06 | 1 | -10/+5 |
| | | | | | Fixes #1885 | ||||
| * | Redesign asset retrieval in the library. | NCPlayz | 2019-04-06 | 1 | -1/+2 |
| | | | | | | | | | | | | Most assets now return a new class named `Asset`. This allows for the assets to be consistently saved via a `save` method instead of special casing for `Attachment`. `AppInfo` is no longer a namedtuple it is a fully documented dataclass, as well as having the state attached to it. Fixes #1997 | ||||
| * | [commands] Fix MinimalHelpCommand opening note signature consistency | Rapptz | 2019-03-24 | 1 | -4/+4 |
| | | |||||
| * | [commands] Double underscore some attributes. | Rapptz | 2019-03-24 | 1 | -16/+16 |
| | | |||||
| * | [commands] Add HelpCommand.invoked_with | Rapptz | 2019-03-24 | 1 | -2/+22 |
| | | | | | | This fixes an issue where the context invoked_with does not match the actual invoked with behaviour (e.g. using Context.send_help). | ||||