Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Change Log
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 1.0.2 (Unreleased)

### Bugfixes
- Removes `device_class=temperature` restriction when picking your temperature sensor. (Issue#1)[https://github.com/SourceLabOrg/HomeAssistant-PVOutputPublisher/issues/1]

## 1.0.1 (03/23/2026)
Setup and submitted to HACs!

## 1.0.0 (03/23/2026)
Initial internal release!
6 changes: 3 additions & 3 deletions custom_components/pvoutput_publisher/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ def _get_system_schema(existing_data=None):

if existing_data.get(CONF_TEMPERATURE_ENTITY_ID):
schema[vol.Optional(CONF_TEMPERATURE_ENTITY_ID, default=existing_data.get(CONF_TEMPERATURE_ENTITY_ID))] = selector.EntitySelector(
selector.EntitySelectorConfig(domain="sensor", device_class="temperature")
selector.EntitySelectorConfig(domain="sensor")
)
else:
schema[vol.Optional(CONF_TEMPERATURE_ENTITY_ID)] = selector.EntitySelector(
selector.EntitySelectorConfig(domain="sensor", device_class="temperature")
selector.EntitySelectorConfig(domain="sensor")
)

schema[vol.Required(CONF_FREQUENCY, default=str(existing_data.get(CONF_FREQUENCY, "5")))] = vol.In(frequency_options)
Expand All @@ -54,7 +54,7 @@ def _get_system_schema(existing_data=None):
selector.EntitySelectorConfig(domain="sensor", device_class=["power", "energy"])
)
schema[vol.Optional(CONF_TEMPERATURE_ENTITY_ID)] = selector.EntitySelector(
selector.EntitySelectorConfig(domain="sensor", device_class="temperature")
selector.EntitySelectorConfig(domain="sensor")
)
schema[vol.Required(CONF_FREQUENCY, default="5")] = vol.In(frequency_options)

Expand Down
2 changes: 1 addition & 1 deletion custom_components/pvoutput_publisher/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"iot_class": "cloud_push",
"issue_tracker": "https://github.com/SourceLabOrg/HomeAssistant-PVOutputPublisher/issues",
"requirements": [],
"version": "1.0.1"
"version": "1.0.2"
}
Loading