| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Remove extra backtick in CustomActivity docs | Snaptraks | 2020-01-24 | 1 | -1/+1 |
| | | |||||
| * | Fixes and improvements for v1.3 documentation | Harmon | 2020-01-22 | 1 | -0/+6 |
| | | | | | | | | | | * 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 | -4/+4 |
| | | |||||
| * | Bump copyright year to 2020 | Rapptz | 2020-01-19 | 1 | -1/+1 |
| | | | | | Closes #2510 | ||||
| * | Make CustomActivity.__str__ not raise errors and match the client | Rapptz | 2020-01-15 | 1 | -1/+6 |
| | | |||||
| * | Expose _ActivityTag as BaseActivity to easily refer to. | Rapptz | 2020-01-14 | 1 | -5/+23 |
| | | |||||
| * | Add support for custom activities | Rapptz | 2020-01-14 | 1 | -1/+106 |
| | | | | | | | It's been long enough. Fixes #2400 | ||||
| * | Default the Streaming name to the one passed for user created ones. | Rapptz | 2019-12-19 | 1 | -1/+1 |
| | | |||||
| * | Add support for YouTube Streaming | NCPlayz | 2019-12-18 | 1 | -8/+13 |
| | | |||||
| * | Fix KeyError for things without a created_at | Rapptz | 2019-12-05 | 1 | -6/+14 |
| | | |||||
| * | Add `Activity.created_at` | NCPlayz | 2019-12-04 | 1 | -3/+21 |
| | | |||||
| * | Adjust BASE urls to have no trailing slash (consistency) | Devon R | 2019-11-15 | 1 | -2/+2 |
| | | |||||
| * | Return invites as https, various URL normalization | Devon R | 2019-11-15 | 1 | -2/+3 |
| | | |||||
| * | Cast activity enumerator to integer instead of accessing value directly | Rapptz | 2019-06-25 | 1 | -1/+1 |
| | | | | | Should make the library more resilient to future changes. | ||||
| * | Make __repr__ slightly more detailed and add a few missing ones. | Rapptz | 2019-05-26 | 1 | -0/+12 |
| | | | | | | | 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. | ||||
| * | Tightended the constraints of Spotify.__eq__. | Dante Dam | 2019-05-09 | 1 | -1/+2 |
| | | |||||
| * | Consistent use of __all__ to prevent merge conflicts. | Rapptz | 2019-04-20 | 1 | -1/+6 |
| | | |||||
| * | Change all IntEnum to Enum | Rapptz | 2019-04-08 | 1 | -1/+1 |
| | | | | | A testament to how many 3.5 users there are. | ||||
| * | Change Activity.application_id from `str` to `int`. | BluePhoenixGame | 2019-02-12 | 1 | -2/+3 |
| | | |||||
| * | Bumped copyright years to 2019. | Dante Dam | 2019-01-28 | 1 | -1/+1 |
| | | |||||
| * | Trim whitespace in artist names in Spotify.artists | Amit Katz | 2018-11-24 | 1 | -1/+1 |
| | | | | | | | Basically Discord retrieves the data like `artist1; artist2; artist3` and when you split only by `;` the results will be: `[artist1, " artist2", " artist3"]` | ||||
| * | [lint] Fix import order | Hornwitser | 2018-11-24 | 1 | -1/+2 |
| | | | | | | Reorder imports to be consistenly grouped by standard library, third party library, and local modules in that order thoughout the library. | ||||
| * | [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. | ||||
| * | Correct docstring for Game | Mitchell Ferree | 2018-03-25 | 1 | -1/+1 |
| | | |||||
| * | Add Spotify intergration colour | Myst(MysterialPy) | 2018-03-09 | 1 | -0/+15 |
| | | | | | | | | | Added property `colour` and alias `color` which returns the Spotify integration colour (#1db954). Technically Discord uses both (#1cb050 and #1db954) but it appears the former is an official Spotify colour. | ||||
| * | Fix _image_url returning htps | Myst(MysterialPy) | 2018-03-07 | 1 | -2/+2 |
| | | | | | | Should be https :) Just made this a separate PR from my previous one, in-case you decide to not include it. | ||||
| * | Fix session_id in Spotify.to_dict | Harmon | 2018-03-06 | 1 | -1/+1 |
| | | |||||
| * | Split Game object to separate Activity subtypes for Rich Presences. | Rapptz | 2018-03-05 | 1 | -0/+565 |
| 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. | |||||