aboutsummaryrefslogtreecommitdiff
path: root/discord/channel.py
Commit message (Collapse)AuthorAgeFilesLines
* Add __slots__ for discord.Channel.Rapptz2016-05-201-0/+4
| | | | Not sure why this was missing.
* Add support for voice channel user limits.Rapptz2016-05-201-0/+3
|
* Fix Channel.permissions_for to work with the new permission system.Rapptz2016-05-121-12/+7
|
* Add Channel.overwrites_for function to get allow/deny pairs.Rapptz2016-04-121-0/+31
|
* Clarify Channel.position documentation.Rapptz2016-03-251-1/+4
|
* Add missing created_at properties for other objects.Rapptz2016-03-251-0/+10
| | | | Such as Channel, PrivateChannel, Object and Role.
* Fix bug where the everyone role was not being properly resolved.Rapptz2016-02-241-2/+19
| | | | | | The permissions_for assumed that the everyone role would be the first element of the permission overwrites but this is not guaranteed so we have to guarantee it ourselves.
* Add channel specific bitrates.Rapptz2016-02-181-0/+3
|
* Fix PrivateChannel.permissions_for not having self parameter.Rapptz2016-01-221-1/+1
|
* Documentation fixes for Permissions related code.Rapptz2016-01-141-1/+1
|
* Change internal update functions to have a leading underscore.Rapptz2016-01-111-2/+2
|
* Update license of files to 2016.Rapptz2016-01-041-1/+1
|
* Change permissions to remove the can_ prefix.Rapptz2016-01-031-10/+10
|
* Add __slots__ where appropriate to data classes.Rapptz2015-12-191-0/+2
|
* Fix Channel.permissions_for attribute error.Rapptz2015-12-171-2/+2
|
* Most data classes now support hashing.Rapptz2015-12-171-3/+7
|
* Channel.is_default_channel is now a property named is_default.Rapptz2015-12-161-1/+2
|
* All data classes now support !=, == and str(obj).Rapptz2015-12-131-2/+33
|
* Changed functions that return a constant value into properties.Rapptz2015-12-131-0/+1
|
* Add enumerators instead of strings.Rapptz2015-12-041-40/+49
| | | | Changes channel type, status and server region into 3.4 enums.
* "An array" -> "A list" for documentation purposes.Rapptz2015-11-281-2/+2
|
* Member.roles array now has the default role as the first element.Rapptz2015-11-281-2/+2
|
* Channel.permissions_for now correctly handles everyone overwrites.Rapptz2015-11-091-2/+3
|
* Add Channel.mention to mention a channel.Rapptz2015-10-231-0/+4
|
* Change Permissions constants to be class method factories instead.Rapptz2015-10-221-3/+4
|
* Fix permission resolution in Channel.permissions_forRapptz2015-10-221-13/+15
|
* Add Channel.permissions_for and PrivateChannel.permissions_for.Rapptz2015-10-171-14/+103
| | | | | | These functions handle permission resolution for a specific member. Aids with #18.
* Add Channel.voice_membersRapptz2015-10-161-0/+5
| | | | | This allows you to see which members are currently in a voice channel.
* Listen to CHANNEL_UPDATE events and add on_channel_updateRapptz2015-09-251-0/+3
|
* Add support for channel topics.Rapptz2015-09-251-0/+4
|
* Move permission overwrite construction to the Channel constructor.Rapptz2015-09-251-1/+28
|
* Use kwargs if the number of arguments needed is too many.Rapptz2015-09-041-7/+7
|
* Parse permission_overwrites in every Channel instance.Rapptz2015-08-261-1/+6
|
* Initial commitRapptz2015-08-211-0/+79