| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Allow datetime in limit parameters for purge_from | Harmon758 | 2016-05-31 | 1 | -4/+11 |
| | | | | | Check for datetime instead of using logs_from, for 3.4 compatibility | ||||
| * | Allow to edit mentionable property in Client.edit_role. | Rapptz | 2016-05-27 | 1 | -1/+4 |
| | | |||||
| * | Documentation fixes for role related functions. | Rapptz | 2016-05-23 | 1 | -12/+4 |
| | | |||||
| * | Close voice connections before closing the websocket. | Rapptz | 2016-05-22 | 1 | -3/+9 |
| | | |||||
| * | Fix purge_from to use LogsFromIterator.create (#219) | Harmon | 2016-05-20 | 1 | -1/+1 |
| | | |||||
| * | Add support for voice channel user limits. | Rapptz | 2016-05-20 | 1 | -1/+13 |
| | | |||||
| * | logs_from improvements for after param. | Khazhismel Kumykov | 2016-05-20 | 1 | -10/+14 |
| | | | | | | | | | - Properly support 'after' alone - Properly support both 'before' and 'after' - Add optional 'reverse' parameter to sort messages oldest->newest to 1) provide a sorted result set for 'after' 2) give flexibility when using both 'before' and 'after' | ||||
| * | Allow datetime in limit parameters for logs_from. | Khazhismel Kumykov | 2016-05-20 | 1 | -6/+15 |
| | | | | | Add time_snowflake to convert a datetime to a "snowflake". | ||||
| * | Retry send_file on 502. | Khazhismel Kumykov | 2016-05-20 | 1 | -9/+11 |
| | | | | | Rename _rate_limit_helper to _retry_helper | ||||
| * | Add move_role | Khazhismel Kumykov | 2016-05-20 | 1 | -0/+56 |
| | | | | | | | move_role will only send changed roles. discord will accept trying to move to position 0, or trying to move the everyone role. It will result in unexpected changes, so we prohibit it. | ||||
| * | Add example for Client.purge_from | Rapptz | 2016-05-12 | 1 | -1/+12 |
| | | |||||
| * | Add clarification for purge_from and delete_messages | Twentysix | 2016-05-11 | 1 | -2/+8 |
| | | | | Endpoint not usable by non-bot accounts | ||||
| * | Change second run_until_complete to not be empty. | Rapptz | 2016-05-10 | 1 | -1/+4 |
| | | | | | This should stop the infinite loops in some cases. | ||||
| * | Force encoding of text retrieval functions to use utf-8. | Rapptz | 2016-05-10 | 1 | -16/+16 |
| | | | | | Closes #207 | ||||
| * | Fix issue with Client.purge_from not deleting the 101st message. | Rapptz | 2016-05-10 | 1 | -7/+5 |
| | | |||||
| * | Add Client.purge_from as a high level interface around bulk delete. | Rapptz | 2016-05-10 | 1 | -1/+76 |
| | | |||||
| * | Add Client.delete_messages for bulk delete. | Rapptz | 2016-05-10 | 1 | -0/+42 |
| | | |||||
| * | Add a TimeoutError if VoiceClient.connect fails. | Rapptz | 2016-05-06 | 1 | -1/+10 |
| | | |||||
| * | Working multi-server voice support. | Rapptz | 2016-05-01 | 1 | -25/+48 |
| | | |||||
| * | Fix changing own nickname without manage_nicknames | Khazhismel Kumykov | 2016-04-30 | 1 | -1/+6 |
| | | | | | | Use @me/nick rather than id when changing own nickname - this only requires change_nicknames rather than manage. | ||||
| * | Add ability to change nicknames via Client.change_nickname | Rapptz | 2016-04-29 | 1 | -0/+39 |
| | | |||||
| * | Refactor voice websocket into gateway.py | Rapptz | 2016-04-27 | 1 | -90/+18 |
| | | |||||
| * | Begin working on gateway v4 support. | Rapptz | 2016-04-27 | 1 | -143/+18 |
| | | | | | | | Bump websockets requirement to v3.1 Should be squashed... | ||||
| * | Properly close session if client failed to start | Daniel | 2016-04-22 | 1 | -2/+4 |
| | | | | `keep_alive` was not defined until it was created in `received_message`, `ws` is `None` until its actually connected, which doesn't always happen. If an error happens before things start up properly, the client should now clean its objects up (fixes `unclosed client session` warning). | ||||
| * | Fix deadlock issue when joining large guilds. | Rapptz | 2016-04-15 | 1 | -2/+0 |
| | | |||||
| * | Add a None check when setting status in Client.change_status. | Rapptz | 2016-04-14 | 1 | -2/+6 |
| | | |||||
| * | Retry if send_message or edit_message encounter a 502. | Rapptz | 2016-04-14 | 1 | -2/+9 |
| | | |||||
| * | Yield from parser coroutine instead of making it a task. | Rapptz | 2016-04-12 | 1 | -1/+1 |
| | | | | | This should give us a bit better sequential message processing. | ||||
| * | Fix Client.login documentation to showcase email/password login. | Rapptz | 2016-04-11 | 1 | -1/+1 |
| | | |||||
| * | Check the right status code for improper token being passed. | Rapptz | 2016-04-11 | 1 | -1/+1 |
| | | |||||
| * | Allow Client.edit_profile to work with bot accounts. | Rapptz | 2016-04-09 | 1 | -10/+26 |
| | | |||||
| * | Change all email/password pair examples to use token. | Rapptz | 2016-04-08 | 1 | -1/+1 |
| | | |||||
| * | Change login, start and run to be variadic. | Rapptz | 2016-04-08 | 1 | -43/+59 |
| | | |||||
| * | Fix unclosed response and document token login a bit better. | Rapptz | 2016-04-08 | 1 | -3/+4 |
| | | |||||
| * | Add support for token login (for bots) | Max Gurela | 2016-04-08 | 1 | -0/+18 |
| | | |||||
| * | Clarify that Client.close is a coroutine. | Rapptz | 2016-03-29 | 1 | -2/+2 |
| | | |||||
| * | Add support for aiohttp connectors. | Rapptz | 2016-03-07 | 1 | -1/+7 |
| | | | | | Fixes #98. | ||||
| * | Fix crashing when an unhandled event occurs. | Rapptz | 2016-03-06 | 1 | -4/+4 |
| | | |||||
| * | Move chunking logic back into ConnectionState. | Rapptz | 2016-03-06 | 1 | -28/+5 |
| | | | | | | This allows for a nicer design when dealing with parsers that could end up being coroutines. | ||||
| * | Ensure the auth cache file is not world readable. | Nelson Minar | 2016-03-02 | 1 | -1/+1 |
| | | |||||
| * | Switch URLs from Client.delete_server and Client.leave_server. | Rapptz | 2016-02-23 | 1 | -2/+2 |
| | | |||||
| * | Add Client.delete_server. | Rapptz | 2016-02-23 | 1 | -2/+29 |
| | | |||||
| * | Client.send_file can now send content along with the message. | Rapptz | 2016-02-18 | 1 | -6/+16 |
| | | | | | | | There is a breaking change here. We have to change the filename parameter to be a keyword only argument so there are fewer errors and surprises. | ||||
| * | Fix NameError issue in Client.send_file. | Rapptz | 2016-02-17 | 1 | -4/+2 |
| | | |||||
| * | Switch to using ClientSession objects for aiohttp v0.21 | Rapptz | 2016-02-15 | 1 | -42/+42 |
| | | |||||
| * | Fix case when no chunks are necessary. | Rapptz | 2016-02-14 | 1 | -1/+4 |
| | | |||||
| * | Remove request_offline option. | Rapptz | 2016-02-14 | 1 | -12/+3 |
| | | |||||
| * | Offline members are now added by default automatically. | Rapptz | 2016-02-14 | 1 | -7/+80 |
| | | | | | | This commit adds support for GUILD_MEMBERS_CHUNK which had to be done due to forced large_threshold requirements in the library. | ||||
| * | Update member references when status changes. | Rapptz | 2016-01-30 | 1 | -3/+7 |
| | | |||||
| * | Force content-type for file uploads. | Rapptz | 2016-01-29 | 1 | -2/+2 |
| | | |||||