| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add a way to get all active invites from a server. | Rapptz | 2015-12-15 | 1 | -0/+41 |
| | | |||||
| * | Add a way to get bans from a server. | Rapptz | 2015-12-15 | 1 | -0/+34 |
| | | |||||
| * | Fix GUILD_ROLE_DELETE triggering ValueError. | Rapptz | 2015-12-14 | 1 | -5/+12 |
| | | |||||
| * | Client.run now does cleanup when KeyboardInterrupt is encountered. | Rapptz | 2015-12-14 | 2 | -27/+58 |
| | | |||||
| * | All data classes now support !=, == and str(obj). | Rapptz | 2015-12-13 | 8 | -17/+149 |
| | | |||||
| * | Changed functions that return a constant value into properties. | Rapptz | 2015-12-13 | 3 | -0/+4 |
| | | |||||
| * | Editing profile now writes to the cache. | Rapptz | 2015-12-13 | 1 | -37/+51 |
| | | |||||
| * | Change the login cache check call to be the gateway retrieval. | Rapptz | 2015-12-13 | 1 | -3/+13 |
| | | |||||
| * | avoid potential bug when creating new private msgs | Steven Berler | 2015-12-13 | 2 | -6/+8 |
| | | | | | | | | | | It probably isn't good to rely on an item that was added to a list to still be the last item, especially if we could have other async coroutines modify the list. This may not be an actual issue, but having the function explicitly return the object that it just added to the list should guarantee that we don't accidentally pull the wrong item from the end of the list later. | ||||
| * | Remove uses of ClientSession. | Rapptz | 2015-12-13 | 1 | -37/+32 |
| | | |||||
| * | Client.logout now properly cleans up the response. | Rapptz | 2015-12-13 | 1 | -0/+1 |
| | | |||||
| * | Add discord.utils.get helper. | Rapptz | 2015-12-13 | 1 | -0/+46 |
| | | |||||
| * | Implement cache of login credentials. | Rapptz | 2015-12-13 | 2 | -3/+50 |
| | | | | | Also add endpoints.ME to easily access the @me endpoint. | ||||
| * | Client.login no longer calls resp.json() | Rapptz | 2015-12-12 | 1 | -2/+1 |
| | | | | | aiohttp didn't like it. | ||||
| * | Fix bug where PMs would be sent to the wrong person. | Rapptz | 2015-12-12 | 1 | -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. | Rapptz | 2015-12-12 | 1 | -14/+10 |
| | | |||||
| * | Proper keyword argument for send_file | Rapptz | 2015-12-12 | 1 | -1/+1 |
| | | |||||
| * | Implement fix for future rate limiting change in discord. | Rapptz | 2015-12-12 | 1 | -4/+16 |
| | | |||||
| * | Websocket now uses the event loop passed in. | Rapptz | 2015-12-12 | 1 | -1/+1 |
| | | |||||
| * | logs_from now works again with limit > 100. | Rapptz | 2015-12-12 | 1 | -14/+27 |
| | | |||||
| * | Remove socket.shutdown and only use socket.close instead. | Rapptz | 2015-12-11 | 1 | -1/+0 |
| | | |||||
| * | Add experimental ytdl player. | Rapptz | 2015-12-11 | 1 | -1/+66 |
| | | |||||
| * | ffmpeg process is now properly killed. | Rapptz | 2015-12-11 | 1 | -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. | Rapptz | 2015-12-10 | 1 | -0/+1 |
| | | |||||
| * | Simplified permissions bit operations. | Rapptz | 2015-12-10 | 1 | -2/+2 |
| | | |||||
| * | Close the ClientSession in __del__. | Rapptz | 2015-12-10 | 1 | -0/+4 |
| | | |||||
| * | Fix bug where Role.is_everyone doesn't propagate in GUILD_ROLE_UPDATE. | Rapptz | 2015-12-10 | 1 | -1/+3 |
| | | |||||
| * | Add headers to data classes for easier navigation. | Rapptz | 2015-12-09 | 1 | -0/+34 |
| | | |||||
| * | Ignore binary files used for testing. | Rapptz | 2015-12-09 | 1 | -0/+6 |
| | | |||||
| * | Add missing Role import in Client. | Rapptz | 2015-12-09 | 1 | -0/+1 |
| | | |||||
| * | I'm being forced to change the user agent string again. | Rapptz | 2015-12-09 | 1 | -1/+1 |
| | | |||||
| * | Modify User-Agent header to meet React's requirements. | Rapptz | 2015-12-09 | 1 | -1/+3 |
| | | |||||
| * | Client now keeps a reference to the VoiceClient constructed. | Rapptz | 2015-12-09 | 2 | -11/+30 |
| | | |||||
| * | Document discord.__version__ and discord.version_info | Rapptz | 2015-12-09 | 1 | -0/+18 |
| | | |||||
| * | Add discord.version_info | Rapptz | 2015-12-09 | 2 | -2/+11 |
| | | |||||
| * | Add ability to pause/resume audio stream from StreamPlayer. | Rapptz | 2015-12-09 | 1 | -19/+40 |
| | | |||||
| * | Close ffmpeg process after stream is finished. | Rapptz | 2015-12-09 | 1 | -1/+6 |
| | | |||||
| * | Clear up documentation on passing discord.Object | Rapptz | 2015-12-09 | 1 | -2/+5 |
| | | |||||
| * | Add enums to __init__.py | Rapptz | 2015-12-09 | 1 | -0/+1 |
| | | |||||
| * | Add Client.wait_for_message | Rapptz | 2015-12-09 | 1 | -0/+136 |
| | | |||||
| * | Documentation fixes for opus related import errors. | Rapptz | 2015-12-08 | 2 | -8/+9 |
| | | |||||
| * | Add OpusNotLoaded exception and opus.is_loaded utility function. | Rapptz | 2015-12-08 | 3 | -3/+36 |
| | | |||||
| * | Explicitly close responses that don't get read. | Rapptz | 2015-12-08 | 1 | -0/+15 |
| | | |||||
| * | Documentation fixes for opus bindings. | Rapptz | 2015-12-08 | 2 | -14/+23 |
| | | |||||
| * | Fix exception handling having a NameError | Rapptz | 2015-12-08 | 1 | -2/+2 |
| | | |||||
| * | Clear up some documentation. | Rapptz | 2015-12-08 | 3 | -0/+27 |
| | | |||||
| * | Working voice sending implementation. | Rapptz | 2015-12-08 | 4 | -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. | Rapptz | 2015-12-08 | 1 | -1/+2 |
| | | |||||
| * | Work on connecting to a voice channel. | Rapptz | 2015-12-07 | 3 | -20/+315 |
| | | |||||
| * | Use @me endpoint for Client.start_private_message | Rapptz | 2015-12-06 | 1 | -1/+1 |
| | | |||||