| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Message content is Optional in Message.edit. | Rapptz | 2017-07-10 | 1 | -1/+2 |
| | | |||||
| * | Allow PartialReactionEmoji in add_reaction and remove_reaction. | Rapptz | 2017-07-02 | 1 | -3/+7 |
| | | |||||
| * | Fix Message.remove_reaction and Message.add_reaction taking in Reaction | Rapptz | 2017-07-02 | 1 | -4/+6 |
| | | |||||
| * | Actually expose Message.webhook_id. | Rapptz | 2017-06-24 | 1 | -0/+1 |
| | | |||||
| * | Implement "partial" message events. | Rapptz | 2017-06-09 | 1 | -6/+4 |
| | | | | | | These are events that get triggered regardless of the state of the message cache. Useful for getting data from before the bot was booted. | ||||
| * | Writing to files is 'wb' not 'rb'. | Rapptz | 2017-05-30 | 1 | -1/+1 |
| | | |||||
| * | Implement an Attachment model. | Rapptz | 2017-05-30 | 1 | -3/+72 |
| | | |||||
| * | Kill remaining references to discord.Channel in documentation. | Rapptz | 2017-05-19 | 1 | -1/+1 |
| | | |||||
| * | First pass at documentation reform. | Rapptz | 2017-05-12 | 1 | -7/+7 |
| | | |||||
| * | Add support for audit log reasons. | Rapptz | 2017-05-07 | 1 | -2/+7 |
| | | | | | Most routes now have a 'reason' keyword argument. | ||||
| * | Change some format usage to use %-formatting. | Rapptz | 2017-05-04 | 1 | -4/+4 |
| | | | | | | Minor speed increase when we're not doing excessive attribute access or any type of formatting. | ||||
| * | Allow using Reaction objects while adding or removing reactions. | Rapptz | 2017-04-21 | 1 | -6/+10 |
| | | |||||
| * | Support for new member message types. | Rapptz | 2017-04-21 | 1 | -0/+28 |
| | | |||||
| * | Remove unused imports. | Rapptz | 2017-04-18 | 1 | -9/+2 |
| | | |||||
| * | Speed up message update handling. | Rapptz | 2017-03-14 | 1 | -8/+11 |
| | | | | | | | Apparently, checking if something is not None and then calling it is faster than having an identity function that will just return the original value untransformed, such as a lambda or doing a str(str) call | ||||
| * | Remove Message.edited_timestamp in favour of Message.edited_at | Rapptz | 2017-03-14 | 1 | -5/+8 |
| | | |||||
| * | Add support for message acking. | Rapptz | 2017-02-27 | 1 | -1/+21 |
| | | |||||
| * | Fix bug with Message.role_mentions always being empty. | Rapptz | 2017-02-13 | 1 | -1/+1 |
| | | |||||
| * | Call message edit handlers after attempting to patch individual fields | Rapptz | 2017-02-09 | 1 | -6/+6 |
| | | |||||
| * | Fix more places where server is used instead of guild in docstrings. | Rapptz | 2017-02-08 | 1 | -2/+2 |
| | | |||||
| * | Remove unused Message._handle_upgrades function. | Rapptz | 2017-01-29 | 1 | -17/+0 |
| | | |||||
| * | Allow removing an embed in Message.edit | Rapptz | 2017-01-29 | 1 | -5/+20 |
| | | |||||
| * | Update copyright year to 2017. | Rapptz | 2017-01-20 | 1 | -1/+1 |
| | | |||||
| * | Remove _get_guild_id from Messageable ABC. | Rapptz | 2017-01-14 | 1 | -3/+2 |
| | | |||||
| * | Move message creation to a factory method inside ConnectionState. | Rapptz | 2017-01-03 | 1 | -15/+16 |
| | | |||||
| * | Move away from StateContext and use ConnectionState directly. | Rapptz | 2017-01-03 | 1 | -2/+2 |
| | | |||||
| * | Add useful repr to all data classes. | Rapptz | 2017-01-03 | 1 | -0/+3 |
| | | |||||
| * | Fix handling of author update and missing type attribute in Message. | Rapptz | 2017-01-03 | 1 | -4/+11 |
| | | |||||
| * | Absolute import some circular dependencies to appease Python 3.4. | Rapptz | 2017-01-03 | 1 | -15/+16 |
| | | |||||
| * | Add Message.clear_reactions | Rapptz | 2017-01-03 | 1 | -0/+18 |
| | | |||||
| * | Re-add support for embeds. | Rapptz | 2017-01-03 | 1 | -2/+6 |
| | | |||||
| * | Make Message.embeds to be based on discord.Embed | Rapptz | 2017-01-03 | 1 | -5/+4 |
| | | |||||
| * | Re-add support for reactions. | Rapptz | 2017-01-03 | 1 | -6/+124 |
| | | | | | | We now store emojis in a global cache and make things like adding and removing reactions part of the stateful Message class. | ||||
| * | Rename try_insert_user to store_user | Rapptz | 2017-01-03 | 1 | -2/+2 |
| | | |||||
| * | Rename Server to Guild everywhere. | Rapptz | 2017-01-03 | 1 | -16/+16 |
| | | |||||
| * | Stateful Message and remove Invite.xkcd since it is removed. | Rapptz | 2017-01-03 | 1 | -1/+86 |
| | | |||||
| * | Split channel types. | Rapptz | 2017-01-03 | 1 | -2/+2 |
| | | | | | | | | | | | | This splits them into the following: * DMChannel * GroupChannel * VoiceChannel * TextChannel This also makes the channels "stateful". | ||||
| * | Switch IDs to use int instead of str | Rapptz | 2017-01-03 | 1 | -7/+7 |
| | | |||||
| * | Remove Message.timestamp and make Message.channel_mentions lazy. | Rapptz | 2017-01-03 | 1 | -46/+60 |
| | | | | | | | Message.timestamp is replaced with Message.created_at. This commit also affects how MESSAGE_UPDATE is handled by only assuming that two keys are provided rather than overwriting data with missing keys. | ||||
| * | Begin working on the rewrite. | Rapptz | 2017-01-03 | 1 | -25/+26 |
| | | |||||
| * | Inject full Emoji to Reaction if we have it. | khazhyk | 2016-11-03 | 1 | -1/+3 |
| | | | | | | | | Reaction objects with custom Emoji are partial. If we know of this Emoji (can find it on this client) then inject it. Otherwise, leave it as a hollow Emoji. We can still react with a hollow Emoji, but can't get other metadata about it. | ||||
| * | Add support for reactions. | khazhyk | 2016-10-27 | 1 | -1/+5 |
| | | | | | | | | | | | | Reactions can be be standard emojis, or custom server emojis. Adds - add/remove_reaction - get_reaction_users - Messages have new field reactions - new events - message_reaction_add, message_reaction_remove - new permission - add_reactions | ||||
| * | Support for pinned system messages. | Rapptz | 2016-09-12 | 1 | -11/+15 |
| | | |||||
| * | Add utility properties to CallMessage to query information. | Rapptz | 2016-07-15 | 1 | -1/+1 |
| | | |||||
| * | Fix the displaying of Message.system_content | Rapptz | 2016-07-15 | 1 | -5/+4 |
| | | |||||
| * | Add support for different message types and call message. | Rapptz | 2016-07-13 | 1 | -5/+76 |
| | | |||||
| * | Make Message.channel_mentions unique. | Rapptz | 2016-06-27 | 1 | -4/+2 |
| | | |||||
| * | Add support for message pinning. | Rapptz | 2016-06-18 | 1 | -2/+5 |
| | | | | | | | This includes `Client.pin_message`, `Client.unpin_message` and `Client.pins_from`. This also adds the `Message.pinned` attribute to the `Message` object. | ||||
| * | Fix typo in Message.role_mentions documentation. | Rapptz | 2016-05-01 | 1 | -1/+1 |
| | | |||||
| * | Add Message.role_mentions and handle them in Message.clean_content | Rapptz | 2016-04-29 | 1 | -24/+45 |
| | | |||||