PLEASE READ before upgrading. There are major breaking changes with 0.0.5.
- Entities are now associated to the integration. This does mean the entity domain moves from
activity_managertosensor. If you are doing any templating, automation, etc., you will need to update them.
Example:
If you have a condition for an automation to check if something is due, you previously would have done:
{{ states.activity_manager | selectattr('attributes.category', 'equalto', 'Workout') | map(attribute='state') | map('as_datetime') | reject(">", now()) | list | count > 0 }}
Now you would do:
{{ states.sensor | selectattr('attributes.integration', 'eq', 'activity_manager') | selectattr('attributes.category', 'equalto', 'Workout') | map(attribute='state') | map('as_datetime') | reject(">", now()) | list | count > 0 }}
What's Changed
- Frequency ms by @pathofleastresistor in #7
- Migrate to sensor entities by @pathofleastresistor in #10
New Contributors
- @pathofleastresistor made their first contribution in #7
Full Changelog: 0.0.4...0.0.5