aboutsummaryrefslogtreecommitdiff
path: root/discord/message.py
Commit message (Expand)AuthorAgeFilesLines
* Fix bug with Message.role_mentions always being empty.Rapptz2017-02-131-1/+1
* Call message edit handlers after attempting to patch individual fieldsRapptz2017-02-091-6/+6
* Fix more places where server is used instead of guild in docstrings.Rapptz2017-02-081-2/+2
* Remove unused Message._handle_upgrades function.Rapptz2017-01-291-17/+0
* Allow removing an embed in Message.editRapptz2017-01-291-5/+20
* Update copyright year to 2017.Rapptz2017-01-201-1/+1
* Remove _get_guild_id from Messageable ABC.Rapptz2017-01-141-3/+2
* Move message creation to a factory method inside ConnectionState.Rapptz2017-01-031-15/+16
* Move away from StateContext and use ConnectionState directly.Rapptz2017-01-031-2/+2
* Add useful repr to all data classes.Rapptz2017-01-031-0/+3
* Fix handling of author update and missing type attribute in Message.Rapptz2017-01-031-4/+11
* Absolute import some circular dependencies to appease Python 3.4.Rapptz2017-01-031-15/+16
* Add Message.clear_reactionsRapptz2017-01-031-0/+18
* Re-add support for embeds.Rapptz2017-01-031-2/+6
* Make Message.embeds to be based on discord.EmbedRapptz2017-01-031-5/+4
* Re-add support for reactions.Rapptz2017-01-031-6/+124
* Rename try_insert_user to store_userRapptz2017-01-031-2/+2
* Rename Server to Guild everywhere.Rapptz2017-01-031-16/+16
* Stateful Message and remove Invite.xkcd since it is removed.Rapptz2017-01-031-1/+86
* Split channel types.Rapptz2017-01-031-2/+2
* Switch IDs to use int instead of strRapptz2017-01-031-7/+7
* Remove Message.timestamp and make Message.channel_mentions lazy.Rapptz2017-01-031-46/+60
* Begin working on the rewrite.Rapptz2017-01-031-25/+26
* Inject full Emoji to Reaction if we have it.khazhyk2016-11-031-1/+3
* Add support for reactions.khazhyk2016-10-271-1/+5
* Support for pinned system messages.Rapptz2016-09-121-11/+15
* Add utility properties to CallMessage to query information.Rapptz2016-07-151-1/+1
* Fix the displaying of Message.system_contentRapptz2016-07-151-5/+4
* Add support for different message types and call message.Rapptz2016-07-131-5/+76
* Make Message.channel_mentions unique.Rapptz2016-06-271-4/+2
* Add support for message pinning.Rapptz2016-06-181-2/+5
* Fix typo in Message.role_mentions documentation.Rapptz2016-05-011-1/+1
* Add Message.role_mentions and handle them in Message.clean_contentRapptz2016-04-291-24/+45
* Message.clean_content now takes into consideration @here mentions.Rapptz2016-04-231-1/+11
* Guard against AttributeErrors when clearing cached slot cache.Rapptz2016-04-051-3/+14
* Make Message.clean_content a cached property again.Rapptz2016-04-051-3/+8
* Fix handling of message update in MESSAGE_UPDATEZeta2016-04-051-16/+19
* Fix bug where @everyone usernames bypass Message.clean_content.Rapptz2016-03-021-2/+2
* Message.clean_content now handles everyone mentions properly.Rapptz2016-01-301-0/+3
* performance improvementsSteven Berler2016-01-081-3/+3
* Add Message.nonce attribute.Rapptz2016-01-071-2/+5
* Add __slots__ for missing classes that didn't have it.Rapptz2016-01-061-3/+8
* Update license of files to 2016.Rapptz2016-01-041-1/+1
* Message no longer upgrades if the channel is an ObjectRapptz2015-12-291-0/+3
* Add __slots__ where appropriate to data classes.Rapptz2015-12-191-1/+1
* Add Message.clean_content property to get prettified mentions.Rapptz2015-12-171-0/+26
* Change regex from \d+ to [0-9]+ for performance reasons.Rapptz2015-12-161-2/+2
* Clean-up documentation to use NumPy style docs on remaining classes.Rapptz2015-12-161-37/+25
* Make more things into properties.Rapptz2015-12-161-11/+9
* Message.channel's Object instance has an is_private attribute now.Rapptz2015-11-281-1/+4