Nadir Chowdhury
89456022cf
Add `__all__` to remaining modules
4 years ago
Rapptz
ff7094ce96
Convert datetimes to aware datetimes with UTC.
Naive datetimes will now be interpreted as local time throughout
the library.
4 years ago
Rapptz
9d39b135f4
Modernize code to use f-strings
This also removes the encoding on the top, since Python 3 does it by
default. It also changes some methods to use `yield from`.
4 years ago
Nadir Chowdhury
1b2688518e
Implement StageChannel and related methods
4 years ago
Sebastian Law
d6501159e7
[docs] copy signature from overridden and inherited methods
4 years ago
Sebastian Law
a06d00f554
Make `await` text appear in async Member method docs
4 years ago
Nadir Chowdhury
63ec23bac2
Code optimisations and refactoring via Sourcery
4 years ago
Lucas
d7b41e0a21
Fix User public flags not updating
4 years ago
Nihaal Sangha
69bdc3a184
Change copyright year to present
4 years ago
Perry Cate
bbbda4ec00
Update add_roles docstring to mention role order.
4 years ago
Rapptz
93f102ca90
Add support for Member.pending boolean attribute
4 years ago
Nadir Chowdhury
6b803acde4
[chore] Remove redundant imports
This also removes the historical patch for NullHandler implemented in bbf1c54
, as it has been available since Python 3.1.
4 years ago
Rapptz
f2de794bde
Intern status and overwrite strings
5 years ago
Rapptz
23ae084b8c
Allow finer grained control over the member cache.
5 years ago
Rapptz
c261f7c4a3
Handle user updates within GUILD_MEMBER_UPDATE
5 years ago
Michael
93fa46713a
Fix and add documentation
5 years ago
Rapptz
a183c4f752
Completely update member references from message inner members.
Fixes #5819
5 years ago
rodovia
15f51113c3
Fix Member.joined_at documentation
5 years ago
Skezza
c3bca7ec73
Documentation formatting
5 years ago
Sebastian Law
b4b953bfc6
Fix various inconsistencies within the documentation ( #5067 )
5 years ago
Michael H
7bef78284f
Removes the caching behavior of Member.roles
- 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
5 years ago
JohnyTheCarrot
ab5f995d78
Add support for public user flags
5 years ago
kittenswolf
6decfd1d1a
Fix colour properties being displayed as methods in the documentation.
5 years ago
Rapptz
02397306b2
Drop superfluous zero in version related changes in the documentation
5 years ago
Rapptz
6071607176
Bump copyright year to 2020
Closes #2510
5 years ago
Rapptz
42a084028c
Expose _ActivityTag as BaseActivity to easily refer to.
5 years ago
Rapptz
de5caf59d6
Cache member.roles access to avoid surprising performance traps
Without the cache, repeated access could be accidentally quadratic or
worse.
5 years ago
Rapptz
f1118273f5
Fix Member.mentioned_in returning True if in separate guilds
5 years ago
Willy
99b61f973f
Added Optional to VoiceState.channel type
6 years ago
Joshua B
8240454555
Add self_stream property to VoiceState object.
6 years ago
Rapptz
562580a07f
Use lower level Guild.owner_id for permission resolution.
6 years ago
Rapptz
91f1f430e1
Fix NameError in member upgrade code
6 years ago
Rapptz
bbc50c92d0
Add upgraded Member to Message.mentions in case of no cache.
6 years ago
Rapptz
5c1b239b47
Different method of upgrading user instances
6 years ago
SnowyLuma
2b4cf5dafc
Set premium_since when copying and updating Member
6 years ago
NCPlayz
3c9bcc2851
Improve documentation
6 years ago
Rapptz
2b27a7a9d5
Add Member.premium_since to denote member boost date.
6 years ago
Rapptz
3c387e9031
Use attrgetter to speed up Member attribute access by 2x.
6 years ago
Rapptz
4dee175d2a
Add support for voice kicking.
6 years ago
Rapptz
f8999b63ae
Fix long-standing issue with user updates not dispatching properly.
This fix is long coming. For a long time due to the addition of a
global user cache, the on_member_update event would only have the
updated user in the very first dispatch due to a quirk in the reference
only being updated once.
In order to fix this issue two things had to change:
1. There had to be a new event, `on_user_update` to complement
the equivalent member event.
2. Unnecessary copies of User had to be removed to compensate for the
performance hit from the diffing.
While doing these two fixes I also re-evaluated some more unnecessary
copies done during the PRESENCE_UPDATE to add member case while
fetch_offline_members=False is set or due to chunking issues. The
number of copies was brought down from 2 to 1, discounting the original
Member creation. Unsure on the benefits of this one, however.
N.B: this doesn't change the pre-existing behaviour of on_member_update
6 years ago
Rapptz
1a9726087a
GUILD_MEMBER_UPDATE no longer does actual user updates.
This had been delegated to PRESENCE_UPDATE a long time ago,
unfortunately.
6 years ago
Rapptz
c9fd092476
Don't use an enum when unnecessary in Member._client_status
6 years ago
NCPlayz
fb02191b80
Organise documentation
6 years ago
Rapptz
7240d170c1
Update Member.joined_at on MESSAGE_CREATE and document it can be None.
Fixes #1638
6 years ago
DerpyChap
7ab47c223b
Add self_video property to VoiceState
6 years ago
Dante Dam
9656a21ebe
Bumped copyright years to 2019.
6 years ago
Rapptz
26bb6c6ddc
Fix some lingering attribute setting issues.
6 years ago
Rapptz
c7396dc8ac
Add support for mobile indicators and per-client statuses.
6 years ago
Hornwitser
7fe4c999fb
Actually drop copy.copy in Member
Remove the old and slow Member._copy implementation that was left over
by accident in 095f0ec
. Since it was defined later it overrode the new
implementation and rendered it moot.
7 years ago
SnowyLuma
e89e7dfe93
Add support for multiple activities
7 years ago