aboutsummaryrefslogtreecommitdiff
path: root/discord/client.py
Commit message (Expand)AuthorAgeFilesLines
...
* Add support for message pinning.Rapptz2016-06-181-0/+69
* Don't assume that any shared fields are optional in Client.edit_channel.Rapptz2016-06-151-2/+4
* The name is required in Client.edit_channel so add it if it is missing.Rapptz2016-06-151-0/+3
* Add Client.get_messageRapptz2016-06-151-0/+34
* Make Client.edit_channel_permissions use PermissionOverwrite.Rapptz2016-06-141-19/+15
* Add a way to set permission overwrites when creating a channel.Rapptz2016-06-141-3/+68
* Fix bug with editing messages over private messages.Rapptz2016-06-141-2/+2
* Doc string typosPapyrusThePlant2016-06-141-2/+2
* Fix concurrently joining more than one voice server at a timeJake2016-06-131-2/+3
* Give Client.email a default value of None.Rapptz2016-06-121-0/+1
* Make the default filename a little bit prettier.Rapptz2016-06-121-1/+2
* Fix bug with login token not being properly written in cache.Rapptz2016-06-121-3/+4
* Fix bug with logs_from URL params not being correct.Rapptz2016-06-121-0/+3
* Fix bug with uploading file-like objects.Rapptz2016-06-121-2/+2
* Fix bug with logging in with email and password.Rapptz2016-06-121-1/+1
* Fix bug with edit_role and create_role not working.Rapptz2016-06-121-1/+5
* Rewrite HTTP handling significantly.Rapptz2016-06-121-447/+98
* Change HTTPException to only take a single parameter.Rapptz2016-06-121-1/+0
* Add Client.application_info to retrieve the current app info.Rapptz2016-06-101-0/+39
* Add Client.move_channel to change channel positions.Rapptz2016-06-071-3/+62
* Add `bot` keyword argument to login via static token.Rapptz2016-06-031-10/+21
* Add Role.server attribute.Rapptz2016-06-011-2/+1
* Add RESUME support.Rapptz2016-06-011-3/+4
* Allow datetime in limit parameters for purge_fromHarmon7582016-05-311-4/+11
* Allow to edit mentionable property in Client.edit_role.Rapptz2016-05-271-1/+4
* Documentation fixes for role related functions.Rapptz2016-05-231-12/+4
* Close voice connections before closing the websocket.Rapptz2016-05-221-3/+9
* Fix purge_from to use LogsFromIterator.create (#219)Harmon2016-05-201-1/+1
* Add support for voice channel user limits.Rapptz2016-05-201-1/+13
* logs_from improvements for after param.Khazhismel Kumykov2016-05-201-10/+14
* Allow datetime in limit parameters for logs_from.Khazhismel Kumykov2016-05-201-6/+15
* Retry send_file on 502.Khazhismel Kumykov2016-05-201-9/+11
* Add move_roleKhazhismel Kumykov2016-05-201-0/+56
* Add example for Client.purge_fromRapptz2016-05-121-1/+12
* Add clarification for purge_from and delete_messagesTwentysix2016-05-111-2/+8
* Change second run_until_complete to not be empty.Rapptz2016-05-101-1/+4
* Force encoding of text retrieval functions to use utf-8.Rapptz2016-05-101-16/+16
* Fix issue with Client.purge_from not deleting the 101st message.Rapptz2016-05-101-7/+5
* Add Client.purge_from as a high level interface around bulk delete.Rapptz2016-05-101-1/+76
* Add Client.delete_messages for bulk delete.Rapptz2016-05-101-0/+42
* Add a TimeoutError if VoiceClient.connect fails.Rapptz2016-05-061-1/+10
* Working multi-server voice support.Rapptz2016-05-011-25/+48
* Fix changing own nickname without manage_nicknamesKhazhismel Kumykov2016-04-301-1/+6
* Add ability to change nicknames via Client.change_nicknameRapptz2016-04-291-0/+39
* Refactor voice websocket into gateway.pyRapptz2016-04-271-90/+18
* Begin working on gateway v4 support.Rapptz2016-04-271-143/+18
* Properly close session if client failed to startDaniel2016-04-221-2/+4
* Fix deadlock issue when joining large guilds.Rapptz2016-04-151-2/+0
* Add a None check when setting status in Client.change_status.Rapptz2016-04-141-2/+6
* Retry if send_message or edit_message encounter a 502.Rapptz2016-04-141-2/+9