aboutsummaryrefslogtreecommitdiff
path: root/discord/ext
Commit message (Expand)AuthorAgeFilesLines
* [commands] Add Context.me property.Rapptz2017-03-011-0/+5
* [commands] Register cog listeners with the name of the attribute.Rapptz2017-02-221-1/+1
* [commands] Fix bad logic in command list filtering.Rapptz2017-02-181-1/+1
* Make discord.ext a namespace package.Rapptz2017-02-141-12/+0
* [commands] Add commands.clean_content converter.Rapptz2017-02-132-2/+62
* [commands] Allow converters to be instantiated.Rapptz2017-02-132-8/+14
* [commands] Remove Commands: if no commands can be run in help command.Rapptz2017-02-131-2/+4
* [commands] Add cog local error handlers via __error.Rapptz2017-02-121-2/+11
* [commands] Add param attribute to MissingRequiredArgumentRapptz2017-02-122-2/+9
* Implement async checks. Fixes #380.Rapptz2017-02-123-29/+63
* [commands] Add Command.usage argument to override argument display.Michael Van Buren2017-02-102-1/+6
* [commands] Better support for retrieving children commands.Rapptz2017-02-061-2/+25
* [commands] Fix converters returning the wrong types when an ID is passedRapptz2017-01-311-2/+2
* [commands] Implement before and after invoke command hooks.Rapptz2017-01-272-2/+186
* [commands] Add Context.command_failed attribute.Rapptz2017-01-272-7/+12
* [commands] Add cog local checks via __local_checkRapptz2017-01-261-0/+10
* [commands] Rename __check to __global_check for cogs.Rapptz2017-01-261-3/+3
* [commands] Allow customising the Context class in get_context.Rapptz2017-01-261-3/+9
* Optimise attribute access when dispatching.Rapptz2017-01-251-16/+3
* Update copyright year to 2017.Rapptz2017-01-2010-10/+10
* [commands] Guarantee that local error handler is called before generic.Rapptz2017-01-152-4/+4
* [commands] Change UserConverter to actually work with User, not Member.Rapptz2017-01-141-1/+27
* Remove _get_guild_id from Messageable ABC.Rapptz2017-01-141-4/+0
* [commands] Split process_commands into lower level bits.Rapptz2017-01-142-49/+98
* [commands] Make Command a descriptor for #426.Rapptz2017-01-132-2/+5
* [commands] Add AutoShardedBot counterpart to AutoShardedClient.Rapptz2017-01-082-62/+70
* [commands] Don't use removed is_private attribute in core decorators.Rapptz2017-01-031-19/+14
* [commands] Fix help command from not working with recent changes.Rapptz2017-01-031-5/+5
* Change Messageable channel getter to be a coroutine.Rapptz2017-01-031-0/+1
* Rename MessageChannel abc to Messageable.Rapptz2017-01-031-11/+8
* [commands] Remove send_ utility functions.Rapptz2017-01-032-184/+4
* [commands] First pass in making commands ext work again.Rapptz2017-01-033-10/+70
* Rename Server to Guild everywhere.Rapptz2017-01-034-36/+36
* [commands] Bot skip check now works with the new __eq__ changes.Rapptz2017-01-031-2/+5
* Slots use tuples instead now.Rapptz2017-01-031-1/+1
* Switch IDs to use int instead of strRapptz2017-01-031-4/+4
* [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