mirror of
https://github.com/phin05/discord-rich-presence-plex
synced 2024-11-21 17:13:04 +00:00
Updated README and bumped version to v2.10.0
This commit is contained in:
parent
dab6e09a8a
commit
4b41a2308d
4 changed files with 16 additions and 5 deletions
10
.github/release-notes/v2.10.0.md
vendored
Normal file
10
.github/release-notes/v2.10.0.md
vendored
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
### Release Notes
|
||||||
|
|
||||||
|
* Added support for progress bar display. Config property `display.progressMode` will be set to `bar` by default. Refer to the [Configuration Reference section](https://github.com/phin05/discord-rich-presence-plex/blob/v2.10.0/README.md#reference) of the README for more information.
|
||||||
|
|
||||||
|
[Full Changelog](https://github.com/phin05/discord-rich-presence-plex/compare/v2.9.0...v2.10.0)
|
||||||
|
|
||||||
|
### Installation Instructions
|
||||||
|
|
||||||
|
* [Regular](https://github.com/phin05/discord-rich-presence-plex/blob/v2.10.0/README.md#installation)
|
||||||
|
* [Docker](https://github.com/phin05/discord-rich-presence-plex/blob/v2.10.0/README.md#run-with-docker)
|
|
@ -41,8 +41,8 @@ The config file is stored in a directory named `data`.
|
||||||
* `album` (boolean, default: `true`) - Displays the album name. Applicable to music only.
|
* `album` (boolean, default: `true`) - Displays the album name. Applicable to music only.
|
||||||
* `year` (boolean, default: `true`) - Displays the release year.
|
* `year` (boolean, default: `true`) - Displays the release year.
|
||||||
* `statusIcon` (boolean, default: `false`) - Displays a status icon (playing, paused, buffering) at the bottom-right corner of the poster. Applicable to movies and TV shows only. Posters get cropped to a square if this is enabled (Discord bug/limitation).
|
* `statusIcon` (boolean, default: `false`) - Displays a status icon (playing, paused, buffering) at the bottom-right corner of the poster. Applicable to movies and TV shows only. Posters get cropped to a square if this is enabled (Discord bug/limitation).
|
||||||
* `remainingTime` (boolean, default: `false`) - Displays remaining time instead of elapsed time. This is currently broken due to a Discord bug/limitation.
|
* `progressMode` (string, default: `bar`) - Progress/timestamp display mode. Valid modes are `off`, `elapsed` (displays elapsed time), `remaining` (displays remaining time) and `bar` (displays a progress bar). The `off` and `remaining` modes are currently broken due to a Discord bug/limitation.
|
||||||
* `paused` (boolean, default: `false`) - Displays Rich Presence even while media is paused. Timestamp while paused is currently broken due to a Discord bug/limitation.
|
* `paused` (boolean, default: `false`) - Displays Rich Presence even while media is paused. Progress/timestamp display while paused is currently broken due to a Discord bug/limitation.
|
||||||
* `posters`
|
* `posters`
|
||||||
* `enabled` (boolean, default: `false`) - Displays media posters (including album art and artist images). Requires `imgurClientID`.
|
* `enabled` (boolean, default: `false`) - Displays media posters (including album art and artist images). Requires `imgurClientID`.
|
||||||
* `imgurClientID` (string, default: `""`) - [Obtention Instructions](#obtaining-an-imgur-client-id)
|
* `imgurClientID` (string, default: `""`) - [Obtention Instructions](#obtaining-an-imgur-client-id)
|
||||||
|
@ -96,7 +96,8 @@ display:
|
||||||
genres: true
|
genres: true
|
||||||
album: true
|
album: true
|
||||||
year: true
|
year: true
|
||||||
remainingTime: false
|
statusIcon: false
|
||||||
|
progressMode: bar
|
||||||
paused: false
|
paused: false
|
||||||
posters:
|
posters:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
@ -120,7 +121,7 @@ users:
|
||||||
|
|
||||||
## Configuration - Discord
|
## Configuration - Discord
|
||||||
|
|
||||||
The "Share your detected activities with others" setting must be enabled in Discord Settings → Activity Settings → Activity Privacy.
|
The "Share your detected activities with others" setting must be enabled under Discord Settings → Activity Settings → Activity Privacy.
|
||||||
|
|
||||||
![Discord Activity Privacy](assets/discord-activity-privacy.png)
|
![Discord Activity Privacy](assets/discord-activity-privacy.png)
|
||||||
|
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 58 KiB |
|
@ -2,7 +2,7 @@ import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
name = "Discord Rich Presence for Plex"
|
name = "Discord Rich Presence for Plex"
|
||||||
version = "2.9.0"
|
version = "2.10.0"
|
||||||
|
|
||||||
plexClientID = "discord-rich-presence-plex"
|
plexClientID = "discord-rich-presence-plex"
|
||||||
discordClientID = "413407336082833418"
|
discordClientID = "413407336082833418"
|
||||||
|
|
Loading…
Reference in a new issue