From 3bc8cc7e2fe9c4236082ec3c4ec25da1419b5d26 Mon Sep 17 00:00:00 2001 From: Tamas Voros Date: Mon, 2 Nov 2020 21:53:32 +0000 Subject: [PATCH 1/2] add link to channel_mapping file --- README.md | 2 +- info.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2bc7809..c1c0b09 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Platform | Description ## Configuration in the UI -You need to add the channel ID of the TV channel. You can check the channel ID in the `channel_mapping.json` file. +You need to add the channel ID of the TV channel. You can check the channel ID in the [`channel_mapping.json`](https://github.com/vorostamas/portHuTV-homeassistant/blob/master/custom_components/porthutv/channel_mapping.json) file. *** diff --git a/info.md b/info.md index 8a6743b..b98655a 100644 --- a/info.md +++ b/info.md @@ -28,7 +28,7 @@ Platform | Description ## Configuration is done in the UI -You need to add the channel ID of the TV channel. You can check the channel ID in the `channel_mapping.json` file. +You need to add the channel ID of the TV channel. You can check the channel ID in the [`channel_mapping.json`](https://github.com/vorostamas/portHuTV-homeassistant/blob/master/custom_components/porthutv/channel_mapping.json) file. *** From 447cb07f23abb4be52976bfe2a60cda61478966c Mon Sep 17 00:00:00 2001 From: Tamas Voros Date: Tue, 3 Nov 2020 10:07:00 +0000 Subject: [PATCH 2/2] remove sampleclient import --- custom_components/porthutv/config_flow.py | 1 - custom_components/porthutv/const.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/custom_components/porthutv/config_flow.py b/custom_components/porthutv/config_flow.py index 3a1db08..3a72b1a 100644 --- a/custom_components/porthutv/config_flow.py +++ b/custom_components/porthutv/config_flow.py @@ -1,7 +1,6 @@ """Adds config flow for PortHuTV.""" from homeassistant import config_entries from homeassistant.core import callback -from sampleclient.client import Client import voluptuous as vol from custom_components.porthutv.const import ( diff --git a/custom_components/porthutv/const.py b/custom_components/porthutv/const.py index 3618fda..05ad7db 100644 --- a/custom_components/porthutv/const.py +++ b/custom_components/porthutv/const.py @@ -3,7 +3,7 @@ NAME = "PortHuTv" DOMAIN = "porthutv" DOMAIN_DATA = f"{DOMAIN}_data" -VERSION = "1.0.1" +VERSION = "1.0.2" ISSUE_URL = "https://github.com/vorostamas/portHuTV-homeassistant/issues"