aboutsummaryrefslogtreecommitdiff
path: root/docs/ext
Commit message (Collapse)AuthorAgeFilesLines
* [commands] Implement `commands.before/after_invoke`NCPlayz2020-04-041-0/+4
|
* One last superfluous .0 in versionaddedRapptz2020-01-221-1/+1
|
* [commands] Implement Command.__call__Rapptz2020-01-211-0/+1
|
* [commands] Export max_concurrency and MaxConcurrencyReached in docsRapptz2020-01-211-0/+6
|
* [commands] Document BucketType separatelyRapptz2020-01-181-0/+32
|
* [commands] Add missing CheckAnyFailure documentationRapptz2020-01-141-0/+4
|
* [commands] Document guild permission checksRapptz2020-01-071-0/+4
|
* [commands] Add check_any check to OR together various checksRapptz2020-01-061-0/+2
|
* Fix more deprecation warnings for 3.8Rapptz2019-11-261-1/+1
|
* [commands] Fix grammarFlame4422019-10-171-1/+1
| | | Either implies that there will be two things, there is only one.
* [commands] Fix confusion between it's and itsDante Dam2019-07-221-1/+1
|
* [commands] Fix CategoryChannel not appearing in converter tableDante Dam2019-07-181-27/+27
|
* Update Sphinx to 2.1.2Rapptz2019-06-281-2/+2
|
* Version bump to 1.2.0v1.2.0Rapptz2019-06-092-0/+4
|
* Improve documentationNCPlayz2019-06-072-5/+5
|
* Add changelog for v1.1.0Rapptz2019-05-102-0/+4
|
* Minor nits in Discord Converters section of the docs.Rapptz2019-05-091-1/+2
|
* Actually use multiple checks in the examples for checks.Rapptz2019-05-011-0/+2
|
* [tasks] Add way to query cancellation state for Loop.after_loopRapptz2019-04-301-0/+31
| | | | Fixes #2121
* [tasks] Remove support for awaitables due to gotchas.Rapptz2019-04-291-20/+0
| | | | Fixes #2079
* [commands] Add custom exception classes for built-in checksVexs2019-04-201-0/+24
| | | | | | | | Added: * MissingRole * BotMissingRole * MissingAnyRole * BotMissingAnyRole
* [commands] Add new MessageConverter to commands prose page.Rapptz2019-04-171-0/+2
|
* [commands] Add MessageConverter to fetch messages by URL or ID.retke2019-04-171-0/+3
|
* [tasks] Add before_loop and after_loop decoratorsRapptz2019-04-121-3/+45
|
* [tasks] Document version addedRapptz2019-04-111-0/+2
|
* [tasks] Rename Loop.run to Loop.start to avoid blocking connotationsRapptz2019-04-111-3/+3
|
* [tasks] Add a new background helper 'tasks' extension.Rapptz2019-04-111-0/+82
|
* [commands] Redesign extension exception flow.Rapptz2019-03-191-0/+25
| | | | | | | | | | | | | | | | Instead of raising a whole variety of exceptions, they are now wrapped into ExtensionError derived classes. * ExtensionAlreadyLoaded * Raised when an extension is already loaded in Bot.load_extension * ExtensionNotLoaded * Raised when an extension is not loaded, e.g. Bot.unload_extension * NoEntryPointError * Raised when an extension does not have a `setup` function. * ExtensionFailed * Raised when an extension's `setup` function fails. * ExtensionNotFound * Raised when an extension's module import fails.
* [commands] Add Bot.reload_extension for atomic loading.Rapptz2019-03-191-4/+3
| | | | Also do atomic loading in Bot.load_extension
* [commands] Redesign HelpFormatter into HelpCommandRapptz2019-03-151-4/+12
| | | | Part of #1938
* [commands] Separate view parsing errors from BadArgument.Rapptz2019-03-121-0/+16
| | | | | | | | This causes them to be raised from a new exception named ArgumentParsingError with 3 children for ease with i18n. This is technically a breaking change since it no longer derives from BadArgument, though catching UserInputError will prevent this change from affecting the user.
* Add exception hierarchy to the documentation.Rapptz2019-03-121-2/+24
|
* Fix non-working example in commands documentation.Rapptz2019-03-061-1/+1
|
* [commands] Fix bug in behaviour in the cog inspection methods.Rapptz2019-02-231-1/+1
|
* Rework entire cog system and partially document it and extensions.Rapptz2019-02-234-0/+237
|
* Fix is_in_guild example checkLyricLy2018-11-241-1/+1
|
* Outline the logic of `bool` convertersscragly2018-11-241-0/+12
| | | As a `bool` converter is treated differently from other callable (basic) converters, the explanatory docs should outline that it is evaluated differently from a simple type cast, and what logic is used in determining how the content is evaluated.
* Group Advanced Converters and Inline Advanced Convertersscragly2018-11-241-58/+58
| | | The Inline Advanced Converters are a logical extension of the Advanced Converters subject, and as such should be placed under that section without an unrelated converter type breaking the two up.
* [commands] Elaborate more on disallowed types in Greedy and OptionalRapptz2018-09-242-1/+8
|
* [commands] Fix up Greedy documentation a bit.Rapptz2018-09-242-11/+11
|
* [commands] Add commands.Greedy converter and documentation.Rapptz2018-09-242-0/+138
| | | | | This allows for greedy "consume until you can't" behaviour similar to typing.Optional but for lists.
* [commands] Add documentation for BadUnionArgumentRapptz2018-07-201-0/+3
|
* [commands] raise ConversionError on Converter errorkhazhyk2018-07-201-0/+3
| | | | | | This assumes that a Converter class raising non-CommandError is a programmer error. Makes this type of error easier to disambiguate from a generic BadArgument.
* Change PartialReactionEmoji to PartialEmoji, add a PartialEmojiConverterGorialis2018-01-062-0/+6
|
* Add intersphinxTobotimus2018-01-061-1/+1
|
* [commands] Add CategoryChannelConverterRapptz2017-09-132-24/+30
|
* [commands] Add MissingPermissions and BotMissingPermissionsReinaSakuraba2017-08-301-0/+6
|
* Variadic arguments are a tuple not a list.Rapptz2017-07-101-1/+1
|
* First pass at commands narrative documentation.Rapptz2017-07-082-1/+586
|
* Add when_mentioned and when_mentioned_or to the documentation.Rapptz2017-07-011-0/+4
|