aboutsummaryrefslogtreecommitdiff
path: root/discord/ext
Commit message (Expand)AuthorAgeFilesLines
* [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
* [commands] Strip arguments before searching for special cases.Rapptz2016-01-101-3/+4
* [commands] Proper cleanup of cogs.Rapptz2016-01-101-1/+3
* [commands] Add Group.invoke_without_command.Rapptz2016-01-101-10/+35
* [commands] Add basic support for extensions.Rapptz2016-01-092-1/+58
* [commands] Inject the internal variables for bot.say & co explicitly.Rapptz2016-01-092-19/+36
* [commands] Add local error handlers.Rapptz2016-01-091-0/+37
* [commands] Propagate invoked_with to subcommands.Rapptz2016-01-091-0/+1
* [commands] Add support for cogs.Rapptz2016-01-092-6/+128
* [commands] Add support for registering more than one event listener.Rapptz2016-01-081-0/+93
* [commands] Change prefix callback signature and add when_mentioned.Rapptz2016-01-082-5/+11
* [commands] Add a way to enable or disable certain commands.Rapptz2016-01-072-7/+39
* [commands] Special handling for when the converter is bool.Rapptz2016-01-071-0/+12
* [commands] Allow registration of multiple command prefixes.Rapptz2016-01-072-4/+22
* [commands] Don't skip whitespace if the command trigger is found.Rapptz2016-01-061-1/+1
* [commands] None default without specified type uses str now.Rapptz2016-01-061-1/+1
* [commands] Add CommandNotFound error.Rapptz2016-01-053-11/+22
* [commands] Add a way to remove commands.Rapptz2016-01-041-0/+19
* Documentation improvements on using check decorator.Rapptz2016-01-041-2/+32
* Add missing import in commands core.Rapptz2016-01-041-0/+2
* Initial implementation of commands extension module.Rapptz2016-01-047-0/+1069