aboutsummaryrefslogtreecommitdiff
path: root/discord/message.py
Commit message (Collapse)AuthorAgeFilesLines
* PartialMessage.edit returns a full MessageAnurag Singh2021-01-151-1/+99
|
* Change copyright year to presentNihaal Sangha2021-01-151-1/+1
|
* Capitalize Discord in docs of message related attributesMisa2020-12-261-2/+2
|
* Allow PartialMessage to work with DM channels as wellRapptz2020-12-111-9/+9
|
* Export to_message_reference_dict to make PartialMessage.reply workRapptz2020-12-111-0/+1
|
* Add operations you can do to a Message and PartialMessage to docsRapptz2020-12-111-1/+27
|
* Add PartialMessage to allow working with channel/message_id pairs.Rapptz2020-12-111-21/+119
| | | | Fix #5905
* Revert Message.edit logic that deals with allowed_mentionsRapptz2020-12-081-26/+11
| | | | It made no sense here.
* Fix embed suppression when using client-wide allowed_mentions Lilly Rose Berner2020-12-081-1/+1
|
* [chore] Remove redundant importsNadir Chowdhury2020-11-281-1/+0
| | | This also removes the historical patch for NullHandler implemented in bbf1c54, as it has been available since Python 3.1.
* Fix Message.to_reference from the MessageReference changesRapptz2020-11-271-1/+3
|
* Correct docstring missing ]Rapptz2020-11-271-1/+1
|
* Added MessageReference.resolved attribute to get replied to messageRapptz2020-11-271-2/+65
|
* Allow MessageReference to be constructible by usersRapptz2020-11-271-6/+22
|
* Code cleanup involving enums and message repliesRapptz2020-11-271-2/+70
|
* Implement discord.Message.replyPikalaxALT2020-11-261-46/+77
|
* Ensure member key is not overwritten by author key in MESSAGE_UPDATERapptz2020-11-231-7/+14
| | | | | | | This also coerces the older message to take the member data from the newer message so the types are not incompatible. Fix #5999
* Add sticker supportZomatree2020-11-231-2/+8
|
* Use Hashable mixin for MessagePythonCoderAS2020-10-161-4/+2
|
* Fix and add documentationMichael2020-09-231-1/+1
|
* Add support for message_reference on Message objectSebastian Law2020-09-231-1/+42
|
* Completely update member references from message inner members.Rapptz2020-09-171-2/+1
| | | | Fixes #5819
* Added __eq__ to MessageAndres Torres2020-09-041-0/+3
|
* Fixed a typo in message unpinning docsELginas2020-08-051-1/+1
|
* Update message references in AutoShardedConnectionStateRapptz2020-07-251-0/+8
| | | | Fixes #5133
* Allow more methods to set an audit log reasonNadir Chowdhury2020-06-301-4/+18
|
* Fix various inconsistencies within the documentation (#5067)Sebastian Law2020-06-281-1/+1
|
* Update Message.system_content join strings to be up to date.Rapptz2020-06-271-37/+11
| | | | Fixes #4211
* Add spoiler keyword argument to Attachment.to_fileZomatree2020-05-231-2/+6
|
* Prepare for the discord.com domain renameRapptz2020-05-231-1/+1
|
* add support for allowed_mentions with message editStarrFox2020-05-101-0/+16
|
* Make use_cached keyword onlyRapptz2020-05-031-2/+2
|
* Add versionadded to Attachment.to_file use_cached paramJosh2020-05-021-0/+2
|
* Edit message publish documentationKowlin2020-04-141-5/+2
|
* Add use_cached to Attachment.to_fileMaku2020-04-041-2/+12
|
* Fix crashes when Message.guild is ObjectRapptz2020-02-161-2/+2
|
* Explicitly check for guild objectMerlintor2020-01-261-1/+2
|
* Fixes and improvements for v1.3 documentationHarmon2020-01-221-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 documentationRapptz2020-01-211-3/+3
|
* Update attachment documentation for width/height applying to videos tooRapptz2020-01-201-2/+2
|
* Bump copyright year to 2020Rapptz2020-01-191-1/+1
| | | | Closes #2510
* Document NotFound exception raise in message deletion endpointsRapptz2020-01-181-0/+2
|
* Add support for clearing a specific reaction.Rapptz2020-01-171-0/+43
| | | | Closes #2440
* Add Attachment.to_file to easily send an attachment.Rapptz2020-01-031-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_contentRapptz2019-12-251-12/+1
| | | | The utils.escape_mentions should deal with it
* Use discord.utils.escape_mentions as last step ofMichael H2019-12-251-1/+4
| | | | discord.Message.clean_content
* Implement discord.MessageFlagsNCPlayz2019-12-201-4/+34
| | | | Refactor flags placement and use it for suppression.
* Document the exception-suppressing behaviour of Message.deleteIo Mintz2019-12-171-1/+1
| | | | | This is already documented for Messageable.send's delete_after kwarg. PR #2481
* Fix all deprecation warnings for 3.8Rapptz2019-11-201-1/+1
|
* Move PartialEmoji over to a new namespace to avoid circular importsRapptz2019-11-201-1/+2
|