| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix crashes when Message.guild is Object | Rapptz | 2020-02-16 | 1 | -2/+2 |
| | | |||||
| * | Explicitly check for guild object | Merlintor | 2020-01-26 | 1 | -1/+2 |
| | | |||||
| * | Fixes and improvements for v1.3 documentation | Harmon | 2020-01-22 | 1 | -0/+6 |
| | | | | | | | | | | * 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 | ||||
| * | Drop superfluous zero in version related changes in the documentation | Rapptz | 2020-01-21 | 1 | -3/+3 |
| | | |||||
| * | Update attachment documentation for width/height applying to videos too | Rapptz | 2020-01-20 | 1 | -2/+2 |
| | | |||||
| * | Bump copyright year to 2020 | Rapptz | 2020-01-19 | 1 | -1/+1 |
| | | | | | Closes #2510 | ||||
| * | Document NotFound exception raise in message deletion endpoints | Rapptz | 2020-01-18 | 1 | -0/+2 |
| | | |||||
| * | Add support for clearing a specific reaction. | Rapptz | 2020-01-17 | 1 | -0/+43 |
| | | | | | Closes #2440 | ||||
| * | Add Attachment.to_file to easily send an attachment. | Rapptz | 2020-01-03 | 1 | -0/+27 |
| | | | | | | | | | | | | | | | | The first thing someone will ask when someone sees this method is "Why doesn't `send` just accept `Attachment`?". This question is fair but it has an issue: exception propagation becomes confusing. When we save a file and write it to memory an HTTP request is sent similar to other API calls. Like all HTTP requests, these can fail. Since these requests denote failure using HTTPException, if it were to originate within `send` then it becomes confusing to know whether the attachment saving itself failed or whether the sending failed. For that reason, and to keep in-line with only 1 type of HTTP call per method, it doesn't make sense for `send` to support `Attachment`. | ||||
| * | Remove unnecessary pass using regex in Message.clean_content | Rapptz | 2019-12-25 | 1 | -12/+1 |
| | | | | | The utils.escape_mentions should deal with it | ||||
| * | Use discord.utils.escape_mentions as last step of | Michael H | 2019-12-25 | 1 | -1/+4 |
| | | | | | discord.Message.clean_content | ||||
| * | Implement discord.MessageFlags | NCPlayz | 2019-12-20 | 1 | -4/+34 |
| | | | | | Refactor flags placement and use it for suppression. | ||||
| * | Document the exception-suppressing behaviour of Message.delete | Io Mintz | 2019-12-17 | 1 | -1/+1 |
| | | | | | | This is already documented for Messageable.send's delete_after kwarg. PR #2481 | ||||
| * | Fix all deprecation warnings for 3.8 | Rapptz | 2019-11-20 | 1 | -1/+1 |
| | | |||||
| * | Move PartialEmoji over to a new namespace to avoid circular imports | Rapptz | 2019-11-20 | 1 | -1/+2 |
| | | |||||
| * | Fix broken versionadded in Message.is_system() | Steve C | 2019-09-10 | 1 | -1/+1 |
| | | |||||
| * | Add Message.is_system to more intuitively filter system messages. | Rapptz | 2019-08-27 | 1 | -0/+7 |
| | | |||||
| * | Add CHANNEL_FOLLOW_ADD Message Type | Dice | 2019-08-27 | 1 | -0/+3 |
| | | | | | | | | | Add documentation for MessageType.channel_follow_add Add versionchanged to new MessageType attr Add system_content for new MessageType | ||||
| * | Add upgraded Member to Message.mentions in case of no cache. | Rapptz | 2019-07-10 | 1 | -5/+9 |
| | | |||||
| * | Different method of upgrading user instances | Rapptz | 2019-07-10 | 1 | -0/+3 |
| | | |||||
| * | Fix regression where Message.edited_at would not update during edits | Rapptz | 2019-07-05 | 1 | -0/+3 |
| | | |||||
| * | Add support for suppressing embeds. | Rapptz | 2019-06-29 | 1 | -6/+19 |
| | | |||||
| * | Improve performance of parsing MESSAGE_UPDATE and MESSAGE_CREATE events | Rapptz | 2019-06-07 | 1 | -21/+67 |
| | | | | | | | | | Embed edits are no longer special cased in the dispatch code, which could lead to on_message_edit being called more often than it used to be called. I am not sure on the general impact on that being removed. Fixes #2195 | ||||
| * | Improve documentation | NCPlayz | 2019-06-07 | 1 | -16/+14 |
| | | |||||
| * | Add support for new message types related to premium guilds. | Rapptz | 2019-06-04 | 1 | -0/+12 |
| | | |||||
| * | Make __repr__ slightly more detailed and add a few missing ones. | Rapptz | 2019-05-26 | 1 | -1/+4 |
| | | | | | | | This includes raw events (which didn't have any) and a few other types that were missing them. Upon review some more useful fields were added to the repr output which would be more useful during debugging. | ||||
| * | Add note for Message.tts | Rapptz | 2019-05-25 | 1 | -0/+2 |
| | | | | | Fix #2186 | ||||
| * | Fix pluralization errors in various files | Ehren Julien-Neitzert | 2019-05-23 | 1 | -2/+2 |
| | | | | | | * Replaced instances of 'return an' with 'returns an' * fixed pluralization errors | ||||
| * | Proper location of versionadded | Rapptz | 2019-04-29 | 1 | -2/+2 |
| | | |||||
| * | Add read method to attachment objects | Vexs | 2019-04-29 | 1 | -2/+37 |
| | | | | | Refactor save to use new read method | ||||
| * | Make Message.ack an actual coroutine function. | Rapptz | 2019-04-20 | 1 | -2/+2 |
| | | |||||
| * | Add versionchanged to Message.delete | Rapptz | 2019-04-18 | 1 | -0/+3 |
| | | |||||
| * | Add delay kwarg to message.delete() | Vexs | 2019-04-18 | 1 | -10/+19 |
| | | | | | Refactor delete_after kwargs to use new delay kwarg | ||||
| * | Add support for <:name:id> format for adding reactions | Vexs | 2019-04-17 | 1 | -1/+3 |
| | | | | | Adjust FAQ to match. | ||||
| * | Internal consistency with message related HTTPClient methods | Rapptz | 2019-04-14 | 1 | -5/+5 |
| | | |||||
| * | Missing a word in Attachment.save | Rapptz | 2019-04-08 | 1 | -2/+2 |
| | | |||||
| * | Add note about escape_markdown in Message.clean_content | Rapptz | 2019-04-06 | 1 | -0/+6 |
| | | | | | Fix #1911 | ||||
| * | Fix Attachment.save wording nit. | Rapptz | 2019-04-06 | 1 | -3/+4 |
| | | |||||
| * | Redesign asset retrieval in the library. | NCPlayz | 2019-04-06 | 1 | -1/+1 |
| | | | | | | | | | | | | 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 | ||||
| * | Organise documentation | NCPlayz | 2019-03-19 | 1 | -5/+5 |
| | | |||||
| * | Support path-like objects in Attachment.save. | Rapptz | 2019-03-13 | 1 | -5/+6 |
| | | | | | Fix #1958 | ||||
| * | Expose Embed.from_data as Embed.from_dict | Rapptz | 2019-03-13 | 1 | -1/+1 |
| | | | | | This is a breaking change. | ||||
| * | Revert default parameter use_cached of Attachment.save back to False. | Rapptz | 2019-03-10 | 1 | -1/+1 |
| | | | | | Fix #1973 | ||||
| * | Have use_cached=True by default for Attachment.save. | Rapptz | 2019-03-06 | 1 | -8/+8 |
| | | | | | Also touch up the documentation a bit. | ||||
| * | Added cached saving for attachments | Maku | 2019-03-06 | 1 | -3/+9 |
| | | | | | Updated docstring | ||||
| * | Update Member.joined_at on MESSAGE_CREATE and document it can be None. | Rapptz | 2019-02-27 | 1 | -1/+16 |
| | | | | | Fixes #1638 | ||||
| * | Manually calculate millisceond epoch rather than bitshifting | slice | 2019-02-15 | 1 | -4/+6 |
| | | | | | Implementation by Danny. | ||||
| * | Fix system_content returning incorrect join messages | slice | 2019-02-15 | 1 | -4/+6 |
| | | |||||
| * | Bumped copyright years to 2019. | Dante Dam | 2019-01-28 | 1 | -1/+1 |
| | | |||||
| * | Add support for spoiler attachments. | Rapptz | 2018-12-14 | 1 | -0/+4 |
| | | |||||