aboutsummaryrefslogtreecommitdiff
path: root/discord/guild.py
Commit message (Collapse)AuthorAgeFilesLines
* Add "FEATURABLE" in guild features.PredaaA2020-04-041-0/+1
|
* Guard against the member data not being available in VOICE_STATE_UPDATERapptz2020-02-011-1/+4
|
* Use member data from VOICE_STATE_UPDATE if not found in cacheRapptz2020-02-011-0/+3
|
* Fixes and improvements for v1.3 documentationHarmon2020-01-221-0/+2
| | | | | | | | | * Add missing versionadded strings for v1.3 * Add missing versionchanged string for Message.edit * Consistently use versionadded for attributes * Consistently use versionchanged for parameters * Use versionchanged for Bot.is_owner * Fix references in v1.3 changelog * Improve grammar in v1.3 changelog
* Drop superfluous zero in version related changes in the documentationRapptz2020-01-211-6/+6
|
* Bump copyright year to 2020Rapptz2020-01-191-1/+1
| | | | Closes #2510
* updated the docs for Guild.vanity_inviteZomatree2020-01-141-2/+1
|
* Allow Guild.fetch_members to take in limit=NoneRapptz2020-01-121-4/+4
| | | | Fixes #2473
* Implement discord.MessageFlagsNCPlayz2019-12-201-114/+1
| | | | Refactor flags placement and use it for suppression.
* Add `Guild.discovery_splash_url/_as`, `Guild.rules_channel`NCPlayz2019-12-191-1/+52
|
* Removed MEMBER_LIST_DISABLED, added PUBLIC_DISABLEDLeaf ▲2019-12-171-1/+1
|
* Trailing whitespace in documentation.Rapptz2019-11-201-1/+1
|
* Prevent premium_subscription_count being NoneXua2019-10-171-1/+1
|
* Make Guild.default_role use get_role.Io Mintz2019-10-171-3/+3
| | | | Prevents some stale caching by using the new O(1) Guild.get_role.
* Add MEMBER_LIST_DISABLED to docs for Guild.featuresCapn2019-10-171-0/+1
|
* The LURKABLE feature has been renamed to PUBLICEvan2019-09-211-1/+1
|
* [docs] You can upload gifs using guild.edit()Dimbreath2019-09-101-1/+2
| | | | Only if it has ANIMATED_ICON feature.
* Document that the cache retrieval functions require an int ID.Rapptz2019-07-231-3/+36
| | | | Closes #2285
* Add Guild.query_members to fetch members from the gateway.Rapptz2019-07-151-0/+40
|
* Use Guild.owner_id in Guild.edit when checking if the bot owns a guild.Rapptz2019-07-101-1/+1
|
* Add unused Guild.preferred_localeRapptz2019-06-291-1/+6
|
* Implement `Guild.fetch_roles`NCPlayz2019-06-291-0/+24
|
* Implement `Guild.fetch_members`NCPlayz2019-06-291-1/+48
| | | | Also implements `MemberIterator`.
* Rename error type for `X.fetch_channel(s)`.NCPlayz2019-06-121-1/+1
|
* Fix reference typo in SystemChannelFlagsRapptz2019-06-091-1/+1
|
* Implement `Guild.get_all_premium_subscribers`NCPlayz2019-06-081-0/+5
|
* Document new Guild.featuresRapptz2019-06-071-3/+10
|
* Improve documentationNCPlayz2019-06-071-13/+13
|
* Implementing GET '/channels/:id' & '/guilds/:id/channels'NCPlayz2019-06-071-0/+36
| | | | Signed-off-by: NCPlayz <[email protected]>
* Add support for system channel flagsRapptz2019-06-061-1/+130
|
* Fix stray colon in Asset related docstringsRapptz2019-06-041-2/+2
|
* Add support for animated guild icons.Rapptz2019-06-041-6/+16
|
* Add Guild.premium_subscription_countRapptz2019-06-041-2/+6
|
* Add Guild.premium_tier and corresponding limits.Rapptz2019-06-041-1/+30
|
* Make __repr__ slightly more detailed and add a few missing ones.Rapptz2019-05-261-1/+6
| | | | | | This includes raw events (which didn't have any) and a few other types that were missing them. Upon review some more useful fields were added to the repr output which would be more useful during debugging.
* Fix pluralization errors in various filesEhren Julien-Neitzert2019-05-231-1/+1
| | | | | * Replaced instances of 'return an' with 'returns an' * fixed pluralization errors
* Correct the documentation for methods and properties that return AssetsVexs2019-05-141-6/+6
|
* Fixed TextChannel edit method missing slowmode unitDevilXD2019-04-291-2/+2
|
* Add currently undocumented premium_tier field.Rapptz2019-04-201-1/+2
| | | | Needs more testing to find out what it is.
* Add compute_prune_count to Guild.prune_membersRapptz2019-04-141-5/+11
| | | | Fix #2085
* Add notes warning that fetch_ methods are api callsVexs2019-04-101-0/+13
| | | | Also recommends using cache attributes/methods instead
* Fix documentation so Sphinx can build semi-cleanly.Rapptz2019-04-081-3/+3
|
* simplify AuditLogIterator orderingkhazhyk2019-04-071-7/+5
| | | | | | rename reverse to oldest_first and remove cases where messages would be ordered differently from the order we fetch audit log entries, similar to HistoryIterator
* Add fetch custom emoji, all custom emojis; Add user property to EmojiNCPlayz2019-04-061-0/+44
|
* Redesign asset retrieval in the library.NCPlayz2019-04-061-36/+10
| | | | | | | | | | | 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
* guild.py: change wording for create_role errornumbermaniac2019-03-241-1/+1
|
* Add Guild.max_presences and Guild.max_membersNCPlayz2019-03-221-1/+7
| | | | | Fixes #1822 Fixes #1418
* Add support for guild widgetNCPlayz2019-03-191-0/+26
|
* Expose MetadataNCPlayz2019-03-191-1/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added access to: * `/users/@me/guilds` * `/guilds/{guild_id}` * `/guilds/{guild_id}/members/{member_id}` BREAKING CHANGE: * `get_user_info` -> `fetch_user_info` to match naming scheme. Remove useless note Remove `reverse` and corresponding documentation Update documentation to reflect #1988 Rename `get_` HTTP functions to `fetch_` Breaking Changes: * `get_message` -> `fetch_message` * `get_invite` -> `fetch_invite` * `get_user_profile` -> `fetch_user_profile` * `get_webhook_info` -> `fetch_webhook` * `get_ban` -> `fetch_ban` Fix InviteConverter, update migrating.rst Rename get_message to fetch_message
* Organise documentationNCPlayz2019-03-191-95/+95
|