aboutsummaryrefslogtreecommitdiff
path: root/docs/api.rst
Commit message (Collapse)AuthorAgeFilesLines
* First pass at documentation reform.Rapptz2017-05-121-143/+270
|
* Rename GuildRegion to VoiceRegion.Rapptz2017-05-091-2/+2
| | | | | This naming makes more sense since voice regions are not a guild exclusive concept.
* Make AuditLogDiff.roles an empty list instead of None.Rapptz2017-05-071-1/+1
|
* Audit log role add and removes are lists, not single item.Rapptz2017-05-061-4/+4
| | | | Breaking change. role -> roles and it's now a list.
* Add support for message delete audit log action type.Rapptz2017-05-041-0/+15
|
* Add support for setting and retrieving guild vanity invites.Rapptz2017-04-301-0/+2
|
* Changed audit_log to audit_logs in documentationTwentysix2017-04-301-1/+1
|
* Implement audit logs.Rapptz2017-04-301-0/+685
|
* Add PCMVolumeTransformer to augment volume of a PCM stream.Rapptz2017-04-191-0/+3
| | | | | | This also introduces the idea of replacing the VoiceClient.source on the fly. Note that this internally pauses and resumes the audio stream.
* Re-implement voice sending.Rapptz2017-04-181-0/+15
| | | | | | | | | | | | | | | | | | | | This is a complete redesign of the old voice code. A list of major changes is as follows: * The voice websocket will now automatically reconnect with exponential back-off just like the regular Client does. * Removal of the stream player concept. * Audio now gracefully pauses and resumes when a disconnect is found. * Introduce a discord.AudioSource concept to abstract streams * Flatten previous stream player functionality with the VoiceClient, e.g. player.stop() is now voice_client.stop() * With the above re-coupling this means you no longer have to store players anywhere. * The after function now requires a single parameter, the error, if any existed. This will typically be None. A lot of this design is experimental.
* Add Guild.explicit_content_filter.Rapptz2017-04-121-0/+16
|
* Add support for multiple file attachments.Rapptz2017-04-081-0/+6
| | | | | | | This is a breaking change. No longer does Messageable.send have a filename keyword argument, instead this is all handled through the discord.File model. To upload many files you must specify a list of discord.File objects.
* Implement utilities for AsyncIterator.Rapptz2017-02-111-8/+76
| | | | Closes #473.
* Implement User.profile coroutine to get a user's profile.Rapptz2017-01-241-0/+29
|
* Add option to disable auto member chunking.Rapptz2017-01-231-0/+14
|
* Add support for relationships.Rapptz2017-01-201-0/+39
|
* Make ClientUser separate from a regular User.Rapptz2017-01-191-0/+7
| | | | This removes Client.edit_profile in favour of ClientUser.edit.
* Show inherited members in the docs for User and Member.Rapptz2017-01-131-0/+2
|
* Rename NoMoreMessages to NoMoreItems.Rapptz2017-01-111-0/+2
|
* Simple parser for CHANNEL_PINS_UPDATEIan Salmons2017-01-091-0/+8
|
* Implement AutoShardedClient for transparent sharding.Rapptz2017-01-071-0/+3
| | | | | This allows people to run their >2,500 guild bot in a single process without the headaches of IPC/RPC or much difficulty.
* Fix documentation to work.Rapptz2017-01-031-6/+24
|
* Rename Server to Guild everywhere.Rapptz2017-01-031-51/+51
|
* Support MESSAGE_REACTION_REMOVE_ALL event.Rapptz2016-11-211-0/+9
|
* Add support for rich embeds.Rapptz2016-11-131-0/+6
|
* Change reaction events signature and name.Rapptz2016-11-031-5/+17
| | | | | | | | | This changes the event signature to be (reaction, user) instead of (message, reaction, user) since the reaction data class already has the message being reacted to as a member. The name was shortened from on_message_reaction_ to on_reaction_ since the message prefix was deemed redundant.
* Add support for reactions.khazhyk2016-10-271-0/+20
| | | | | | | | | | | Reactions can be be standard emojis, or custom server emojis. Adds - add/remove_reaction - get_reaction_users - Messages have new field reactions - new events - message_reaction_add, message_reaction_remove - new permission - add_reactions
* Add support for "Do Not Disturb" and "Invisible" statuses.Rapptz2016-09-261-0/+11
| | | | | This deprecates Client.change_status in favour of the newer and more correct Client.change_presence.
* Add support for server verification levels.Rapptz2016-09-121-0/+24
| | | | | | This adds a new enum named VerificationLevel to denote said verification level. This enum will also be used in the Client.edit_server calls instead of the undocumented int parameter.
* Document new MessageType.pins_addRapptz2016-09-121-0/+3
|
* Add new EU Central and EU West server regions.Rapptz2016-09-091-0/+9
|
* Explain cases where the on_message_edit event can be triggered.Rapptz2016-08-141-5/+21
|
* Document the new emoji stuff.Rapptz2016-08-011-1/+14
|
* Document VoiceState class.Rapptz2016-07-241-0/+6
|
* Add AppInfo.owner attribute.Rapptz2016-07-211-0/+4
|
* Add support for querying information about group calls.Rapptz2016-07-151-0/+6
|
* Handle adding and removal of group members.Rapptz2016-07-151-0/+9
|
* Add remaining server regions to the enum.Rapptz2016-07-141-0/+13
|
* Add support for different message types and call message.Rapptz2016-07-131-0/+33
|
* Begin working on gateway v6 changes.Rapptz2016-07-131-0/+6
| | | | | The first batch of changes are related to channel types and group direct messages. Support these first so READY begins parsing.
* Change max_length to max_messagesPC2016-06-281-1/+1
|
* Add discord.PermissionOverwrite type for channel-specific overwrites.Rapptz2016-06-141-0/+6
|
* Add Client.application_info to retrieve the current app info.Rapptz2016-06-101-1/+25
| | | | Fixes #241.
* Clarify `on_ready` triggering more than twice.Rapptz2016-06-101-0/+3
| | | | | | On that note, fix the background_task example to use `Client.run` instead of manual loop management. That way the task will be cleaned up and cancelled inside `Client.run`.
* Add Role.server attribute.Rapptz2016-06-011-3/+4
| | | | This breaks events that expected a server parameter for the role events.
* Add RESUME support.Rapptz2016-06-011-0/+4
|
* Begin working on gateway v4 support.Rapptz2016-04-271-0/+2
| | | | | | Bump websockets requirement to v3.1 Should be squashed...
* Add utility function for generating OAuth2 urls.Rapptz2016-04-081-0/+2
|
* Clean up documentation of utils.snowflake_timeRapptz2016-03-061-0/+2
|
* Remove request_offline option.Rapptz2016-02-141-0/+4
|