| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Clarify connect() requires Intents.voice_states | Imayhaveborkedit | 2021-08-24 | 1 | -0/+4 |
| | | |||||
| * | flag_value should not be a generic class | Bryan Forbes | 2021-08-18 | 1 | -1/+1 |
| | | | | | | | | | | | | Since there is no generic information in `flag_value.__init__()`, `flag_value` descriptors get stored as `flag_value[<nothing>]` in mypy strict mode and then the `__get__` overloads never match. This leads to errors when using things like `permissions_instance.embed_links` since `<nothing>` never matches `Permissions`. The generic inheritance isn't needed at all since the type information we care about comes from the call site of `__get__` and not the instantiation of the descriptor. | ||||
| * | Rename instances of nitro to premium | Rapptz | 2021-07-30 | 1 | -1/+1 |
| | | |||||
| * | implement guild stickers | Nadir Chowdhury | 2021-07-30 | 1 | -1/+17 |
| | | |||||
| * | fix typo in ephemeral function definition | Nadir Chowdhury | 2021-07-21 | 1 | -1/+1 |
| | | |||||
| * | Update intents docs to reflect presence update changes | apple502j | 2021-07-07 | 1 | -2/+2 |
| | | |||||
| * | Add MessageFlags.ephemeral | Rapptz | 2021-07-03 | 1 | -0/+9 |
| | | |||||
| * | Remove slots from flags | Rapptz | 2021-07-03 | 1 | -3/+1 |
| | | | | | Fix #7159 | ||||
| * | Typehint permissions | Rapptz | 2021-07-03 | 1 | -1/+3 |
| | | |||||
| * | First pass at preliminary thread support | Rapptz | 2021-06-08 | 1 | -0/+7 |
| | | | | | | This is missing a lot of functionality right now, such as two gateway events and all the HTTP CRUD endpoints. | ||||
| * | Add support for integration create/update/delete events | Nadir Chowdhury | 2021-06-07 | 1 | -0/+3 |
| | | |||||
| * | Add Discord Certified Moderator user flag | Stanisław Jelnicki | 2021-05-23 | 1 | -0/+8 |
| | | |||||
| * | Add get_user to the things intents.members affects | pikaninja | 2021-05-03 | 1 | -0/+1 |
| | | |||||
| * | Add support for ApplicationFlags | Nadir Chowdhury | 2021-04-18 | 1 | -0/+82 |
| | | |||||
| * | Rewrite Asset design | Rapptz | 2021-04-16 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | 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 SystemChannelFlags.guild_reminder_notifications | TheOneMusic | 2021-04-15 | 1 | -0/+8 |
| | | |||||
| * | Remove `private_channel_(delete/create)` events | Nadir Chowdhury | 2021-04-11 | 1 | -2/+0 |
| | | |||||
| * | Remove MemberCacheFlags.online | Rapptz | 2021-04-11 | 1 | -30/+2 |
| | | | | | v8 no longer gives enough data for this to be possible | ||||
| * | Add typing for flags | Nadir Chowdhury | 2021-04-07 | 1 | -26/+48 |
| | | |||||
| * | Modernize code to use f-strings | Rapptz | 2021-04-04 | 1 | -8/+6 |
| | | | | | | This also removes the encoding on the top, since Python 3 does it by default. It also changes some methods to use `yield from`. | ||||
| * | 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. | ||||
| * | Change copyright year to present | Nihaal Sangha | 2021-01-15 | 1 | -2/+1 |
| | | |||||
| * | Don't store a user cache if there's no member intent or cache is off | Rapptz | 2020-11-23 | 1 | -0/+4 |
| | | | | | | | | Without a cache or member intent the user cache can get out of date with no events to update the underlying user in the member object. Ref: #6034 | ||||
| * | Mark intent alias flags as actual aliases to skip them in __iter__ | Rapptz | 2020-10-17 | 1 | -3/+3 |
| | | | | | Fix #5945 | ||||
| * | Make Intent class creation more intuitive | Rapptz | 2020-09-24 | 1 | -9/+11 |
| | | |||||
| * | More intent related documentation | Rapptz | 2020-09-24 | 1 | -4/+4 |
| | | |||||
| * | Fix typos in Intents documentation | Sebastian Law | 2020-09-24 | 1 | -8/+8 |
| | | |||||
| * | Add support for flag alias | apple502j | 2020-09-24 | 1 | -1/+23 |
| | | |||||
| * | Add documentation for gateway intents | Rapptz | 2020-09-23 | 1 | -2/+107 |
| | | |||||
| * | Fix presence intent docstring | Muhammad Hamza | 2020-09-23 | 1 | -1/+1 |
| | | |||||
| * | Disable voice cache in weird intent configurations. | Rapptz | 2020-09-23 | 1 | -0/+3 |
| | | |||||
| * | Fix up wording in MemberCacheFlags exception | Rapptz | 2020-09-23 | 1 | -1/+1 |
| | | |||||
| * | Default MemberCacheFlags based on intents | Rapptz | 2020-09-23 | 1 | -0/+26 |
| | | |||||
| * | Allow finer grained control over the member cache. | Rapptz | 2020-09-23 | 1 | -0/+126 |
| | | |||||
| * | Add versionadded for intents enum | Rapptz | 2020-09-23 | 1 | -0/+2 |
| | | |||||
| * | Explicitly disable the members presence by default | Rapptz | 2020-09-23 | 1 | -4/+11 |
| | | |||||
| * | Add support for guild intents | Rapptz | 2020-09-23 | 1 | -1/+316 |
| | | |||||
| * | Add support for public user flags | JohnyTheCarrot | 2020-05-29 | 1 | -0/+97 |
| | | |||||
| * | flags: support accessing flag value instances on the class | Io Mintz | 2020-04-20 | 1 | -0/+5 |
| | | | | Fixes #4023 | ||||
| * | Fixes and improvements for v1.3 documentation | Harmon | 2020-01-22 | 1 | -0/+2 |
| | | | | | | | | | | * Add missing versionadded strings for v1.3 * Add missing versionchanged string for Message.edit * Consistently use versionadded for attributes * Consistently use versionchanged for parameters * Use versionchanged for Bot.is_owner * Fix references in v1.3 changelog * Improve grammar in v1.3 changelog | ||||
| * | Bump copyright year to 2020 | Rapptz | 2020-01-19 | 1 | -1/+1 |
| | | | | | Closes #2510 | ||||
| * | Add User.system and MessageFlags.urgent | Rapptz | 2019-12-21 | 1 | -0/+8 |
| | | |||||
| * | Clean up flag code significantly. | Rapptz | 2019-12-20 | 1 | -94/+74 |
| | | | | | This also fixes the False setting bug. | ||||
| * | Implement discord.MessageFlags | NCPlayz | 2019-12-20 | 1 | -0/+237 |
| Refactor flags placement and use it for suppression. | |||||