| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Stop asyncio.async throwing a syntax error in 3.7.async | MysterialPy | 2018-01-05 | 1 | -1/+1 |
| | | | | Maintains support for < 3.4.4 | ||||
| * | Point to the new server and vanity URL. | Rapptz | 2017-11-28 | 1 | -11/+3 |
| | | |||||
| * | Add ChannelType.category enum value. | Rapptz | 2017-11-28 | 2 | -4/+9 |
| | | |||||
| * | Fix extra in __all__ export for gateway | Rapptz | 2017-10-14 | 1 | -2/+1 |
| | | |||||
| * | Remove handling of ReconnectWebsocket | Anis B | 2017-10-11 | 1 | -2/+2 |
| | | |||||
| * | Raise ResumeWebsocket in case of RECONNECT | Anis B | 2017-10-11 | 1 | -5/+1 |
| | | |||||
| * | Actually resume on opcode RECONNECT | Anis B | 2017-10-11 | 1 | -2/+1 |
| | | |||||
| * | ran faq through a spelling and grammar checker | Sleepy Flower Girl | 2017-10-03 | 2 | -2/+2 |
| | | |||||
| * | Version bump to v0.16.12v0.16.12 | Rapptz | 2017-10-01 | 1 | -2/+2 |
| | | |||||
| * | Sort member roles in GUILD_CREATE | Rapptz | 2017-09-17 | 1 | -1/+1 |
| | | |||||
| * | Version bump to v0.16.11v0.16.11 | Rapptz | 2017-08-29 | 1 | -2/+2 |
| | | |||||
| * | Sort roles by hierarchy rather than by ID. | Rapptz | 2017-08-29 | 2 | -16/+9 |
| | | |||||
| * | Game objects are really dumb. | Rapptz | 2017-08-21 | 1 | -4/+4 |
| | | |||||
| * | Version bump to v0.16.10v0.16.10 | Rapptz | 2017-08-19 | 1 | -2/+2 |
| | | |||||
| * | Consume remaining keyword arguments in Game constructor. | Rapptz | 2017-08-19 | 1 | -1/+1 |
| | | |||||
| * | Version bump to v0.16.9v0.16.9 | Rapptz | 2017-08-16 | 1 | -2/+2 |
| | | |||||
| * | Don't use find_packages here. | Rapptz | 2017-08-16 | 1 | -2/+2 |
| | | |||||
| * | Add default type for Game. | Rapptz | 2017-08-16 | 1 | -7/+7 |
| | | | | | Good meme. | ||||
| * | Hide constructor for objects that shouldn't be created by users. | Datmellow | 2017-07-05 | 1 | -13/+13 |
| | | |||||
| * | Change yield from to await in some docstrings. | Rapptz | 2017-07-04 | 2 | -2/+2 |
| | | | | | Fix #625. | ||||
| * | Fix afk_channel being None in Client.edit_server | Rapptz | 2017-06-19 | 1 | -3/+11 |
| | | |||||
| * | Documentation fix. | Rapptz | 2017-05-21 | 1 | -2/+2 |
| | | | | | Fix #482 | ||||
| * | Version bump to v0.16.8v0.16.8 | Rapptz | 2017-05-21 | 1 | -2/+2 |
| | | |||||
| * | Add timeouts for websocket initial connections. | khazhyk | 2017-05-21 | 1 | -5/+44 |
| | | | | | | | | | | | In DiscordWebSocket and DiscordVoiceWebsocket the from_client factory methods can hang indefintely on all websocket ops. We set static timeouts and attempt to reconnect if we time out. Additionally, do not return from DiscordVoiceWebSocket.from_client until we set up the keep alive thread, which is created after we receive the READY payload. | ||||
| * | Add Permissions.view_audit_logs | Rapptz | 2017-04-30 | 1 | -3/+12 |
| | | |||||
| * | Revert "Add timeouts for websocket initial connections." | Rapptz | 2017-04-23 | 1 | -34/+5 |
| | | | | | This reverts commit 6dca5035df3cd6225f4b7761491614b31bcccc29. | ||||
| * | Fix RESUME handling and make sure to wait 5 seconds before attempting. | Rapptz | 2017-04-22 | 1 | -2/+4 |
| | | |||||
| * | Add timeouts for websocket initial connections. | khazhyk | 2017-04-22 | 1 | -5/+34 |
| | | | | | | | | | | | In DiscordWebSocket and DiscordVoiceWebsocket the from_client factory methods can hang indefintely on all websocket ops. We set static timeouts and attempt to reconnect if we time out. Additionally, do not return from DiscordVoiceWebSocket.from_client until we set up the keep alive thread, which is created after we receive the READY payload. | ||||
| * | Use an asyncio.Event instead of an asyncio.Lock for global rate limits. | Rapptz | 2017-04-08 | 1 | -6/+8 |
| | | | | | | | | There were some dead-locking issues that I suspect were due to the way the global rate limit was handled. This changes it into a simple Event that allows multiple coroutines to pass through instead of one by one. | ||||
| * | Don't reconnect in sharding related codes. | Rapptz | 2017-03-15 | 1 | -1/+1 |
| | | |||||
| * | Better timeout handling in join_voice_channel | cookkkie | 2017-03-13 | 1 | -2/+2 |
| | | |||||
| * | Add rollback strategy to Client.join_voice_channel | cookkkie | 2017-03-13 | 1 | -2/+7 |
| | | |||||
| * | Version bump to v0.16.7v0.16.7 | Rapptz | 2017-02-27 | 1 | -2/+2 |
| | | |||||
| * | Remove nonce when sending messages. | Rapptz | 2017-02-27 | 1 | -4/+1 |
| | | |||||
| * | Version bump to v0.16.6v0.16.6 | Rapptz | 2017-02-14 | 2 | -2/+16 |
| | | |||||
| * | Handle HEARTBEAT_ACK | Rapptz | 2017-02-14 | 1 | -1/+21 |
| | | |||||
| * | Ensure after is called inside the daemon thread for players. | Rapptz | 2017-02-14 | 1 | -2/+6 |
| | | |||||
| * | [commands] Make Command a descriptor for #426. | Rapptz | 2017-02-11 | 2 | -2/+5 |
| | | |||||
| * | Removed unused variables in routes. | Rapptz | 2017-02-09 | 1 | -1/+0 |
| | | |||||
| * | Remove unused constants in HTTPClient | Rapptz | 2017-02-08 | 1 | -12/+0 |
| | | |||||
| * | Add missing continue statement in gateway futures. | Rapptz | 2017-02-08 | 1 | -0/+1 |
| | | |||||
| * | Only defer the lock if we're pre-emptively rate limiting. | Rapptz | 2017-02-08 | 1 | -1/+1 |
| | | | | | | | If a 429 was already hit somehow then we're no longer pre-emptively rate limiting and we're going to end up having a race condition in the lock/unlock cycle. | ||||
| * | [commands] Better support for retrieving children commands. | Rapptz | 2017-02-06 | 1 | -2/+25 |
| | | | | | | * GroupMixin.get_command now supports fully qualified names * Add GroupMixin.walk_commands to get an iterator of all commands. | ||||
| * | Fix potential chunking woe. | Rapptz | 2017-01-23 | 1 | -1/+1 |
| | | |||||
| * | Fix Client.create_server. | khazhyk | 2017-01-22 | 1 | -2/+5 |
| | | | | | | | | | | Client was using .name of enum instead of .value, resulting in invalid requests being sent to discord. edit_server region changing was not broken as the region field was str()'d, which uses .value. Also document that most bot accounts cannot use create_server. | ||||
| * | Version bump to v0.16.5v0.16.5 | Rapptz | 2017-01-21 | 1 | -2/+2 |
| | | |||||
| * | Allow unique invites to be created in Client.create_invite. | Rapptz | 2017-01-21 | 2 | -3/+6 |
| | | |||||
| * | Fix issue with chunking on userbots when a guild is unavailable. | Rapptz | 2017-01-21 | 1 | -1/+1 |
| | | |||||
| * | Fix bug with Client.move_channel and Client.move_role.v0.16.4 | Rapptz | 2017-01-16 | 3 | -9/+12 |
| | | |||||
| * | Fix case where on_reaction_add returned None in PMs with users. | Rapptz | 2017-01-13 | 1 | -0/+2 |
| | | |||||