| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Add support for new message types related to premium guilds. | Rapptz | 2019-06-04 | 1 | -0/+16 | |
| | | ||||||
| * | Fix pluralization errors in various files | Ehren Julien-Neitzert | 2019-05-23 | 1 | -1/+1 | |
| | | | | | | * Replaced instances of 'return an' with 'returns an' * fixed pluralization errors | |||||
| * | Update on_group_join docs | apple502j | 2019-05-18 | 1 | -2/+1 | |
| | | ||||||
| * | Add India region to VoiceRegion | apple502j | 2019-05-13 | 1 | -0/+3 | |
| | | ||||||
| * | Document remaining public enums. | NCPlayz | 2019-05-09 | 1 | -17/+110 | |
| | | | | | | | | | | - UserContentFilter - FriendFlags - PremiumType - Theme UserFlags is not documented as though it is only used internally. | |||||
| * | Add cached_message to on_raw_message_edit event | Vexs | 2019-05-09 | 1 | -0/+3 | |
| | | | | | Also add documentation for this behavior | |||||
| * | voice room → voice channel in event documentation | Rapptz | 2019-04-25 | 1 | -2/+2 | |
| | | ||||||
| * | Fix typo in on_raw_reaction_remove docs. | Rapptz | 2019-04-14 | 1 | -1/+1 | |
| | | ||||||
| * | Remove "needs python 3.5+" from async iter section | apple502j | 2019-04-12 | 1 | -2/+1 | |
| | | ||||||
| * | Fix broken documentation attribute | Steve C | 2019-04-09 | 1 | -1/+1 | |
| | | ||||||
| * | Fix documentation so Sphinx can build semi-cleanly. | Rapptz | 2019-04-08 | 1 | -1/+1 | |
| | | ||||||
| * | Remove manual documentation for AppInfo | Rapptz | 2019-04-08 | 1 | -47/+0 | |
| | | ||||||
| * | Fix long-standing issue with user updates not dispatching properly. | Rapptz | 2019-04-08 | 1 | -1/+13 | |
| | | | | | | | | | | | | | | | | | | | | | | | This fix is long coming. For a long time due to the addition of a global user cache, the on_member_update event would only have the updated user in the very first dispatch due to a quirk in the reference only being updated once. In order to fix this issue two things had to change: 1. There had to be a new event, `on_user_update` to complement the equivalent member event. 2. Unnecessary copies of User had to be removed to compensate for the performance hit from the diffing. While doing these two fixes I also re-evaluated some more unnecessary copies done during the PRESENCE_UPDATE to add member case while fetch_offline_members=False is set or due to chunking issues. The number of copies was brought down from 2 to 1, discounting the original Member creation. Unsure on the benefits of this one, however. N.B: this doesn't change the pre-existing behaviour of on_member_update | |||||
| * | Add some version guarantees to the documentation. | Rapptz | 2019-04-08 | 1 | -6/+5 | |
| | | ||||||
| * | Add helpers to escape markdown and mentions from text. | Rapptz | 2019-04-06 | 1 | -0/+5 | |
| | | | | | Fixes #1673 | |||||
| * | Redesign bulk delete events | Vexs | 2019-04-06 | 1 | -9/+31 | |
| | | | | | | | | | | Change `parse_message_delete_bulk` to not dispatch individual `message_delete` events, and instead `bulk_message_delete`. Also make `raw_bulk_message` delete and `raw_message_delete` have message objects attached. Fixes #1807 | |||||
| * | Redesign asset retrieval in the library. | NCPlayz | 2019-04-06 | 1 | -0/+9 | |
| | | | | | | | | | | | | Most assets now return a new class named `Asset`. This allows for the assets to be consistently saved via a `save` method instead of special casing for `Attachment`. `AppInfo` is no longer a namedtuple it is a fully documented dataclass, as well as having the state attached to it. Fixes #1997 | |||||
| * | Some widget fixes. | Rapptz | 2019-03-19 | 1 | -0/+19 | |
| | | ||||||
| * | Organise documentation | NCPlayz | 2019-03-19 | 1 | -5/+5 | |
| | | ||||||
| * | Minor typo fix. | Rapptz | 2019-03-18 | 1 | -1/+1 | |
| | | ||||||
| * | Add on_disconnect event. | Rapptz | 2019-03-18 | 1 | -0/+8 | |
| | | | | | I assume this is where it has to be. Fix #1937 | |||||
| * | Add support for store channels. | Rapptz | 2019-03-17 | 1 | -0/+4 | |
| | | ||||||
| * | Add exception hierarchy to the documentation. | Rapptz | 2019-03-12 | 1 | -0/+17 | |
| | | ||||||
| * | Add support for guild news channels. | Rapptz | 2019-03-08 | 1 | -0/+3 | |
| | | ||||||
| * | Add guild_integrations_update event | CraftSpider | 2019-02-18 | 1 | -0/+6 | |
| | | ||||||
| * | Expose more information from partial invites, along with counts. | Rapptz | 2019-02-12 | 1 | -0/+11 | |
| | | | | | | | | | | | | | | This adds the following information. * `PartialInviteGuild` to replace `Object` patching * `PartialInviteChannel` to replace `Object` patching * Invite.approximate_member_count and Invite.approximate_presence_count The new partial objects provide better documentation on what is expected when you fetch random invites. Fixes #1830 | |||||
| * | Fix typo in API documentation. | stuarth | 2019-02-06 | 1 | -1/+1 | |
| | | ||||||
| * | Remove notes about Client.messages | Xua | 2019-02-06 | 1 | -5/+5 | |
| | | | | Since `Client.messages` no longer exists, I think we should remove the note about the cache being named that. | |||||
| * | Fix user/user_id documentation for reaction remove events | MusicOnline | 2019-01-28 | 1 | -1/+1 | |
| | | ||||||
| * | Fix documentation for NotificationLevel | Chris R | 2018-11-26 | 1 | -2/+2 | |
| | | ||||||
| * | Add support for default notification level in audit logs and Guild.edit | Rapptz | 2018-11-25 | 1 | -1/+7 | |
| | | ||||||
| * | Add Guild.default_notifications | Chris | 2018-11-24 | 1 | -0/+11 | |
| | | ||||||
| * | add support for Bug Hunter and Early Supporter flags | bmintz | 2018-11-24 | 1 | -0/+6 | |
| | | ||||||
| * | Revert "Rework documentation to not duplicate inherited members." | Rapptz | 2018-10-11 | 1 | -0/+42 | |
| | | | | | This reverts commit 96981210b3415e15446db0b702b07fef25c8b680. | |||||
| * | Rework documentation to not duplicate inherited members. | Rapptz | 2018-10-03 | 1 | -42/+0 | |
| | | | | | This will probably be reverted in 1 week. | |||||
| * | Add support for AuditLogDiff.slowmode_delay. | Rapptz | 2018-09-25 | 1 | -6/+13 | |
| | | ||||||
| * | Fix webhook_update from code review | Jeremy Zhang | 2018-09-15 | 1 | -1/+1 | |
| | | ||||||
| * | Simple parser for WEBHOOKS_UPDATE | Jeremy Zhang | 2018-09-15 | 1 | -0/+6 | |
| | | ||||||
| * | [docs] sort the VoiceRegions | bmintz | 2018-08-30 | 1 | -33/+33 | |
| | | | | | | | having them appear in the docs ordered by their internal number is not useful to the user. Sorting them by name allows one to more quickly locate a voice region in the docs. | |||||
| * | document HypeSquadHouse and Profile.hypesquad_houses | bmintz | 2018-08-30 | 1 | -1/+17 | |
| | | ||||||
| * | Fix typo in on_raw_reaction_add event. | Chris | 2018-08-28 | 1 | -1/+1 | |
| | | ||||||
| * | Adds missing voice regions. | MaximusPX | 2018-08-22 | 1 | -2/+7 | |
| | | ||||||
| * | More informations for the Application info | El Laggron | 2018-08-22 | 1 | -0/+18 | |
| | | | | | | This adds the rpc_origin, bot_public and bot_require_code_grant attributes | |||||
| * | Drop support for Python 3.4 and make minimum version 3.5.2. | Rapptz | 2018-06-10 | 1 | -23/+3 | |
| | | ||||||
| * | Change raw events to use slotted data models instead of parameters. | Rapptz | 2018-04-14 | 1 | -25/+49 | |
| | | | | | | | | | | | This allows for internal changes in Discord to not cause a breaking change every time something changes. Also implements #1214 which adds guild_id to every event where applicable. This is a breaking change. | |||||
| * | Split Game object to separate Activity subtypes for Rich Presences. | Rapptz | 2018-03-05 | 1 | -4/+43 | |
| | | | | | | | | | | | | This is a massive breaking change. * All references to "game" have been renamed to "activity" * Activity objects contain a majority of the rich presence information * Game and Streaming are subtypes for memory optimisation purposes for the more common cases. * Introduce a more specialised read-only type, Spotify, for the official Spotify integration to make it easier to use. | |||||
| * | Add documentation for new_member system messages | FrostLuma | 2018-01-22 | 1 | -0/+4 | |
| | | ||||||
| * | Change PartialReactionEmoji to PartialEmoji, add a PartialEmojiConverter | Gorialis | 2018-01-06 | 1 | -4/+4 | |
| | | ||||||
| * | Add intersphinx | Tobotimus | 2018-01-06 | 1 | -31/+31 | |
| | | ||||||
| * | Missing Voice Regions | Mippy (William) | 2017-11-12 | 1 | -0/+9 | |
| | | ||||||