| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix user cache acting incorrectly with evictions | Rapptz | 2021-07-29 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | 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. | ||||
| * | Mention ephemeral messages can only be edited with raw method | Rapptz | 2021-07-03 | 1 | -0/+3 |
| | | |||||
| * | Fix building docs due to missing InteractionMessage in __all__ | Alex Nørgaard | 2021-07-03 | 1 | -0/+1 |
| | | |||||
| * | Add support for fetching the original interaction response message | Rapptz | 2021-07-03 | 1 | -6/+280 |
| | | |||||
| * | Fix typo with exception name in InteractionResponse | Rapptz | 2021-07-03 | 1 | -4/+4 |
| | | |||||
| * | Add Interaction.permissions to get resolved permissions | Rapptz | 2021-07-03 | 1 | -1/+15 |
| | | |||||
| * | Type hint instance variables in interactions | Rapptz | 2021-07-03 | 1 | -13/+15 |
| | | |||||
| * | Raise an exception if an interaction has been responded before | Rapptz | 2021-07-03 | 1 | -4/+20 |
| | | | | | Fix #7153 | ||||
| * | Update examples of interactions to mention components | jack1142 | 2021-07-02 | 1 | -2/+1 |
| | | |||||
| * | Fix Interaction.channel being None in threads | Nadir Chowdhury | 2021-07-01 | 1 | -4/+7 |
| | | |||||
| * | None check in InteractionResponse.edit_message | Devon R | 2021-06-10 | 1 | -1/+1 |
| | | |||||
| * | Remove view syncing before editing in views | Rapptz | 2021-05-31 | 1 | -3/+5 |
| | | | | | | This prevents a potential race condition when a MESSAGE_UPDATE is received syncing and refreshing the view components causing a desync. | ||||
| * | Check for view finished state before resuming listening on edit | Rapptz | 2021-05-31 | 1 | -1/+1 |
| | | |||||
| * | Sync views in InteractionResponse.edit_message | Rapptz | 2021-05-31 | 1 | -0/+6 |
| | | |||||
| * | Add support for interaction followups | Rapptz | 2021-05-30 | 1 | -1/+12 |
| | | |||||
| * | Allow sending View with Interaction.response.send_message | Rapptz | 2021-05-30 | 1 | -0/+15 |
| | | | | | This also allows for ephemeral views and listening to said views | ||||
| * | Allow passing multiple embeds in InteractionResponse.edit_message | Rapptz | 2021-05-27 | 1 | -3/+15 |
| | | |||||
| * | Add support for setting interaction responses | Rapptz | 2021-05-27 | 1 | -5/+244 |
| | | |||||
| * | Fix some type hints in interactions | Rapptz | 2021-05-27 | 1 | -2/+3 |
| | | |||||
| * | [Interactions] Create User only when in DMs | AXVin | 2021-05-27 | 1 | -5/+7 |
| | | |||||
| * | Properly guard for DMs in interaction creation | Rapptz | 2021-05-27 | 1 | -5/+6 |
| | | | | | Fix #6794 | ||||
| * | Add initial support for buttons and components | Rapptz | 2021-05-27 | 1 | -1/+27 |
| | | |||||
| * | Add interaction related typings | Rapptz | 2021-04-08 | 1 | -5/+14 |
| | | |||||
| * | Add on_interaction event and Interaction class. | Rapptz | 2021-04-06 | 1 | -0/+104 |
| This is the first pass at the functionality. It's currently a bit incomplete. | |||||