aboutsummaryrefslogtreecommitdiff
path: root/src/framework/standard/mod.rs
Commit message (Collapse)AuthorAgeFilesLines
* StandardFramework::cmd and CreateGroup::cmd now register aliasescmd-aliases-fixMishio5952018-11-141-0/+7
|
* Add Function to call if a Message without Command has been sent (#430)Lakelezz2018-11-111-5/+67
|
* Prefix only Command (#416)Lakelezz2018-10-151-0/+30
|
* Add Option to disable bypassing Checks for Owners (#419)Lakelezz2018-10-151-1/+1
|
* Fix Default Command to inherit Group-Options (#412)Lakelezz2018-10-111-0/+15
|
* Simplify code by removing negation (#413)Lakelezz2018-10-091-4/+3
|
* A bunch of typo fixes (#404)Perry Fraser2018-10-011-2/+2
|
* Check if bots are ignored before dispatching `unrecognised_command` (#381)Lakelezz2018-09-091-5/+8
|
* Fix `has_correct_permissions` when no guild is available (#376)Lakelezz2018-08-311-3/+7
|
* Use `to_`- and `as_`-methods instead of `get` and `find` on Id newtypesLakelezz2018-08-121-2/+2
|
* Make default-command receive every bit of the command upon failureLakelezz2018-08-111-4/+3
|
* Use one macro instead of the same code twice, avoid seperated changes. (#365)Lakelezz2018-08-111-18/+13
|
* Fix all the dead links in the docsErk-2018-08-091-13/+12
|
* Fix default command upon shortcut prefix and passing sub-commands to ↵Lakelezz2018-08-071-11/+28
| | | | default-command (#358)
* Pass failed sub-command to default-command (#357)Lakelezz2018-08-061-1/+2
| | | | Pass failed sub-command to default-command.
* Reword the inner doc comment in `complex_bucket`acdenisSK2018-08-011-11/+15
|
* Reduce minimal Rust version to 1.25Zeyla Hellyer2018-07-291-2/+2
|
* Fallback to default-command if passed sub-command is wrongLakelezz2018-07-241-50/+59
|
* Compare built up length with original user-input instead of iterationsLakelezz2018-07-241-5/+16
|
* Add default-commands for command-groups (#351)Lakelezz2018-07-211-7/+37
|
* Fix some clippy lintsZeyla Hellyer2018-07-151-6/+4
| | | | | Some lints were not resolved due to causing API changes. Most lints in the framework were left unfixed.
* Support multiple prefixes for command-groups (#343)Lakelezz2018-07-151-8/+24
|
* Add checks for groups (#349)Lakelezz2018-07-151-2/+13
|
* Deprecate Message::guild_id()Zeyla Hellyer2018-07-091-1/+1
| | | | | Instead, using the structfield is preferred, since that comes from gateway events directly now anyway.
* Directly use the iteratoracdenisSK2018-06-211-2/+2
|
* Revert the OR back to the ANDAlex M. M2018-06-171-1/+1
| | | I'm an idiot.
* Reorganise the order of the ifsacdenisSK2018-06-161-26/+28
| | | | Additionally, make the bucket check cleaner.
* Neaten debug once moreacdenisSK2018-06-141-32/+5
|
* Fix typo (#328)Perry Fraser2018-06-091-1/+1
|
* Handle debug impls betteracdenisSK2018-06-081-1/+2
|
* Check if cloning `unrecognised_command` is acceptable (#320)Lakelezz2018-05-271-14/+13
|
* Add an option for a bot to work only in certain channels (#318)Victor Polevoy2018-05-241-0/+15
|
* Reword the command macro doc to be less misleadingacdenisSK2018-05-011-4/+10
|
* Refactor imports/exports to use nested groups and better formattingacdenisSK2018-03-291-10/+25
|
* Fix help precendenceacdenisSK2018-03-251-3/+4
|
* Change the way ids and some enums are made (#295)Leah2018-03-231-2/+2
| | | | | This makes them easier to be found by tools like rls. Also update struct inits to use the shorthand version for `x: x`.
* Add no_run to doctests that initialize a Client (#293)Maiddog2018-03-181-11/+11
|
* Fix no-cache standardframework compilation (#290)Lakelezz2018-03-151-11/+13
|
* Add `unrecognised_command` (#276)Lakelezz2018-02-151-2/+38
|
* Fix case insensitivity for aliases (#262)Lakelezz2018-01-311-6/+7
|
* Add a way to register middleware functions directly in `CreateCommand`acdenisSK2018-01-251-1/+1
|
* Trim after splitting at the mention-end. (#256)Lakelezz2018-01-221-2/+3
|
* Fix skipping for emote prefixes (#255)Uninteresting Account2018-01-211-3/+2
|
* Fix multibyte character based prefixes (#253)Uninteresting Account2018-01-201-3/+3
|
* Fix doc comment indentationZeyla Hellyer2018-01-191-1/+1
|
* Use an InterMessage to communicate over gatewayZeyla Hellyer2018-01-181-1/+1
| | | | | | | Instead of communicating over the gateway in a split form of a `serde_json::Value` or a `client::bridge::gateway::ShardClientMessage`, wrap them both into a single enum for better interaction between the client, gateway, and voice modules.
* Remove `is_bot` boolean from frameworkZeyla Hellyer2018-01-101-3/+3
| | | | | The framework no longer needs the `is_bot` boolean state, since serenity now only supports bot users.
* Add missing `correct roles`-checks in help-commands (#249)Lakelezz2018-01-101-1/+5
|
* Better support for multiple delimiters on `Args` (#239)Lakelezz2017-12-221-2/+2
|
* Add a special `len` to `Args`acdenisSK2017-12-181-6/+6
|