| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Return early if no kwargs are given to GuildChannel.move | Rapptz | 2021-03-30 | 1 | -0/+3 |
| | | |||||
| * | Ignore moving category channels to another category | Rapptz | 2021-03-30 | 2 | -0/+6 |
| | | |||||
| * | Add GuildChannel.move helper method to help with moving channels | Rapptz | 2021-03-30 | 1 | -0/+114 |
| | | | | | | | Moving channels is seen as a complicated task, so hopefully this abstracts a lot of it for users. There is no bulk move helper yet since I'm unsure how the API for that should be. | ||||
| * | Add support for fail_if_not_exists in MessageReference | Lilly Rose Berner | 2021-03-30 | 1 | -6/+28 |
| | | |||||
| * | [docs] copy signature from overridden and inherited methods | Sebastian Law | 2021-03-29 | 4 | -18/+17 |
| | | |||||
| * | [commands] Add support for stripping whitespace after the prefix | Rapptz | 2021-03-28 | 1 | -0/+10 |
| | | | | | This is configured with the strip_after_prefix option in `Bot.__init__` | ||||
| * | [commands] Remove nullability from help command implementation | Rapptz | 2021-03-28 | 1 | -16/+3 |
| | | | | | Fixes #5154 | ||||
| * | deprecate User.relationships | Nadir Chowdhury | 2021-03-28 | 1 | -0/+2 |
| | | |||||
| * | Add remove_markdown helper function | Edwin | 2021-03-28 | 4 | -7/+52 |
| | | |||||
| * | [commands] Only remove top level commands on cog load failure | Rapptz | 2021-03-28 | 1 | -1/+2 |
| | | |||||
| * | Add scopes to utils.oauth_url | Nihaal Sangha | 2021-03-28 | 1 | -2/+7 |
| | | |||||
| * | [commands] allow arbitrary callables in cooldown | Mikey | 2021-03-28 | 2 | -5/+11 |
| | | |||||
| * | Add an optional seed parameter for Colour.random | Maselkov | 2021-03-28 | 1 | -2/+10 |
| | | |||||
| * | Fallback to empty string for unavailable guild __str__ | Rapptz | 2021-03-25 | 1 | -1/+1 |
| | | |||||
| * | Make Attachment hashable and castable to str | Rapptz | 2021-03-25 | 1 | -1/+25 |
| | | |||||
| * | Implicitly cast Embed construction parameters to str | pikaninja | 2021-03-24 | 1 | -0/+18 |
| | | |||||
| * | Recreate aiohttp.FormData objects during request retries | Rapptz | 2021-03-24 | 2 | -14/+32 |
| | | | | | Fixes #6531 | ||||
| * | Remove deprecated uses of about | Rapptz | 2021-03-24 | 2 | -2/+2 |
| | | |||||
| * | Update issue template | Rapptz | 2021-03-24 | 1 | -2/+7 |
| | | |||||
| * | Clarify docs to state that on_reaction_remove requires Intents.members | Colin R | 2021-03-24 | 1 | -1/+6 |
| | | |||||
| * | [commands] fix documented type for Command.checks | Sebastian Law | 2021-03-24 | 1 | -1/+1 |
| | | |||||
| * | Make `await` text appear in async Member method docs | Sebastian Law | 2021-03-24 | 1 | -2/+8 |
| | | |||||
| * | Update create_dm documentation to say it's a coroutine | Alex Nørgaard | 2021-03-24 | 1 | -1/+3 |
| | | |||||
| * | [docs] Conveter -> Converter | Nadir Chowdhury | 2021-03-24 | 1 | -1/+1 |
| | | |||||
| * | Add roles to guild.estimate_pruned_members | z03h | 2021-03-24 | 2 | -3/+14 |
| | | |||||
| * | [commands] Include group args in command signature | jack1142 | 2021-03-24 | 1 | -4/+13 |
| | | |||||
| * | [docs] Grammar fixes for intents.rst | Arnav Jindal | 2021-03-24 | 1 | -21/+4 |
| | | |||||
| * | Mark User.avatar_url as attribute in Intents.members docstring | Steve C | 2021-03-13 | 1 | -1/+1 |
| | | | | | | The line currently comes out to `User.avatar (User.avatar_url() and User.avatar_url_as())` but `User.avatar_url` is not callable. | ||||
| * | [commands] fix Context.channel property documented type | Sebastian Law | 2021-03-13 | 1 | -2/+2 |
| | | |||||
| * | remove trailing whitespace | Nadir Chowdhury | 2021-03-13 | 6 | -23/+23 |
| | | |||||
| * | Fix references to snowflakes being max 21 long | Nihaal Sangha | 2021-03-02 | 3 | -6/+6 |
| | | |||||
| * | Fix typo with guild_discovery_grace_period_final_warning | Nadir Chowdhury | 2021-03-02 | 1 | -1/+1 |
| | | |||||
| * | Fix Permissions.all_channel documentation to link attributes | TheOneMusic | 2021-03-01 | 1 | -10/+11 |
| | | |||||
| * | Allow AuditLogEntry to be Hashable | Nadir Chowdhury | 2021-03-01 | 1 | -1/+19 |
| | | |||||
| * | Disallow empty sequences in Guild.query_members user_id parameter | Rapptz | 2021-02-28 | 1 | -7/+10 |
| | | |||||
| * | Add guild_id attribute to RawMessageUpdateEvent | Sebastian Law | 2021-02-28 | 1 | -1/+10 |
| | | |||||
| * | [tasks] remove redundant condition in Loop.next_iteration | Sebastian Law | 2021-02-28 | 1 | -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. | ||||
| * | Update docs for discord.Invite.max_uses | xPolar | 2021-02-28 | 1 | -1/+3 |
| | | | | This mentions the unlimited uses aspect. | ||||
| * | Only run main() if the module is being executed as a script | Bryan Forbes | 2021-02-28 | 1 | -1/+2 |
| | | |||||
| * | Update permission class methods to match Discord UI | TheOneMusic | 2021-02-28 | 1 | -11/+47 |
| | | |||||
| * | Code optimisations and refactoring via Sourcery | Nadir Chowdhury | 2021-02-24 | 18 | -90/+47 |
| | | |||||
| * | Fix NameError with invoked_parents | Nadir Chowdhury | 2021-02-24 | 1 | -0/+1 |
| | | |||||
| * | Allow for callable class factories in abc.Connectable.connect | SuzuZusu | 2021-02-24 | 1 | -3/+4 |
| | | |||||
| * | [commands] Added tribool behaviour to HelpCommand.verify_checks | sudosnok | 2021-02-24 | 1 | -3/+11 |
| | | |||||
| * | fix mention_author in send causing unexpected allowed mentions | Sebastian Law | 2021-02-24 | 1 | -1/+2 |
| | | |||||
| * | Fix docstring for Guild.create_role | Arthaxeres | 2021-02-24 | 1 | -1/+1 |
| | | |||||
| * | Add remaining template endpoints | Nadir Chowdhury | 2021-02-23 | 3 | -7/+162 |
| | | |||||
| * | Add remaining v6 message types | Nadir Chowdhury | 2021-02-23 | 3 | -13/+62 |
| | | |||||
| * | Add converter example | Alex Nørgaard | 2021-02-23 | 1 | -0/+113 |
| | | |||||
| * | [commands] properly assign ctx.invoked_with with ctx. | Sebastian Law | 2021-02-23 | 1 | -1/+1 |
| | | | | | resolves #6461 | ||||