| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Handle type updates in TextChannel._update for news channels. | Rapptz | 2019-03-12 | 1 | -0/+1 |
| | | |||||
| * | Add Category.create_text_channel/Category.create_voice_channel (#1976) | Nadir Chowdhury | 2019-03-12 | 1 | -0/+14 |
| | | | | Fixes #1971 | ||||
| * | Add support for guild news channels. | Rapptz | 2019-03-08 | 1 | -2/+10 |
| | | |||||
| * | Fix typing for Channel.purge's limit kwarg. | Steve C | 2019-02-27 | 1 | -1/+1 |
| | | | | PyCharm was throwing a fit when I set it to None. 😒 | ||||
| * | Fix documentation typo in CategoryChannel | Pedro Cunha | 2019-02-12 | 1 | -1/+1 |
| | | |||||
| * | Add CategoryChannel.text_channels and voice_channels | Chris | 2019-01-29 | 1 | -0/+18 |
| | | |||||
| * | Bumped copyright years to 2019. | Dante Dam | 2019-01-28 | 1 | -1/+1 |
| | | |||||
| * | Handle implicit perms in discord.VoiceChannel.permissions_for | Michael H | 2018-12-14 | 1 | -0/+13 |
| | | | | | | This adds some implicit permission handling for `discord.VoiceChannel.permissions_for` This is not documented behavior in discord's developer documentation, but it can easily be verified as correct. | ||||
| * | [lint] Fix import order | Hornwitser | 2018-11-24 | 1 | -5/+4 |
| | | | | | | Reorder imports to be consistenly grouped by standard library, third party library, and local modules in that order thoughout the library. | ||||
| * | Revert "Rework documentation to not duplicate inherited members." | Rapptz | 2018-10-11 | 1 | -18/+0 |
| | | | | | This reverts commit 96981210b3415e15446db0b702b07fef25c8b680. | ||||
| * | Rework documentation to not duplicate inherited members. | Rapptz | 2018-10-03 | 1 | -0/+18 |
| | | | | | This will probably be reverted in 1 week. | ||||
| * | Fix up the Sphinx strings causing warnings. | Rapptz | 2018-09-15 | 1 | -2/+2 |
| | | |||||
| * | Add support for Discord's slow mode. | Rapptz | 2018-09-14 | 1 | -7/+17 |
| | | | | | | | | Adds the following: * `slowmode_delay` for `TextChannel.edit` * `slowmode_delay` attribute for `TextChannel` | ||||
| * | Change docstrings to raw-strings | BeatButton | 2018-09-14 | 1 | -2/+2 |
| | | |||||
| * | [lint] Fix types used for __slots__ and __all__ | Hornwitser | 2018-08-22 | 1 | -1/+1 |
| | | | | | | Stay consistent with the rest of the library and use lists for module __all__ values and tuples for class __slots__ attributes. | ||||
| * | [lint] Fix incorrect and inconsistent whitespace | Hornwitser | 2018-08-22 | 1 | -4/+5 |
| | | | | | Adjust whitespace to be consistent with the rest of the library. | ||||
| * | Make TextChannel.create_webhook name parameter mandatory. | Rapptz | 2018-07-20 | 1 | -6/+3 |
| | | |||||
| * | Drop support for Python 3.4 and make minimum version 3.5.2. | Rapptz | 2018-06-10 | 1 | -50/+35 |
| | | |||||
| * | Fixes various documentation errors/inconsistencies | Steve C | 2018-05-18 | 1 | -9/+9 |
| | | | | | Mostly dealing with permissions, also fixes Raw Events inclusion. | ||||
| * | Fix typo in TextChannel.delete_messages documentation. | Rapptz | 2018-03-06 | 1 | -3/+3 |
| | | |||||
| * | Update docstrings for channel.py | Jared Shields | 2018-02-26 | 1 | -1/+4 |
| | | | | | `delete_messages` requires `manage_messages`; the docs in here, nor on RTD reflect this. Small amendment at line 180, adding three additional. | ||||
| * | Add intersphinx | Tobotimus | 2018-01-06 | 1 | -20/+20 |
| | | |||||
| * | Missing name parameter in VoiceChannel.edit documentation. | Rapptz | 2017-10-26 | 1 | -0/+2 |
| | | |||||
| * | Add category support. | Rapptz | 2017-09-13 | 1 | -14/+128 |
| | | | | | | | | | | | | | | 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 | ||||
| * | Add webhook support. | Rapptz | 2017-08-21 | 1 | -0/+61 |
| | | | | | | | | Allows for usage of either `requests` and `aiohttp` when used in "Standalone" mode. Fixes #704 | ||||
| * | Remove incorrect extraneous usage of reason keyword argument. | Rapptz | 2017-08-17 | 1 | -1/+1 |
| | | | | | Fixes #726 | ||||
| * | Remove reason keyword argument from message deletion. | Rapptz | 2017-08-15 | 1 | -13/+9 |
| | | | | | | | | | | | | Apparently this is unsupported. Affected functions include: * abc.Messageable.send * Message.delete * TextChannel.delete_messages * TextChannel.purge | ||||
| * | Add bulk argument to TextChannel.purge | khazhyk | 2017-07-24 | 1 | -2/+7 |
| | | | | | | bulk=False will never use bulk message delete. Useful e.g. for using the purge interface for deleting the bot's own messages. | ||||
| * | Implement new-style NSFW channels. | Rapptz | 2017-07-18 | 1 | -2/+5 |
| | | | | | | No idea how these will change in the future but this is barebones enough for now. | ||||
| * | Expose reverse parameter in TextChannel.purge | Rapptz | 2017-07-14 | 1 | -2/+4 |
| | | |||||
| * | Fix TextChannel.purge not working. | Rapptz | 2017-07-04 | 1 | -1/+1 |
| | | |||||
| * | Typo in docstring for TextChannel.delete_messages | Rapptz | 2017-06-29 | 1 | -1/+1 |
| | | |||||
| * | Allow TextChannel.delete_messages to take lists of 0 or 1 element. | Rapptz | 2017-06-29 | 1 | -8/+22 |
| | | |||||
| * | Make supported operations stand out more than attributes. | Rapptz | 2017-05-20 | 1 | -32/+40 |
| | | |||||
| * | Use describe instead of tables for supported operations. | Rapptz | 2017-05-13 | 1 | -50/+58 |
| | | |||||
| * | Fix some left over incorrect snippets. | Rapptz | 2017-05-12 | 1 | -1/+1 |
| | | |||||
| * | First pass at documentation reform. | Rapptz | 2017-05-12 | 1 | -2/+2 |
| | | |||||
| * | Rename abc.Callable to abc.Connectable. | Rapptz | 2017-05-10 | 1 | -1/+1 |
| | | |||||
| * | Add support for audit log reasons. | Rapptz | 2017-05-07 | 1 | -16/+24 |
| | | | | | Most routes now have a 'reason' keyword argument. | ||||
| * | Better TextChannel.is_nsfw() check. | Rapptz | 2017-04-30 | 1 | -1/+1 |
| | | |||||
| * | Add TextChannel.is_nsfw method to check for NSFW channels. | Rapptz | 2017-04-26 | 1 | -0/+5 |
| | | |||||
| * | Remove unused imports. | Rapptz | 2017-04-18 | 1 | -5/+1 |
| | | |||||
| * | Re-implement voice sending. | Rapptz | 2017-04-18 | 1 | -1/+7 |
| | | | | | | | | | | | | | | | | | | | | | This is a complete redesign of the old voice code. A list of major changes is as follows: * The voice websocket will now automatically reconnect with exponential back-off just like the regular Client does. * Removal of the stream player concept. * Audio now gracefully pauses and resumes when a disconnect is found. * Introduce a discord.AudioSource concept to abstract streams * Flatten previous stream player functionality with the VoiceClient, e.g. player.stop() is now voice_client.stop() * With the above re-coupling this means you no longer have to store players anywhere. * The after function now requires a single parameter, the error, if any existed. This will typically be None. A lot of this design is experimental. | ||||
| * | Add TextChannel.members to get members that can see a channel. | Rapptz | 2017-02-28 | 1 | -0/+5 |
| | | |||||
| * | Rename VoiceChannel.voice_members to VoiceChannel.members | Rapptz | 2017-02-28 | 1 | -1/+1 |
| | | |||||
| * | Move purge and delete_messages from Messageable. | Rapptz | 2017-02-26 | 1 | -0/+144 |
| | | | | | | | This is a breaking change. Move these two to TextChannel since the other things that implement Messageable cannot reliably do bulk delete actions in their respective channels. | ||||
| * | Fix NameError in GroupChannel. | Rapptz | 2017-02-10 | 1 | -1/+1 |
| | | |||||
| * | Better group DM support. | Rapptz | 2017-02-09 | 1 | -1/+104 |
| | | |||||
| * | Update copyright year to 2017. | Rapptz | 2017-01-20 | 1 | -1/+1 |
| | | |||||
| * | Remove _get_guild_id from Messageable ABC. | Rapptz | 2017-01-14 | 1 | -9/+0 |
| | | |||||