aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Client.logout now properly cleans up the response.Rapptz2015-12-131-0/+1
|
* Add discord.utils.get helper.Rapptz2015-12-131-0/+46
|
* Implement cache of login credentials.Rapptz2015-12-132-3/+50
| | | | Also add endpoints.ME to easily access the @me endpoint.
* 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
|
* Remove socket.shutdown and only use socket.close instead.Rapptz2015-12-111-1/+0
|
* Add experimental ytdl player.Rapptz2015-12-111-1/+66
|
* ffmpeg process is now properly killed.Rapptz2015-12-111-12/+36
| | | | | | | Two new options are added to the ffmpeg player. `options` and `pipe`. If `pipe` is True then we can pass in a file-like object to be the stdin of ffmpeg. `options` allows you to pass extra things to the ffmpeg command line.
* Add missing implementation for create_stream_player.Rapptz2015-12-101-0/+1
|
* Simplified permissions bit operations.Rapptz2015-12-101-2/+2
|
* Close the ClientSession in __del__.Rapptz2015-12-101-0/+4
|
* Fix bug where Role.is_everyone doesn't propagate in GUILD_ROLE_UPDATE.Rapptz2015-12-101-1/+3
|
* Add headers to data classes for easier navigation.Rapptz2015-12-091-0/+34
|
* Ignore binary files used for testing.Rapptz2015-12-091-0/+6
|
* 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-092-11/+30
|
* Document discord.__version__ and discord.version_infoRapptz2015-12-091-0/+18
|
* Add discord.version_infoRapptz2015-12-092-2/+11
|
* Add ability to pause/resume audio stream from StreamPlayer.Rapptz2015-12-091-19/+40
|
* Close ffmpeg process after stream is finished.Rapptz2015-12-091-1/+6
|
* Clear up documentation on passing discord.ObjectRapptz2015-12-091-2/+5
|
* Add enums to __init__.pyRapptz2015-12-091-0/+1
|
* Add Client.wait_for_messageRapptz2015-12-091-0/+136
|
* Documentation fixes for opus related import errors.Rapptz2015-12-082-8/+9
|
* Add OpusNotLoaded exception and opus.is_loaded utility function.Rapptz2015-12-083-3/+36
|
* Explicitly close responses that don't get read.Rapptz2015-12-081-0/+15
|
* Documentation fixes for opus bindings.Rapptz2015-12-082-14/+23
|
* Fix exception handling having a NameErrorRapptz2015-12-081-2/+2
|
* Clear up some documentation.Rapptz2015-12-083-0/+27
|
* Working voice sending implementation.Rapptz2015-12-084-3/+391
| | | | | Currently you can only send from a stream that implements ``read`` and a ``ffmpeg`` or ``avconv``.
* Fix issue with member.roles being empty.Rapptz2015-12-081-1/+2
|
* Work on connecting to a voice channel.Rapptz2015-12-073-20/+315
|
* Use @me endpoint for Client.start_private_messageRapptz2015-12-061-1/+1
|
* Update example code.Rapptz2015-12-065-33/+32
|
* Forced keyword argument for allow/deny in edit_channel_permissionsRapptz2015-12-061-2/+2
|
* Handle GUILD_UPDATERapptz2015-12-064-9/+32
|
* 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
|
* Switch to NumPy style documentation.Rapptz2015-12-045-67/+44
|