aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* [commands] Add a new exception class for command registration errorsjack11422020-06-283-5/+35
|
* Fix various inconsistencies within the documentation (#5067)Sebastian Law2020-06-2824-142/+378
|
* Fix a KeyError for channels with no category in Guild.by_categoryRapptz2020-06-271-1/+4
|
* Fix Guild.by_category not showing empty categories.Rapptz2020-06-271-2/+3
|
* Update Message.system_content join strings to be up to date.Rapptz2020-06-271-37/+11
| | | | Fixes #4211
* Add versionadded to VoiceClient latency and average_latencyTsumiki2020-06-261-1/+6
|
* Fix error raised when using the roles parameter.Tarek2020-06-262-4/+4
|
* Change PartialInviteGuild.icon_url_as to mimic Guild.icon_url_asAnurag2020-06-261-2/+9
|
* Fix reconnecting loop due to failed handshake on region changeJeffrey2020-06-221-0/+1
|
* Escape masked URLs; Support quotes for as_neededNCPlayz2020-06-171-2/+4
|
* Fix TypeError on missing shard_id kwargAnurag2020-06-071-2/+2
|
* Support discord.com/invite URL in resolve_inviteapple502j2020-06-041-1/+1
|
* Fix minor markdown typo in migrating.rstTarek2020-06-041-1/+1
|
* Fix incorrect class reference in documentationJohnyTheCarrot2020-06-041-1/+1
|
* [docs] Fix PublicUserFlags not showing upNadir Chowdhury2020-06-041-1/+1
|
* Removes the caching behavior of Member.rolesMichael H2020-06-041-12/+7
| | | | | | - fixes 4087 - This intentionally uses some internals in both Member.roles and Member.top_role to retain as much performance as possible while removing the cache
* Fix possibility of PartialEmoji.id being a stringEugene2020-05-291-1/+7
|
* Add user_ids fields for query_membersTarek2020-05-293-6/+23
|
* Fix documentation string for guild.premium_subscription_countnumbermaniac2020-05-291-1/+1
|
* Allow editing of channel types for news and text channelsNCPlayz2020-05-293-1/+19
|
* Fix KeyError on Member Channels not in JSONAnurag Singh2020-05-291-2/+4
|
* implement AllowedMentions.__repr__io mintz2020-05-291-0/+3
|
* Add support for public user flagsJohnyTheCarrot2020-05-295-2/+115
|
* Document that sleep_until considers naive datetimes as UTC.Rapptz2020-05-291-1/+2
|
* Consistent usage of RST inline code within Guild.features referencesRapptz2020-05-231-9/+9
|
* Implement some missing attributes of `Guild` (and `Guild.edit`)NCPlayz2020-05-232-7/+59
|
* use `_channel_factory` instead of manual checking in `Guild._sync`NCPlayz2020-05-231-9/+3
|
* isinstance(x, y) and isinstance(x, z) -> isinstance(x, (y, z))NCPlayz2020-05-231-1/+1
|
* Change _handshaking variable when handshake terminate매리2020-05-231-0/+1
|
* Add spoiler keyword argument to Attachment.to_fileZomatree2020-05-231-2/+6
|
* Fix TypeError in chunkerapple502j2020-05-231-1/+1
|
* Allow clearing the author information in embeds.jack11422020-05-231-0/+15
|
* Prepare for the discord.com domain renameRapptz2020-05-2316-33/+33
|
* player: Close ffmpeg stdin during streamingTerrance2020-05-231-2/+2
| | | | | | | | | | A `stdin` of `None` means the ffmpeg subprocess input inherits from the parent process, which may cause undesired control from a terminal (e.g. `C` causes ffmpeg to prompt for a command). It also closes the parent's stdin when the subprocess exits. This commit switches to `subprocess.DEVNULL`, which provides a separate pre-closed stdin for ffmpeg subprocesses.
* state: use bytes.hex() instead of binascii.hexlify().decode()iomintz2020-05-101-2/+1
|
* Fix timeout issues with fetching members via query_membersRapptz2020-05-104-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.editAnurag Singh2020-05-101-1/+7
|
* Aliases passed as a list or as a tupleSaphielle Akiyama2020-05-101-2/+2
| | | Nothing too important, felt like some people would appreciate it;
* Use GuildChannel abc for CategoryChannel editSteve C2020-05-101-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_loopSteve C2020-05-101-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 templatesjack11422020-05-102-11/+4
|
* [commands] Document that cog_command_error must be asyncXua2020-05-101-2/+2
|
* add support for allowed_mentions with message editStarrFox2020-05-101-0/+16
|
* Specify the unit for `max_age` arg in `GuildChannel.create_invite()`jack11422020-05-071-1/+1
|
* Escape backslashes in display name in `clean_prefix`jack11422020-05-071-1/+1
|
* [tasks] Fix tasks decorators being discardedSteve C2020-05-071-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 docsiomintz2020-05-061-1/+1
|
* fix NotificationLevel being suppressedXua2020-05-031-6/+4
|
* Fix colour properties being displayed as methods in the documentation.kittenswolf2020-05-033-6/+6
|
* Add roles parameter for pruning members.unknown2020-05-032-4/+16
|