| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [commands] Fix bug where Context.command would not update. | Rapptz | 2016-06-04 | 2 | -1/+2 |
| | | |||||
| * | [commands] Fix bug where subgroups would be repeatedly called. | Rapptz | 2016-06-04 | 1 | -2/+6 |
| | | | | | | | | This happened due to not resetting the `invoked_subcommand` state tracking. Since the `invoked_subcommand` was not reset, it would always assume that it was valid and repeatedly call it when passed invalid subcommands/arguments. | ||||
| * | [commands] Cleanup Command.invoke code due to exception propagation. | Rapptz | 2016-06-04 | 1 | -14/+8 |
| | | |||||
| * | [commands] Dispatch command_error on command exec error. | Khazhismel Kumykov | 2016-06-04 | 2 | -64/+81 |
| | | | | | | | Provide fallback on_command_error - will only fire if no cog handlers and no local handler. Propagate exceptions in checks and argument parsing to bot. | ||||
| * | Add `bot` keyword argument to login via static token. | Rapptz | 2016-06-03 | 1 | -10/+21 |
| | | |||||
| * | Actually use v4 gateway and fixes thanks to Jake. | Rapptz | 2016-06-02 | 2 | -6/+6 |
| | | |||||
| * | Update positions when a role is added or removed. | Rapptz | 2016-06-01 | 2 | -2/+23 |
| | | |||||
| * | Clarify Role.position documentation. | Rapptz | 2016-06-01 | 1 | -1/+2 |
| | | |||||
| * | Make Channel.changed_roles into an on-the-fly property instead. | Rapptz | 2016-06-01 | 1 | -18/+18 |
| | | |||||
| * | Add Role.server attribute. | Rapptz | 2016-06-01 | 5 | -15/+14 |
| | | | | | This breaks events that expected a server parameter for the role events. | ||||
| * | Update voice client main ws references when reconnecting. | Rapptz | 2016-06-01 | 2 | -0/+6 |
| | | |||||
| * | Add RESUME support. | Rapptz | 2016-06-01 | 4 | -12/+54 |
| | | |||||
| * | [commands] Delete frame objects when done using them. | Rapptz | 2016-05-31 | 1 | -3/+7 |
| | | |||||
| * | Fix discord.Object documentation. | Rapptz | 2016-05-31 | 1 | -2/+2 |
| | | |||||
| * | [commands] Add support for self-bots. | Rapptz | 2016-05-31 | 1 | -2/+8 |
| | | |||||
| * | 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 | ||||
| * | Fix ytdl documentation link. | Rapptz | 2016-05-27 | 1 | -2/+2 |
| | | |||||
| * | Allow to edit mentionable property in Client.edit_role. | Rapptz | 2016-05-27 | 1 | -1/+4 |
| | | |||||
| * | Reference the Discord UI in the permission documentation. | Rapptz | 2016-05-23 | 1 | -3/+3 |
| | | |||||
| * | 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 |
| | | |||||
| * | Only trigger on_voice_state_update if the member actually exists. | Rapptz | 2016-05-20 | 1 | -2/+3 |
| | | |||||
| * | Fix bug where members leaving will stay in Channel.voice_members. | Rapptz | 2016-05-20 | 1 | -0/+9 |
| | | |||||
| * | Add __slots__ for discord.Channel. | Rapptz | 2016-05-20 | 1 | -0/+4 |
| | | | | | Not sure why this was missing. | ||||
| * | Add support for voice channel user limits. | Rapptz | 2016-05-20 | 2 | -1/+16 |
| | | |||||
| * | logs_from improvements for after param. | Khazhismel Kumykov | 2016-05-20 | 2 | -24/+138 |
| | | | | | | | | | - 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 | 2 | -6/+33 |
| | | | | | 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. | ||||
| * | 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 |
| | | |||||
| * | Rework playlist example to work with multi-server voice. | Rapptz | 2016-05-12 | 1 | -80/+223 |
| | | |||||
| * | 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 | 5 | -6/+14 |
| | | |||||