| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add Guild.default_notifications | Chris | 2018-11-24 | 1 | -2/+5 |
| | | |||||
| * | Add support for multiple activities | SnowyLuma | 2018-11-24 | 1 | -1/+1 |
| | | |||||
| * | [lint] Remove extra whitespace in guild.py | Hornwitser | 2018-11-24 | 1 | -1/+1 |
| | | | | | Remove trailing whitespace in guild.py introduced by 3727ea9. | ||||
| * | [lint] Fix import order | Hornwitser | 2018-11-24 | 1 | -1/+0 |
| | | | | | | Reorder imports to be consistenly grouped by standard library, third party library, and local modules in that order thoughout the library. | ||||
| * | Add Guild.splash_url_as | Matt (IPv4) | 2018-10-11 | 1 | -5/+36 |
| | | |||||
| * | Fix up Guild.create_custom_emoji docstring. | Rapptz | 2018-10-03 | 1 | -1/+1 |
| | | |||||
| * | Add note regarding MORE_EMOJI in Guild.create_custom_emoji | MusicOnline | 2018-10-03 | 1 | -1/+2 |
| | | |||||
| * | Correct Guild.create_custom_emoji documentation | MusicOnline | 2018-10-02 | 1 | -2/+2 |
| | | |||||
| * | Change internal role storage in Guild to a dict instead of a list. | Rapptz | 2018-09-24 | 1 | -23/+32 |
| | | | | | | | | | | | | | | | | | 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. | ||||
| * | Correct note note about editing emoji in Guild.create_custom_emoji. | Vexs | 2018-09-20 | 1 | -2/+0 |
| | | | | | Remove incorrect note; extension of #1575 | ||||
| * | Fix up the Sphinx strings causing warnings. | Rapptz | 2018-09-15 | 1 | -5/+5 |
| | | |||||
| * | Implement roles kwarg for guild.create_custom_emoji and emoji.edit | PikalaxALT | 2018-08-22 | 1 | -2/+6 |
| | | |||||
| * | Remove remaining asyncio.coroutine calls. | bmintz | 2018-07-05 | 1 | -4/+2 |
| | | | | | Also remove Client.async_event | ||||
| * | Drop support for Python 3.4 and make minimum version 3.5.2. | Rapptz | 2018-06-10 | 1 | -53/+36 |
| | | |||||
| * | Fixes various documentation errors/inconsistencies | Steve C | 2018-05-18 | 1 | -11/+20 |
| | | | | | Mostly dealing with permissions, also fixes Raw Events inclusion. | ||||
| * | Document user parameter in Guild.get_ban | Rapptz | 2018-05-08 | 1 | -0/+5 |
| | | |||||
| * | Add support for getting individual ban entries | slice | 2018-05-07 | 1 | -0/+30 |
| | | |||||
| * | Actually fix the order in Guild.by_category. | Rapptz | 2018-03-31 | 1 | -2/+2 |
| | | |||||
| * | Flip comparison in Guild.by_category. | Rapptz | 2018-03-31 | 1 | -1/+1 |
| | | |||||
| * | Sort voice channels below text channels in Guild.by_category | Rapptz | 2018-03-25 | 1 | -1/+1 |
| | | |||||
| * | Split Game object to separate Activity subtypes for Rich Presences. | Rapptz | 2018-03-05 | 1 | -3/+2 |
| | | | | | | | | | | | | 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. | ||||
| * | Add intersphinx | Tobotimus | 2018-01-06 | 1 | -16/+16 |
| | | |||||
| * | Further clarify how bots can interact with emoji endpoints | Pandentia | 2017-10-03 | 1 | -0/+2 |
| | | | | | | Clarifies that bot accounts can only interact with emoji they have created. | ||||
| * | Remove reference to "whitelisted" bots for emoji endpoints | Pandentia | 2017-10-03 | 1 | -5/+0 |
| | | | | | | | Due to a recent change in the Discord API, bots can now create guild-specific emoji, so I've removed the parts of the documentation referencing this restriction. | ||||
| * | Allow creating a channel with a category. | Rapptz | 2017-09-29 | 1 | -6/+17 |
| | | |||||
| * | Fix Guild.system_channel always returning None. | Rapptz | 2017-09-26 | 1 | -1/+1 |
| | | | | | Fixes #811 | ||||
| * | Temporarily add created channels to cache. | Rapptz | 2017-09-23 | 1 | -3/+15 |
| | | | | | | | | This should fix issues when doing a `abc.GuildChannel.edit` immediately afterwards and then when the corresponding CHANNEL_CREATE comes in the channel instance should hopefully be overwritten by the authoritative figure, the WebSocket. | ||||
| * | Fix sorting for channels. | Rapptz | 2017-09-21 | 1 | -5/+5 |
| | | |||||
| * | [guild] use a defaultdict in by_category | Jake | 2017-09-20 | 1 | -8/+3 |
| | | |||||
| * | Fix error when creating guild channels. | Rapptz | 2017-09-13 | 1 | -2/+2 |
| | | |||||
| * | Add Guild.create_category. | Rapptz | 2017-09-13 | 1 | -2/+12 |
| | | | | | An alias, Guild.create_category_channel is provided. | ||||
| * | Add category support. | Rapptz | 2017-09-13 | 1 | -4/+50 |
| | | | | | | | | | | | | | | This adds: * CategoryChannel, which represents a category * Guild.by_category() which traverses the channels grouping by category * Guild.categories to get a list of categories * abc.GuildChannel.category to get the category a channel belongs to * sync_permissions keyword argument to abc.GuildChannel.edit to sync permissions with a pre-existing or new category * category keyword argument to abc.GuildChannel.edit to move a channel to a category | ||||
| * | Document new features for guilds. | Rapptz | 2017-09-12 | 1 | -0/+2 |
| | | |||||
| * | Fix crashing for now when a category is created. | Rapptz | 2017-09-08 | 1 | -2/+3 |
| | | | | | A full implementation will come later. | ||||
| * | Add webhook support. | Rapptz | 2017-08-21 | 1 | -0/+23 |
| | | | | | | | | Allows for usage of either `requests` and `aiohttp` when used in "Standalone" mode. Fixes #704 | ||||
| * | Add support for Guild.system_channel | Rapptz | 2017-08-17 | 1 | -1/+23 |
| | | |||||
| * | Remove Guild.create_invite too since it relies on a default channel. | Rapptz | 2017-07-31 | 1 | -38/+0 |
| | | |||||
| * | Remove Guild.default_channel | Rapptz | 2017-07-31 | 1 | -7/+7 |
| | | | | | The concept no longer exists. | ||||
| * | add Guild.icon_url_as | khazhyk | 2017-07-25 | 1 | -1/+35 |
| | | | | | Guild icons can also be up to 1024px, jpg, png, or webp | ||||
| * | Fix passing None to afk_channel in Guild.edit. | Rapptz | 2017-06-19 | 1 | -3/+11 |
| | | |||||
| * | Document that exceptions happen in Guild.audit_logs. | Rapptz | 2017-05-25 | 1 | -0/+7 |
| | | |||||
| * | Use Python3Lexer instead of PythonLexer for pygments. | Rapptz | 2017-05-22 | 1 | -2/+2 |
| | | |||||
| * | Make supported operations stand out more than attributes. | Rapptz | 2017-05-20 | 1 | -8/+10 |
| | | |||||
| * | Use describe instead of tables for supported operations. | Rapptz | 2017-05-13 | 1 | -13/+15 |
| | | |||||
| * | First pass at documentation reform. | Rapptz | 2017-05-12 | 1 | -4/+4 |
| | | |||||
| * | Remove Guild.change_vanity_invite in favour of Guild.edit | Rapptz | 2017-05-09 | 1 | -29/+11 |
| | | |||||
| * | Rename GuildRegion to VoiceRegion. | Rapptz | 2017-05-09 | 1 | -4/+4 |
| | | | | | | This naming makes more sense since voice regions are not a guild exclusive concept. | ||||
| * | Add support for audit log reasons. | Rapptz | 2017-05-07 | 1 | -20/+42 |
| | | | | | Most routes now have a 'reason' keyword argument. | ||||
| * | Add support for setting and retrieving guild vanity invites. | Rapptz | 2017-04-30 | 1 | -0/+55 |
| | | |||||
| * | Changed audit_log to audit_logs in documentation | Twentysix | 2017-04-30 | 1 | -1/+1 |
| | | |||||