| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix timeout issues with fetching members via query_members | Rapptz | 2020-05-10 | 4 | -58/+42 |
| | | | | | | | | | | | | | This uses the nonce field to properly disambiguate queries. There's also some redesigning going on behind the scenes and minor clean-up. Originally I planned on working on this more to account for the more widespread chunking changes planned for gateway v7 but I realized that this would indiscriminately slow down everyone else who isn't planning on working with intents for now. I will work on the larger chunking changes in the future, should time allow for it. | ||||
| * | allow passing color int to role.edit | Anurag Singh | 2020-05-10 | 1 | -1/+7 |
| | | |||||
| * | Aliases passed as a list or as a tuple | Saphielle Akiyama | 2020-05-10 | 1 | -2/+2 |
| | | | | Nothing too important, felt like some people would appreciate it; | ||||
| * | Use GuildChannel abc for CategoryChannel edit | Steve C | 2020-05-10 | 1 | -11/+1 |
| | | | | | | | | | | | | I noticed nothing happened when I did `ch.edit(overwrites=oh.overwrites)` `http.edit_channel` doesn't do anything with the `overwrites` keyword, it's processed as `permission_overwrites` instead which `self._edit` takes care of. I feel this was an oversight at some point. | ||||
| * | [tasks] Allow Loop.cancel in Loop.before_loop | Steve C | 2020-05-10 | 1 | -0/+1 |
| | | | | | | Task cancel raises on the next awaited coro, so I've added this 0-sleep "hack" I'm internally debating if leaving the comment there, but I'm sure it would confuse the uninformed of this trick. | ||||
| * | Add support server as contact link in issue templates | jack1142 | 2020-05-10 | 2 | -11/+4 |
| | | |||||
| * | [commands] Document that cog_command_error must be async | Xua | 2020-05-10 | 1 | -2/+2 |
| | | |||||
| * | add support for allowed_mentions with message edit | StarrFox | 2020-05-10 | 1 | -0/+16 |
| | | |||||
| * | Specify the unit for `max_age` arg in `GuildChannel.create_invite()` | jack1142 | 2020-05-07 | 1 | -1/+1 |
| | | |||||
| * | Escape backslashes in display name in `clean_prefix` | jack1142 | 2020-05-07 | 1 | -1/+1 |
| | | |||||
| * | [tasks] Fix tasks decorators being discarded | Steve C | 2020-05-07 | 1 | -0/+3 |
| | | | | | | At this moment, when a task seems to be first loaded, it immediately throws away the decorators you give it, and just generates a new instance of itself. In your cog's `__init__`, once you do `self.my_task.start()`, the Loop is remade when it gets to `self.my_task` before executing the `start` function. The original Loop that the cog starts with is where the decorated values are. This fixes that. | ||||
| * | fix HTTPException explanation in Guild.fetch_member docs | iomintz | 2020-05-06 | 1 | -1/+1 |
| | | |||||
| * | fix NotificationLevel being suppressed | Xua | 2020-05-03 | 1 | -6/+4 |
| | | |||||
| * | Fix colour properties being displayed as methods in the documentation. | kittenswolf | 2020-05-03 | 3 | -6/+6 |
| | | |||||
| * | Add roles parameter for pruning members. | unknown | 2020-05-03 | 2 | -4/+16 |
| | | |||||
| * | Make use_cached keyword only | Rapptz | 2020-05-03 | 1 | -2/+2 |
| | | |||||
| * | allow passing EmptyEmbed to set_image and set_thumbnail | Riley Shaw | 2020-05-02 | 1 | -6/+18 |
| | | |||||
| * | Add versionadded to Attachment.to_file use_cached param | Josh | 2020-05-02 | 1 | -0/+2 |
| | | |||||
| * | flags: support accessing flag value instances on the class | Io Mintz | 2020-04-20 | 1 | -0/+5 |
| | | | | Fixes #4023 | ||||
| * | Convert id parameter of Object into int or raise TypeError on failure | Rapptz | 2020-04-19 | 1 | -1/+6 |
| | | | | | | | | This prevents breakage for users who pass in a str as an ID whereas it previously worked. Fix #4002 | ||||
| * | Decrement Guild.member_count even if member is not cached | Rapptz | 2020-04-19 | 1 | -1/+1 |
| | | | | | Fix #4021 | ||||
| * | Allow HistoryIterator to take limit of 1 even when around is passed | hamza1311 | 2020-04-19 | 1 | -2/+0 |
| | | |||||
| * | Fix PartialEmoji.url.read for reactions | apple502j | 2020-04-18 | 1 | -1/+1 |
| | | |||||
| * | Fix cases where member_count is equal to 0 | Rapptz | 2020-04-16 | 1 | -1/+1 |
| | | | | | Fixes #4008, #4005 | ||||
| * | [tasks] Replace stack-based implementation with a cleaner one. | Rapptz | 2020-04-14 | 1 | -37/+6 |
| | | |||||
| * | [tasks] Create different Loop objects for different instances | Rapptz | 2020-04-14 | 1 | -2/+44 |
| | | | | | Fixes #2294 | ||||
| * | Bump blocking threshold from 5 seconds to 10 seconds | Rapptz | 2020-04-14 | 1 | -3/+3 |
| | | |||||
| * | Add traceback to debug blocking issues | Rapptz | 2020-04-14 | 1 | -1/+12 |
| | | |||||
| * | Remove from the FAQ that there's no event for invites being created | chickenmatty | 2020-04-14 | 1 | -1/+1 |
| | | |||||
| * | Guild.owner may be None for very large guilds. | Arthur | 2020-04-14 | 1 | -1/+1 |
| | | |||||
| * | Fix an FFmpegOpusAudio documentation detail, and some capitalization | Austin Lasher | 2020-04-14 | 1 | -6/+6 |
| | | |||||
| * | Update copyright year for documentation | jack1142 | 2020-04-14 | 1 | -1/+1 |
| | | |||||
| * | Edit message publish documentation | Kowlin | 2020-04-14 | 1 | -5/+2 |
| | | |||||
| * | Add new alias VerificationLevel.very_high | apple502j | 2020-04-09 | 2 | -0/+7 |
| | | |||||
| * | [commands] Raise CheckFailure if all bot "check once" fail | Rapptz | 2020-04-06 | 1 | -0/+2 |
| | | | | | Fix #2643 | ||||
| * | Move log levels around to make INFO a little less noisy | Rapptz | 2020-04-06 | 2 | -6/+10 |
| | | |||||
| * | Bump version for development | Rapptz | 2020-04-06 | 1 | -2/+2 |
| | | |||||
| * | Fix VoiceClient.average_latency erroring when heartbeat is None | Rapptz | 2020-04-06 | 1 | -2/+4 |
| | | |||||
| * | animated key is never given to reaction_remove(_emoji) | NCPlayz | 2020-04-06 | 2 | -5/+5 |
| | | |||||
| * | Update documentation on guild features to reflect Discord changes | Jake Ward | 2020-04-06 | 1 | -2/+3 |
| | | |||||
| * | [commands] Stop yielding duplicate commands from walk_commands | MarkKoz | 2020-04-06 | 1 | -2/+6 |
| | | |||||
| * | Documentation fixups for allowed mentions | Rapptz | 2020-04-04 | 2 | -2/+2 |
| | | |||||
| * | Rename allowed mention parameters to allowed_mentions | Rapptz | 2020-04-04 | 5 | -34/+35 |
| | | |||||
| * | Allow introspection and setting of global allowed mention configuration | Rapptz | 2020-04-04 | 1 | -0/+18 |
| | | |||||
| * | Fix various implementation bugs with allowed mentions | Rapptz | 2020-04-04 | 3 | -7/+11 |
| | | |||||
| * | Add support for configuring allowed mentions per message or bot wide. | Rapptz | 2020-04-04 | 8 | -7/+152 |
| | | |||||
| * | Fix regression with Member.activities not clearing | Rapptz | 2020-04-04 | 2 | -2/+5 |
| | | |||||
| * | Add position argument to Guild.create_category | Ilya Lukyanov | 2020-04-04 | 1 | -2/+2 |
| | | | | | This way we can specify category position upon creation | ||||
| * | Allow for optional custom error handler in tasks extension | Josh B | 2020-04-04 | 1 | -6/+38 |
| | | |||||
| * | Remove extra to in tasks docs | Epic | 2020-04-04 | 1 | -1/+1 |
| | | |||||