aboutsummaryrefslogtreecommitdiff
path: root/discord/calls.py
Commit message (Collapse)AuthorAgeFilesLines
* Bumped copyright years to 2019.Dante Dam2019-01-281-1/+1
|
* Change docstrings to raw-stringsBeatButton2018-09-141-2/+2
|
* Fix CallMessage.duration calculationBryan Forbes2018-08-281-2/+2
|
* [lint] Fix incorrect and inconsistent whitespaceHornwitser2018-08-221-1/+0
| | | | Adjust whitespace to be consistent with the rest of the library.
* [lint] Remove unnecessary lambdasHornwitser2018-08-221-1/+1
| | | | Lambdas of the form `lambda x: func(x)` are redundant.
* Add intersphinxTobotimus2018-01-061-3/+3
|
* Fixed a typo in calls.pyJW2017-07-041-1/+1
| | | Suggested by libffi-dev-on on Discord. Changed Optiona into Optional
* Rename GuildRegion to VoiceRegion.Rapptz2017-05-091-3/+3
| | | | | This naming makes more sense since voice regions are not a guild exclusive concept.
* Update copyright year to 2017.Rapptz2017-01-201-1/+1
|
* Move message creation to a factory method inside ConnectionState.Rapptz2017-01-031-2/+2
|
* Absolute import some circular dependencies to appease Python 3.4.Rapptz2017-01-031-2/+3
|
* Rename Server to Guild everywhere.Rapptz2017-01-031-4/+4
|
* Split channel types.Rapptz2017-01-031-2/+2
| | | | | | | | | | | This splits them into the following: * DMChannel * GroupChannel * VoiceChannel * TextChannel This also makes the channels "stateful".
* Switch IDs to use int instead of strRapptz2017-01-031-1/+1
|
* Optimise VoiceState for memory.Rapptz2017-01-031-2/+1
| | | | | | Instead of storing one VoiceState per Member, only store them if necessary. This should bring down the number of instances significantly.
* Fix SyntaxError in constructing VoiceState for Python 3.4Rapptz2016-07-211-1/+2
| | | | Generalised unpacking is 3.5 only.
* Add ourselves into the ringing lookup cache.Rapptz2016-07-151-0/+2
|
* Add utility properties to CallMessage to query information.Rapptz2016-07-151-9/+37
|
* Add support for querying information about group calls.Rapptz2016-07-151-1/+78
|
* Add support for different message types and call message.Rapptz2016-07-131-0/+48