| 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 |
| | | |||||
| * | Client.run now does cleanup when KeyboardInterrupt is encountered. | Rapptz | 2015-12-14 | 1 | -18/+46 |
| | | |||||
| * | 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 | 1 | -4/+5 |
| | | | | | | | | | | 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 |
| | | |||||
| * | Implement cache of login credentials. | Rapptz | 2015-12-13 | 1 | -3/+49 |
| | | | | | 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 |
| | | |||||
| * | Close the ClientSession in __del__. | Rapptz | 2015-12-10 | 1 | -0/+4 |
| | | |||||
| * | 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 | 1 | -9/+22 |
| | | |||||
| * | Add discord.version_info | Rapptz | 2015-12-09 | 1 | -0/+5 |
| | | |||||
| * | Clear up documentation on passing discord.Object | Rapptz | 2015-12-09 | 1 | -2/+5 |
| | | |||||
| * | Add Client.wait_for_message | Rapptz | 2015-12-09 | 1 | -0/+136 |
| | | |||||
| * | Add OpusNotLoaded exception and opus.is_loaded utility function. | Rapptz | 2015-12-08 | 1 | -0/+2 |
| | | |||||
| * | Explicitly close responses that don't get read. | Rapptz | 2015-12-08 | 1 | -0/+15 |
| | | |||||
| * | Working voice sending implementation. | Rapptz | 2015-12-08 | 1 | -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. | Rapptz | 2015-12-07 | 1 | -20/+105 |
| | | |||||
| * | Use @me endpoint for Client.start_private_message | Rapptz | 2015-12-06 | 1 | -1/+1 |
| | | |||||
| * | Forced keyword argument for allow/deny in edit_channel_permissions | Rapptz | 2015-12-06 | 1 | -2/+2 |
| | | |||||
| * | Handle GUILD_UPDATE | Rapptz | 2015-12-06 | 1 | -4/+3 |
| | | |||||
| * | Documentation fixes in Client.connect. | Rapptz | 2015-12-05 | 1 | -2/+4 |
| | | |||||
| * | Add role management functions. | Rapptz | 2015-12-05 | 1 | -0/+328 |
| | | |||||
| * | Add Client.delete_invite. | Rapptz | 2015-12-05 | 1 | -3/+33 |
| | | |||||
| * | Add Client.start and Client.run shortcuts. | Rapptz | 2015-12-05 | 1 | -0/+22 |
| | | |||||
| * | Add _is_logged_in to the constructor. | Rapptz | 2015-12-05 | 1 | -0/+1 |
| | | |||||
| * | Add invite management functions. | Rapptz | 2015-12-05 | 1 | -0/+134 |
| | | |||||
| * | Add server management commands. | Rapptz | 2015-12-04 | 1 | -7/+151 |
| | | |||||
| * | Add enumerators instead of strings. | Rapptz | 2015-12-04 | 1 | -5/+8 |
| | | | | | Changes channel type, status and server region into 3.4 enums. | ||||
| * | Add channel management functions | Rapptz | 2015-12-04 | 1 | -0/+121 |
| | | |||||
| * | Add member management functions. | Rapptz | 2015-12-04 | 1 | -114/+365 |
| | | |||||
| * | Move async_client.py to client.py | Rapptz | 2015-12-04 | 1 | -1213/+530 |
| | | |||||
| * | Don't silently swallow ValueError thrown from on_channel_delete. | Rapptz | 2015-11-30 | 1 | -1/+2 |
| | | |||||
| * | Fix multiple CHANNEL_DELETE. Fixes #51. | Rapptz | 2015-11-30 | 1 | -2/+5 |
| | | |||||
| * | Use copy.copy instead of copy.deepcopy for on_message_edit. | Rapptz | 2015-11-30 | 1 | -1/+1 |
| | | |||||
| * | on_member_update now takes in the older member state as a parameter. | Rapptz | 2015-11-30 | 1 | -5/+5 |
| | | |||||
| * | on_status event now has the old game ID and old status as parameters. | Rapptz | 2015-11-30 | 1 | -1/+3 |
| | | |||||
| * | Miscellaneous documentation fixes. | Rapptz | 2015-11-30 | 1 | -1/+1 |
| | | |||||
| * | Provide server/channel id/name as Object if client not joined to server. | Khazhismel | 2015-11-29 | 1 | -6/+13 |
| | | |||||
| * | Move server parsing code from Client to Server. | Rapptz | 2015-11-28 | 1 | -44/+2 |
| | | |||||