| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fixes and improvements for v1.3 documentation | Harmon | 2020-01-22 | 1 | -6/+9 |
| | | | | | | | | | | * 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 documentation | Rapptz | 2020-01-21 | 1 | -6/+6 |
| | | |||||
| * | Bump copyright year to 2020 | Rapptz | 2020-01-19 | 1 | -2/+2 |
| | | | | | Closes #2510 | ||||
| * | Added docs for overwrites kwarg for CategoryChannel.edit | Willy | 2020-01-19 | 1 | -0/+5 |
| | | |||||
| * | Document NotFound exception raise in message deletion endpoints | Rapptz | 2020-01-18 | 1 | -3/+5 |
| | | |||||
| * | Allow editing of overwrites in Channel.edit() | CapnS | 2019-12-04 | 1 | -2/+21 |
| | | |||||
| * | Fix 'purge' method docstring. | Naegin | 2019-11-15 | 1 | -1/+1 |
| | | |||||
| * | Implement `TextChannel.follow()` | NCPlayz | 2019-11-15 | 1 | -1/+41 |
| | | |||||
| * | [docs] category_id is Optional | apple502j | 2019-10-20 | 1 | -4/+4 |
| | | |||||
| * | Add VoiceChannel.voice_states low level helper. | Rapptz | 2019-07-10 | 1 | -0/+18 |
| | | |||||
| * | Publicly expose a type property for all channels. | Rapptz | 2019-06-09 | 1 | -10/+20 |
| | | | | | Fix #2185 | ||||
| * | Improve documentation | NCPlayz | 2019-06-07 | 1 | -18/+18 |
| | | |||||
| * | Make __repr__ slightly more detailed and add a few missing ones. | Rapptz | 2019-05-26 | 1 | -5/+21 |
| | | | | | | | 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. | ||||
| * | Correct the documentation for methods and properties that return Assets | Vexs | 2019-05-14 | 1 | -1/+1 |
| | | |||||
| * | Fixed TextChannel edit method missing slowmode unit | DevilXD | 2019-04-29 | 1 | -2/+2 |
| | | |||||
| * | Consistent use of __all__ to prevent merge conflicts. | Rapptz | 2019-04-20 | 1 | -2/+2 |
| | | |||||
| * | Add reason to TextChannel.create_webhook | Rapptz | 2019-04-18 | 1 | -2/+7 |
| | | | | | | The reason parameter does not work with webhook deletes or edits so they're not added. Probably a Discord bug. | ||||
| * | Add abc.GuildChannel.clone to clone a channel with another name. | Rapptz | 2019-04-18 | 1 | -0/+31 |
| | | | | | Fixes #2093 | ||||
| * | Remove legacy nsfw check. | Rapptz | 2019-04-16 | 1 | -6/+3 |
| | | |||||
| * | Bool fix in TextChannel.purge documentation. | Lorenzo | 2019-04-13 | 1 | -1/+1 |
| | | |||||
| * | Change slowmode max value in docs | apple502j | 2019-04-13 | 1 | -1/+1 |
| | | |||||
| * | simplify HistoryIterator message ordering | khazhyk | 2019-04-07 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | | | | | | rename reverse -> oldest_first, which is more obvious what it does. Then, honor it entirely - if you specify no `after` endpoint, we default to the beginning of message history, similar to how `before` defaults to the end of message history. This is a breaking change, and will change the behavior of any iterator that previously would have been returning messages in a weird order for limits over 100 `for msg in history(reversed=True, limit=300)` would return the newest 300 messages, in a messed up order (100..0, 200..100, 300..200). `for msg in history(oldest_first=True, limit=300)` will now return the oldest 300 messages in order. And so on. `for msg in history(after=msg)` is unchanged, this previously would return the oldest 100 messages after `msg`, oldest->newest order, and still will. | ||||
| * | Redesign asset retrieval in the library. | NCPlayz | 2019-04-06 | 1 | -5/+3 |
| | | | | | | | | | | | | 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 | ||||
| * | Fix documentation for Channel.last_message | Capn | 2019-03-22 | 1 | -1/+1 |
| | | |||||
| * | Add TextChannel.last_message_id and TextChannel.last_message | Rapptz | 2019-03-20 | 1 | -1/+46 |
| | | |||||
| * | Organise documentation | NCPlayz | 2019-03-19 | 1 | -28/+28 |
| | | |||||
| * | Sorting bucket requires an integer. | Rapptz | 2019-03-17 | 1 | -1/+1 |
| | | |||||
| * | Fix typo in private property name. | Rapptz | 2019-03-17 | 1 | -1/+1 |
| | | |||||
| * | Add support for store channels. | Rapptz | 2019-03-17 | 1 | -1/+132 |
| | | |||||
| * | 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. | ||||