| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Use `request_client!` for attachment downloading (#165) | Benjamin Cheng | 2017-09-26 | 1 | -1/+1 | |
| | | ||||||
| * | Refactor display impls for ids | acdenisSK | 2017-09-24 | 6 | -24/+7 | |
| | | ||||||
| * | Update bitflags, other dependencies | Zeyla Hellyer | 2017-09-21 | 9 | -78/+87 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Bitflags changed its macro codegen from creating constants to associated constants on structs. Upgrade path: Update code from: ```rust use serenity::model::permissions::{ADD_REACTIONS, MANAGE_MESSAGES}; foo(vec![ADD_REACTIONS, MANAGE_MESSAGES]); ``` to: ```rust use serenity::model::Permissions; foo(vec![Permissions::ADD_REACTIONS, Permissions::MANAGE_MESSAGES]); ``` | |||||
| * | Apply rustfmt | Zeyla Hellyer | 2017-09-18 | 23 | -375/+244 | |
| | | ||||||
| * | Fix compiles of a variety of feature combinations | Zeyla Hellyer | 2017-09-18 | 17 | -74/+92 | |
| | | | | | | This fixes compilation errors and warnings when compiling a mixture of non-default feature targets. | |||||
| * | Apply rustfmt | Zeyla Hellyer | 2017-09-18 | 1 | -1/+3 | |
| | | ||||||
| * | Gate ChannelCategory impl behind 'model' feature | Zeyla Hellyer | 2017-09-18 | 1 | -0/+1 | |
| | | | | | | The rest of the models in the model module have their implementations gated behind the "model" feature, so do the same here. | |||||
| * | if let -> and_then/map | acdenisSK | 2017-09-17 | 1 | -5/+1 | |
| | | ||||||
| * | Apply rustfmt | Zeyla Hellyer | 2017-09-14 | 1 | -11/+11 | |
| | | ||||||
| * | Revamp `CacheEventsImpl` | acdenisSK | 2017-09-12 | 1 | -0/+611 | |
| | | ||||||
| * | serde rename `kind` to `type` | acdenisSK | 2017-09-09 | 1 | -0/+1 | |
| | | ||||||
| * | Apply rustfmt + fix tests | Zeyla Hellyer | 2017-09-09 | 6 | -11/+31 | |
| | | ||||||
| * | `parent_id` -> `category_id` | acdenisSK | 2017-09-09 | 2 | -4/+6 | |
| | | ||||||
| * | Implement categories | acdenisSK | 2017-09-09 | 6 | -2/+154 | |
| | | ||||||
| * | Update `Guild::ban` to use `BanOptions` | acdenisSK | 2017-09-06 | 2 | -9/+11 | |
| | | | | | Also update `Member::permissions` to the default channel change | |||||
| * | match to map/? | acdenisSK | 2017-09-04 | 1 | -4/+1 | |
| | | ||||||
| * | Fix the PRESET_GENERAL permission constant | Zeyla Hellyer | 2017-09-03 | 1 | -1/+1 | |
| | | | | | | These bits were completely wrong and even gave the Administrator permission. | |||||
| * | Remove more non-bot user endpoints | Zeyla Hellyer | 2017-09-01 | 3 | -50/+0 | |
| | | | | | | | | | | | | | These include the following functions removed: - `http::get_application_info` - `http::get_applications` - `http::get_emoji` - `http::get_emojis` - `model::Guild::{emoji, emojis}` - `model::GuildId::{emoji, emojis}` - `model::PartialGuild::{emoji, emojis}` | |||||
| * | Make role references attainable via name | Lakelezz | 2017-08-29 | 2 | -0/+69 | |
| | | ||||||
| * | Prevent malformed opus data from crashing the bot process (#149) | Maiddog | 2017-08-27 | 2 | -54/+60 | |
| | | ||||||
| * | Add ability to play DCA and Opus files. (#148) | Maiddog | 2017-08-27 | 21 | -208/+334 | |
| | | ||||||
| * | Revamp `RwLock` usage in the lib | acdenisSK | 2017-08-24 | 22 | -415/+291 | |
| | | | | | Also not quite sure if they goofed rustfmt or something, but its changes it did were a bit bizarre. | |||||
| * | Allow FromStr for User to use REST (#147) | Maiddog | 2017-08-24 | 1 | -6/+7 | |
| | | ||||||
| * | Use cache when possible in UserId's get method (#146) | Maiddog | 2017-08-22 | 1 | -1/+10 | |
| | | ||||||
| * | Fix tests (#145) | Maiddog | 2017-08-22 | 3 | -24/+24 | |
| | | ||||||
| * | Cfg the display impls as well | acdenisSK | 2017-08-22 | 1 | -0/+4 | |
| | | ||||||
| * | Replace `()` with actual error types | acdenisSK | 2017-08-22 | 1 | -14/+115 | |
| | | ||||||
| * | Have the variants be renamed to use snake_case | acdenisSK | 2017-08-22 | 1 | -1/+1 | |
| | | ||||||
| * | Move builtin framework impl to its own module | Zeyla Hellyer | 2017-08-19 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | The framework is now moved in its entirity to the `framework` module, with the `Framework` trait currently on its own and the builtin implementation provided. The builtin implementation has been renamed to "Standard". Upgrade path: Rename the `BuiltinFramework` import to `StandardFramework`. Instead of importing builtin framework items from `serenity::framework`, import them from `serenity::framework::standard`. This is the beginning to #60. The root `framework` module (non-standard implementation) will be built more by the time it's closed. | |||||
| * | Revert back to `deserialize_map` | acdenisSK | 2017-08-19 | 1 | -3/+1 | |
| | | ||||||
| * | `name` in reactions can be nullable | acdenisSK | 2017-08-19 | 1 | -30/+8 | |
| | | ||||||
| * | Fix rustfmt lines that are too long | Zeyla Hellyer | 2017-08-18 | 3 | -3/+6 | |
| | | | | | | Apparently rustfmt can't fix some of these, causing it to exit with 3 and therefore failing the build. | |||||
| * | Clippy lints | Zeyla Hellyer | 2017-08-18 | 2 | -31/+31 | |
| | | ||||||
| * | Apply rustfmt | Zeyla Hellyer | 2017-08-18 | 18 | -151/+241 | |
| | | ||||||
| * | Clippy | acdenisSK | 2017-08-19 | 2 | -11/+5 | |
| | | ||||||
| * | Use `#[serde(default)]` on `nsfw` instead | acdenisSK | 2017-08-15 | 1 | -3/+1 | |
| | | ||||||
| * | Deprecate `GuildId::as_channel_id` and add simulation methods for the ↵ | acdenisSK | 2017-08-04 | 2 | -1/+43 | |
| | | | | | | | "default channel" concept Also fix a little mistake | |||||
| * | Make some functions accept anything that's implemented Display | acdenisSK | 2017-08-04 | 1 | -1/+1 | |
| | | ||||||
| * | Change to c-like enums and transmute | acdenisSK | 2017-08-02 | 1 | -164/+55 | |
| | | ||||||
| * | Use ranges instead of guards | acdenisSK | 2017-08-01 | 1 | -9/+7 | |
| | | ||||||
| * | Clippy and rustfmt | acdenisSK | 2017-08-01 | 2 | -8/+10 | |
| | | ||||||
| * | Provide the input and limit back to the user, and do some consistencies | acdenisSK | 2017-08-01 | 2 | -3/+8 | |
| | | ||||||
| * | Remove the `ext` module and remove a match | acdenisSK | 2017-08-01 | 1 | -6/+2 | |
| | | | | | | The `ext` has existed for a long while just for backwards compatibility. But then again, majority of people should have migrated to the current modules already; making this module useless to keep in the library. | |||||
| * | Reuse `num` | acdenisSK | 2017-07-31 | 1 | -8/+8 | |
| | | ||||||
| * | Improve `Action` | acdenisSK | 2017-07-31 | 1 | -100/+200 | |
| | | ||||||
| * | Change the config a bit, and a few nitpicks | acdenisSK | 2017-07-27 | 20 | -598/+508 | |
| | | ||||||
| * | rustfmt | acdenisSK | 2017-07-27 | 28 | -1451/+1347 | |
| | | ||||||
| * | Fix is_own code | Zeyla Hellyer | 2017-07-25 | 1 | -1/+1 | |
| | | | | | | The current user ID is located on the `user` structfield in the cache, and is not directly on the cache. | |||||
| * | Actually, rename it to "is_own" instead | acdenisSK | 2017-07-26 | 1 | -1/+1 | |
| | | ||||||
| * | Add a util function for checking if a message was sent by the bot or someone ↵ | acdenisSK | 2017-07-26 | 1 | -0/+6 | |
| | | | | | else | |||||