| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [commands] Add support for stripping whitespace after the prefix | Rapptz | 2021-03-28 | 1 | -0/+10 |
| | | | | | This is configured with the strip_after_prefix option in `Bot.__init__` | ||||
| * | [commands] Remove nullability from help command implementation | Rapptz | 2021-03-28 | 1 | -16/+3 |
| | | | | | Fixes #5154 | ||||
| * | Add remove_markdown helper function | Edwin | 2021-03-28 | 1 | -1/+8 |
| | | |||||
| * | [commands] Only remove top level commands on cog load failure | Rapptz | 2021-03-28 | 1 | -1/+2 |
| | | |||||
| * | [commands] allow arbitrary callables in cooldown | Mikey | 2021-03-28 | 2 | -5/+11 |
| | | |||||
| * | [commands] fix documented type for Command.checks | Sebastian Law | 2021-03-24 | 1 | -1/+1 |
| | | |||||
| * | [commands] Include group args in command signature | jack1142 | 2021-03-24 | 1 | -4/+13 |
| | | |||||
| * | [commands] fix Context.channel property documented type | Sebastian Law | 2021-03-13 | 1 | -2/+2 |
| | | |||||
| * | Fix references to snowflakes being max 21 long | Nihaal Sangha | 2021-03-02 | 1 | -4/+4 |
| | | |||||
| * | [tasks] remove redundant condition in Loop.next_iteration | Sebastian Law | 2021-02-28 | 1 | -1/+1 |
| | | | | | | | | | self._task is only None if the Loop has never been started before, which means None should be returned always, regardless of how many seconds was passed into the constructor this didn't break anything before because self._next_iteration will be None as well if self._task is None. | ||||
| * | Code optimisations and refactoring via Sourcery | Nadir Chowdhury | 2021-02-24 | 5 | -12/+10 |
| | | |||||
| * | Fix NameError with invoked_parents | Nadir Chowdhury | 2021-02-24 | 1 | -0/+1 |
| | | |||||
| * | [commands] Added tribool behaviour to HelpCommand.verify_checks | sudosnok | 2021-02-24 | 1 | -3/+11 |
| | | |||||
| * | [commands] properly assign ctx.invoked_with with ctx. | Sebastian Law | 2021-02-23 | 1 | -1/+1 |
| | | | | | resolves #6461 | ||||
| * | [commands] Add Context.invoked_parents | Sebastian Law | 2021-02-23 | 2 | -0/+15 |
| | | |||||
| * | [commands] Allow relative paths when handling extensions | Kaylynn Morgan | 2021-02-23 | 1 | -3/+37 |
| | | |||||
| * | [tasks] make __call__ actually appear in the docs | Sebastian Law | 2021-02-21 | 1 | -1/+1 |
| | | |||||
| * | [commands] Handle positional-only parameters in bot commands | Bryan Forbes | 2021-02-17 | 1 | -2/+2 |
| | | |||||
| * | [commands] Add support for rgb function in ColourConverter | Rapptz | 2021-02-07 | 1 | -11/+58 |
| | | | | | | | This also adds support for 3 digit hex. Fixes #6374 | ||||
| * | [commands] Add discord.Guild converter and GuildNotFound error | Alex Nørgaard | 2021-02-07 | 2 | -1/+45 |
| | | | | | | | | * Add discord.Guild converter and GuildNotFound error * note for lack of disambiguation in Guilds with duplicate names, and removed the possibility of returning None * edited converter to use `utils.get` over `utils.find` and docs edited with Converter and Exception. | ||||
| * | [commands] Fix documented type of `Context.cog` | Jonas Bohmann | 2021-01-24 | 1 | -1/+1 |
| | | |||||
| * | [commands] Add linesep kwarg to Paginator | PikalaxALT | 2021-01-17 | 1 | -9/+17 |
| | | |||||
| * | [commands] Fix Command duplicates in `HelpCommand.get_bot_mapping` | Alex Nørgaard | 2021-01-16 | 1 | -1/+1 |
| | | |||||
| * | [commands] Add Command/Cog.has_error_handler | Rapptz | 2021-01-15 | 2 | -0/+14 |
| | | | | | | This allows querying the state without relying on internal undocumented attributes. | ||||
| * | Change copyright year to present | Nihaal Sangha | 2021-01-15 | 12 | -12/+12 |
| | | |||||
| * | [commands] Add PartialMessageConverter | Josh | 2021-01-15 | 1 | -13/+35 |
| | | |||||
| * | Fix documented type of `Command.usage` | jack1142 | 2021-01-14 | 1 | -1/+1 |
| | | |||||
| * | [commands] Correct ChannelNotFound docstring | BeatButton | 2021-01-12 | 1 | -1/+1 |
| | | |||||
| * | [commands] fully remove command when CommandRegistrationError is raised for ↵ | Sebastian Law | 2020-12-29 | 1 | -1/+7 |
| | | | | | alias | ||||
| * | [commands] Correct concurrency never releasing during prepare call | Dan Hess | 2020-12-26 | 1 | -7/+12 |
| | | |||||
| * | [commands] max_concurrency comes before cooldowns | Rapptz | 2020-12-17 | 1 | -3/+3 |
| | | | | | Fix #6172 | ||||
| * | [tasks] Fix a typo in documentation | Rapptz | 2020-12-14 | 1 | -1/+1 |
| | | |||||
| * | [tasks] Add support for manually calling the wrapped coroutine | Rapptz | 2020-12-14 | 1 | -0/+20 |
| | | |||||
| * | [commands] Added in missing channel links | Ben Skerritt | 2020-12-07 | 1 | -1/+1 |
| | | |||||
| * | [commands] Cog unload failures are swallowed. | Rapptz | 2020-12-03 | 1 | -1/+4 |
| | | | | | Fix #6113 | ||||
| * | [chore] Remove redundant imports | Nadir Chowdhury | 2020-11-28 | 1 | -2/+1 |
| | | | | This also removes the historical patch for NullHandler implemented in bbf1c54, as it has been available since Python 3.1. | ||||
| * | Implement discord.Message.reply | PikalaxALT | 2020-11-26 | 1 | -0/+5 |
| | | |||||
| * | [commands] Allow setting description of cogs | SebbyLaw | 2020-11-26 | 1 | -5/+15 |
| | | |||||
| * | [commands] Fetch user if an ID is passed and cache lookup fails. | Rapptz | 2020-11-23 | 1 | -18/+29 |
| | | |||||
| * | Fix error with templates not having access to member cache flags. | Rapptz | 2020-11-21 | 1 | -2/+2 |
| | | | | | | | This also changes the attribute from having an underscore Fix #5986 | ||||
| * | [commands] Update MessageConverter link regex | Jonathan Feenstra | 2020-11-21 | 1 | -4/+3 |
| | | | | | Remove redundant parts of the MessageConverter regexes and support www | ||||
| * | [commands] Lazily fetch members in discord.Member converters | Rapptz | 2020-10-17 | 1 | -1/+46 |
| | | | | | | This makes commands taking members mostly work transparently without much effort from the user. | ||||
| * | Implement VoiceProtocol lower level hooks. | Rapptz | 2020-09-23 | 1 | -1/+1 |
| | | | | | | This allows changing the connect flow and taking control of it without relying on internal events or tricks. | ||||
| * | Fix and add documentation | Michael | 2020-09-23 | 5 | -9/+45 |
| | | |||||
| * | [tasks] Lazily fetch event loop if one isn't provided | Rapptz | 2020-09-10 | 1 | -1/+4 |
| | | | | | Fixes #5808 | ||||
| * | [commands] Correct command removing during cog injecting | Dan Hess | 2020-09-09 | 1 | -1/+1 |
| | | |||||
| * | [commands] Fix exception raised in Command invoke hooks. | Josh | 2020-09-09 | 1 | -19/+11 |
| | | |||||
| * | [commands] Update Bot.command() decorator docs | Skye Im | 2020-09-07 | 1 | -0/+5 |
| | | |||||
| * | [docs] remove unresolved doc refs, fix attribute ref | Nadir Chowdhury | 2020-09-07 | 1 | -1/+1 |
| | | |||||
| * | [commands] add require_var_positional | khazhyk | 2020-09-07 | 1 | -1/+13 |
| | | |||||