aboutsummaryrefslogtreecommitdiff
path: root/discord/message.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Add caveat note about Message.mention_everyoneRapptz2015-11-281-0/+7
* Add warning for Message.mentions order being non-deterministic.Rapptz2015-11-281-0/+6
* Add Message.channel_mentionsRapptz2015-11-191-0/+12
* Add get_raw_[channel_]mentions to MessageRapptz2015-11-191-0/+19
* Fix is_private check in mentions array handling.Rapptz2015-11-191-1/+4
* Fix ordering issue with Message.serverRapptz2015-11-181-3/+5
* Message.mentions now returns a list of Member instead of UserRapptz2015-11-161-3/+14
* Make Message.channel an Object if something goes wrong.Rapptz2015-10-271-3/+8
* Add Message.server attribute shortcut.Rapptz2015-10-231-0/+4
* Documentation fixes for Message.Rapptz2015-10-211-4/+6
* Message.author is now either Member or User.Rapptz2015-10-141-4/+15
* Refactor parse_time into its own utils file.Rapptz2015-09-041-10/+3
* Use kwargs if the number of arguments needed is too many.Rapptz2015-09-041-13/+13
* Python3 import fixes.Rapptz2015-08-281-1/+1
* Fix issue with some MESSAGE_UPDATE events.v0.2.1Rapptz2015-08-241-5/+8
* Some documentation warning fixes.Rapptz2015-08-211-1/+1
* Change the way timestamps are parsed.Rapptz2015-08-211-4/+7
* Initial commitRapptz2015-08-211-0/+89