| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Add Template.is_dirty | Nadir Chowdhury | 2021-04-21 | 1 | -1/+19 | |
| | | ||||||
| * | [commands] Set constructible FlagConverter flags to not be required | Josh | 2021-04-21 | 1 | -0/+3 | |
| | | ||||||
| * | [docs] stage_channels doc typo | Nadir Chowdhury | 2021-04-21 | 2 | -2/+2 | |
| | | ||||||
| * | [commands] Allow FlagCommand subclasses to inherit options | Josh | 2021-04-21 | 1 | -6/+20 | |
| | | ||||||
| * | [commands] Add support for aliasing to FlagConverter | Josh | 2021-04-21 | 1 | -4/+47 | |
| | | ||||||
| * | Fix typo within `HelpCommand.verify_checks` documentation | Kino | 2021-04-21 | 1 | -1/+1 | |
| | | ||||||
| * | [commands] Avoid creating unnecessary flag mapping copies | Rapptz | 2021-04-20 | 1 | -2/+2 | |
| | | ||||||
| * | [commands] Default construct flags if they're not passed as parameters | Rapptz | 2021-04-20 | 2 | -0/+18 | |
| | | | | | | This only applies if and only if the flag can be default constructible. Ergo, all the flags are optional or not required. | |||||
| * | Fix some typings in utils | Rapptz | 2021-04-20 | 1 | -13/+2 | |
| | | ||||||
| * | [commands] Some minor clean up of the flag converter documentation | Rapptz | 2021-04-19 | 1 | -8/+15 | |
| | | | | | Fix #6761 | |||||
| * | [docs] fix docstring of AppInfo | Nadir Chowdhury | 2021-04-19 | 1 | -7/+9 | |
| | | ||||||
| * | Bump Python version in Quickstart documentation | Arnav Jindal | 2021-04-19 | 3 | -5/+4 | |
| | | ||||||
| * | [commands] Actually expose the FlagError base error | Rapptz | 2021-04-19 | 2 | -1/+6 | |
| | | ||||||
| * | [commands] Initial support for FlagConverter | Rapptz | 2021-04-19 | 8 | -0/+786 | |
| | | | | | | The name is currently pending and there's no command.signature hook for it yet since this requires bikeshedding. | |||||
| * | Remove lingering User.avatar documentation | Rapptz | 2021-04-19 | 1 | -4/+0 | |
| | | ||||||
| * | [commands] Add run_converters helper to call converters | Rapptz | 2021-04-19 | 3 | -116/+188 | |
| | | ||||||
| * | [commands] Add Context.current_parameter | Rapptz | 2021-04-19 | 2 | -0/+7 | |
| | | ||||||
| * | Add a third overload to parse_time | Rapptz | 2021-04-19 | 1 | -0/+6 | |
| | | | | | | | | Apparently this behaviour is intended in Pyright https://github.com/microsoft/pyright/issues/1772 Despite mypy behaving as intended. | |||||
| * | Fix utils.find predicate typing to accept Any | Rapptz | 2021-04-19 | 1 | -1/+1 | |
| | | ||||||
| * | Update lavalink's repo url | Cryptex | 2021-04-18 | 1 | -1/+1 | |
| | | ||||||
| * | Add `MessageType.guild_invite_reminder` | Nadir Chowdhury | 2021-04-18 | 3 | -0/+9 | |
| | | ||||||
| * | Add support for ApplicationFlags | Nadir Chowdhury | 2021-04-18 | 4 | -1/+102 | |
| | | ||||||
| * | Fix up _unique and valid_icon_size implementations | Rapptz | 2021-04-18 | 1 | -5/+2 | |
| | | ||||||
| * | Add typings for discord.utils | Rapptz | 2021-04-18 | 1 | -51/+131 | |
| | | ||||||
| * | Cleanup some of the prior typings for cached_slot_property | Rapptz | 2021-04-18 | 1 | -23/+22 | |
| | | ||||||
| * | Add typing for `utils.cached(_slot)_property` | Nadir Chowdhury | 2021-04-18 | 1 | -16/+33 | |
| | | ||||||
| * | [commands] Refactor evaluation functions to allow passing in localns | Rapptz | 2021-04-18 | 1 | -8/+25 | |
| | | ||||||
| * | Add privacy policy and tos fields to AppInfo | Zomatree | 2021-04-17 | 1 | -0/+14 | |
| | | ||||||
| * | [docs] document inherited members on `Asset` | Nadir Chowdhury | 2021-04-17 | 1 | -0/+1 | |
| | | ||||||
| * | Use f-strings for attributetable | Rapptz | 2021-04-17 | 1 | -4/+7 | |
| | | ||||||
| * | Add inherited members to (Partial)Emoji docs | Rapptz | 2021-04-17 | 1 | -0/+2 | |
| | | ||||||
| * | `activities` is no longer nullable | Nadir Chowdhury | 2021-04-17 | 1 | -2/+2 | |
| | | ||||||
| * | Add missing reprs to some objects | Steve C | 2021-04-17 | 3 | -0/+15 | |
| | | | | These are WidgetMember, BaseUser, and DeletedReferencedMessage | |||||
| * | Add VoiceChannel.video_quality_mode | z03h | 2021-04-17 | 7 | -3/+85 | |
| | | ||||||
| * | Refactor save() and read() into AssetMixin | Rapptz | 2021-04-17 | 4 | -206/+78 | |
| | | ||||||
| * | Use default allowed_mentions in Message.edit | Rapptz | 2021-04-16 | 1 | -1/+2 | |
| | | | | | Fix #6745 | |||||
| * | [tasks] Move the Loop's sleep to be before exit conditions | Steve C | 2021-04-16 | 1 | -2/+2 | |
| | | | | | | | | | | | | | This change makes it more so that `Loop.stop()` gracefully makes the current iteration the final one, by waiting AND THEN returning. The current implementation is closer to `cancel`, while also not. I encountered this because I was trying to run a `@tasks.loop(count=1)`, and inside it I print some text and change the interval, and in an `after_loop`, I restart the loop. Without this change, it immediately floods my console, due to not waiting before executing `after_loop`. | |||||
| * | Revert Attachment.save code to prior implementation | Rapptz | 2021-04-16 | 1 | -2/+2 | |
| | | ||||||
| * | Rewrite Asset design | Rapptz | 2021-04-16 | 14 | -726/+488 | |
| | | | | | | | | | | | | | | | | | | | | | | | | This is a breaking change. This does the following transformations, assuming `asset` represents an asset type. Object.is_asset_animated() => Object.asset.is_animated() Object.asset => Object.asset.key Object.asset_url => Object.asset_url Object.asset_url_as => Object.asset.replace(...) Since the asset type now requires a key (or hash, if you will), Emoji had to be flattened similar to how Attachment was done since these assets are keyed solely ID. Emoji.url (Asset) => Emoji.url (str) Emoji.url_as => removed Emoji.url.read => Emoji.read Emoji.url.save => Emoji.save This transformation was also done to PartialEmoji. | |||||
| * | Add `fetch_message` for webhooks | Nadir Chowdhury | 2021-04-16 | 3 | -6/+139 | |
| | | ||||||
| * | Remove Sticker.preview_image | Nadir Chowdhury | 2021-04-16 | 1 | -5/+1 | |
| | | ||||||
| * | [commands] Add a converter for discord.Object | Nadir Chowdhury | 2021-04-16 | 4 | -0/+49 | |
| | | ||||||
| * | Some initial response typings | Rapptz | 2021-04-16 | 1 | -11/+24 | |
| | | ||||||
| * | Add periods to sticker docs | NoName | 2021-04-16 | 1 | -13/+13 | |
| | | ||||||
| * | Restrict snowflake regexes to 15-20 digits | Nadir Chowdhury | 2021-04-16 | 2 | -9/+9 | |
| | | ||||||
| * | [docs] Fix various unresolved references | Nadir Chowdhury | 2021-04-15 | 6 | -13/+16 | |
| | | ||||||
| * | [commands] Remove HelpCommand.clean_prefix (#6736) | pikaninja | 2021-04-15 | 1 | -19/+7 | |
| | | ||||||
| * | Fix overloads on Webhook.send to not require wait kwarg | Rapptz | 2021-04-15 | 2 | -2/+2 | |
| | | ||||||
| * | Fix WebhookMessage.edit documentation | Rapptz | 2021-04-15 | 2 | -12/+2 | |
| | | ||||||
| * | Fix rate limit handling with retry_after precision change | Rapptz | 2021-04-15 | 3 | -5/+10 | |
| | | ||||||