aboutsummaryrefslogtreecommitdiff
path: root/discord/enums.py
Commit message (Collapse)AuthorAgeFilesLines
* Add support for guild news channels.Rapptz2019-03-081-0/+1
|
* Add PremiumType enumeration and ClientUser.premium_typeLiam H2019-02-121-1/+6
|
* Update voice code to vws V4Imayhaveborkedit2019-01-281-4/+13
| | | | | | | - Update internals to be compatible with v4 - Adds multiple encryption mode support. Previously only `xsalsa20_poly1305` was supported. Now `xsalsa20_poly1305_suffix` is also supported. Note: There is no (nice) way to manually select a mode. The user needn't worry about this however. - Fixed speaking state bug. When you disconnected from a voice channel while a bot was playing, upon reconnect you would be unable to hear the bot. This was caused by bots not sending their speaking state while transmitting. Bots will now set their speaking state properly when transmitting. Note: This does not account for sending actual silence, the speaking indicator will still be active.
* Bumped copyright years to 2019.Dante Dam2019-01-281-1/+1
|
* Add support for default notification level in audit logs and Guild.editRapptz2018-11-251-1/+1
|
* Add Guild.default_notificationsChris2018-11-241-1/+5
|
* add support for Bug Hunter and Early Supporter flagsbmintz2018-11-241-0/+2
|
* Added hypesquad house functionalitymental2018-08-221-1/+8
|
* Adds missing voice regions.MaximusPX2018-08-221-0/+2
|
* Split Game object to separate Activity subtypes for Rich Presences.Rapptz2018-03-051-1/+10
| | | | | | | | | | | 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.
* Missing Voice RegionsMippy (William)2017-11-121-0/+2
|
* Add category support.Rapptz2017-09-131-4/+5
| | | | | | | | | | | | | 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
* Change VerificationLevel, ContentFilter to be IntEnumsGorialis2017-08-021-3/+3
|
* Add support for user flags in Profile.Rapptz2017-06-301-1/+6
|
* Rename verification level to extreme due to demand.Rapptz2017-05-271-1/+1
|
* Add highest verification level.Rapptz2017-05-271-5/+7
|
* Rename GuildRegion to VoiceRegion.Rapptz2017-05-091-2/+2
| | | | | This naming makes more sense since voice regions are not a guild exclusive concept.
* Add support for message delete audit log action type.Rapptz2017-05-041-1/+4
|
* Implement audit logs.Rapptz2017-04-301-1/+86
|
* Support for new member message types.Rapptz2017-04-211-0/+1
|
* Export missing enums.Rapptz2017-04-121-0/+3
|
* Add Guild.explicit_content_filter.Rapptz2017-04-121-0/+8
|
* Update copyright year to 2017.Rapptz2017-01-201-1/+1
|
* Add support for relationships.Rapptz2017-01-201-0/+6
|
* Use CDN URL for default avatars.Rapptz2017-01-091-12/+6
|
* Rename Server to Guild everywhere.Rapptz2017-01-031-1/+1
|
* Add support for "Do Not Disturb" and "Invisible" statuses.Rapptz2016-09-261-0/+3
| | | | | 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/+10
| | | | | | 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.
* Support for pinned system messages.Rapptz2016-09-121-0/+1
|
* Add new EU Central and EU West server regions.Rapptz2016-09-091-0/+2
|
* Add remaining server regions to the enum.Rapptz2016-07-141-9/+13
|
* Add support for different message types and call message.Rapptz2016-07-131-0/+8
|
* Handle CHANNEL_UPDATE for group direct messages.Rapptz2016-07-131-0/+10
|
* Begin working on gateway v6 changes.Rapptz2016-07-131-3/+5
| | | | | The first batch of changes are related to channel types and group direct messages. Support these first so READY begins parsing.
* Add default avatar property to User.Khazhismel Kumykov2016-03-311-0/+17
|
* Add new US Central and US South voice regions.Rapptz2016-02-041-0/+2
|
* Update license of files to 2016.Rapptz2016-01-041-1/+1
|
* Add enumerators instead of strings.Rapptz2015-12-041-0/+54
Changes channel type, status and server region into 3.4 enums.