From 0c0e2d6ae103de5bf0abe0ccb13d96f3e9965649 Mon Sep 17 00:00:00 2001 From: Jacob Coffee Date: Mon, 3 Jan 2022 11:25:25 -0600 Subject: [PATCH 1/3] separated changelog --- changelog/changelog.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 changelog/changelog.md diff --git a/changelog/changelog.md b/changelog/changelog.md new file mode 100644 index 0000000..2a8fbab --- /dev/null +++ b/changelog/changelog.md @@ -0,0 +1,39 @@ +## Changelog + +### 1.0.8 + +- Fix browse service (#21) + +### 1.0.7 + +- Fix error handling + +### 1.0.6 + +- Fix exception when item is not playable + +### 1.0.5 + +- Fix IoT class +- Fix media play + +### 1.0.4 + +- Fix Playlist folder + +### 1.0.3 + +- Fix cast +- Info in YAMC + +### 1.0.2 + +- Do not throttle data update + +### 1.0.1 + +- Config flow fixes + +### 1.0.0 + +- Initial public release From 6caf3de5ee25e3616b1273a436e108234ed43319 Mon Sep 17 00:00:00 2001 From: Jacob Coffee Date: Mon, 3 Jan 2022 11:25:49 -0600 Subject: [PATCH 2/3] added upcoming media card example --- README.md | 59 ++++++++++++++++--------------------------------------- 1 file changed, 17 insertions(+), 42 deletions(-) diff --git a/README.md b/README.md index 0d46eb3..b8a7a0a 100644 --- a/README.md +++ b/README.md @@ -2,46 +2,6 @@ Jellyfin integration for Home Assistant -## Changelog - -### 1.0.8 - -- Fix browse service (#21) - -### 1.0.7 - -- Fix error handling - -### 1.0.6 - -- Fix exception when item is not playable - -### 1.0.5 - -- Fix IoT class -- Fix media play - -### 1.0.4 - -- Fix Playlist folder - -### 1.0.3 - -- Fix cast -- Info in YAMC - -### 1.0.2 - -- Do not throttle data update - -### 1.0.1 - -- Config flow fixes - -### 1.0.0 - -- Initial public release - ## Features ### Entities @@ -49,11 +9,11 @@ Jellyfin integration for Home Assistant - 1 media_player entity per device - 1 sensor per server - Supports the "upcoming-media-card" custom card - + ### Media Browser - Browse medias and start playback from within Home Assistant - + ### Media Source - Browse and stream to a cast device (e.g. Chromecast) @@ -64,3 +24,18 @@ Jellyfin integration for Home Assistant - `browse`: Show a media info on a device - `delete`: Delete a media - `search`: Search for media (for compatible fontends) + +### Upcoming Media Card + +###### Sample for ui-lovelace.yaml: + +``` +- type: custom:upcoming-media-card + entity: sensor.jellyfin_media_server + title: Latest Media +``` + +--- + +#### [View Changelog](changelog/changelog.md) + From e3f9764896908dad1ff143a4eead01d757bdf193 Mon Sep 17 00:00:00 2001 From: Jacob Coffee Date: Mon, 3 Jan 2022 12:01:38 -0600 Subject: [PATCH 3/3] Added integration install instructions and links --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index b8a7a0a..9877076 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,15 @@ Jellyfin integration for Home Assistant +## Installation: + +- Install the Jellyfin integration through HACS or below + ![](https://my.home-assistant.io/badges/config_flow_start.svg) +- Configure your Jellyfin server +- After a restart, you will have media_player and sensor entities. + +--- + ## Features ### Entities @@ -35,6 +44,8 @@ Jellyfin integration for Home Assistant title: Latest Media ``` +More configuration options can be found in the [upcoming-media-card](https://github.com/custom-cards/upcoming-media-card#options) repo. + --- #### [View Changelog](changelog/changelog.md)