aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Make use_cached keyword onlyRapptz2020-05-031-2/+2
|
* allow passing EmptyEmbed to set_image and set_thumbnailRiley Shaw2020-05-021-6/+18
|
* Add versionadded to Attachment.to_file use_cached paramJosh2020-05-021-0/+2
|
* flags: support accessing flag value instances on the class Io Mintz2020-04-201-0/+5
| | | Fixes #4023
* Convert id parameter of Object into int or raise TypeError on failureRapptz2020-04-191-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 cachedRapptz2020-04-191-1/+1
| | | | Fix #4021
* Allow HistoryIterator to take limit of 1 even when around is passedhamza13112020-04-191-2/+0
|
* Fix PartialEmoji.url.read for reactionsapple502j2020-04-181-1/+1
|
* Fix cases where member_count is equal to 0Rapptz2020-04-161-1/+1
| | | | Fixes #4008, #4005
* [tasks] Replace stack-based implementation with a cleaner one.Rapptz2020-04-141-37/+6
|
* [tasks] Create different Loop objects for different instancesRapptz2020-04-141-2/+44
| | | | Fixes #2294
* Bump blocking threshold from 5 seconds to 10 secondsRapptz2020-04-141-3/+3
|
* Add traceback to debug blocking issuesRapptz2020-04-141-1/+12
|
* Remove from the FAQ that there's no event for invites being createdchickenmatty2020-04-141-1/+1
|
* Guild.owner may be None for very large guilds.Arthur2020-04-141-1/+1
|
* Fix an FFmpegOpusAudio documentation detail, and some capitalizationAustin Lasher2020-04-141-6/+6
|
* Update copyright year for documentationjack11422020-04-141-1/+1
|
* Edit message publish documentationKowlin2020-04-141-5/+2
|
* Add new alias VerificationLevel.very_highapple502j2020-04-092-0/+7
|
* [commands] Raise CheckFailure if all bot "check once" failRapptz2020-04-061-0/+2
| | | | Fix #2643
* Move log levels around to make INFO a little less noisyRapptz2020-04-062-6/+10
|
* Bump version for developmentRapptz2020-04-061-2/+2
|
* Fix VoiceClient.average_latency erroring when heartbeat is NoneRapptz2020-04-061-2/+4
|
* animated key is never given to reaction_remove(_emoji)NCPlayz2020-04-062-5/+5
|
* Update documentation on guild features to reflect Discord changesJake Ward2020-04-061-2/+3
|
* [commands] Stop yielding duplicate commands from walk_commandsMarkKoz2020-04-061-2/+6
|
* Documentation fixups for allowed mentionsRapptz2020-04-042-2/+2
|
* Rename allowed mention parameters to allowed_mentionsRapptz2020-04-045-34/+35
|
* Allow introspection and setting of global allowed mention configurationRapptz2020-04-041-0/+18
|
* Fix various implementation bugs with allowed mentionsRapptz2020-04-043-7/+11
|