Rapptz
490bbffc93
Remove in-place edits and return fresh instances instead
Fixes #4098
4 years ago
Rapptz
8bbb8f6db9
Use getattr for default_auto_archive_duration in Message.create_thread
Some channel types do not have this attribute so a fallback is
necessary to prevent the attribute access from erroring.
4 years ago
Stocker
d8b06ca7f2
Fix message.py typehints
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
3b4c6269be
Fix documentation for Message.is_system
Also fixes some formatting
4 years ago
AkshuAgarwal
6b6bcb92e6
Fix missing or broken versionadded in docstrings
This also documents BadFlagArgument.flag
4 years ago
SYCKGit
f7a3ea90b8
Add other message types exclusions to Message.is_system
Message.is_system was checking if self.type is MessageType.default
but now there are other MessageTypes that are not system messages
4 years ago
Rapptz
1e17b7fcea
Rename start_thread to create_thread for consistency
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
Nadir Chowdhury
60d82cf908
implement guild stickers
4 years ago
Rapptz
dac0267e28
Allow creating a public thread without a starter message
4 years ago
nickofolas
0112c2819f
Fix PartialMessage rejecting Threads
4 years ago
Lilly Rose Berner
a053f77275
Add system_content for thread message types, fix other system_content issues
4 years ago
Nadir Chowdhury
e2624b9a31
[commands] Fix (Partial)MessageConverter to work with thread messages
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
3d0dd5bc1b
Change Message.__repr__ to show inherited type name
4 years ago
Josh
d001b9d0ee
[docs] Fix more references
Co-Authored-By: Riley Shaw <[email protected] >
4 years ago
Rapptz
1aeec34f84
Typehint Member and various typing fixes
4 years ago
Rapptz
44d1d29708
Add explicit types to variables in Message types
4 years ago
Lilly Rose Berner
6b1d46a1ea
Set Message.guild from guild_id if unavailable through Message.channel
4 years ago
Rapptz
b1836c5577
Rework Message.edit implementation
4 years ago
Aomi Vel
47e6a754e4
Add support for sending multiple embeds
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
ac95b8b85b
Allow Message.channel to be a thread
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
Lilly Rose Berner
fb0c6c56e1
Return message content for replies in Message.system_content
4 years ago
Rapptz
d0097c4281
Remove view syncing before editing in views
This prevents a potential race condition when a MESSAGE_UPDATE is
received syncing and refreshing the view components causing a desync.
4 years ago
Rapptz
4a3491cc0a
Check for view finished state before resuming listening on edit
4 years ago
Rapptz
8dafe4f544
Add support for editing in views in PartialMessage
4 years ago
Rapptz
02c317d9a4
Fix Message.edit typings to take View parameters
4 years ago
Rapptz
98570793e4
Add initial support for buttons and components
4 years ago
Alex Nørgaard
fb20c4c3d4
Update docs for (Partial)Message.publish to reflect the actual permissions needed
4 years ago
Nadir Chowdhury
757cfad38f
Type up **kwargs of various methods
4 years ago
Rapptz
ca92f37f18
Fix typings in message.py
4 years ago
Rapptz
83611edb66
Fix supressing messages leading a 400 error
This only makes it so allowed_mentions are passed if the message is
authored by the bot itself.
4 years ago
Rapptz
135a7e9e5a
Reformat message.py file
4 years ago
Rapptz
d940486552
Add types to PartialMessage
4 years ago
Zomatree
3381d1e089
Add typings for message related classes
4 years ago
Rapptz
275a754abd
Add support for editing message attachments
4 years ago
Nadir Chowdhury
95777230b0
Add `MessageType.guild_invite_reminder`
4 years ago
Steve C
86f10f6dd6
Add missing reprs to some objects
These are WidgetMember, BaseUser, and DeletedReferencedMessage
4 years ago
Rapptz
fed259a83b
Refactor save() and read() into AssetMixin
4 years ago
Rapptz
f6fcffbab5
Use default allowed_mentions in Message.edit
Fix #6745
4 years ago
Rapptz
6ba3d89076
Revert Attachment.save code to prior implementation
4 years ago
Rapptz
9eaf1e85e4
Rewrite Asset design
This is a breaking change.
This does the following transformations, assuming `asset` represents
an asset type.
Object.is_asset_animated() => Object.asset.is_animated()
Object.asset => Object.asset.key
Object.asset_url => Object.asset_url
Object.asset_url_as => Object.asset.replace(...)
Since the asset type now requires a key (or hash, if you will),
Emoji had to be flattened similar to how Attachment was done since
these assets are keyed solely ID.
Emoji.url (Asset) => Emoji.url (str)
Emoji.url_as => removed
Emoji.url.read => Emoji.read
Emoji.url.save => Emoji.save
This transformation was also done to PartialEmoji.
4 years ago
Nadir Chowdhury
d3ac191a67
Restrict snowflake regexes to 15-20 digits
4 years ago
Nadir Chowdhury
8f9819eb4c
[docs] Fix various unresolved references
4 years ago
Rapptz
da6119e04c
Fix fail_if_not_exists not being set when constructed with state
4 years ago
Rapptz
99fc950510
Use f-strings in more places that were missed.
4 years ago