aboutsummaryrefslogtreecommitdiff
path: root/discord/ext
Commit message (Expand)AuthorAgeFilesLines
* [commands] Make Command a descriptor for #426.Rapptz2017-02-112-2/+5
* [commands] Better support for retrieving children commands.Rapptz2017-02-061-2/+25
* [commands] Bugfix on the teardown function call.PapyrusThePlant2017-01-011-1/+1
* Properly propagate loop. Fixes #420.Rapptz2016-12-211-1/+1
* [commands] Shield against dictionary resize in Bot.closeRapptz2016-12-171-2/+2
* [commands] Unload all cogs when gracefully exiting bot.Rapptz2016-12-171-0/+6
* [commands] Properly propagate CommandError derived exceptions.Rapptz2016-12-171-0/+2
* [commands] Add special extension function 'teardown' for clean-up.Rapptz2016-12-171-4/+14
* [commands] Unload all extensions when gracefully closing bot.Rapptz2016-12-171-0/+10
* [commands] Run global checks in help formatter.khazhyk2016-12-161-1/+1
* [commands] Remove slots on Context.Rapptz2016-11-221-3/+0
* [commands] Fix mistake in Paginator error message.Max Kamps2016-10-031-1/+1
* [commands] Fix Paginator still allowing lines which are too long.Max Kamps2016-10-031-1/+1
* [commands] Raise exception if Paginator gets a line that is too big.Rapptz2016-09-261-0/+11
* [commands] Allow coroutine functions in Bot.command_prefixRapptz2016-09-171-3/+8
* [commands] Default converters now take in IDs to match against.Rapptz2016-09-091-10/+17
* [commands] Cooldowns don't trigger due to user usage error.Rapptz2016-09-081-11/+9
* [commands] Added a method to reset command cooldown.Dan Hess2016-09-082-0/+17
* [commands] Delete module when it does not have a setup function.Rapptz2016-08-101-0/+2
* [commands] Add missing inspect import in converter.pyRapptz2016-08-041-0/+1
* [commands] Add custom emoji converter.Khazhismel2016-07-311-0/+31
* [commands] Make HelpFormatter ignore hidden commands for max_width.PapyrusThePlant2016-07-301-1/+1
* [commands] Fix cooldown decorator to work regardless of order.Rapptz2016-07-221-1/+1
* [commands] Implement a command cooldown system.Rapptz2016-07-224-3/+193
* [commands] Add UserInputError into the exception hierarchy.Rapptz2016-07-211-8/+18
* [commands] Make Bot.check decorator an actual decorator.Rapptz2016-07-081-6/+4
* [commands] Added missing parenthesis in examplesPapyrusThePlant2016-07-081-8/+8
* [commands] Refactor pagination into its own class.Rapptz2016-07-052-49/+71
* [commands] Fix error in converters in a private message context.Rapptz2016-07-022-11/+11
* [commands] Do not lower-case the function name for default command namesRapptz2016-07-011-2/+2
* [commands] Make GroupMixin.remove_command return None.Rapptz2016-06-301-0/+5
* [commands] Fix error where consume rest would not work.Rapptz2016-06-231-1/+1
* [commands] Fix bug that made functions stop working as converters.Rapptz2016-06-231-1/+1
* [commands] Port special cased discord converters to commands.ConverterRapptz2016-06-223-116/+163
* [commands] Add commands.Converter base for converts with context.Rapptz2016-06-221-5/+38
* [commands] Add Command.ignore_extra attribute to ignore extra argumentsRapptz2016-06-202-3/+20
* [commands] Add the concept of global checks.Rapptz2016-06-192-2/+90
* [commands] Add `delete_after` keyword argument to utility functions.Rapptz2016-06-191-4/+82
* [commands] Add Context.cog property.Rapptz2016-06-161-0/+7
* [commands] Only show CommandNotFound on non-empty commands.Rapptz2016-06-141-1/+1
* [commands] Make the CommandError required argument optional again.Rapptz2016-06-101-4/+7
* [commands] Fix @everyone elevation in the default help command.Rapptz2016-06-101-2/+14
* [commands] Fix bug with Context.command not updating in groups.Rapptz2016-06-101-0/+1
* [commands] Make it so CommandError does not contain @everyone mentions.Rapptz2016-06-101-1/+5
* [commands] Exceptions raised while invocation raise CommandInvokeError.Rapptz2016-06-102-2/+15
* [commands] Fix issue with proper local error handlers not beign called.Rapptz2016-06-101-1/+1
* [commands] Unify Command.handle_local_error into general dispatcher.Rapptz2016-06-052-9/+11
* [commands] Add Command.qualified_name to get the full command name.Rapptz2016-06-042-16/+36
* [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