aboutsummaryrefslogtreecommitdiff
path: root/discord/message.py
Commit message (Collapse)AuthorAgeFilesLines
* Message.channel's Object instance has an is_private attribute now.Rapptz2015-11-281-1/+4
| | | | | | | | This was to allow for basic checks such as message.channel.is_private to succeed at the very least. It is a very small mitigation and not perfect since it doesn't have every attribute that PrivateChannel itself has. However you could retrieve the user info through the Message.author attribute.
* 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
| | | | Fixes #21
* 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
| | | | Closes #11.
* 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