| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Fix fail_if_not_exists not being set when constructed with state | Rapptz | 2021-04-14 | 1 | -0/+1 | |
| | | ||||||
| * | Use f-strings in more places that were missed. | Rapptz | 2021-04-08 | 1 | -14/+14 | |
| | | ||||||
| * | Use `asyncio.create_task` over `asyncio.ensure_future` | Nadir Chowdhury | 2021-04-05 | 1 | -1/+1 | |
| | | ||||||
| * | Fix versionadded not showing in docs for Attachment.content_type | Logan | 2021-04-05 | 1 | -1/+1 | |
| | | ||||||
| * | Convert datetimes to aware datetimes with UTC. | Rapptz | 2021-04-04 | 1 | -5/+2 | |
| | | | | | | Naive datetimes will now be interpreted as local time throughout the library. | |||||
| * | Remove userbot functionality | Rapptz | 2021-04-04 | 1 | -66/+2 | |
| | | | | | | This has a lot of legacy and cruft so there may be some stuff I've missed but this first pass is enough to get a clear separation. | |||||
| * | Modernize code to use f-strings | Rapptz | 2021-04-04 | 1 | -16/+14 | |
| | | | | | | This also removes the encoding on the top, since Python 3 does it by default. It also changes some methods to use `yield from`. | |||||
| * | Add content_type to Attachment | Zomatree | 2021-04-03 | 1 | -1/+6 | |
| | | ||||||
| * | Add support for fail_if_not_exists in MessageReference | Lilly Rose Berner | 2021-03-30 | 1 | -6/+28 | |
| | | ||||||
| * | Add remove_markdown helper function | Edwin | 2021-03-28 | 1 | -3/+3 | |
| | | ||||||
| * | Make Attachment hashable and castable to str | Rapptz | 2021-03-25 | 1 | -1/+25 | |
| | | ||||||
| * | remove trailing whitespace | Nadir Chowdhury | 2021-03-13 | 1 | -2/+2 | |
| | | ||||||
| * | Fix typo with guild_discovery_grace_period_final_warning | Nadir Chowdhury | 2021-03-02 | 1 | -1/+1 | |
| | | ||||||
| * | Add remaining v6 message types | Nadir Chowdhury | 2021-02-23 | 1 | -0/+15 | |
| | | ||||||
| * | Deprecate non-bot methods | Nadir Chowdhury | 2021-02-23 | 1 | -0/+6 | |
| | | ||||||
| * | Clarify Message.nonce documentation | Rapptz | 2021-02-18 | 1 | -1/+1 | |
| | | | | | Fix #2451 | |||||
| * | Ensure Message.call is None by default | Peter Delevoryas | 2021-02-06 | 1 | -0/+1 | |
| | | | | | | | | `Message` has an attribute `call` which is claimed to have type `Optional[CallMessage]`. But `Message` doesn't actually ensure that `call` is initialized to a value in `__init__`. This commit fixes that inconsistency. | |||||
| * | Add MessageReference.jump_url | z03h | 2021-01-17 | 1 | -0/+9 | |
| | | ||||||
| * | PartialMessage.edit returns a full Message | Anurag Singh | 2021-01-15 | 1 | -1/+99 | |
| | | ||||||
| * | Change copyright year to present | Nihaal Sangha | 2021-01-15 | 1 | -1/+1 | |
| | | ||||||
| * | Capitalize Discord in docs of message related attributes | Misa | 2020-12-26 | 1 | -2/+2 | |
| | | ||||||
| * | Allow PartialMessage to work with DM channels as well | Rapptz | 2020-12-11 | 1 | -9/+9 | |
| | | ||||||
| * | Export to_message_reference_dict to make PartialMessage.reply work | Rapptz | 2020-12-11 | 1 | -0/+1 | |
| | | ||||||
| * | Add operations you can do to a Message and PartialMessage to docs | Rapptz | 2020-12-11 | 1 | -1/+27 | |
| | | ||||||
| * | Add PartialMessage to allow working with channel/message_id pairs. | Rapptz | 2020-12-11 | 1 | -21/+119 | |
| | | | | | Fix #5905 | |||||
| * | Revert Message.edit logic that deals with allowed_mentions | Rapptz | 2020-12-08 | 1 | -26/+11 | |
| | | | | | It made no sense here. | |||||
| * | Fix embed suppression when using client-wide allowed_mentions | Lilly Rose Berner | 2020-12-08 | 1 | -1/+1 | |
| | | ||||||
| * | [chore] Remove redundant imports | Nadir Chowdhury | 2020-11-28 | 1 | -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 changes | Rapptz | 2020-11-27 | 1 | -1/+3 | |
| | | ||||||
| * | Correct docstring missing ] | Rapptz | 2020-11-27 | 1 | -1/+1 | |
| | | ||||||
| * | Added MessageReference.resolved attribute to get replied to message | Rapptz | 2020-11-27 | 1 | -2/+65 | |
| | | ||||||
| * | Allow MessageReference to be constructible by users | Rapptz | 2020-11-27 | 1 | -6/+22 | |
| | | ||||||
| * | Code cleanup involving enums and message replies | Rapptz | 2020-11-27 | 1 | -2/+70 | |
| | | ||||||
| * | Implement discord.Message.reply | PikalaxALT | 2020-11-26 | 1 | -46/+77 | |
| | | ||||||
| * | Ensure member key is not overwritten by author key in MESSAGE_UPDATE | Rapptz | 2020-11-23 | 1 | -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 support | Zomatree | 2020-11-23 | 1 | -2/+8 | |
| | | ||||||
| * | Use Hashable mixin for Message | PythonCoderAS | 2020-10-16 | 1 | -4/+2 | |
| | | ||||||
| * | Fix and add documentation | Michael | 2020-09-23 | 1 | -1/+1 | |
| | | ||||||
| * | Add support for message_reference on Message object | Sebastian Law | 2020-09-23 | 1 | -1/+42 | |
| | | ||||||
| * | Completely update member references from message inner members. | Rapptz | 2020-09-17 | 1 | -2/+1 | |
| | | | | | Fixes #5819 | |||||
| * | Added __eq__ to Message | Andres Torres | 2020-09-04 | 1 | -0/+3 | |
| | | ||||||
| * | Fixed a typo in message unpinning docs | ELginas | 2020-08-05 | 1 | -1/+1 | |
| | | ||||||
| * | Update message references in AutoShardedConnectionState | Rapptz | 2020-07-25 | 1 | -0/+8 | |
| | | | | | Fixes #5133 | |||||
| * | Allow more methods to set an audit log reason | Nadir Chowdhury | 2020-06-30 | 1 | -4/+18 | |
| | | ||||||
| * | Fix various inconsistencies within the documentation (#5067) | Sebastian Law | 2020-06-28 | 1 | -1/+1 | |
| | | ||||||
| * | Update Message.system_content join strings to be up to date. | Rapptz | 2020-06-27 | 1 | -37/+11 | |
| | | | | | Fixes #4211 | |||||
| * | Add spoiler keyword argument to Attachment.to_file | Zomatree | 2020-05-23 | 1 | -2/+6 | |
| | | ||||||
| * | Prepare for the discord.com domain rename | Rapptz | 2020-05-23 | 1 | -1/+1 | |
| | | ||||||
| * | add support for allowed_mentions with message edit | StarrFox | 2020-05-10 | 1 | -0/+16 | |
| | | ||||||
| * | Make use_cached keyword only | Rapptz | 2020-05-03 | 1 | -2/+2 | |
| | | ||||||