aboutsummaryrefslogtreecommitdiff
path: root/discord/client.py
Commit message (Collapse)AuthorAgeFilesLines
* Client.login no longer calls resp.json()Rapptz2015-12-121-2/+1
| | | | aiohttp didn't like it.
* Fix bug where PMs would be sent to the wrong person.Rapptz2015-12-121-4/+5
| | | | | | | This bug triggered because we did not call `yield from` to the coroutine that starts the private message if it isn't found in cache. Obviously the fix for that is to make the destination resolution a coroutine and thus it'll be invoked correctly.
* Fix send_file to actually work with aiohttp.Rapptz2015-12-121-14/+10
|
* Proper keyword argument for send_fileRapptz2015-12-121-1/+1
|
* Implement fix for future rate limiting change in discord.Rapptz2015-12-121-4/+16
|
* Websocket now uses the event loop passed in.Rapptz2015-12-121-1/+1
|
* logs_from now works again with limit > 100.Rapptz2015-12-121-14/+27
|
* Close the ClientSession in __del__.Rapptz2015-12-101-0/+4
|
* Add missing Role import in Client.Rapptz2015-12-091-0/+1
|
* I'm being forced to change the user agent string again.Rapptz2015-12-091-1/+1
|
* Modify User-Agent header to meet React's requirements.Rapptz2015-12-091-1/+3
|
* Client now keeps a reference to the VoiceClient constructed.Rapptz2015-12-091-9/+22
|
* Add discord.version_infoRapptz2015-12-091-0/+5
|
* Clear up documentation on passing discord.ObjectRapptz2015-12-091-2/+5
|
* Add Client.wait_for_messageRapptz2015-12-091-0/+136
|
* Add OpusNotLoaded exception and opus.is_loaded utility function.Rapptz2015-12-081-0/+2
|
* Explicitly close responses that don't get read.Rapptz2015-12-081-0/+15
|
* Working voice sending implementation.Rapptz2015-12-081-1/+2
| | | | | Currently you can only send from a stream that implements ``read`` and a ``ffmpeg`` or ``avconv``.
* Work on connecting to a voice channel.Rapptz2015-12-071-20/+105
|
* Use @me endpoint for Client.start_private_messageRapptz2015-12-061-1/+1
|
* Forced keyword argument for allow/deny in edit_channel_permissionsRapptz2015-12-061-2/+2
|
* Handle GUILD_UPDATERapptz2015-12-061-4/+3
|
* Documentation fixes in Client.connect.Rapptz2015-12-051-2/+4
|
* Add role management functions.Rapptz2015-12-051-0/+328
|
* Add Client.delete_invite.Rapptz2015-12-051-3/+33
|
* Add Client.start and Client.run shortcuts.Rapptz2015-12-051-0/+22
|
* Add _is_logged_in to the constructor.Rapptz2015-12-051-0/+1
|
* Add invite management functions.Rapptz2015-12-051-0/+134
|
* Add server management commands.Rapptz2015-12-041-7/+151
|
* Add enumerators instead of strings.Rapptz2015-12-041-5/+8
| | | | Changes channel type, status and server region into 3.4 enums.
* Add channel management functionsRapptz2015-12-041-0/+121
|
* Add member management functions.Rapptz2015-12-041-114/+365
|
* Move async_client.py to client.pyRapptz2015-12-041-1213/+530
|
* Don't silently swallow ValueError thrown from on_channel_delete.Rapptz2015-11-301-1/+2
|
* Fix multiple CHANNEL_DELETE. Fixes #51.Rapptz2015-11-301-2/+5
|
* Use copy.copy instead of copy.deepcopy for on_message_edit.Rapptz2015-11-301-1/+1
|
* on_member_update now takes in the older member state as a parameter.Rapptz2015-11-301-5/+5
|
* on_status event now has the old game ID and old status as parameters.Rapptz2015-11-301-1/+3
|
* Miscellaneous documentation fixes.Rapptz2015-11-301-1/+1
|
* Provide server/channel id/name as Object if client not joined to server.Khazhismel2015-11-291-6/+13
|
* Move server parsing code from Client to Server.Rapptz2015-11-281-44/+2
|
* discord.Server is a valid destination in Client.send_message & co.Rapptz2015-11-271-5/+7
|
* Performance improvements in on_typing event.Rapptz2015-11-271-8/+7
|
* Add LoginFailure exception for a clearer failure in Client.loginRapptz2015-11-271-2/+5
| | | | | The older HTTPException is not exactly the clearest thing for people who are new to programming or HTTP exceptions in general.
* Client.edit_message no longer checks for private channel.Rapptz2015-11-271-4/+2
|
* Document Client.run reconnection idiosyncrasy.Rapptz2015-11-261-1/+8
|
* Add support for uploading avatars.Rapptz2015-11-261-1/+18
|
* Move _null_event and _verify_successful_response to utilsRapptz2015-11-261-39/+30
| | | | They might be used in other files in the future.
* Add Client.get_invite to turn a URL to an Invite object.Rapptz2015-11-261-0/+23
|
* Client.accept_invite and Client.register now accept invite IDs.Rapptz2015-11-261-4/+5
|