| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Use display instead of std::error::Error | acdenisSK | 2017-09-25 | 1 | -28/+3 | |
| | | | | | Kind of a bad decision but due to the compiler being a meany with impl conflicts for `From<&str>` and `From<String>`, it needs to be done. Plus it removes the useless custom struct. | |||||
| * | Fix tests and example 05 | Zeyla Hellyer | 2017-09-24 | 1 | -3/+8 | |
| | | ||||||
| * | Use $crate for CommandError | acdenisSK | 2017-09-24 | 1 | -3/+3 | |
| | | ||||||
| * | Revamp errors in `Args` and commands | acdenisSK | 2017-09-23 | 6 | -86/+141 | |
| | | ||||||
| * | Remove tokio usage | Zeyla Hellyer | 2017-09-21 | 1 | -23/+18 | |
| | | ||||||
| * | Also rustfmt | Zeyla Hellyer | 2017-09-18 | 3 | -7/+17 | |
| | | ||||||
| * | Add Send/Sync to framework items | Zeyla Hellyer | 2017-09-18 | 4 | -15/+17 | |
| | | ||||||
| * | Apply rustfmt | Zeyla Hellyer | 2017-09-18 | 8 | -113/+73 | |
| | | ||||||
| * | Copy some methods from Command to Group (#164) | Maiddog | 2017-09-11 | 2 | -3/+92 | |
| | | ||||||
| * | Fixed admin bypass perm to framework allowed_roles | Lakelezz | 2017-09-09 | 2 | -9/+13 | |
| | | | | | | | This makes those with the "Administrator" permission able to bypass the `allowed_roles` check. Additionally change a usage of `len() > 0` to `is_empty()`. | |||||
| * | Allow commands to be limited to certain roles (#157) | Lakelezz | 2017-09-05 | 4 | -9/+90 | |
| | | ||||||
| * | Apply rustfmt fixes | Zeyla Hellyer | 2017-09-01 | 1 | -1/+2 | |
| | | ||||||
| * | Add case insensitivity | acdenisSK | 2017-09-01 | 2 | -1/+19 | |
| | | ||||||
| * | Add num_args (#156) | Maiddog | 2017-08-31 | 1 | -0/+8 | |
| | | ||||||
| * | Add find and find_n (#153) | Maiddog | 2017-08-28 | 1 | -0/+40 | |
| | | ||||||
| * | Remove mut when not needed (#152) | Maiddog | 2017-08-28 | 1 | -2/+2 | |
| | | ||||||
| * | Add ability to play DCA and Opus files. (#148) | Maiddog | 2017-08-27 | 7 | -66/+108 | |
| | | ||||||
| * | Use `$crate` for `Args` | acdenisSK | 2017-08-26 | 1 | -3/+3 | |
| | | ||||||
| * | Revamp `RwLock` usage in the lib | acdenisSK | 2017-08-24 | 7 | -113/+68 | |
| | | | | | Also not quite sure if they goofed rustfmt or something, but its changes it did were a bit bizarre. | |||||
| * | Use cache when possible in UserId's get method (#146) | Maiddog | 2017-08-22 | 1 | -1/+1 | |
| | | ||||||
| * | Make args empty when no arguments are passed. (#143) | Maiddog | 2017-08-22 | 1 | -1/+7 | |
| | | ||||||
| * | Fix tests (#145) | Maiddog | 2017-08-22 | 5 | -61/+70 | |
| | | ||||||
| * | Replace `()` with actual error types | acdenisSK | 2017-08-22 | 1 | -1/+1 | |
| | | ||||||
| * | feature-flag the vec_shift dependency | acdenisSK | 2017-08-21 | 1 | -0/+124 | |
| | | ||||||
| * | Revamp the args to an `Args` struct | acdenisSK | 2017-08-20 | 5 | -139/+41 | |
| | | | | | Fixes #142 | |||||
| * | Move builtin framework impl to its own module | Zeyla Hellyer | 2017-08-19 | 7 | -0/+2369 | |
| 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. | ||||||