Skip to content

Commit

Permalink
Updated README and bumped version to v2.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phin05 committed Sep 23, 2024
1 parent dab6e09 commit 4b41a23
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
10 changes: 10 additions & 0 deletions .github/release-notes/v2.10.0.md
Original file line number Diff line number Diff line change
@@ -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)
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
* `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).
* `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.
* `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. Progress/timestamp display 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)
Expand Down Expand Up @@ -96,7 +96,8 @@ display:
genres: true
album: true
year: true
remainingTime: false
statusIcon: false
progressMode: bar
paused: false
posters:
enabled: true
Expand All @@ -120,7 +121,7 @@ users:
## 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)
Expand Down
Binary file modified assets/showcase.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion config/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys

name = "Discord Rich Presence for Plex"
version = "2.9.0"
version = "2.10.0"

plexClientID = "discord-rich-presence-plex"
discordClientID = "413407336082833418"
Expand Down

0 comments on commit 4b41a23

Please sign in to comment.