| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [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 |
| | | |||||
| * | [commands] BadBooleanArgument -> BadBoolArgument | Rapptz | 2020-09-04 | 2 | -3/+3 |
| | | |||||
| * | [commands] Add subclasses of BadArgument for converters | Simon Beal | 2020-09-04 | 3 | -17/+237 |
| | | |||||
| * | [commands] Added ColorConverter alias | parafoxia | 2020-08-31 | 1 | -0/+5 |
| | | |||||
| * | [tasks] Don't update _next_iteration on retry | Josh | 2020-08-28 | 1 | -2/+7 |
| | | |||||
| * | [commands] Use edited timestamp if provided for cooldown timing | Rapptz | 2020-08-25 | 1 | -3/+6 |
| | | |||||
| * | [commands] implement HelpCommand.add/remove_check | Riley S | 2020-08-05 | 1 | -0/+43 |
| | | |||||
| * | [commands] Provide a way to retrieve time left for a cooldown | Dan Hess | 2020-08-05 | 2 | -1/+34 |
| | | |||||
| * | [commands] Restart subcommand_passed chain on invoke | Rapptz | 2020-08-05 | 1 | -0/+2 |
| | | | | | Fix #5198 | ||||
| * | [tasks] Remove HTTPException as an exception to silently continue for | Dan Hess | 2020-08-05 | 1 | -1/+0 |
| | | |||||
| * | Rewrite gateway to use aiohttp instead of websockets | Rapptz | 2020-07-25 | 1 | -3/+0 |
| | | |||||
| * | Add revisions to check_once docs | Jaime Garcia Jr | 2020-07-24 | 2 | -4/+6 |
| | | |||||
| * | Add documentation on bot_check_once | Jaime Garcia Jr | 2020-07-23 | 1 | -0/+4 |
| | | |||||
| * | [commands] Add documentation for exceptions in Context.(re)invoke | SebbyLaw | 2020-07-22 | 1 | -0/+10 |
| | | |||||
| * | [commands] GroupView.get_command shouldn't raise errors for empty names | jack1142 | 2020-07-22 | 1 | -0/+2 |
| | | |||||
| * | Document raises for Converter.convert | James | 2020-07-08 | 1 | -0/+8 |
| | | |||||
| * | Add a licence and encoding declaration to missing files | James | 2020-07-08 | 1 | -0/+26 |
| | | |||||
| * | [commands] Raise TypeError when Optional is used with Greedy converter | Sebastian Law | 2020-06-28 | 1 | -0/+4 |
| | | |||||
| * | [tasks] Fix issue with default error handler in class context | Josh | 2020-06-28 | 1 | -1/+2 |
| | | |||||
| * | [commands] Add a new exception class for command registration errors | jack1142 | 2020-06-28 | 2 | -5/+30 |
| | | |||||
| * | Fix various inconsistencies within the documentation (#5067) | Sebastian Law | 2020-06-28 | 6 | -47/+76 |
| | | |||||
| * | Prepare for the discord.com domain rename | Rapptz | 2020-05-23 | 1 | -1/+1 |
| | | |||||
| * | Aliases passed as a list or as a tuple | Saphielle Akiyama | 2020-05-10 | 1 | -2/+2 |
| | | | | Nothing too important, felt like some people would appreciate it; | ||||
| * | [tasks] Allow Loop.cancel in Loop.before_loop | Steve C | 2020-05-10 | 1 | -0/+1 |
| | | | | | | Task cancel raises on the next awaited coro, so I've added this 0-sleep "hack" I'm internally debating if leaving the comment there, but I'm sure it would confuse the uninformed of this trick. | ||||
| * | [commands] Document that cog_command_error must be async | Xua | 2020-05-10 | 1 | -2/+2 |
| | | |||||
| * | Escape backslashes in display name in `clean_prefix` | jack1142 | 2020-05-07 | 1 | -1/+1 |
| | | |||||
| * | [tasks] Fix tasks decorators being discarded | Steve C | 2020-05-07 | 1 | -0/+3 |
| | | | | | | At this moment, when a task seems to be first loaded, it immediately throws away the decorators you give it, and just generates a new instance of itself. In your cog's `__init__`, once you do `self.my_task.start()`, the Loop is remade when it gets to `self.my_task` before executing the `start` function. The original Loop that the cog starts with is where the decorated values are. This fixes that. | ||||
| * | [tasks] Replace stack-based implementation with a cleaner one. | Rapptz | 2020-04-14 | 1 | -37/+6 |
| | | |||||
| * | [tasks] Create different Loop objects for different instances | Rapptz | 2020-04-14 | 1 | -2/+44 |
| | | | | | Fixes #2294 | ||||
| * | [commands] Raise CheckFailure if all bot "check once" fail | Rapptz | 2020-04-06 | 1 | -0/+2 |
| | | | | | Fix #2643 | ||||
| * | [commands] Stop yielding duplicate commands from walk_commands | MarkKoz | 2020-04-06 | 1 | -2/+6 |
| | | |||||
| * | Allow for optional custom error handler in tasks extension | Josh B | 2020-04-04 | 1 | -6/+38 |
| | | |||||
| * | Remove extra to in tasks docs | Epic | 2020-04-04 | 1 | -1/+1 |
| | | |||||
| * | [tasks] Add is_running property to Loop | James | 2020-04-04 | 1 | -0/+7 |
| | | |||||
| * | [commands] Implement `commands.before/after_invoke` | NCPlayz | 2020-04-04 | 1 | -8/+97 |
| | | |||||
| * | [commands] Fix a typo in the docstring of the internal _Semaphore class | s0lst1ce | 2020-04-04 | 1 | -1/+1 |
| | | |||||
| * | [commands] Raise when passing invalid permission keys in their checks | Rapptz | 2020-02-02 | 1 | -4/+24 |
| | | |||||
| * | Import ABC from collections.abc instead of collections | Karthikeyan Singaravelan | 2020-01-25 | 1 | -1/+1 |
| | | | | | This is for Python 3.9 compatibility. | ||||
| * | Fix warnings regarding invalid escape sequences. | Karthikeyan Singaravelan | 2020-01-25 | 1 | -1/+1 |
| | | |||||
| * | Fixes and improvements for v1.3 documentation | Harmon | 2020-01-22 | 1 | -2/+5 |
| | | | | | | | | | | * Add missing versionadded strings for v1.3 * Add missing versionchanged string for Message.edit * Consistently use versionadded for attributes * Consistently use versionchanged for parameters * Use versionchanged for Bot.is_owner * Fix references in v1.3 changelog * Improve grammar in v1.3 changelog | ||||
| * | Improve usability of utils.sleep_until | Josh B | 2020-01-21 | 1 | -6/+0 |
| | | | | | | | | | | Fix issue where sleeping for an extended period on python 3.5 would cause an exception Add sleep_until to API docs Add result argument to sleep_until | ||||
| * | [commands] Only clean semaphore when there are no waiters | Rapptz | 2020-01-21 | 1 | -1/+4 |
| | | |||||