| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix typing errors in PartialEmoji | Rapptz | 2021-07-03 | 1 | -3/+3 |
| | | |||||
| * | Allow passing Emoji in components | Rapptz | 2021-06-02 | 1 | -0/+6 |
| | | |||||
| * | Add PartialEmoji.from_str helper | Rapptz | 2021-05-28 | 1 | -0/+38 |
| | | |||||
| * | Type up **kwargs of various methods | Nadir Chowdhury | 2021-05-10 | 1 | -1/+2 |
| | | |||||
| * | Typehint emoji classes | Rapptz | 2021-05-05 | 1 | -18/+35 |
| | | |||||
| * | Refactor save() and read() into AssetMixin | Rapptz | 2021-04-17 | 1 | -68/+4 |
| | | |||||
| * | Rewrite Asset design | Rapptz | 2021-04-16 | 1 | -27/+69 |
| | | | | | | | | | | | | | | | | | | | | | | | | This is a breaking change. This does the following transformations, assuming `asset` represents an asset type. Object.is_asset_animated() => Object.asset.is_animated() Object.asset => Object.asset.key Object.asset_url => Object.asset_url Object.asset_url_as => Object.asset.replace(...) Since the asset type now requires a key (or hash, if you will), Emoji had to be flattened similar to how Attachment was done since these assets are keyed solely ID. Emoji.url (Asset) => Emoji.url (str) Emoji.url_as => removed Emoji.url.read => Emoji.read Emoji.url.save => Emoji.save This transformation was also done to PartialEmoji. | ||||
| * | Use f-strings in more places that were missed. | Rapptz | 2021-04-08 | 1 | -1/+1 |
| | | |||||
| * | Add `__all__` to remaining modules | Nadir Chowdhury | 2021-04-07 | 1 | -0/+3 |
| | | |||||
| * | Modernize code to use f-strings | Rapptz | 2021-04-04 | 1 | -5/+3 |
| | | | | | | This also removes the encoding on the top, since Python 3 does it by default. It also changes some methods to use `yield from`. | ||||
| * | Add PartialEmoji.url_as | z03h | 2021-01-24 | 1 | -4/+37 |
| | | |||||
| * | Change copyright year to present | Nihaal Sangha | 2021-01-15 | 1 | -1/+1 |
| | | |||||
| * | Add created_at property to PartialEmoji | Steve C | 2020-12-06 | 1 | -1/+12 |
| | | | | Also fixed docstring for PartialEmoji.url | ||||
| * | Fix and add documentation | Michael | 2020-09-23 | 1 | -2/+2 |
| | | |||||
| * | Fix possibility of PartialEmoji.id being a string | Eugene | 2020-05-29 | 1 | -1/+7 |
| | | |||||
| * | animated key is never given to reaction_remove(_emoji) | NCPlayz | 2020-04-06 | 1 | -2/+2 |
| | | |||||
| * | Bump copyright year to 2020 | Rapptz | 2020-01-19 | 1 | -1/+1 |
| | | | | | Closes #2510 | ||||
| * | Move PartialEmoji over to a new namespace to avoid circular imports | Rapptz | 2019-11-20 | 1 | -0/+141 |