| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [commands] Document GuildNotFound | Aaron Hennessey | 2021-08-10 | 1 | -0/+1 |
| | | |||||
| * | [commands] Add GuildStickerConverter | z03h | 2021-08-10 | 3 | -0/+65 |
| | | |||||
| * | Add TextChannel.default_auto_archive_duration | Rapptz | 2021-08-02 | 3 | -1/+13 |
| | | |||||
| * | Fallback to None message_id searches in View dispatch | Rapptz | 2021-08-01 | 1 | -1/+3 |
| | | | | | | | | Not all persistent views have an associated message_id attached to them. Fix #7319 | ||||
| * | Fix debug event toggle not triggering for raw receive | Rapptz | 2021-08-01 | 1 | -3/+3 |
| | | |||||
| * | Remove unused variable in view | Rapptz | 2021-08-01 | 1 | -1/+0 |
| | | |||||
| * | Change View dispatch mechanism to be keyed by message_id as well | Rapptz | 2021-07-31 | 1 | -5/+6 |
| | | | | | | | | | If different persistent view instances are used within different message_ids their callbacks will get called without differentiating between them, leading to potential issues such as 404 errors. This change makes it so N views with custom IDs bound to N message_ids will no longer conflict with one another. | ||||
| * | Fix typo in TextChannel.start_thread | Rapptz | 2021-07-31 | 1 | -1/+1 |
| | | |||||
| * | Add enable_debug_events parameter to enable expensive debug events | Rapptz | 2021-07-31 | 3 | -3/+30 |
| | | | | | This should allow less dispatching during heavy gateway event streams. | ||||
| * | Cast removed thread member IDs to int | Rapptz | 2021-07-31 | 1 | -1/+1 |
| | | |||||
| * | Add on_socket_event_type event | Rapptz | 2021-07-31 | 2 | -3/+15 |
| | | |||||
| * | FIx on_thread_member_remove passing in None | Rapptz | 2021-07-31 | 1 | -1/+2 |
| | | |||||
| * | Fix on_thread_member_remove not dispatching | Rapptz | 2021-07-31 | 1 | -1/+1 |
| | | |||||
| * | Fix docs for stickers | LightSage | 2021-07-31 | 2 | -2/+2 |
| | | |||||
| * | Update description of auto_archive_duration kwarg of Thread.edit | Willy | 2021-07-31 | 1 | -1/+1 |
| | | |||||
| * | Change payload to use sticker_ids instead of sticker_items | Rapptz | 2021-07-30 | 1 | -2/+2 |
| | | |||||
| * | Document TypeError raise in lottie sticker | Rapptz | 2021-07-30 | 1 | -0/+2 |
| | | |||||
| * | Rename instances of nitro to premium | Rapptz | 2021-07-30 | 6 | -11/+11 |
| | | |||||
| * | Fix SyncWebhook not working across thread barriers | Rapptz | 2021-07-30 | 1 | -11/+22 |
| | | | | | Fix #7310 | ||||
| * | Fix User.accent_color incorrect attribute access | nickofolas | 2021-07-30 | 1 | -2/+2 |
| | | |||||
| * | Rename types.Union -> UnionType for bpo-44732 | James | 2021-07-30 | 1 | -1/+1 |
| | | |||||
| * | [commands] Fix NSFW check within threads under NSFW channels | marshall | 2021-07-30 | 0 | -0/+0 |
| | | |||||
| * | [commands] Document dynamic_cooldown | Willy | 2021-07-30 | 1 | -0/+3 |
| | | |||||
| * | Add Thread to Messageable docstring | SYCKGit | 2021-07-30 | 1 | -0/+1 |
| | | |||||
| * | Add Thread.category | Arthur | 2021-07-30 | 1 | -1/+21 |
| | | |||||
| * | [commands] fix bot_has_role and is_nsfw for threads | z03h | 2021-07-30 | 1 | -7/+5 |
| | | |||||
| * | implement guild stickers | Nadir Chowdhury | 2021-07-30 | 16 | -85/+1119 |
| | | |||||
| * | Fix user cache acting incorrectly with evictions | Rapptz | 2021-07-29 | 8 | -8/+14 |
| | | | | | | | | | | | | | | | The first issue involved copied users which would lead to user updates causing faster evictions of the cache than was expected. The second issue involved users that weren't bound to an internal lifetime eviction policy. These users would not get evicted. For example, a user without mutual guilds or being part of the internal cache in general (messages, DMs) would never end up being evicted for some strange reason. To handle this case, store_user would get a counterpart named create_user which would create a user without potentially storing them in the cache. That way only users with a bound lifetime within the library would be stored. | ||||
| * | Add Guild.get_channel_or_thread helper method | Rapptz | 2021-07-29 | 1 | -0/+18 |
| | | | | | The name might change in the future, unsure. | ||||
| * | [commands] Check for ctx.guild instead of abc.GuildChannel | Rapptz | 2021-07-28 | 1 | -2/+2 |
| | | |||||
| * | Allow creating a public thread without a starter message | Rapptz | 2021-07-28 | 3 | -11/+17 |
| | | |||||
| * | Use a default value for StageInstance.discoverable_enabled | Rapptz | 2021-07-28 | 1 | -2/+2 |
| | | | | | Apparently this caused crashes | ||||
| * | Fix recursive inheritance in BaseUser | Rapptz | 2021-07-28 | 1 | -1/+1 |
| | | |||||
| * | Fix PartialMessage rejecting Threads | nickofolas | 2021-07-28 | 1 | -2/+9 |
| | | |||||
| * | Set Thread.member/message_count | Nadir Chowdhury | 2021-07-28 | 1 | -0/+2 |
| | | |||||
| * | Add system_content for thread message types, fix other system_content issues | Lilly Rose Berner | 2021-07-28 | 1 | -10/+37 |
| | | |||||
| * | Change type to be compatible with the overwrites property | PythonCoderAS | 2021-07-28 | 2 | -18/+18 |
| | | |||||
| * | Add support for discord.ui.Select.disabled | Lucas Hardt | 2021-07-28 | 3 | -1/+27 |
| | | |||||
| * | Allow callables in abc.Connectable.Connect | Josh | 2021-07-28 | 1 | -1/+9 |
| | | |||||
| * | Add audit log events for threads | Nadir Chowdhury | 2021-07-28 | 5 | -9/+117 |
| | | |||||
| * | Fixes minor grammatical error in Command.update | Stocker | 2021-07-28 | 2 | -2/+2 |
| | | |||||
| * | Fix Example Usage in docs | AkshuAgarwal | 2021-07-28 | 1 | -0/+1 |
| | | |||||
| * | Fix EqualityComparable.__eq__ typing | Gnome! | 2021-07-28 | 1 | -6/+2 |
| | | |||||
| * | Fix a typo within the documentation | xPolar | 2021-07-28 | 1 | -1/+1 |
| | | |||||
| * | Add reason kwarg to more methods | Nadir Chowdhury | 2021-07-28 | 4 | -26/+49 |
| | | |||||
| * | Add Number type (10) to Application Command Option types | Josh | 2021-07-28 | 1 | -1/+7 |
| | | |||||
| * | Add an example for the new dropdowns | Robin5605 | 2021-07-28 | 1 | -0/+63 |
| | | |||||
| * | Add BaseUser.banner for all subclasses to access new banners | Alex Nørgaard | 2021-07-28 | 2 | -2/+61 |
| | | |||||
| * | Add a new view example for link buttons | Ay355 | 2021-07-22 | 1 | -0/+39 |
| | | |||||
| * | Fix incorrect typehint in send_message | Willy | 2021-07-21 | 1 | -2/+2 |
| | | |||||