| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 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. | ||||
| * | Rename threading internal variable conflict. | Rapptz | 2016-05-13 | 1 | -3/+3 |
| | | |||||
| * | Fix Member.colour to use the new algorithm for determining colour. | Rapptz | 2016-05-12 | 1 | -4/+11 |
| | | |||||
| * | Fix Channel.permissions_for to work with the new permission system. | Rapptz | 2016-05-12 | 1 | -12/+7 |
| | | |||||
| * | Add Permissions.administrator and change Permissions.manage_roles | Rapptz | 2016-05-12 | 1 | -9/+25 |
| | | |||||
| * | Add example for Client.purge_from | Rapptz | 2016-05-12 | 1 | -1/+12 |
| | | |||||
| * | Make Player threads into daemon threads. | Rapptz | 2016-05-12 | 1 | -0/+1 |
| | | |||||
| * | Add a way to change the player volume. | Rapptz | 2016-05-12 | 1 | -0/+18 |
| | | |||||
| * | Add VoiceClient.move_to for quick switching of voice channels. | Rapptz | 2016-05-12 | 1 | -0/+26 |
| | | |||||
| * | 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 | 3 | -19/+19 |
| | | | | | 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 | 2 | -5/+84 |
| | | |||||
| * | Add Client.delete_messages for bulk delete. | Rapptz | 2016-05-10 | 1 | -0/+42 |
| | | |||||
| * | Fix issue with Member.joined_at being None. | Rapptz | 2016-05-10 | 1 | -1/+2 |
| | | |||||
| * | Add Game.type and Game.url attributes to change streaming status. | Rapptz | 2016-05-06 | 2 | -2/+17 |
| | | |||||
| * | Add a TimeoutError if VoiceClient.connect fails. | Rapptz | 2016-05-06 | 2 | -2/+11 |
| | | |||||
| * | Suppress ConnectionClosed on sending in the main websocket. | Rapptz | 2016-05-06 | 1 | -2/+9 |
| | | |||||
| * | Add libopus DLLs for ease of use. | Rapptz | 2016-05-06 | 4 | -6/+13 |
| | | |||||
| * | Enable FEC/PLR | Jake | 2016-05-03 | 1 | -0/+18 |
| | | | | Enable forward error correction + packet loss percent tuning in opus encoder. Additionally, use some sane defaults. This should fix people hearing robo in music when packet loss is happening. | ||||
| * | Working multi-server voice support. | Rapptz | 2016-05-01 | 4 | -65/+97 |
| | | |||||
| * | Fix typo in Message.role_mentions documentation. | Rapptz | 2016-05-01 | 1 | -1/+1 |
| | | |||||
| * | Make Permissions an iterable class. | Rapptz | 2016-05-01 | 1 | -0/+15 |
| | | |||||
| * | [commands] Fix when_mentioned when handling nicknames. | Rapptz | 2016-05-01 | 1 | -1/+4 |
| | | |||||
| * | Make Permissions partially-ordered. | Milo Mirate | 2016-04-30 | 1 | -0/+39 |
| | | | | | | | | | | | Specifically: * P1 <= P2 iff P1 expresses a subset of the permissions expressed by P2. * P1 < P2 iff P1 <= P2 and P1 != P2 * vice versa for P1 >= P2 and P1 > P2 | ||||
| * | 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. | ||||
| * | Attempt to consistently sort of all Member.roles | Rapptz | 2016-04-29 | 1 | -4/+3 |
| | | |||||
| * | Remove setting read-only __doc__ in Member overrides. | Rapptz | 2016-04-29 | 1 | -4/+0 |
| | | |||||
| * | Sort member.roles by ID but keep the default role in index 0. | Rapptz | 2016-04-29 | 1 | -1/+4 |
| | | | | | | This should make the events checking if `before` and `after` roles are equivalent more sane for users. | ||||
| * | Add User.mentioned_in helper to check if a message mentions you. | Rapptz | 2016-04-29 | 2 | -2/+32 |
| | | |||||
| * | Member.mention now uses nickname hint if needed. | Rapptz | 2016-04-29 | 1 | -0/+8 |
| | | |||||
| * | Add Role.mentionable attribute. | Rapptz | 2016-04-29 | 1 | -1/+4 |
| | | |||||
| * | Fix Member.display_name returning None | Khazhismel Kumykov | 2016-04-29 | 1 | -1/+1 |
| | | | | | | If Member.nick was None, getattr would happily return None, not the default value. | ||||
| * | [commands] Allow role mentions to work with discord.Role params. | Rapptz | 2016-04-29 | 1 | -2/+6 |
| | | | | | | This also fixes the Member regex to support the new <@!user_id> syntax and allows colours to have a leading # before the number. | ||||
| * | Simplify User.display_name a bit. | Rapptz | 2016-04-29 | 1 | -2/+1 |
| | | |||||
| * | Handle nicknames in Server.get_member_named | Rapptz | 2016-04-29 | 1 | -1/+9 |
| | | |||||
| * | Add Message.role_mentions and handle them in Message.clean_content | Rapptz | 2016-04-29 | 1 | -24/+45 |
| | | |||||
| * | Add Role.mention property | Rapptz | 2016-04-29 | 1 | -0/+5 |
| | | |||||
| * | Add ability to change nicknames via Client.change_nickname | Rapptz | 2016-04-29 | 1 | -0/+39 |
| | | |||||
| * | Add support for server specific nicknames. | Rapptz | 2016-04-29 | 3 | -2/+21 |
| | | |||||
| * | Add permissions for changing or managing nicknames. | Rapptz | 2016-04-29 | 1 | -3/+21 |
| | | |||||
| * | Refactor voice websocket into gateway.py | Rapptz | 2016-04-27 | 3 | -211/+211 |
| | | |||||
| * | Begin working on gateway v4 support. | Rapptz | 2016-04-27 | 8 | -152/+448 |
| | | | | | | | Bump websockets requirement to v3.1 Should be squashed... | ||||
| * | Add compatibility layer for `run_coroutine_threadsafe`. | Rapptz | 2016-04-25 | 2 | -4/+131 |
| | | | | | | This is a breaking change, since discord.utils.create_task is moved to discord.compat.create_task. | ||||
| * | [commands] Make sure that mentions are the entire string. | Rapptz | 2016-04-23 | 1 | -2/+2 |
| | | |||||
| * | Message.clean_content now takes into consideration @here mentions. | Rapptz | 2016-04-23 | 1 | -1/+11 |
| | | |||||
| * | 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). | ||||
| * | Add optional redirect_uri parameter to utils.oauth_url | cookie | 2016-04-18 | 1 | -1/+6 |
| | | |||||
| * | Fix deadlock issue when joining large guilds. | Rapptz | 2016-04-15 | 2 | -7/+13 |
| | | |||||