Rapptz
6c2ea4f0a0
Fix some type ignores in backoff and channel
3 years ago
mniip
22b06e7bf8
Fix TextChannel.archived_threads
Threads are now returned in a consistent order if multiple requests are
made. The server-side limit is [2, 100] threads per request.
3 years ago
jack1142
45b9585910
Remove versionchanged in PartialMessageable
3 years ago
Rapptz
88b520b5ab
Reformat code using black
Segments where readability was hampered were fixed by appropriate
format skipping directives. New code should hopefully be black
compatible. The moment they remove the -S option is probably the moment
I stop using black though.
3 years ago
Josh
4dbe1af32f
Update sphinx and fix documentation issues
3 years ago
Kaylynn Morgan
588cda0996
Refactor AsyncIter to use 3.6+ asynchronous generators
3 years ago
jack1142
dc19c6c7d5
Add positional-only arguments in more places
3 years ago
Josh
4248bb3717
Add invitable to TextChannel.create_thread
3 years ago
James Gayfer
4aafa39e8c
Update thread permissions
Discord has renamed / repurposed "Use Public Threads" and "Use Private
Threads", as well as added a new permission "Send Messages in Threads".
For more information, see:
https://github.com/discord/discord-api-docs/pull/3672
4 years ago
Rapptz
dd7d4b8e7f
Use a thread values view when constructing TextChannel.threads
Avoids an accidental O(n^2) situation.
4 years ago
Rapptz
490bbffc93
Remove in-place edits and return fresh instances instead
Fixes #4098
4 years ago
Stocker
ae01a96bef
Add missing type: ignore and missing typehint to channel.py
4 years ago
James Gayfer
489e5f3288
Use channel default auto archive duration
Currently creating a new thread uses a default auto archive duration of
1440 minutes, or 1 day.
Rather than prescribing our own default, we can use the default auto
archive duration that is set on the channel. This ensures that newly
created threads will respect the default auto archive duration as
prescribed by the user.
4 years ago
Rapptz
b73f02b9c3
Remove deprecated TextChannel.active_threads for Guild version
This also fills in the ThreadMember data from the endpoint
4 years ago
la
8ac5cdc314
Fix Guild.fetch_channel not working for threads
4 years ago
AkshuAgarwal
6b6bcb92e6
Fix missing or broken versionadded in docstrings
This also documents BadFlagArgument.flag
4 years ago
Rapptz
1e17b7fcea
Rename start_thread to create_thread for consistency
4 years ago
Rapptz
fda543c844
Fix incorrect indent
4 years ago
Rapptz
dc9c224b54
Undo coercion of partial DMChannel to PartialMessageable
4 years ago
Rapptz
1279510194
Add support for PartialMessageable instances
This allows library users to send messages to channels without fetching
it first.
4 years ago
Rapptz
58ca9e9932
Add TextChannel.default_auto_archive_duration
4 years ago
Rapptz
f72350199d
Fix typo in TextChannel.start_thread
4 years ago
Rapptz
dac0267e28
Allow creating a public thread without a starter message
4 years ago
PythonCoderAS
51b02f2568
Change type to be compatible with the overwrites property
4 years ago
Nadir Chowdhury
96b9a0e09d
Add reason kwarg to more methods
4 years ago
Steve C
834e23dc00
Fix type annotations for purge's limit param on Thread/TextChannel
Optional was missing.
4 years ago
Rapptz
74e1ab09a0
Remove channel type coercion in factory methods
This caused unnecessary isinstance checks which were slowing down
channel creation at scale
4 years ago
Alex Nørgaard
d1dc41ec2f
Fix Client.fetch_channel not returning Thread
4 years ago
Rapptz
8b4dd34328
Document TextChannel.start_thread return type
4 years ago
Rapptz
62dad0f7bf
Fix potential None access in various StageChannel properties
4 years ago
Rapptz
ea1d423904
Check for None in VocalGuildChannel.voice_states
4 years ago
Rapptz
2beee8be14
Type hint channel.py
4 years ago
Lilly Rose Berner
b59ec318c0
Fix Category.create_x_channel raising without overwrites
4 years ago
Josh
233d10649c
[docs] Update Sphinx and Fix various references
Co-Authored-By: Riley Shaw <[email protected] >
4 years ago
Rapptz
7dccbace78
Refactor Guild to support type hints
This patch also does the following:
* Sets some parameters to be positional only
* Changes Guild.edit to use the MISSING sentinel
* Changes the various create_channel methods to be type safe
* Changes many parameters from Optional[T] to use MISSING
* Changes Guild.create_role to use MISSING sentinel
This refactor is mostly partial but lays a decent foundation
4 years ago
Rapptz
4b51e3e253
Add TextChannel.active_threads
4 years ago
Rapptz
d0d2d7ea62
Clarify actions that require manage_threads permission
4 years ago
Rapptz
3a421a3eb9
Add TextChannel.get_thread shortcut helper
4 years ago
Rapptz
b2176dc0ef
Change how threads are created
Instead of start_public_thread and start_private_thread they'll now be
one method.
I might revert this if starting a public thread without a message never
ends up happening.
4 years ago
Rapptz
51cc7622a6
TextChannel.archived_threads is not a coroutine
4 years ago
Rapptz
7c6724fdd7
Fix typo in start_private_thread
This also renames archive_threads to archived_threads
4 years ago
Rapptz
c1ce3b949f
Implement remaining HTTP endpoints on threads
I'm not sure if I missed any -- but this is the entire documented set
so far.
4 years ago
Rapptz
68c7c538f5
First pass at preliminary thread support
This is missing a lot of functionality right now, such as two gateway
events and all the HTTP CRUD endpoints.
4 years ago
Rapptz
5c2945bcd4
Fix AttributeError in is_nsfw() methods
4 years ago
Rapptz
27556ea0a2
Fix DM channel permissions not having read_messages
4 years ago
Nadir Chowdhury
9f98a9a87f
Implement StageInstance
4 years ago
Nadir Chowdhury
757cfad38f
Type up **kwargs of various methods
4 years ago
Sebastian Law
b82a0dc6fd
[docs] remove mentions of bot only usability
4 years ago
Nadir Chowdhury
1d7f387122
[docs] stage_channels doc typo
4 years ago
z03h
304229071f
Add VoiceChannel.video_quality_mode
4 years ago