aboutsummaryrefslogtreecommitdiff
path: root/docs/api.rst
Commit message (Collapse)AuthorAgeFilesLines
* Add support for AuditLogDiff.slowmode_delay.Rapptz2018-09-251-6/+13
|
* Fix webhook_update from code reviewJeremy Zhang2018-09-151-1/+1
|
* Simple parser for WEBHOOKS_UPDATEJeremy Zhang2018-09-151-0/+6
|
* [docs] sort the VoiceRegionsbmintz2018-08-301-33/+33
| | | | | | having them appear in the docs ordered by their internal number is not useful to the user. Sorting them by name allows one to more quickly locate a voice region in the docs.
* document HypeSquadHouse and Profile.hypesquad_housesbmintz2018-08-301-1/+17
|
* Fix typo in on_raw_reaction_add event.Chris2018-08-281-1/+1
|
* Adds missing voice regions.MaximusPX2018-08-221-2/+7
|
* More informations for the Application infoEl Laggron2018-08-221-0/+18
| | | | | This adds the rpc_origin, bot_public and bot_require_code_grant attributes
* Drop support for Python 3.4 and make minimum version 3.5.2.Rapptz2018-06-101-23/+3
|
* Change raw events to use slotted data models instead of parameters.Rapptz2018-04-141-25/+49
| | | | | | | | | | This allows for internal changes in Discord to not cause a breaking change every time something changes. Also implements #1214 which adds guild_id to every event where applicable. This is a breaking change.
* Split Game object to separate Activity subtypes for Rich Presences.Rapptz2018-03-051-4/+43
| | | | | | | | | | | This is a massive breaking change. * All references to "game" have been renamed to "activity" * Activity objects contain a majority of the rich presence information * Game and Streaming are subtypes for memory optimisation purposes for the more common cases. * Introduce a more specialised read-only type, Spotify, for the official Spotify integration to make it easier to use.
* Add documentation for new_member system messagesFrostLuma2018-01-221-0/+4
|
* Change PartialReactionEmoji to PartialEmoji, add a PartialEmojiConverterGorialis2018-01-061-4/+4
|
* Add intersphinxTobotimus2018-01-061-31/+31
|
* Missing Voice RegionsMippy (William)2017-11-121-0/+9
|
* Fix header size warnings.Rapptz2017-09-211-1/+1
|
* Add category support.Rapptz2017-09-131-0/+7
| | | | | | | | | | | | | This adds: * CategoryChannel, which represents a category * Guild.by_category() which traverses the channels grouping by category * Guild.categories to get a list of categories * abc.GuildChannel.category to get the category a channel belongs to * sync_permissions keyword argument to abc.GuildChannel.edit to sync permissions with a pre-existing or new category * category keyword argument to abc.GuildChannel.edit to move a channel to a category
* Fix on_guild_join param docSteve C2017-08-271-1/+1
|
* Add webhook support.Rapptz2017-08-211-1/+23
| | | | | | | Allows for usage of either `requests` and `aiohttp` when used in "Standalone" mode. Fixes #704
* Add support for Guild.system_channelRapptz2017-08-171-0/+10
|
* Add documentation examples for AsyncIterator and change_presence.Gorialis2017-08-081-0/+27
|
* Add operation documentation for VerificationLevel, ContentFilterGorialis2017-08-021-0/+42
|
* Fix AsyncIterator documentation to properly show coroutines.Rapptz2017-07-291-4/+6
|
* Hide constructor for objects that shouldn't be created by users.Rapptz2017-07-051-19/+19
|
* Rename AsyncIterator.get to next to prevent shadowing.Rapptz2017-07-041-1/+14
|
* Add support for user flags in Profile.Rapptz2017-06-301-0/+12
|
* Implement "partial" message events.Rapptz2017-06-091-1/+70
| | | | | These are events that get triggered regardless of the state of the message cache. Useful for getting data from before the bot was booted.
* Fix typing/history showing up twice in the documentation.Rapptz2017-06-031-6/+6
|
* Implement an Attachment model.Rapptz2017-05-301-0/+6
|
* Rename verification level to extreme due to demand.Rapptz2017-05-271-2/+2
|
* Add highest verification level.Rapptz2017-05-271-0/+7
|
* Kill remaining references to discord.Channel in documentation.Rapptz2017-05-191-1/+1
|
* 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
|