Ehren Julien-Neitzert
fc5a2936dd
Fix pluralization errors in various files
* Replaced instances of 'return an' with 'returns an'
* fixed pluralization errors
6 years ago
Rapptz
cef8677c68
Proper location of versionadded
6 years ago
Vexs
7dfaa5e9ae
Add read method to attachment objects
Refactor save to use new read method
6 years ago
Rapptz
746e20a826
Make Message.ack an actual coroutine function.
6 years ago
Rapptz
a7f3300821
Add versionchanged to Message.delete
6 years ago
Vexs
0f48b78987
Add delay kwarg to message.delete()
Refactor delete_after kwargs to use new delay kwarg
6 years ago
Vexs
f38b199d6a
Add support for <:name:id> format for adding reactions
Adjust FAQ to match.
6 years ago
Rapptz
14d66e7b9c
Internal consistency with message related HTTPClient methods
6 years ago
Rapptz
bb5aaf2ab3
Missing a word in Attachment.save
6 years ago
Rapptz
79a8249bc7
Add note about escape_markdown in Message.clean_content
Fix #1911
6 years ago
Rapptz
7c5a4b67d7
Fix Attachment.save wording nit.
6 years ago
NCPlayz
be227ebcf0
Redesign asset retrieval in the library.
Most assets now return a new class named `Asset`. This allows for the
assets to be consistently saved via a `save` method instead of special
casing for `Attachment`.
`AppInfo` is no longer a namedtuple it is a fully documented dataclass,
as well as having the state attached to it.
Fixes #1997
6 years ago
NCPlayz
fb02191b80
Organise documentation
6 years ago
Rapptz
6ffd079cb9
Support path-like objects in Attachment.save.
Fix #1958
6 years ago
Rapptz
73aca4d4d3
Expose Embed.from_data as Embed.from_dict
This is a breaking change.
6 years ago
Rapptz
e15b4ef8e4
Revert default parameter use_cached of Attachment.save back to False.
Fix #1973
6 years ago
Rapptz
aceec2009a
Have use_cached=True by default for Attachment.save.
Also touch up the documentation a bit.
6 years ago
Maku
6f1dff78d4
Added cached saving for attachments
Updated docstring
6 years ago
Rapptz
7240d170c1
Update Member.joined_at on MESSAGE_CREATE and document it can be None.
Fixes #1638
6 years ago
slice
cfc2e47b4f
Manually calculate millisceond epoch rather than bitshifting
Implementation by Danny.
6 years ago
slice
4ab9c874f8
Fix system_content returning incorrect join messages
6 years ago
Dante Dam
9656a21ebe
Bumped copyright years to 2019.
6 years ago
Rapptz
93d576a65b
Add support for spoiler attachments.
6 years ago
Laurenz
dd884a6afe
Update Message.mention_everyone docs to include @here
6 years ago
Hornwitser
a71b3b5fa0
[lint] Limit unneccessarily broad except clauses
Add exception qualifier(s) to bare except clauses swallowing exceptions.
7 years ago
Rapptz
3d03dbc451
Change internal role storage in Guild to a dict instead of a list.
This adds the following APIs:
* Guild.get_role
This removes the following APIs:
* Guild.role_hierarchy
To compensate for the removed APIs, Guild.roles is now a sorted list
based on hierarchy. The first element will always be the @everyone
role.
This speeds up access at the cost of some memory, theoretically.
7 years ago
BeatButton
a4d1599ce9
Change docstrings to raw-strings
7 years ago
Bryan Forbes
deda5c4e97
Fix behavior of reaction type-conversion
7 years ago
Hornwitser
c8b49d37be
[lint] Fix incorrect and inconsistent whitespace
Adjust whitespace to be consistent with the rest of the library.
7 years ago
Hornwitser
3679819c53
[lint] Remove unnecessary lambdas
Lambdas of the form `lambda x: func(x)` are redundant.
7 years ago
Hornwitser
d58fc0ccee
[lint] Remove unused imports
Left over from various refactoring and rewrites.
7 years ago
Dunkledore
9d8e791a4e
Update Message.author doctring
7 years ago
bmintz
0c446398d1
message: de-duplicate reaction type conversion
Removes some duplicate code in Message.{add,remove}_reaction.
The code in question converts the emoji object from Reaction, Emoji, str, or PartialEmoji
to a string form suitable for sending over the wire.
7 years ago
Rapptz
1538c78836
Change jump_to_url to jump_url and fix format.
People kept asking, might as well.
7 years ago
Rapptz
c67d95327e
Remove dead package references.
7 years ago
Rapptz
f25091efe1
Drop support for Python 3.4 and make minimum version 3.5.2.
7 years ago
Rapptz
7eb918b19e
Add Message.jump_to_url
7 years ago
Steve C
0e945915b7
Fixes various documentation errors/inconsistencies
Mostly dealing with permissions, also fixes Raw Events inclusion.
7 years ago
Rapptz
60f0b22cbb
Filter null mentions when creating a Message.
7 years ago
Rapptz
f8f8f418f3
Split Game object to separate Activity subtypes for Rich Presences.
This is a massive breaking change.
* All references to "game" have been renamed to "activity"
* Activity objects contain a majority of the rich presence information
* Game and Streaming are subtypes for memory optimisation purposes for
the more common cases.
* Introduce a more specialised read-only type, Spotify, for the
official Spotify integration to make it easier to use.
7 years ago
Rapptz
355eb08b25
Add seek_begin keyword argument to Attachment.save
7 years ago
Gorialis
04d9dd9c0d
Change PartialReactionEmoji to PartialEmoji, add a PartialEmojiConverter
7 years ago
Tobotimus
3112e1c17e
Add intersphinx
7 years ago
Chkoupinator
b268d81649
Added a missing "to" in Message.raw_mentions documentation.
7 years ago
CloudNineK
0f56ce7c13
Fix typo in Message.embeds documentation.
7 years ago
Rapptz
da9828c41f
Use the proper endpoint for removing your own reaction.
7 years ago
Rapptz
9a0e9b0494
Update system_content strings for MessageType.new_member.
8 years ago
Rapptz
63231ef033
Remove reason keyword argument from message deletion.
Apparently this is unsupported.
Affected functions include:
* abc.Messageable.send
* Message.delete
* TextChannel.delete_messages
* TextChannel.purge
8 years ago
MysterialPy
adf99eb2cd
Add delete_after to 'edit'.
Allow for edited messages to be deleted after [float] seconds with optional parameter delete_after.
8 years ago
Rapptz
b3cad74442
Message content is Optional in Message.edit.
8 years ago