aboutsummaryrefslogtreecommitdiff
path: root/discord/ext
Commit message (Collapse)AuthorAgeFilesLines
* [commands] fix documented type for Command.checksSebastian Law2021-03-241-1/+1
|
* [commands] Include group args in command signaturejack11422021-03-241-4/+13
|
* [commands] fix Context.channel property documented typeSebastian Law2021-03-131-2/+2
|
* Fix references to snowflakes being max 21 longNihaal Sangha2021-03-021-4/+4
|
* [tasks] remove redundant condition in Loop.next_iteration Sebastian Law2021-02-281-1/+1
| | | | | | | | self._task is only None if the Loop has never been started before, which means None should be returned always, regardless of how many seconds was passed into the constructor this didn't break anything before because self._next_iteration will be None as well if self._task is None.
* Code optimisations and refactoring via SourceryNadir Chowdhury2021-02-245-12/+10
|
* Fix NameError with invoked_parentsNadir Chowdhury2021-02-241-0/+1
|
* [commands] Added tribool behaviour to HelpCommand.verify_checkssudosnok2021-02-241-3/+11
|
* [commands] properly assign ctx.invoked_with with ctx.Sebastian Law2021-02-231-1/+1
| | | | resolves #6461
* [commands] Add Context.invoked_parentsSebastian Law2021-02-232-0/+15
|
* [commands] Allow relative paths when handling extensionsKaylynn Morgan2021-02-231-3/+37
|
* [tasks] make __call__ actually appear in the docsSebastian Law2021-02-211-1/+1
|
* [commands] Handle positional-only parameters in bot commandsBryan Forbes2021-02-171-2/+2
|
* [commands] Add support for rgb function in ColourConverterRapptz2021-02-071-11/+58
| | | | | | This also adds support for 3 digit hex. Fixes #6374
* [commands] Add discord.Guild converter and GuildNotFound errorAlex Nørgaard2021-02-072-1/+45
| | | | | | | * Add discord.Guild converter and GuildNotFound error * note for lack of disambiguation in Guilds with duplicate names, and removed the possibility of returning None * edited converter to use `utils.get` over `utils.find` and docs edited with Converter and Exception.
* [commands] Fix documented type of `Context.cog`Jonas Bohmann2021-01-241-1/+1
|
* [commands] Add linesep kwarg to PaginatorPikalaxALT2021-01-171-9/+17
|
* [commands] Fix Command duplicates in `HelpCommand.get_bot_mapping`Alex Nørgaard2021-01-161-1/+1
|
* [commands] Add Command/Cog.has_error_handlerRapptz2021-01-152-0/+14
| | | | | This allows querying the state without relying on internal undocumented attributes.
* Change copyright year to presentNihaal Sangha2021-01-1512-12/+12
|
* [commands] Add PartialMessageConverterJosh2021-01-151-13/+35
|
* Fix documented type of `Command.usage`jack11422021-01-141-1/+1
|
* [commands] Correct ChannelNotFound docstringBeatButton2021-01-121-1/+1
|
* [commands] fully remove command when CommandRegistrationError is raised for ↵Sebastian Law2020-12-291-1/+7
| | | | alias
* [commands] Correct concurrency never releasing during prepare callDan Hess2020-12-261-7/+12
|
* [commands] max_concurrency comes before cooldownsRapptz2020-12-171-3/+3
| | | | Fix #6172
* [tasks] Fix a typo in documentationRapptz2020-12-141-1/+1
|
* [tasks] Add support for manually calling the wrapped coroutineRapptz2020-12-141-0/+20
|
* [commands] Added in missing channel linksBen Skerritt2020-12-071-1/+1
|
* [commands] Cog unload failures are swallowed.Rapptz2020-12-031-1/+4
| | | | Fix #6113
* [chore] Remove redundant importsNadir Chowdhury2020-11-281-2/+1
| | | This also removes the historical patch for NullHandler implemented in bbf1c54, as it has been available since Python 3.1.
* Implement discord.Message.replyPikalaxALT2020-11-261-0/+5
|
* [commands] Allow setting description of cogsSebbyLaw2020-11-261-5/+15
|
* [commands] Fetch user if an ID is passed and cache lookup fails.Rapptz2020-11-231-18/+29
|
* Fix error with templates not having access to member cache flags.Rapptz2020-11-211-2/+2
| | | | | | This also changes the attribute from having an underscore Fix #5986
* [commands] Update MessageConverter link regexJonathan Feenstra2020-11-211-4/+3
| | | | Remove redundant parts of the MessageConverter regexes and support www
* [commands] Lazily fetch members in discord.Member convertersRapptz2020-10-171-1/+46
| | | | | This makes commands taking members mostly work transparently without much effort from the user.
* Implement VoiceProtocol lower level hooks.Rapptz2020-09-231-1/+1
| | | | | This allows changing the connect flow and taking control of it without relying on internal events or tricks.
* Fix and add documentationMichael2020-09-235-9/+45
|
* [tasks] Lazily fetch event loop if one isn't providedRapptz2020-09-101-1/+4
| | | | Fixes #5808
* [commands] Correct command removing during cog injectingDan Hess2020-09-091-1/+1
|
* [commands] Fix exception raised in Command invoke hooks.Josh2020-09-091-19/+11
|
* [commands] Update Bot.command() decorator docsSkye Im2020-09-071-0/+5
|
* [docs] remove unresolved doc refs, fix attribute refNadir Chowdhury2020-09-071-1/+1
|
* [commands] add require_var_positionalkhazhyk2020-09-071-1/+13
|
* [commands] BadBooleanArgument -> BadBoolArgumentRapptz2020-09-042-3/+3
|
* [commands] Add subclasses of BadArgument for convertersSimon Beal2020-09-043-17/+237
|
* [commands] Added ColorConverter aliasparafoxia2020-08-311-0/+5
|
* [tasks] Don't update _next_iteration on retryJosh2020-08-281-2/+7
|
* [commands] Use edited timestamp if provided for cooldown timingRapptz2020-08-251-3/+6
|