aboutsummaryrefslogtreecommitdiff
path: root/discord/ext/commands
Commit message (Expand)AuthorAgeFilesLines
* [commands] Fix bug where Context.command would not update.Rapptz2016-06-042-1/+2
* [commands] Fix bug where subgroups would be repeatedly called.Rapptz2016-06-041-2/+6
* [commands] Cleanup Command.invoke code due to exception propagation.Rapptz2016-06-041-14/+8
* [commands] Dispatch command_error on command exec error.Khazhismel Kumykov2016-06-042-64/+81
* [commands] Delete frame objects when done using them.Rapptz2016-05-311-3/+7
* [commands] Add support for self-bots.Rapptz2016-05-311-2/+8
* [commands] Fix when_mentioned when handling nicknames.Rapptz2016-05-011-1/+4
* [commands] Allow role mentions to work with discord.Role params.Rapptz2016-04-291-2/+6
* Begin working on gateway v4 support.Rapptz2016-04-272-3/+3
* [commands] Make sure that mentions are the entire string.Rapptz2016-04-231-2/+2
* [commands] CommandError derived exceptions in checks don't crash help.Rapptz2016-04-131-1/+5
* [commands] Add deterministic cog unloading.Rapptz2016-04-041-0/+10
* [commands] Fix pagination logic a little inside HelpFormatter.Rapptz2016-04-021-10/+10
* [commands] Refactor special cased discord.py converters.Rapptz2016-04-011-40/+77
* [commands] Don't yield from inside bot utility functions.Rapptz2016-03-311-14/+5
* [commands] Fix infinite recursion on subgroups without a command.Will Tekulve2016-03-311-1/+1
* [commands] Add bot decorators into __all__.Rapptz2016-03-111-1/+2
* [commands] Add when_mentioned_or helper to have mentions and prefixes.Rapptz2016-03-052-1/+22
* [commands] Fix typo in Bot.upload docstring.Rapptz2016-03-021-1/+1
* [commands] Fix NameError in bot_has_permissions.Rapptz2016-03-021-1/+1
* [commands] bot_has_permissions decorator actually checks for bot.Rapptz2016-03-021-1/+1
* [commands] Do not swallow AttributeErrors raised by the setup functionRapptz2016-02-241-4/+3
* [commands] Helper functions now take *args and **kwargs.Rapptz2016-02-181-30/+24
* [commands] Raise RuntimeError instead of StopIteration.Rapptz2016-02-061-2/+3
* [commands] Fix crash when a group has no commands and help is requestedRapptz2016-01-301-1/+3
* [commands] Change signature convention to use POSIX standards.Rapptz2016-01-291-4/+9
* [commands] Raise TypeError if the name is not a string.Rapptz2016-01-291-0/+3
* [commands] Context.invoke will now return what the command returns.Rapptz2016-01-281-1/+2
* [commands] Context.invoke just invokes a command with no special case.Rapptz2016-01-281-5/+33
* [commands] Fix typo on HelpFormatter.show_check_failure attribute.Rapptz2016-01-271-5/+5
* [commands] Fix discord.Invite special case handling in parameters.Rapptz2016-01-241-10/+16
* [commands] Allow setting the bot error messages in the help command.Rapptz2016-01-231-4/+15
* [commands] Add Bot.help_attrs to customise the help command.Rapptz2016-01-232-4/+18
* [commands] Change Bot.pm_help to be an optional bool.Rapptz2016-01-231-4/+14
* [commands] Add Command.no_pm attribute to block a command in PM.Rapptz2016-01-221-0/+10
* [commands] help command now uses the full name in the signature.Rapptz2016-01-171-3/+19
* [commands] Fix indentation error in commands.bot_has_role docstring.Rapptz2016-01-161-2/+3
* [commands] Add checks for checking bot roles and permissions.Rapptz2016-01-151-2/+38
* [commands] Add on_command and on_command_completion events.Rapptz2016-01-141-1/+4
* [commands] Change behaviour of consume rest to be more useful.Rapptz2016-01-141-7/+22
* [commands] Fix issue where Bot would raise if not given a description.Rapptz2016-01-141-1/+1
* [commands] Cleanup descriptions being passed.Rapptz2016-01-132-2/+2
* Proper exception chaining.Rapptz2016-01-132-6/+6
* [commands] Fix handling of nested subcommand help handling.Rapptz2016-01-121-5/+15
* [commands] Fix keyword-only case to actually do conversion.Rapptz2016-01-121-6/+11
* [commands] Support invoking the help command with a cog name.Rapptz2016-01-122-12/+43
* [commands] Initial implementation of help command.Rapptz2016-01-114-8/+377
* [commands] Add Command.cog_name to get the cog name it belongs to.Rapptz2016-01-111-1/+7
* [commands] Add Command.clean_params to have nicer params.Rapptz2016-01-101-0/+18
* [commands] Remove all aliases if the main command is being deleted.Rapptz2016-01-101-1/+9