aboutsummaryrefslogtreecommitdiff
path: root/discord/guild.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed incorrectly named 'Intent' class in doc.Nekokatt2020-09-261-1/+1
| | | `Intent.members` -> `Intents.members`.
* Mention potential Guild.member_count accuracy issuesRapptz2020-09-231-1/+8
|
* Allow finer grained control over the member cache.Rapptz2020-09-231-2/+3
|
* Raise if member intent is not enabledRapptz2020-09-231-0/+9
|
* Don't cache members during guild start up if cache is disabled.Rapptz2020-09-231-1/+4
| | | | | | | This is mainly a half-implemented commit. There are a few more places where cache consistency is necessary. In the future there will probably be a member cache policy enum that will be used and cache consistency will be tackled in part of that larger refactoring.
* Add Guild.chunk and deprecated Client.request_offline_membersRapptz2020-09-231-5/+21
|
* Rewrite chunking to work with intents.Rapptz2020-09-231-11/+13
| | | | | | | | This slows down chunking significantly for bots in a large number of guilds since it goes down from 75 guilds/request to 1 guild/request. However the logic was rewritten to fire the chunking request immediately after receiving the GUILD_CREATE rather than waiting for all the guilds in the ready stream before doing it.
* Implement VoiceProtocol lower level hooks.Rapptz2020-09-231-1/+1
| | | | | This allows changing the connect flow and taking control of it without relying on internal events or tricks.
* Add COMMUNITY to Guild.featuresAlex Nørgaard2020-09-041-0/+1
|
* Fix bug with Guild.by_category not showing some channelsRapptz2020-08-221-6/+6
| | | | | | If categories come after a child channel in the dictionary mapping for whatever reason, then the previous code would remove it from the mapping and set it to []. This commit aims to fix this.
* Specify where to get max_members in documentationJaime Garcia Jr2020-07-311-1/+5
|
* Added exception documentation for Guild.create_voice_channelSkezza2020-07-221-0/+18
|
* Add double backticks for some parameter mentions in the documentation.Skezza2020-07-221-1/+1
|
* Add Guild.change_voice_state to control our voice state.jack11422020-07-221-0/+20
|
* Documentation formattingSkezza2020-06-301-2/+2
|
* Fix typo with voice_client documentationSkezza2020-06-301-1/+1
|
* [bugs] stop resolving Object for template/invite; remove dupe methodsNCPlayz2020-06-291-54/+11
|
* Add support for bulk editing role positionsNadir Chowdhury2020-06-281-0/+66
|
* Add support for integrationsNadir Chowdhury2020-06-281-0/+96
|
* Fix various inconsistencies within the documentation (#5067)Sebastian Law2020-06-281-7/+17
|
* Fix a KeyError for channels with no category in Guild.by_categoryRapptz2020-06-271-1/+4
|
* Fix Guild.by_category not showing empty categories.Rapptz2020-06-271-2/+3
|
* Fix error raised when using the roles parameter.Tarek2020-06-261-1/+1
|
* Add user_ids fields for query_membersTarek2020-05-291-2/+13
|
* Fix documentation string for guild.premium_subscription_countnumbermaniac2020-05-291-1/+1
|
* Consistent usage of RST inline code within Guild.features referencesRapptz2020-05-231-9/+9
|
* Implement some missing attributes of `Guild` (and `Guild.edit`)NCPlayz2020-05-231-6/+57
|
* use `_channel_factory` instead of manual checking in `Guild._sync`NCPlayz2020-05-231-9/+3
|
* fix HTTPException explanation in Guild.fetch_member docsiomintz2020-05-061-1/+1
|
* fix NotificationLevel being suppressedXua2020-05-031-6/+4
|
* Add roles parameter for pruning members.unknown2020-05-031-2/+13
|
* Fix cases where member_count is equal to 0Rapptz2020-04-161-1/+1
| | | | Fixes #4008, #4005
* Guild.owner may be None for very large guilds.Arthur2020-04-141-1/+1
|
* Update documentation on guild features to reflect Discord changesJake Ward2020-04-061-2/+3
|
* Add position argument to Guild.create_categoryIlya Lukyanov2020-04-041-2/+2
| | | | This way we can specify category position upon creation
* 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
|