From 6945117c5ebb12dbec925a97276ec67da0aafb62 Mon Sep 17 00:00:00 2001 From: RogueException Date: Sun, 24 Jan 2016 00:22:39 -0400 Subject: [PATCH] Create modes.rst --- docs/features/modes.rst | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 docs/features/modes.rst diff --git a/docs/features/modes.rst b/docs/features/modes.rst new file mode 100644 index 000000000..63a5922c3 --- /dev/null +++ b/docs/features/modes.rst @@ -0,0 +1,23 @@ +Modes +====== + +Usage +----- +Using this library requires you to state the intention of the program using it. +By default, the library assumes your application is a bot or otherwise automated program, and locks access to certain client-only features. +As we approach the official API, Discord will be creating a divide between bots and clients, so it's important to use the mode appropriate for your program to minimize breaking changes! + +.. warning:: + This is not a complete list, new features will be added in the future. + +Client-Only Features +-------------------- + +- Message Acknowledgement (Message.Acknowledge(), DiscordClient.MessageAcknowledged) +- Message Importing/Exporting +- Message Read States + +Bot-Only Features +----------------- + +- Currently, None