Skip to content

Commit b2ffed1

Browse files
committed
Update to 1.1.2
Adding configuration url (HA 2012.11.0) Minor update to issue template
1 parent d413064 commit b2ffed1

File tree

4 files changed

+8
-15
lines changed

4 files changed

+8
-15
lines changed

.github/ISSUE_TEMPLATE/issue.md

+4-13
Original file line numberDiff line numberDiff line change
@@ -8,35 +8,26 @@ about: Create a report to help us improve
88
99
Issues not containing the minimum requirements will be closed:
1010
11+
- Issues without component version will be closed.
1112
- Issues without a description (using the header is not good enough) will be closed.
1213
- Issues without debug logging will be closed.
13-
- Issues without configuration will be closed
1414
1515
-->
1616

1717
## Version of the custom_component
1818
<!-- If you are not using the newest version, download and try that before opening an issue
19-
If you are unsure about the version check the const.py file.
19+
If you are unsure about the version check the const.py or manifest.json file.
2020
-->
21-
22-
## Configuration
23-
24-
```yaml
25-
26-
Add your logs here.
27-
28-
```
21+
1.0.0
2922

3023
## Describe the bug
31-
A clear and concise description of what the bug is.
24+
<!-- A clear and concise description of what the bug is. -->
3225

3326

3427
## Debug log
35-
3628
<!-- To enable debug logs check this https://www.home-assistant.io/components/logger/ -->
3729

3830
```text
39-
4031
Add your logs here.
4132
4233
```

custom_components/knmi/const.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# Base component constants.
1717
NAME = "KNMI"
1818
DOMAIN = "knmi"
19-
VERSION = "1.1.1"
19+
VERSION = "1.1.2"
2020
ATTRIBUTION = "KNMI Weergegevens via https://weerlive.nl/"
2121

2222
# Platforms.

custom_components/knmi/entity.py

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ def device_info(self):
2121
"name": NAME,
2222
"model": VERSION,
2323
"manufacturer": NAME,
24+
"entry_type": "service",
25+
"configuration_url": "http://weerlive.nl/api/toegang/account.php",
2426
}
2527

2628
@property

custom_components/knmi/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"documentation": "https://github.com/golles/ha-knmi/",
55
"iot_class": "cloud_polling",
66
"issue_tracker": "https://github.com/golles/ha-knmi//issues",
7-
"version": "1.1.1",
7+
"version": "1.1.2",
88
"config_flow": true,
99
"codeowners": [
1010
"@golles"

0 commit comments

Comments
 (0)