| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Spaces between badges in readme | Zeyla Hellyer | 2018-07-29 | 1 | -1/+1 |
| | | | | | Readme changes require a lot of commits after all. | ||||
| * | Make the readme badges more pretty | Zeyla Hellyer | 2018-07-29 | 1 | -6/+6 |
| | | |||||
| * | Document minimum Rust version | Zeyla Hellyer | 2018-07-29 | 1 | -2/+6 |
| | | |||||
| * | Fix closing code fence in readme | Zeyla Hellyer | 2018-07-29 | 1 | -0/+1 |
| | | |||||
| * | Readme: list default features in "Features" | Zeyla Hellyer | 2018-07-29 | 1 | -0/+21 |
| | | |||||
| * | Update readme logo URI | Zeyla Hellyer | 2018-07-06 | 1 | -1/+1 |
| | | | | | Update the URI to the logo in the README. | ||||
| * | Fix links to the repo | Zeyla Hellyer | 2018-05-23 | 1 | -2/+2 |
| | | | | | | Fixes links to the repo from `https://github.com/zeyla/serenity` to `https://github.com/serenity-rs/serenity`. | ||||
| * | Switch to the new repo url for travis (#316) | Lakelezz | 2018-05-23 | 1 | -2/+2 |
| | | |||||
| * | Remove discord-rs from related projects | acdenisSK | 2018-05-02 | 1 | -2/+0 |
| | | | | | It's been stagnant without any changes made for a long while; thus we should no longer link to it anymore. | ||||
| * | Bump to v0.5.0v0.5.0 | Zeyla Hellyer | 2018-01-20 | 1 | -3/+3 |
| | | |||||
| * | Update readme example | Zeyla Hellyer | 2018-01-18 | 1 | -3/+6 |
| | | |||||
| * | Fix syntax highlighting in README | Jędrzej | 2017-12-09 | 1 | -1/+1 |
| | | | | | (cherry picked from commit 8ec939350770e3c2a511be25cf341ed1526a35dd) | ||||
| * | Add guild invite to readme | Zeyla Hellyer | 2017-11-19 | 1 | -1/+3 |
| | | |||||
| * | Fix ping bot example (#211) | Ben | 2017-10-31 | 1 | -1/+6 |
| | | |||||
| * | Update URL to logo | Zeyla Hellyer | 2017-10-14 | 1 | -1/+1 |
| | | | | | | | Updates the URL of the logo to a location that will always persist. That is, pointing to a branch will become invalid after a new version is released, but this will be permanent. | ||||
| * | Add related projects to README | Zeyla Hellyer | 2017-10-12 | 1 | -0/+17 |
| | | |||||
| * | Update readme example | Zeyla Hellyer | 2017-09-25 | 1 | -2/+3 |
| | | |||||
| * | Bump to v0.4.0 | Zeyla Hellyer | 2017-09-25 | 1 | -1/+1 |
| | | |||||
| * | Document the standard_framework feature in README | Zeyla Hellyer | 2017-09-09 | 1 | -0/+1 |
| | | |||||
| * | Change the readme to use `docs.rs` instead of `serenity.zey.moe` | acdenisSK | 2017-07-02 | 1 | -1/+1 |
| | | |||||
| * | Update readme, docs and add `EventHandler` to the prelude | acdenisSK | 2017-06-28 | 1 | -2/+2 |
| | | |||||
| * | Update docs links | Zeyla Hellyer | 2017-06-27 | 1 | -12/+12 |
| | | |||||
| * | Update features list in README | Zeyla Hellyer | 2017-06-26 | 1 | -0/+10 |
| | | |||||
| * | Remove most badges, related projects from README | Zeyla Hellyer | 2017-06-26 | 1 | -23/+2 |
| | | |||||
| * | Bump to v0.3.0v0.3.0 | Zeyla Hellyer | 2017-06-24 | 1 | -1/+1 |
| | | |||||
| * | Fix broken links in README | Zeyla Hellyer | 2017-06-07 | 1 | -14/+14 |
| | | |||||
| * | Remove deprecated login_bot function from docs | Mei | 2017-05-16 | 1 | -5/+3 |
| | | | | | | `Client::login_bot` is now deprecated. Users should instead use `Client::login`. | ||||
| * | Bump to v0.2.0v0.2.0 | Zeyla Hellyer | 2017-05-13 | 1 | -1/+1 |
| | | |||||
| * | Fix example in README | Mei | 2017-04-14 | 1 | -1/+1 |
| | | | | | | | | | | | | | | The example in the README would fail to compile due to an error: ``` --> src/main.rs:15:1 | 15 | command!(ping(_context, message) { | ^^^^^^^ error: aborting due to previous error ``` This can be fixed by prefixing `extern crate` with `#[macro_use]`. | ||||
| * | Update README for `methods` feature removal | Zeyla Hellyer | 2017-02-15 | 1 | -5/+0 |
| | | | | | | The `methods` feature was removed due to the OOP update, and so the README has been updated to reflect the removal. | ||||
| * | Remove a stupid claim about the lib in the docs | Austin Hellyer | 2017-02-03 | 1 | -1/+1 |
| | | |||||
| * | Thanks github | Austin Hellyer | 2017-01-27 | 1 | -1/+1 |
| | | |||||
| * | Add logo | Austin Hellyer | 2017-01-27 | 1 | -0/+3 |
| | | |||||
| * | Fix rs suffix | Illia | 2017-01-05 | 1 | -8/+8 |
| | | |||||
| * | Use $crate in the command macro | alex | 2016-12-24 | 1 | -2/+1 |
| | | |||||
| * | Implement command groups and buckets | Illia | 2016-12-13 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Implement command groups * change to ref mut * Implement framework API. * Remove commands field * Make it all work * Make example use command groups * Requested changes * Implement adding buckets * Add ratelimit check function * Finish everything * Fix voice example * Actually fix it * Fix doc tests * Switch to result * Savage examples * Fix docs * Fixes * Accidental push * 👀 * Fix an example * fix some example * Small cleanup * Abstract ratelimit bucket logic | ||||
| * | Fix readme typo | Austin Hellyer | 2016-12-12 | 1 | -1/+1 |
| | | | | | Too many setting git remotes today. | ||||
| * | Add related projects to readme | Austin Hellyer | 2016-12-12 | 1 | -1/+16 |
| | | |||||
| * | Add installation notes | Austin Hellyer | 2016-12-09 | 1 | -0/+17 |
| | | |||||
| * | Update readme example | Austin Hellyer | 2016-11-30 | 1 | -1/+1 |
| | | |||||
| * | Move the example in the readme | Austin Hellyer | 2016-11-30 | 1 | -29/+32 |
| | | |||||
| * | Add documentation for examples | Austin Hellyer | 2016-11-29 | 1 | -12/+62 |
| | | | | | | | | | The examples include a README located in `examples/README.md`, which contains instructions for running these examples. They act as a simple form of tutorial to the library, without getting into too many details. | ||||
| * | Add more shiny readme badges | Austin Hellyer | 2016-11-29 | 1 | -2/+6 |
| | | | | | ✨ | ||||
| * | Update URLs to docs | Austin Hellyer | 2016-11-08 | 1 | -12/+12 |
| | | |||||
| * | Fix README example | Austin Hellyer | 2016-11-08 | 1 | -3/+7 |
| | | |||||
| * | Update to Travis CI | Austin Hellyer | 2016-11-06 | 1 | -3/+3 |
| | | |||||
| * | Docs: link to master | Austin Hellyer | 2016-11-06 | 1 | -1/+1 |
| | | |||||
| * | Update README | Austin Hellyer | 2016-11-06 | 1 | -14/+22 |
| | | |||||
| * | Add some more documentation | Austin Hellyer | 2016-11-06 | 1 | -1/+1 |
| | | |||||
| * | Update URLs to GitLab | Austin Hellyer | 2016-10-31 | 1 | -1/+1 |
| | | |||||