| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Remove userbot functionality | Rapptz | 2021-04-04 | 1 | -174/+0 |
| | | | | | | This has a lot of legacy and cruft so there may be some stuff I've missed but this first pass is enough to get a clear separation. | ||||
| * | Modernize code to use f-strings | Rapptz | 2021-04-04 | 1 | -2/+0 |
| | | | | | | This also removes the encoding on the top, since Python 3 does it by default. It also changes some methods to use `yield from`. | ||||
| * | remove trailing whitespace | Nadir Chowdhury | 2021-03-13 | 1 | -3/+3 |
| | | |||||
| * | Deprecate non-bot methods | Nadir Chowdhury | 2021-02-23 | 1 | -4/+25 |
| | | |||||
| * | Change copyright year to present | Nihaal Sangha | 2021-01-15 | 1 | -1/+1 |
| | | |||||
| * | Bump copyright year to 2020 | Rapptz | 2020-01-19 | 1 | -1/+1 |
| | | | | | Closes #2510 | ||||
| * | Improve documentation | NCPlayz | 2019-06-07 | 1 | -3/+3 |
| | | |||||
| * | Organise documentation | NCPlayz | 2019-03-19 | 1 | -3/+3 |
| | | |||||
| * | Bumped copyright years to 2019. | Dante Dam | 2019-01-28 | 1 | -1/+1 |
| | | |||||
| * | Change docstrings to raw-strings | BeatButton | 2018-09-14 | 1 | -2/+2 |
| | | |||||
| * | Fix CallMessage.duration calculation | Bryan Forbes | 2018-08-28 | 1 | -2/+2 |
| | | |||||
| * | [lint] Fix incorrect and inconsistent whitespace | Hornwitser | 2018-08-22 | 1 | -1/+0 |
| | | | | | Adjust whitespace to be consistent with the rest of the library. | ||||
| * | [lint] Remove unnecessary lambdas | Hornwitser | 2018-08-22 | 1 | -1/+1 |
| | | | | | Lambdas of the form `lambda x: func(x)` are redundant. | ||||
| * | Add intersphinx | Tobotimus | 2018-01-06 | 1 | -3/+3 |
| | | |||||
| * | Fixed a typo in calls.py | JW | 2017-07-04 | 1 | -1/+1 |
| | | | | Suggested by libffi-dev-on on Discord. Changed Optiona into Optional | ||||
| * | Rename GuildRegion to VoiceRegion. | Rapptz | 2017-05-09 | 1 | -3/+3 |
| | | | | | | This naming makes more sense since voice regions are not a guild exclusive concept. | ||||
| * | Update copyright year to 2017. | Rapptz | 2017-01-20 | 1 | -1/+1 |
| | | |||||
| * | Move message creation to a factory method inside ConnectionState. | Rapptz | 2017-01-03 | 1 | -2/+2 |
| | | |||||
| * | Absolute import some circular dependencies to appease Python 3.4. | Rapptz | 2017-01-03 | 1 | -2/+3 |
| | | |||||
| * | Rename Server to Guild everywhere. | Rapptz | 2017-01-03 | 1 | -4/+4 |
| | | |||||
| * | Split channel types. | Rapptz | 2017-01-03 | 1 | -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 str | Rapptz | 2017-01-03 | 1 | -1/+1 |
| | | |||||
| * | Optimise VoiceState for memory. | Rapptz | 2017-01-03 | 1 | -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.4 | Rapptz | 2016-07-21 | 1 | -1/+2 |
| | | | | | Generalised unpacking is 3.5 only. | ||||
| * | Add ourselves into the ringing lookup cache. | Rapptz | 2016-07-15 | 1 | -0/+2 |
| | | |||||
| * | Add utility properties to CallMessage to query information. | Rapptz | 2016-07-15 | 1 | -9/+37 |
| | | |||||
| * | Add support for querying information about group calls. | Rapptz | 2016-07-15 | 1 | -1/+78 |
| | | |||||
| * | Add support for different message types and call message. | Rapptz | 2016-07-13 | 1 | -0/+48 |