| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Convert all doc anchors to named anchors | Austin Hellyer | 2016-11-05 | 2 | -74/+120 | |
| | | | | | | | | | | | | | | | | | | | | | Convert all of the non-named anchors in docs to named anchors. Example: ```md Kicks a [`Member`](../model/struct.Member.html) from the specified [`Guild`](../model/struct.Guild.html) if they are in it. ``` is now written as: ```md Kicks a [`Member`] from the specified [`Guild`] if they are in it. [`Guild`]: ../model/struct.Guild.html [`Member`]: ../model/struct.Member.html ``` | |||||
| * | Fix doc links to enum variants | Austin Hellyer | 2016-11-05 | 2 | -51/+51 | |
| | | | | | | | Most of the docs were linking to `enum.EnumName.html#VariantName.v`, which should have been linking to `enum.EnumName.html#variant.VariantName`. | |||||
| * | Support major parameters in ratelimits | Austin Hellyer | 2016-11-05 | 2 | -80/+135 | |
| | | | | | | Refer to the documentation for `serenity::client::ratelimiting::Route` on how major parameters work. | |||||
| * | Finalize invite-related documentation | Austin Hellyer | 2016-11-05 | 1 | -2/+19 | |
| | | ||||||
| * | Add message reactions | Austin Hellyer | 2016-11-05 | 6 | -2/+187 | |
| | | | | | | | | | | | | | | | | | | | | | | | Add message reaction structs and an enum to differentiate between the two types of reactions, as well as event decoding and event handlers with dispatches. The following is, more or less, what is added: - `reactions` field to the `Message` struct; - `MessageReaction` struct, which is a consolidated form of reaction, containing the type of reaction, the number of them, and whether the current user has performed that type of reaction; - `Reaction`, a struct containing the information about a reaction - `ReactionType`, an enum to differentiate between the two types of reactions: `Custom` (a guild's custom emoji) and `Unicode` (twemoji); - Decoding for `MESSAGE_REACTION_ADD` and `MESSAGE_REACTION_REMOVE`; - Permission flag `ADD_REACTIONS`; - `Message::react` method; - Three `http` payload senders: `create_reaction`, `delete_reaction`, and `get_reaction_users`; - Three `Context` methods of equal names to the above. | |||||
| * | Abstract opcodes to enums | Austin Hellyer | 2016-10-22 | 1 | -8/+8 | |
| | | ||||||
| * | Add ability to fully set a presence | Austin Hellyer | 2016-10-20 | 2 | -2/+27 | |
| | | | | | | The full presence setting allows for manually specifying the online status and afk field. | |||||
| * | Initial commit | Austin Hellyer | 2016-10-18 | 8 | -0/+3969 | |