| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Rename AsyncIterator.get to next to prevent shadowing. | Rapptz | 2017-07-04 | 1 | -1/+1 |
| | | |||||
| * | Add Reaction.__str__ | Rapptz | 2017-06-26 | 1 | -1/+4 |
| | | |||||
| * | Implement "partial" message events. | Rapptz | 2017-06-09 | 1 | -1/+1 |
| | | | | | | These are events that get triggered regardless of the state of the message cache. Useful for getting data from before the bot was booted. | ||||
| * | Make supported operations stand out more than attributes. | Rapptz | 2017-05-20 | 1 | -10/+12 |
| | | |||||
| * | Use describe instead of tables for supported operations. | Rapptz | 2017-05-13 | 1 | -13/+17 |
| | | |||||
| * | Remove unused imports. | Rapptz | 2017-04-18 | 1 | -2/+0 |
| | | |||||
| * | Implement utilities for AsyncIterator. | Rapptz | 2017-02-11 | 1 | -1/+1 |
| | | | | | Closes #473. | ||||
| * | Update copyright year to 2017. | Rapptz | 2017-01-20 | 1 | -1/+1 |
| | | |||||
| * | Make Reaction.users return an async iterator. | Rapptz | 2017-01-11 | 1 | -15/+42 |
| | | |||||
| * | Move away from StateContext and use ConnectionState directly. | Rapptz | 2017-01-03 | 1 | -1/+1 |
| | | |||||
| * | Rename MessageChannel abc to Messageable. | Rapptz | 2017-01-03 | 1 | -1/+1 |
| | | |||||
| * | Add useful repr to all data classes. | Rapptz | 2017-01-03 | 1 | -0/+3 |
| | | |||||
| * | Re-add support for reactions. | Rapptz | 2017-01-03 | 1 | -13/+59 |
| | | | | | | We now store emojis in a global cache and make things like adding and removing reactions part of the stateful Message class. | ||||
| * | Documentation fixes. | Rapptz | 2016-11-17 | 1 | -1/+1 |
| | | |||||
| * | Inject full Emoji to Reaction if we have it. | khazhyk | 2016-11-03 | 1 | -13/+5 |
| | | | | | | | | 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 | -0/+88 |
| 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 | |||||