| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [commands] Fix Paginator still allowing lines which are too long. | Max Kamps | 2016-10-03 | 1 | -1/+1 |
| | | |||||
| * | Update Client documentation. | Khazhismel | 2016-10-02 | 1 | -1/+1 |
| | | |||||
| * | Fix Permissions.manage_emojis bit being incorrect. | Rapptz | 2016-09-29 | 1 | -4/+4 |
| | | |||||
| * | Fix URL pointing to better method in Client.change_status | Rapptz | 2016-09-27 | 1 | -1/+1 |
| | | |||||
| * | Version bump to v0.13.0v0.13.0 | Rapptz | 2016-09-26 | 2 | -2/+38 |
| | | |||||
| * | [commands] Raise exception if Paginator gets a line that is too big. | Rapptz | 2016-09-26 | 1 | -0/+11 |
| | | | | | Fixes #340 | ||||
| * | Add Permissions.manage_emojis | Rapptz | 2016-09-26 | 1 | -3/+17 |
| | | |||||
| * | Add the ability to add, delete, and edit custom emoji. | Rapptz | 2016-09-26 | 2 | -0/+109 |
| | | |||||
| * | Add support for "Do Not Disturb" and "Invisible" statuses. | Rapptz | 2016-09-26 | 5 | -8/+86 |
| | | | | | | This deprecates Client.change_status in favour of the newer and more correct Client.change_presence. | ||||
| * | Remove unused endpoints.py file. | Rapptz | 2016-09-25 | 3 | -43/+3 |
| | | |||||
| * | Version bump to v0.12.0v0.12.0 | Rapptz | 2016-09-25 | 1 | -2/+2 |
| | | |||||
| * | Update What's New page with v0.12.0 changes. | Rapptz | 2016-09-25 | 1 | -0/+56 |
| | | |||||
| * | Document undocumented Server.voice_client property. | Rapptz | 2016-09-25 | 1 | -0/+3 |
| | | |||||
| * | Catch Player errors and gracefully stop them. | Rapptz | 2016-09-25 | 1 | -5/+37 |
| | | | | | | | | | This also introduces the concept of the after function taking a single parameter, the current player. This is useful for error handling, e.g. checking Player.error. Fixes #291 | ||||
| * | Add Client.get_user_info to retrieve a User from ID. | Rapptz | 2016-09-25 | 2 | -0/+30 |
| | | |||||
| * | Fix 404'd FAQ links. | Rapptz | 2016-09-25 | 1 | -2/+2 |
| | | |||||
| * | Add Member.server_permissions to calculate server permissions. | Rapptz | 2016-09-21 | 1 | -0/+27 |
| | | |||||
| * | Add Server.role_hierarchy to get the current role hierarchy. | Rapptz | 2016-09-21 | 1 | -0/+9 |
| | | |||||
| * | Make Roles totally ordered. | Rapptz | 2016-09-21 | 2 | -12/+50 |
| | | | | | | This also fixes a bug with Member.top_role that chose the wrong role should they have the same position. | ||||
| * | Upgrade requirements to stable aiohttp. | Rapptz | 2016-09-20 | 1 | -2/+2 |
| | | | | | Also lighten up on websockets requirements. | ||||
| * | [commands] Allow coroutine functions in Bot.command_prefix | Rapptz | 2016-09-17 | 1 | -3/+8 |
| | | |||||
| * | Add support for server verification levels. | Rapptz | 2016-09-12 | 5 | -10/+50 |
| | | | | | | | This adds a new enum named VerificationLevel to denote said verification level. This enum will also be used in the Client.edit_server calls instead of the undocumented int parameter. | ||||
| * | Document new MessageType.pins_add | Rapptz | 2016-09-12 | 1 | -0/+3 |
| | | |||||
| * | Support for pinned system messages. | Rapptz | 2016-09-12 | 2 | -11/+16 |
| | | |||||
| * | Fix import for Object.created_at | Rapptz | 2016-09-10 | 1 | -1/+1 |
| | | |||||
| * | Fix bug when permission overwrites could be applied out of order. | Rapptz | 2016-09-10 | 1 | -1/+7 |
| | | | | | | | | | | The bug was due to the fact that the way overwrites work is by doing a loop of all the values and then applying deny first and then allow. That way the overwrite is defined if role A and role B deny a permission but role C allows it (and said member has A, B, C roles) then the resolution should allow it rather than deny it regardless of the order of the data it is received in. | ||||
| * | Fix bug that disallowed ServerRegion from being used in edit_server. | Rapptz | 2016-09-09 | 1 | -0/+3 |
| | | |||||
| * | Add new EU Central and EU West server regions. | Rapptz | 2016-09-09 | 2 | -0/+11 |
| | | |||||
| * | [commands] Default converters now take in IDs to match against. | Rapptz | 2016-09-09 | 1 | -10/+17 |
| | | |||||
| * | [commands] Cooldowns don't trigger due to user usage error. | Rapptz | 2016-09-08 | 1 | -11/+9 |
| | | | | | Fixes #325 | ||||
| * | [commands] Added a method to reset command cooldown. | Dan Hess | 2016-09-08 | 2 | -0/+17 |
| | | |||||
| * | Fix gateway code to work with websockets 3.2. | Rapptz | 2016-08-25 | 1 | -1/+2 |
| | | |||||
| * | Ensure that keep alive threads are closed when a websocket closes. | Rapptz | 2016-08-21 | 1 | -4/+5 |
| | | | | | | | | | | | The library worked with the assumption that whenever the recv call for the websocket would lead to a closure, the close method would be called to signal closure and as a result our close method would be called. This assumption turned out to be false as the websockets library would instead call an internal function named close_connection instead. So to solve our problem we need to override this function instead of close. | ||||
| * | Remove download stats badge. | Rapptz | 2016-08-14 | 1 | -1/+0 |
| | | |||||
| * | Document that Client.get_channel works with PrivateChannel too. | Rapptz | 2016-08-14 | 1 | -1/+1 |
| | | |||||
| * | Document what it means that an object is not edited in-place explicitly | Rapptz | 2016-08-14 | 1 | -11/+22 |
| | | | | | | | This seems to be a very common question regarding the docs so might as well document exactly what this means rather than using cryptic and confusing wording. | ||||
| * | Explain cases where the on_message_edit event can be triggered. | Rapptz | 2016-08-14 | 1 | -5/+21 |
| | | |||||
| * | [commands] Delete module when it does not have a setup function. | Rapptz | 2016-08-10 | 1 | -0/+2 |
| | | |||||
| * | Emoji.url uses api url. | Khazhismel | 2016-08-06 | 1 | -1/+1 |
| | | |||||
| * | [commands] Add missing inspect import in converter.py | Rapptz | 2016-08-04 | 1 | -0/+1 |
| | | |||||
| * | Add emoji url property | Khazhismel | 2016-08-02 | 1 | -0/+5 |
| | | |||||
| * | Clean up Emoji documentation. | Khazhismel | 2016-08-01 | 1 | -2/+0 |
| | | |||||
| * | Document the new emoji stuff. | Rapptz | 2016-08-01 | 1 | -1/+14 |
| | | |||||
| * | [commands] Add custom emoji converter. | Khazhismel | 2016-07-31 | 1 | -0/+31 |
| | | |||||
| * | Add custom emoji support. | Khazhismel | 2016-07-31 | 5 | -1/+123 |
| | | |||||
| * | Version bump to v0.11.0v0.11.0 | Rapptz | 2016-07-30 | 2 | -2/+52 |
| | | |||||
| * | [commands] Make HelpFormatter ignore hidden commands for max_width. | PapyrusThePlant | 2016-07-30 | 1 | -1/+1 |
| | | |||||
| * | Rename Permissions.change_nicknames to change_nickname to match UI. | Rapptz | 2016-07-30 | 1 | -3/+3 |
| | | | | | This is a breaking change. | ||||
| * | Handle receiving HEARTBEAT opcode. | Rapptz | 2016-07-30 | 1 | -0/+5 |
| | | |||||
| * | Add functions to query and actually prune members from a server. | Rapptz | 2016-07-29 | 2 | -1/+92 |
| | | |||||