| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Expose Embed.from_data as Embed.from_dict | Rapptz | 2019-03-13 | 1 | -1/+1 |
| | | | | | This is a breaking change. | ||||
| * | Revert default parameter use_cached of Attachment.save back to False. | Rapptz | 2019-03-10 | 1 | -1/+1 |
| | | | | | Fix #1973 | ||||
| * | Have use_cached=True by default for Attachment.save. | Rapptz | 2019-03-06 | 1 | -8/+8 |
| | | | | | Also touch up the documentation a bit. | ||||
| * | Added cached saving for attachments | Maku | 2019-03-06 | 1 | -3/+9 |
| | | | | | Updated docstring | ||||
| * | Update Member.joined_at on MESSAGE_CREATE and document it can be None. | Rapptz | 2019-02-27 | 1 | -1/+16 |
| | | | | | Fixes #1638 | ||||
| * | Manually calculate millisceond epoch rather than bitshifting | slice | 2019-02-15 | 1 | -4/+6 |
| | | | | | Implementation by Danny. | ||||
| * | Fix system_content returning incorrect join messages | slice | 2019-02-15 | 1 | -4/+6 |
| | | |||||
| * | Bumped copyright years to 2019. | Dante Dam | 2019-01-28 | 1 | -1/+1 |
| | | |||||
| * | Add support for spoiler attachments. | Rapptz | 2018-12-14 | 1 | -0/+4 |
| | | |||||
| * | Update Message.mention_everyone docs to include @here | Laurenz | 2018-12-14 | 1 | -3/+3 |
| | | |||||
| * | [lint] Limit unneccessarily broad except clauses | Hornwitser | 2018-11-24 | 1 | -2/+2 |
| | | | | | Add exception qualifier(s) to bare except clauses swallowing exceptions. | ||||
| * | Change internal role storage in Guild to a dict instead of a list. | Rapptz | 2018-09-24 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | 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. | ||||
| * | Change docstrings to raw-strings | BeatButton | 2018-09-14 | 1 | -2/+2 |
| | | |||||
| * | Fix behavior of reaction type-conversion | Bryan Forbes | 2018-08-25 | 1 | -1/+2 |
| | | |||||
| * | [lint] Fix incorrect and inconsistent whitespace | Hornwitser | 2018-08-22 | 1 | -7/+7 |
| | | | | | Adjust whitespace to be consistent with the rest of the library. | ||||
| * | [lint] Remove unnecessary lambdas | Hornwitser | 2018-08-22 | 1 | -1/+1 |
| | | | | | Lambdas of the form `lambda x: func(x)` are redundant. | ||||
| * | [lint] Remove unused imports | Hornwitser | 2018-08-22 | 1 | -1/+1 |
| | | | | | Left over from various refactoring and rewrites. | ||||
| * | Update Message.author doctring | Dunkledore | 2018-08-22 | 1 | -1/+1 |
| | | |||||
| * | message: de-duplicate reaction type conversion | bmintz | 2018-07-31 | 1 | -23/+15 |
| | | | | | | | Removes some duplicate code in Message.{add,remove}_reaction. The code in question converts the emoji object from Reaction, Emoji, str, or PartialEmoji to a string form suitable for sending over the wire. | ||||
| * | Change jump_to_url to jump_url and fix format. | Rapptz | 2018-06-29 | 1 | -2/+2 |
| | | | | | People kept asking, might as well. | ||||
| * | Remove dead package references. | Rapptz | 2018-06-10 | 1 | -1/+1 |
| | | |||||
| * | Drop support for Python 3.4 and make minimum version 3.5.2. | Rapptz | 2018-06-10 | 1 | -30/+21 |
| | | |||||
| * | Add Message.jump_to_url | Rapptz | 2018-06-10 | 1 | -0/+6 |
| | | |||||
| * | Fixes various documentation errors/inconsistencies | Steve C | 2018-05-18 | 1 | -8/+12 |
| | | | | | Mostly dealing with permissions, also fixes Raw Events inclusion. | ||||
| * | Filter null mentions when creating a Message. | Rapptz | 2018-04-20 | 1 | -1/+1 |
| | | |||||
| * | Split Game object to separate Activity subtypes for Rich Presences. | Rapptz | 2018-03-05 | 1 | -1/+24 |
| | | | | | | | | | | | | 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 seek_begin keyword argument to Attachment.save | Rapptz | 2018-02-13 | 1 | -2/+8 |
| | | |||||
| * | Change PartialReactionEmoji to PartialEmoji, add a PartialEmojiConverter | Gorialis | 2018-01-06 | 1 | -5/+5 |
| | | |||||
| * | Add intersphinx | Tobotimus | 2018-01-06 | 1 | -16/+16 |
| | | |||||
| * | Added a missing "to" in Message.raw_mentions documentation. | Chkoupinator | 2018-01-06 | 1 | -1/+1 |
| | | |||||
| * | Fix typo in Message.embeds documentation. | CloudNineK | 2018-01-06 | 1 | -1/+1 |
| | | |||||
| * | Use the proper endpoint for removing your own reaction. | Rapptz | 2017-12-21 | 1 | -1/+4 |
| | | |||||
| * | Update system_content strings for MessageType.new_member. | Rapptz | 2017-08-17 | 1 | -22/+40 |
| | | |||||
| * | Remove reason keyword argument from message deletion. | Rapptz | 2017-08-15 | 1 | -7/+2 |
| | | | | | | | | | | | | Apparently this is unsupported. Affected functions include: * abc.Messageable.send * Message.delete * TextChannel.delete_messages * TextChannel.purge | ||||
| * | Add delete_after to 'edit'. | MysterialPy | 2017-08-15 | 1 | -1/+21 |
| | | | | Allow for edited messages to be deleted after [float] seconds with optional parameter delete_after. | ||||
| * | Message content is Optional in Message.edit. | Rapptz | 2017-07-10 | 1 | -1/+2 |
| | | |||||
| * | Allow PartialReactionEmoji in add_reaction and remove_reaction. | Rapptz | 2017-07-02 | 1 | -3/+7 |
| | | |||||
| * | Fix Message.remove_reaction and Message.add_reaction taking in Reaction | Rapptz | 2017-07-02 | 1 | -4/+6 |
| | | |||||
| * | Actually expose Message.webhook_id. | Rapptz | 2017-06-24 | 1 | -0/+1 |
| | | |||||
| * | Implement "partial" message events. | Rapptz | 2017-06-09 | 1 | -6/+4 |
| | | | | | | These are events that get triggered regardless of the state of the message cache. Useful for getting data from before the bot was booted. | ||||
| * | Writing to files is 'wb' not 'rb'. | Rapptz | 2017-05-30 | 1 | -1/+1 |
| | | |||||
| * | Implement an Attachment model. | Rapptz | 2017-05-30 | 1 | -3/+72 |
| | | |||||
| * | Kill remaining references to discord.Channel in documentation. | Rapptz | 2017-05-19 | 1 | -1/+1 |
| | | |||||
| * | First pass at documentation reform. | Rapptz | 2017-05-12 | 1 | -7/+7 |
| | | |||||
| * | Add support for audit log reasons. | Rapptz | 2017-05-07 | 1 | -2/+7 |
| | | | | | Most routes now have a 'reason' keyword argument. | ||||
| * | Change some format usage to use %-formatting. | Rapptz | 2017-05-04 | 1 | -4/+4 |
| | | | | | | Minor speed increase when we're not doing excessive attribute access or any type of formatting. | ||||
| * | Allow using Reaction objects while adding or removing reactions. | Rapptz | 2017-04-21 | 1 | -6/+10 |
| | | |||||
| * | Support for new member message types. | Rapptz | 2017-04-21 | 1 | -0/+28 |
| | | |||||
| * | Remove unused imports. | Rapptz | 2017-04-18 | 1 | -9/+2 |
| | | |||||
| * | Speed up message update handling. | Rapptz | 2017-03-14 | 1 | -8/+11 |
| | | | | | | | Apparently, checking if something is not None and then calling it is faster than having an identity function that will just return the original value untransformed, such as a lambda or doing a str(str) call | ||||