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.9.0
This commit is contained in:
parent
d4b2e3f32a
commit
3816db4204
4 changed files with 15 additions and 6 deletions
8
.github/release-notes/v2.9.0.md
vendored
Normal file
8
.github/release-notes/v2.9.0.md
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
### Release Notes
|
||||
|
||||
* Posters for movies and TV shows are no longer cropped to a square by default. This is achieved by disabling the status icon, which can be re-enabled by setting `display.statusIcon` to `true` in the config.
|
||||
|
||||
### Installation Instructions
|
||||
|
||||
* [Regular](https://github.com/phin05/discord-rich-presence-plex/blob/v2.9.0/README.md#installation)
|
||||
* [Docker](https://github.com/phin05/discord-rich-presence-plex/blob/v2.9.0/README.md#run-with-docker)
|
11
README.md
11
README.md
|
@ -37,11 +37,12 @@ The config file is stored in a directory named `data`.
|
|||
* `writeToFile` (boolean, default: `false`) - Writes console output to a `console.log` file in the `data` directory.
|
||||
* `display` - Display settings for Rich Presence
|
||||
* `duration` (boolean, default: `true`) - Displays the total duration.
|
||||
* `genres` (boolean, default: `true`) - Displays the genre (applicable to movies only).
|
||||
* `album` (boolean, default: `true`) - Displays the album name (applicable to music only).
|
||||
* `genres` (boolean, default: `true`) - Displays the genre. Applicable to movies only.
|
||||
* `album` (boolean, default: `true`) - Displays the album name. Applicable to music only.
|
||||
* `year` (boolean, default: `true`) - Displays the release year.
|
||||
* `remainingTime` (boolean, default: `false`) - Displays remaining time instead of elapsed time.
|
||||
* `paused` (boolean, default: `false`) - Displays Rich Presence even while media is paused.
|
||||
* `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.
|
||||
* `paused` (boolean, default: `false`) - Displays Rich Presence even while media is paused. Timestamp while paused is currently broken due to a Discord bug/limitation.
|
||||
* `posters`
|
||||
* `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)
|
||||
|
@ -67,7 +68,7 @@ The config file is stored in a directory named `data`.
|
|||
|
||||
### Buttons
|
||||
|
||||
Discord can display up to 2 buttons in your Rich Presence. Buttons are visible to only other users and not yourself.
|
||||
Discord can display up to 2 buttons in your Rich Presence. Buttons are visible to only other users and not yourself (Discord bug/limitation).
|
||||
|
||||
#### Dynamic Button Labels
|
||||
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 65 KiB After Width: | Height: | Size: 57 KiB |
|
@ -2,7 +2,7 @@ import os
|
|||
import sys
|
||||
|
||||
name = "Discord Rich Presence for Plex"
|
||||
version = "2.8.0"
|
||||
version = "2.9.0"
|
||||
|
||||
plexClientID = "discord-rich-presence-plex"
|
||||
discordClientID = "413407336082833418"
|
||||
|
|
Loading…
Reference in a new issue