diff --git a/.github/ISSUE_TEMPLATE/issue.md b/.github/ISSUE_TEMPLATE/issue.md index 70f3d5b..8975a9f 100644 --- a/.github/ISSUE_TEMPLATE/issue.md +++ b/.github/ISSUE_TEMPLATE/issue.md @@ -8,35 +8,26 @@ about: Create a report to help us improve Issues not containing the minimum requirements will be closed: +- Issues without component version will be closed. - Issues without a description (using the header is not good enough) will be closed. - Issues without debug logging will be closed. -- Issues without configuration will be closed --> ## Version of the custom_component - -## Configuration - -```yaml - -Add your logs here. - -``` +1.0.0 ## Describe the bug -A clear and concise description of what the bug is. + ## Debug log - ```text - Add your logs here. ``` \ No newline at end of file diff --git a/custom_components/knmi/const.py b/custom_components/knmi/const.py index fc03cda..7a372ba 100644 --- a/custom_components/knmi/const.py +++ b/custom_components/knmi/const.py @@ -16,7 +16,7 @@ # Base component constants. NAME = "KNMI" DOMAIN = "knmi" -VERSION = "1.1.1" +VERSION = "1.1.2" ATTRIBUTION = "KNMI Weergegevens via https://weerlive.nl/" # Platforms. diff --git a/custom_components/knmi/entity.py b/custom_components/knmi/entity.py index de23e1a..c900f14 100644 --- a/custom_components/knmi/entity.py +++ b/custom_components/knmi/entity.py @@ -21,6 +21,8 @@ def device_info(self): "name": NAME, "model": VERSION, "manufacturer": NAME, + "entry_type": "service", + "configuration_url": "http://weerlive.nl/api/toegang/account.php", } @property diff --git a/custom_components/knmi/manifest.json b/custom_components/knmi/manifest.json index e506f49..2a77c14 100644 --- a/custom_components/knmi/manifest.json +++ b/custom_components/knmi/manifest.json @@ -4,7 +4,7 @@ "documentation": "https://github.com/golles/ha-knmi/", "iot_class": "cloud_polling", "issue_tracker": "https://github.com/golles/ha-knmi//issues", - "version": "1.1.1", + "version": "1.1.2", "config_flow": true, "codeowners": [ "@golles"