diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
new file mode 100644
index 00000000000..73ec498014a
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE.md
@@ -0,0 +1,7 @@
+## The problem
+
+
+
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
index 4270779b426..7db182f60dd 100644
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -1,14 +1,14 @@
blank_issues_enabled: false
contact_links:
- - name: Report a bug/issue with Home Assistant itself
- url: https://github.com/home-assistant/home-assistant/issues
- about: This is the issue tracker for our website. Please report issues with Home Assistant in the main repository.
- - name: I have a question or need support
- url: https://www.home-assistant.io/help
- about: We use GitHub for tracking bugs, check our website for resources on getting help.
- - name: Feature Request
- url: https://community.home-assistant.io/c/feature-requests
- about: Please use our Community Forum for doing feature requests.
- - name: I'm unsure where to go
- url: https://www.home-assistant.io/join-chat
- about: If you are unsure where to go, then joining our chat is recommended; Just ask!
+ - name: Report a bug/issue with Home Assistant Core itself
+ url: https://github.com/home-assistant/core/issues
+ about: This is the issue tracker for our website. Please report issues with Home Assistant Core in the main repository.
+ - name: I have a question or need support
+ url: https://www.home-assistant.io/help
+ about: We use GitHub for tracking bugs, check our website for resources on getting help.
+ - name: Feature Request
+ url: https://community.home-assistant.io/c/feature-requests
+ about: Please use our Community Forum for doing feature requests.
+ - name: I'm unsure where to go
+ url: https://www.home-assistant.io/join-chat
+ about: If you are unsure where to go, then joining our chat is recommended; Just ask!
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index cbec4dd560d..d0dac4f97ff 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -18,6 +18,7 @@
- [ ] Spelling, grammar or other readability improvements (`current` branch).
- [ ] Adjusted missing or incorrect information in the current documentation (`current` branch).
- [ ] Added documentation for a new integration I'm adding to Home Assistant (`next` branch).
+ - [ ] I've opened up a PR to add logo's and icons in [Brands repository](https://github.com/home-assistant/brands).
- [ ] Added documentation for a new feature I'm adding to Home Assistant (`next` branch).
- [ ] Removed stale or deprecated documentation.
@@ -27,8 +28,9 @@
Please be sure to fill out additional details, if applicable.
-->
-- Link to parent pull request in the codebase:
-- This PR fixes or closes issue:
+- Link to parent pull request in the codebase:
+- Link to parent pull request in the Brands repository:
+- This PR fixes or closes issue:
## Checklist
+
+Once you've added the ZDB5100 to your Z-Wave network, you'll need to update your `zwcfg_*.xml` file with the below XML data. Stop Home Assistant and open your `zwcfg_*.xml` file (located in your configuration folder). Find the ZDB5100 device section and then its corresponding `CommandClass` section with id="91". Replace the entire CommandClass section with the below XML data. Save the file and restart Home Assistant.
+
+```xml
+
{%- else -%}
-
+
{%- endif -%}
diff --git a/source/_includes/asides/docs_navigation.html b/source/_includes/asides/docs_navigation.html
index 9ad89018186..ae72edaa8de 100644
--- a/source/_includes/asides/docs_navigation.html
+++ b/source/_includes/asides/docs_navigation.html
@@ -9,7 +9,7 @@
+
+ Example showing an Amcrest IP2M-841 PT camera with controls for Pan and Tilt.
+
diff --git a/source/_lovelace/entities.markdown b/source/_lovelace/entities.markdown index d36977174c6..59a2282da5f 100644 --- a/source/_lovelace/entities.markdown +++ b/source/_lovelace/entities.markdown @@ -264,6 +264,36 @@ icon: default: "`mdi:link`" {% endconfiguration %} +### Buttons + +{% configuration %} +type: + required: true + description: buttons + type: string +entities: + required: true + description: A list of entities to show. Each entry is either an entity ID or a map. + type: list + keys: + entity: + required: true + description: The entity to render. + type: string + icon: + required: false + description: Override the entity icon. + type: string + image: + required: false + description: Override the entity image. + type: string + name: + required: false + description: Label for the button + type: string +{% endconfiguration %} + ## Example Entity rows: diff --git a/source/_lovelace/entity.markdown b/source/_lovelace/entity.markdown new file mode 100644 index 00000000000..737fd6e3265 --- /dev/null +++ b/source/_lovelace/entity.markdown @@ -0,0 +1,66 @@ +--- +title: "Entity Card" +sidebar_label: Entity +description: "The Entity card gives you a quick overview of your entity's state" +--- + +The Entity card gives you a quick overview of your entity's state. + +
+
+ Screenshot of the entity card.
+
+
+ My mind goes crazy at the number of problems a single sensor can solve. For me, this was for reassurance using @****home_assistant**** but when you think how this could be applied elsewhere concierge services to those with memory issues etc.. #smarthome #inclusivity #accessibility #IoT pic.twitter.com/sirygbCE7p
- Add-ons for Hass.io allow the user to extend the functionality around Home
+ Add-ons allow the user to extend the functionality around Home
Assistant by installing additional applications.
This can be running an application that Home Assistant can integrate with
(like an MQTT broker) or to share the configuration via Samba for easy editing
- from other computers. Add-ons can be configured via the Hass.io panel in Home
+ from other computers. Add-ons can be configured via the Supervisor panel in Home
Assistant.
diff --git a/source/_lovelace/picture-glance.markdown b/source/_lovelace/picture-glance.markdown
index b1f538974f4..bd99a9c2505 100644
--- a/source/_lovelace/picture-glance.markdown
+++ b/source/_lovelace/picture-glance.markdown
@@ -90,6 +90,18 @@ entity:
required: true
description: Home Assistant entity ID.
type: string
+attribute:
+ required: false
+ description: Attribute of the entity to display instead of the state
+ type: string
+prefix:
+ required: false
+ description: Prefix to display before the attribute's value
+ type: string
+suffix:
+ required: false
+ description: Suffix to display after the attribute's value
+ type: string
icon:
required: false
description: Overwrites default icon.
diff --git a/source/_posts/2016-01-17-extended-support-for-diy-solutions.markdown b/source/_posts/2016-01-17-extended-support-for-diy-solutions.markdown
index 48d3b1e7e61..6cdce85ed42 100644
--- a/source/_posts/2016-01-17-extended-support-for-diy-solutions.markdown
+++ b/source/_posts/2016-01-17-extended-support-for-diy-solutions.markdown
@@ -13,7 +13,7 @@ First release of 2016 and we are on 🔥! The [main repository][github-ha] has p
[github-ha]: https://github.com/home-assistant/home-assistant/
[release-pr]: https://github.com/home-assistant/home-assistant/pull/883#partial-users-participants
-
+
- [MySensors] revamped and switch support added ([@MartinHjelmare][@MartinHjelmare])
- Full refactor of RPi GPIO. Now includes [binary sensor][rpi-bs] and [switch][rpi-s] ([@sfam])
@@ -53,7 +53,6 @@ First release of 2016 and we are on 🔥! The [main repository][github-ha] has p
[Cast]: /integrations/cast
[Universal media player]: /integrations/universal
[Netatmo]: /integrations/netatmo#sensor
-[Alarm.com]: /integrations/alarmdotcom
[Proliphix]: /integrations/proliphix/
[rpi-bs]: /integrations/rpi_gpio#binary-sensor
[rpi-s]: /integrations/rpi_gpio#switch
diff --git a/source/_posts/2017-04-22-ikea-tradfri--spotify.markdown b/source/_posts/2017-04-22-ikea-tradfri--spotify.markdown
index deb6f410341..d03d206803d 100644
--- a/source/_posts/2017-04-22-ikea-tradfri--spotify.markdown
+++ b/source/_posts/2017-04-22-ikea-tradfri--spotify.markdown
@@ -132,7 +132,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
- Bump pywemo version. ([@pavoni] - [#7004])
- Fix Synology camera content type ([@balloob] - [#7010]) ([camera.synology docs])
- Fix two more instances of JSON parsing synology ([@balloob] - [#7014])
-- Bump pyalarmdotcom to support new version of aiohttp ([@Xorso] - [#7021]) ([alarm_control_panel.alarmdotcom docs])
+- Bump pyalarmdotcom to support new version of aiohttp ([@Xorso] - [#7021])
- Fix US states check (fixes #7015) ([@fabaff] - [#7017])
- Remove deprecated remote classes ([@balloob] - [#7011]) (breaking change)
- Replace 'vendor_id' with 'arch' (fixes #7003) ([@fabaff] - [#7023])
@@ -417,7 +417,6 @@ Experiencing issues introduced by this release? Please report them in our [issue
[@turbokongen]: https://github.com/turbokongen
[@viswa-swami]: https://github.com/viswa-swami
-[alarm_control_panel.alarmdotcom docs]: /integrations/alarmdotcom
[arduino docs]: /integrations/arduino/
[automation docs]: /integrations/automation/
[binary_sensor.ping docs]: /integrations/ping#binary-sensor
diff --git a/source/_posts/2017-09-09-release-53.markdown b/source/_posts/2017-09-09-release-53.markdown
index d0c05471051..60b0cf9b522 100644
--- a/source/_posts/2017-09-09-release-53.markdown
+++ b/source/_posts/2017-09-09-release-53.markdown
@@ -62,7 +62,7 @@ This release ships a new KNX implementation thanks to @Julius2342. It will insta
- Bayesian Binary Sensor ([@jlmcgehee21] - [#8810]) ([binary_sensor.bayesian docs]) (new-platform)
- Add Tank Utility sensor ([@krismolendyke] - [#9132]) ([sensor.tank_utility docs]) (new-platform)
- Tesla platform ([@zabuldon] - [#9211]) ([tesla docs]) ([binary_sensor.tesla docs]) ([climate.tesla docs]) ([device_tracker.tesla docs]) ([lock.tesla docs]) ([sensor.tesla docs]) (new-platform)
-- mopar sensor ([@happyleavesaoc] - [#9136]) ([sensor.mopar docs]) (new-platform)
+- mopar sensor ([@happyleavesaoc] - [#9136]) (new-platform)
- Add Geofency device tracker ([@gunnarhelgason] - [#9106]) ([device_tracker.geofency docs]) (new-platform)
- Added DWD WarnApp Sensor ([@runningman84] - [#8657]) ([sensor.dwdwarnapp docs]) (new-platform)
- Add input_text component ([@BioSehnsucht] - [#9112]) ([input_text docs]) (new-platform)
@@ -147,7 +147,7 @@ frontend:
- Allow panels with external URL ([@andrey-git] - [#9214])
- Use ZCL mandatory attribute to determine ZHA light capabilities ([@jkl1337] - [#9232]) ([light.zha docs])
- A bugfix for pushbullet ([@danielhiversen] - [#9237]) ([notify.pushbullet docs])
-- mopar sensor ([@happyleavesaoc] - [#9136]) ([sensor.mopar docs]) (new-platform)
+- mopar sensor ([@happyleavesaoc] - [#9136]) (new-platform)
- Upgrade discord.py to 0.16.11 ([@fabaff] - [#9239]) ([notify.discord docs])
- Skip automatic events older than latest data ([@armills] - [#9230]) ([device_tracker.automatic docs])
- title and message was swapped in pushbullet ([@danielhiversen] - [#9241]) ([notify.pushbullet docs])
@@ -419,7 +419,6 @@ frontend:
[sensor.dwdwarnapp docs]: /integrations/dwd_weather_warnings/
[sensor.fitbit docs]: /integrations/fitbit
[sensor.homematic docs]: /integrations/homematic
-[sensor.mopar docs]: /integrations/mopar
[sensor.radarr docs]: /integrations/radarr
[sensor.season docs]: /integrations/season
[sensor.shodan docs]: /integrations/shodan
diff --git a/source/_posts/2017-09-23-release-54.markdown b/source/_posts/2017-09-23-release-54.markdown
index b9cd78296f5..74f96dcd0c2 100644
--- a/source/_posts/2017-09-23-release-54.markdown
+++ b/source/_posts/2017-09-23-release-54.markdown
@@ -60,7 +60,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
- Allow multiple observations of same entity ([@jlmcgehee21] - [#9391]) ([binary_sensor.bayesian docs])
- Break up Alexa per functionality ([@balloob] - [#9400]) ([alexa docs])
- Upgrade psutil to 5.3.1 ([@fabaff] - [#9403]) ([sensor.systemmonitor docs])
-- fix mopar sensor ([@happyleavesaoc] - [#9389]) ([sensor.mopar docs])
+- fix mopar sensor ([@happyleavesaoc] - [#9389])
- Support specifying no Apple TVs ([@postlund] - [#9394]) ([apple_tv docs])
- Update netdisco to 1.2.0 ([@balloob] - [#9408])
- components/xiaomi: Add initial discovery using NetDisco. ([@pfalcon] - [#9283])
@@ -329,7 +329,6 @@ Experiencing issues introduced by this release? Please report them in our [issue
[sensor.fitbit docs]: /integrations/fitbit
[sensor.homematic docs]: /integrations/homematic
[sensor.knx docs]: /integrations/sensor.knx/
-[sensor.mopar docs]: /integrations/mopar
[sensor.onewire docs]: /integrations/onewire
[sensor.swiss_public_transport docs]: /integrations/swiss_public_transport
[sensor.systemmonitor docs]: /integrations/systemmonitor
diff --git a/source/_posts/2018-01-14-release-61.markdown b/source/_posts/2018-01-14-release-61.markdown
index eed5ed65952..ca46f72339d 100644
--- a/source/_posts/2018-01-14-release-61.markdown
+++ b/source/_posts/2018-01-14-release-61.markdown
@@ -56,7 +56,7 @@ broadlink.send_packet_192_168_0_107 -> switch.broadlink_send_packet_192_168_0_10
## Release 0.61.1 - January 16
- Fix zha color probe ([@rcloran] - [#11670]) ([zha docs]) ([light.zha docs])
-- Move several local services to their right domain ([@amelchio] - [#11677]) ([calendar.todoist docs]) ([media_player.snapcast docs]) ([media_player.soundtouch docs]) ([sensor.mopar docs]) ([switch.broadlink docs]) ([switch.scsgate docs]) (breaking change)
+- Move several local services to their right domain ([@amelchio] - [#11677]) ([calendar.todoist docs]) ([media_player.snapcast docs]) ([media_player.soundtouch docs]) ([switch.broadlink docs]) ([switch.scsgate docs]) (breaking change)
- Rfxtrx fix ([@danielhiversen] - [#11678]) ([rfxtrx docs]) ([binary_sensor.rfxtrx docs])
- History order bugfix and opt-in option ([@rwa] - [#11686]) ([history docs])
- Fix purge with MariaDB / MySQL ([@tinloaf] - [#11713])
@@ -155,7 +155,7 @@ Note however, that this feature was replaced by a new ignore_string config optio
broadlink.learn_command_192_168_0_107 -> switch.broadlink_learn_command_192_168_0_107
broadlink.send_packet_192_168_0_107 -> switch.broadlink_send_packet_192_168_0_107
```
- ([@amelchio] - [#11677]) ([calendar.todoist docs]) ([media_player.snapcast docs]) ([media_player.soundtouch docs]) ([sensor.mopar docs]) ([switch.broadlink docs]) ([switch.scsgate docs]) (breaking change)
+ ([@amelchio] - [#11677]) ([calendar.todoist docs]) ([media_player.snapcast docs]) ([media_player.soundtouch docs]) ([switch.broadlink docs]) ([switch.scsgate docs]) (breaking change)
## All changes
@@ -789,7 +789,6 @@ Note however, that this feature was replaced by a new ignore_string config optio
[media_player.snapcast docs]: /integrations/snapcast
[media_player.soundtouch docs]: /integrations/soundtouch
[rfxtrx docs]: /integrations/rfxtrx/
-[sensor.mopar docs]: /integrations/mopar
[switch.broadlink docs]: /integrations/broadlink#switch
[switch.scsgate docs]: /integrations/scsgate#switch
[zha docs]: /integrations/zha/
diff --git a/source/_posts/2018-03-09-release-65.markdown b/source/_posts/2018-03-09-release-65.markdown
index a4aa5d24de9..244df69467d 100644
--- a/source/_posts/2018-03-09-release-65.markdown
+++ b/source/_posts/2018-03-09-release-65.markdown
@@ -318,7 +318,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
- IMAP sensor async/await conversion ([@amelchio] - [#12988]) ([sensor.imap docs])
- Refactor Google Assistant ([@balloob] - [#12959]) ([google_assistant docs]) ([light docs]) (breaking change)
- Bump pyEmby version to support aiohttp => 3 ([@mezz64] - [#12986]) ([media_player.emby docs])
-- Update pyalarmdotcom version ([@koolsb] - [#12987]) ([alarm_control_panel.alarmdotcom docs])
+- Update pyalarmdotcom version ([@koolsb] - [#12987])
- Show the error message when Zabbix fails to log in ([@cyberjacob] - [#12985]) ([zabbix docs])
- Script/gen_requirements: Ignore package families ([@cdce8p] - [#12963])
- Fix Sonos group discovery ([@amelchio] - [#12970]) ([media_player.sonos docs])
@@ -540,7 +540,6 @@ Experiencing issues introduced by this release? Please report them in our [issue
[@teharris1]: https://github.com/teharris1
[@thejta]: https://github.com/thejta
[@turbokongen]: https://github.com/turbokongen
-[alarm_control_panel.alarmdotcom docs]: /integrations/alarmdotcom
[alarm_control_panel.concord232 docs]: /integrations/concord232#alarm-control-panel
[alarm_control_panel.egardia docs]: /integrations/egardia
[api docs]: /integrations/api/
diff --git a/source/_posts/2018-05-11-release-69.markdown b/source/_posts/2018-05-11-release-69.markdown
index 73fb677f3a9..74770657e33 100644
--- a/source/_posts/2018-05-11-release-69.markdown
+++ b/source/_posts/2018-05-11-release-69.markdown
@@ -172,7 +172,7 @@ rainmachine:
- Sensor device classes ([@cdce8p] - [#14282]) ([sensor docs]) (breaking change)
- Matrix Chatbot ([@tinloaf] - [#13355]) ([matrix docs]) ([notify docs]) (breaking change) (new-platform)
- deCONZ add new device without restart ([@Kane610] - [#14221]) ([deconz docs]) ([binary_sensor.deconz docs]) ([light.deconz docs]) ([sensor.deconz docs])
-- Add alarmdotcom sensor status ([@jnewland] - [#14254]) ([alarm_control_panel.alarmdotcom docs])
+- Add alarmdotcom sensor status ([@jnewland] - [#14254])
- Add domain to labels and count state changes to Prometheus ([@jnewland] - [#14253]) ([prometheus docs])
- Add support for max_volume ([@relvacode] - [#13822]) ([media_player.onkyo docs])
- Refactor ImageProcessingFaceEntity ([@robmarkcole] - [#14296]) ([image_processing docs]) ([image_processing.dlib_face_detect docs]) ([image_processing.dlib_face_identify docs]) ([image_processing.microsoft_face_detect docs]) ([image_processing.microsoft_face_identify docs])
@@ -372,7 +372,6 @@ rainmachine:
[@thelittlefireman]: https://github.com/thelittlefireman
[@tinloaf]: https://github.com/tinloaf
[abode docs]: /integrations/abode/
-[alarm_control_panel.alarmdotcom docs]: /integrations/alarmdotcom
[auth docs]: /integrations/auth/
[binary_sensor docs]: /integrations/binary_sensor/
[binary_sensor.deconz docs]: /integrations/deconz#binary-sensor
diff --git a/source/_posts/2018-07-16-release-73-2.markdown b/source/_posts/2018-07-16-release-73-2.markdown
index 1e828f16c56..f288fa7470f 100644
--- a/source/_posts/2018-07-16-release-73-2.markdown
+++ b/source/_posts/2018-07-16-release-73-2.markdown
@@ -14,7 +14,6 @@ A man in the middle attack is when an attacker is able to inject itself between
After research, the following integrations have been impacted. Although the odds are extremely small, we still suggest that if you use any of these integrations, to create new API keys or change your password.
-- [alarm_control_panel.alarmdotcom](/integrations/alarmdotcom)
- [climate.sensibo](/integrations/sensibo)
- [cloud](/integrations/cloud/) (only short lived tokens impacted)
- [device_tracker.automatic](/integrations/automatic)
diff --git a/source/_posts/2019-01-23-release-86.markdown b/source/_posts/2019-01-23-release-86.markdown
index 3851d2f357b..bcace0a82a3 100644
--- a/source/_posts/2019-01-23-release-86.markdown
+++ b/source/_posts/2019-01-23-release-86.markdown
@@ -279,7 +279,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
- Lowercase code format ([@balloob] - [#20077]) ([alarm_control_panel docs]) (breaking change)
- fix logic error in dubln bus ([@ttroy50] - [#20075]) ([sensor.dublin_bus_transport docs])
- Bump abode to 0.15.0 ([@shred86] - [#20064]) ([abode docs])
-- Change return text code for alarm control panels ([@arsaboo] - [#20055]) ([alarm_control_panel.alarmdotcom docs])
+- Change return text code for alarm control panels ([@arsaboo] - [#20055])
- Adjust OpenUV integration for upcoming API limit changes ([@bachya] - [#19949]) ([openuv docs]) (breaking change)
- Fix ihc issues caused by update to defusedxml ([@mopolus] - [#20091]) ([ihc docs])
- Move ESPHome Source Files ([@OttoWinter] - [#20092]) ([esphome docs])
@@ -596,7 +596,6 @@ Experiencing issues introduced by this release? Please report them in our [issue
[abode docs]: /integrations/abode/
[ads docs]: /integrations/ads/
[alarm_control_panel docs]: /integrations/alarm_control_panel/
-[alarm_control_panel.alarmdotcom docs]: /integrations/alarmdotcom
[alarm_control_panel.arlo docs]: /integrations/arlo
[alarm_control_panel.elkm1 docs]: /integrations/elkm1
[alarm_control_panel.homekit_controller docs]: /integrations/homekit_controller
diff --git a/source/_posts/2019-03-20-release-90.markdown b/source/_posts/2019-03-20-release-90.markdown
index 0e5310b1341..3ce287d3d2d 100644
--- a/source/_posts/2019-03-20-release-90.markdown
+++ b/source/_posts/2019-03-20-release-90.markdown
@@ -227,7 +227,7 @@ Users will need to change `- platform: firetv` to `- platform: androidtv` in the
- ZHA fixes ([@dmulcahey] - [#21592]) ([zha docs])
- Update pyhomematic ([@danielperna84] - [#21600]) ([homematic docs])
- Add parameter hold_secs for Harmony remote send command ([@ehendrix23] - [#19650]) ([remote docs]) ([remote.harmony docs])
-- Upgrade motorparts to 1.1.0 ([@rohankapoorcom] - [#21602]) ([sensor.mopar docs])
+- Upgrade motorparts to 1.1.0 ([@rohankapoorcom] - [#21602])
- Further Yale ZWave lock device mapping cleanup ([@mw-white] - [#21128]) ([zwave docs])
- Added support for multiple Netatmo thermostats/valves ([@shanbs] - [#19407]) ([netatmo docs]) ([climate.netatmo docs]) (breaking change)
- Add the velbus sync clock service ([@Cereal2nd] - [#21308]) ([velbus docs])
@@ -792,7 +792,6 @@ Users will need to change `- platform: firetv` to `- platform: androidtv` in the
[sensor.dsmr docs]: /integrations/dsmr
[sensor.flunearyou docs]: /integrations/flunearyou
[sensor.loopenergy docs]: /integrations/loopenergy
-[sensor.mopar docs]: /integrations/mopar
[sensor.mqtt_room docs]: /integrations/mqtt_room
[sensor.netdata docs]: /integrations/netdata
[sensor.nmbs docs]: /integrations/nmbs
diff --git a/source/_posts/2019-04-03-release-91.markdown b/source/_posts/2019-04-03-release-91.markdown
index 907e0548259..8ea193bece9 100644
--- a/source/_posts/2019-04-03-release-91.markdown
+++ b/source/_posts/2019-04-03-release-91.markdown
@@ -105,7 +105,7 @@ If you run hass.io on an Intel NUC and haven't seen it yet, check out the VS Cod
## Release 0.91.2 - April 8
-- Correctly load Mopar's config ([@rohankapoorcom] - [#22771]) ([mopar docs])
+- Correctly load Mopar's config ([@rohankapoorcom] - [#22771])
- Fix konnected unique_id computation for switches ([@heythisisnate] - [#22777]) ([konnected docs]) (breaking change)
- make the custom polling actually request state ([@dmulcahey] - [#22778]) ([zha docs])
- ZHA Light debug logging. ([@Adminiuga] - [#22776]) ([zha docs])
@@ -153,7 +153,6 @@ If you run hass.io on an Intel NUC and haven't seen it yet, check out the VS Cod
[hassio docs]: /integrations/hassio/
[konnected docs]: /integrations/konnected/
[mobile_app docs]: /integrations/mobile_app/
-[mopar docs]: /integrations/mopar/
[tado docs]: /integrations/tado/
[yeelight docs]: /integrations/yeelight/
[zha docs]: /integrations/zha/
@@ -212,7 +211,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
- __Dark Sky__ - Dark Sky provides hourly forecasts for various monitored conditions. This change creates new sensors for each hourly forecasted condition with suffix `_
+
+ Kevin's impressive setup for his 7 aquariums.
+
New energyconsumption screen, still tweaking it. from r/homeassistant
+
+
+
+Do you actively monitor your energy usage? What does your dashboard look like?
+
+## A DIY smart magnetic key holder
+
+And here is one from [James Callaghan](https://twitter.com/jamescallaghan), who
+created really smart and easy to replicate magnet key holder, using a Xiaomi
+Aqara Door/Window sensor. Yes, this key holder works on Zigbee.
+
+
+
+## Consumer Reports: Open call for non-resident technologist fellows
+
+Consumer Reports is an American non-profit organization that does independent,
+(product) testing and research for consumers to provide truth, transparency and
+fairness. Their results are published in a monthly magazine and on their website.
+
+The Consumer Reports Digital Lab offers paid, non-resident fellowships to study
+the effects of connected (IoT) products and services. They welcome anyone
+interested in public technology research to apply for the fellowship.
+
+If you are interested in this, more information can be found here:
+
+- [Consumer Reports Digital Lab - Fellows](https://digital-lab.consumerreports.org/fellows/)
+- [Blog: An open call for non-resident technologist fellows](https://medium.com/cr-digital-lab/coming-soon-an-open-call-for-non-resident-technologist-fellows-95de2f3399fe)
+
+## Got a tip for the next edition?
+
+Have you seen (or made) something awesome, interesting, unique, amazing, inspirational, unusual or funny, using Home Assistant?
+
+[Click here to send us your Community Highlight suggestion](/suggest-community-highlight).
+
+Also, don't forget to share your creations with us via Social Media:
+
+- Twitter it! Be sure to mention [@home_assistant][twitter]
+- Share it on our [Facebook group][facebook-group]
+- Post it to our [subreddit][reddit]
+- Tag [@homeasssistant][instagram] on Instagram
+- Or via chat, drop us a line in the [#lounge at Discord][chat]
+
+See you next edition!
+
+[chat]: https://www.home-assistant.io/join-chat
+[facebook-group]: https://www.facebook.com/groups/HomeAssistant/
+[instagram]: https://www.instagram.com/homeassistant/
+[reddit]: https://www.reddit.com/r/homeassistant
+[twitter]: https://www.twitter.com/home_assistant
diff --git a/source/_posts/2020-03-18-release-107.markdown b/source/_posts/2020-03-18-release-107.markdown
index 7baba12d4e5..db6469b319e 100644
--- a/source/_posts/2020-03-18-release-107.markdown
+++ b/source/_posts/2020-03-18-release-107.markdown
@@ -70,7 +70,7 @@ Lovelace configuration panel, and YAML dashboards can be set up in
`configuration.yaml`, see [the documentation](/lovelace/yaml-mode/).
This awesome new feature comes with a deprecation if you use Lovelace in
-manual YAML mode: You need to move the `resource` section from
+manual YAML mode: You need to move the `resources` section from
your `ui-lovelace.yaml` to the `lovelace:` section in `configuration.yaml`.
It is not a breaking change yet; we still load them from the previous location
if we didn't find anything in the `lovelace:` section, however, this fallback
@@ -169,7 +169,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
- The `view` and `control` configuration options for a group.
- The `group.set_visibility` service call
- The `control`, `visible`, `view` options on the `group.set` service call
-
+
Please ensure your configuration and automations do not use these anymore. - ([@frenck] - [#32021]) ([group docs])
- **Input Number** - Adds an entity ID to input_number warning. Passing an out of range value to `input_number.set_value` will now raise a validation error. Incrementing/decrementing an `input_number` will no longer cause warnings. - ([@balloob] - [#32012]) ([input_number docs])
@@ -211,7 +211,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
- **Automation** - The `hide_entity` configuration option on an automation was deprecated in Home Assistant 0.105 and is removed in this release. It was used for the old states UI, which is no longer available, making this option obsolete. Please ensure your configuration is not using this option. - ([@frenck] - [#32038]) ([automation docs])
- **IQVIA** - When configuring IQVIA via `configuration.yaml`, the `monitored_conditions` key has been deprecated and will be removed in 0.114.0. All sensors are now created by default. (ADR-0003) - ([@bachya] - [#32223]) ([iqvia docs])
-
+
Example YAML configuration:
```yaml
@@ -375,6 +375,167 @@ Experiencing issues introduced by this release? Please report them in our [issue
- Updated frontend to 20200318.0 ([@bramkragten] - [#32931]) ([frontend docs]) (beta fix)
- Fix flaky tests for HMIPC ([@SukramJ] - [#32806]) (beta fix)
+## Release 0.107.1 - March 18
+
+- Updated frontend to 20200318.1 ([@bramkragten] - [#32957]) ([frontend docs])
+- Add device automation as frontend dependency ([@balloob] - [#32962]) ([frontend docs])
+- Fix zone config ([@balloob] - [#32963]) ([zone docs])
+
+[#32957]: https://github.com/home-assistant/core/pull/32957
+[#32962]: https://github.com/home-assistant/core/pull/32962
+[#32963]: https://github.com/home-assistant/core/pull/32963
+[@balloob]: https://github.com/balloob
+[@bramkragten]: https://github.com/bramkragten
+[frontend docs]: /integrations/frontend/
+[zone docs]: /integrations/zone/
+
+## Release 0.107.2 - March 20
+
+- 0.107.2 - Bump aiohomekit to fix Insignia NS-CH1XGO8 and Lenno… ([@Jc2k] - [#33016]) ([homekit_controller docs])
+- Fix camera.options to camera.stream_options. ([@ochlocracy] - [#32767]) ([camera docs])
+- Fix velbus in the 107 release ([@Cereal2nd] - [#32936]) ([velbus docs])
+- Refactor ZHA setup ([@Adminiuga] - [#32959]) ([zha docs])
+- Fix somfy optimistic mode when missing in conf ([@tetienne] - [#32995]) ([somfy docs])
+- Axis - Fix char in stream url ([@Kane610] - [#33004]) ([axis docs])
+- Fix sighthound dependency issue ([@robmarkcole] - [#33010]) ([sighthound docs])
+- Bump simplisafe-python to 9.0.3 ([@bachya] - [#33013]) ([simplisafe docs])
+- 0.107.2 - Bump aiohomekit to fix Insignia NS-CH1XGO8 and Lenno… ([@Jc2k] - [#33016]) ([homekit_controller docs])
+- Handle zigpy clusters without ep_attribute attribute. ([@Adminiuga] - [#33028]) ([zha docs])
+- Fix zones in packages ([@balloob] - [#33027])
+- Fix RainMachine not properly storing data in the config entry ([@bachya] - [#33002]) ([rainmachine docs])
+
+[#32767]: https://github.com/home-assistant/core/pull/32767
+[#32936]: https://github.com/home-assistant/core/pull/32936
+[#32959]: https://github.com/home-assistant/core/pull/32959
+[#32995]: https://github.com/home-assistant/core/pull/32995
+[#33002]: https://github.com/home-assistant/core/pull/33002
+[#33004]: https://github.com/home-assistant/core/pull/33004
+[#33010]: https://github.com/home-assistant/core/pull/33010
+[#33013]: https://github.com/home-assistant/core/pull/33013
+[#33016]: https://github.com/home-assistant/core/pull/33016
+[#33027]: https://github.com/home-assistant/core/pull/33027
+[#33028]: https://github.com/home-assistant/core/pull/33028
+[@Adminiuga]: https://github.com/Adminiuga
+[@Cereal2nd]: https://github.com/Cereal2nd
+[@Jc2k]: https://github.com/Jc2k
+[@Kane610]: https://github.com/Kane610
+[@bachya]: https://github.com/bachya
+[@balloob]: https://github.com/balloob
+[@ochlocracy]: https://github.com/ochlocracy
+[@robmarkcole]: https://github.com/robmarkcole
+[@tetienne]: https://github.com/tetienne
+[axis docs]: /integrations/axis/
+[camera docs]: /integrations/camera/
+[homekit_controller docs]: /integrations/homekit_controller/
+[rainmachine docs]: /integrations/rainmachine/
+[sighthound docs]: /integrations/sighthound/
+[simplisafe docs]: /integrations/simplisafe/
+[somfy docs]: /integrations/somfy/
+[velbus docs]: /integrations/velbus/
+[zha docs]: /integrations/zha/
+
+## Release 0.107.3 - March 20
+
+- Fix netatmo webhook registration issue ([@cgtobi] - [#32994]) ([netatmo docs])
+- Fix discovery issue with netatmo climate devices ([@cgtobi] - [#33040]) ([netatmo docs])
+- Fix packages for schemas without a default ([@frenck] - [#33045]) ([person docs])
+
+[#32994]: https://github.com/home-assistant/core/pull/32994
+[#33040]: https://github.com/home-assistant/core/pull/33040
+[#33045]: https://github.com/home-assistant/core/pull/33045
+[@cgtobi]: https://github.com/cgtobi
+[@frenck]: https://github.com/frenck
+[netatmo docs]: /integrations/netatmo/
+[person docs]: /integrations/person/
+
+## Release 0.107.4 - March 20
+
+- Add negative tests for identify schema for packages ([@balloob] - [#33050])
+- Bump simplisafe-python to 9.0.4 ([@bachya] - [#33059]) ([simplisafe docs])
+- Bump aioasuswrt to 1.2.3 and fix asuswrt sensor ([@Knapoc] - [#33064]) ([asuswrt docs])
+- Fix package default extraction ([@balloob] - [#33071])
+
+[#33050]: https://github.com/home-assistant/core/pull/33050
+[#33059]: https://github.com/home-assistant/core/pull/33059
+[#33064]: https://github.com/home-assistant/core/pull/33064
+[#33071]: https://github.com/home-assistant/core/pull/33071
+[@Knapoc]: https://github.com/Knapoc
+[@bachya]: https://github.com/bachya
+[@balloob]: https://github.com/balloob
+[asuswrt docs]: /integrations/asuswrt/
+[simplisafe docs]: /integrations/simplisafe/
+
+## Release 0.107.5 - March 21
+
+- Upgrade huawei-lte-api to 1.4.11 ([@scop] - [#32791]) ([huawei_lte docs])
+- Validate UUID for tankerkoenig ([@guillempages] - [#32805]) ([tankerkoenig docs])
+- Try all Samsung TV websocket ports ([@escoand] - [#33001]) ([samsungtv docs])
+- Split ZHA device loading and entities adding ([@Adminiuga] - [#33075]) ([zha docs])
+- Fix totalconnect AttributeError introduced in 0.107 ([@austinmroczek] - [#33079]) ([totalconnect docs])
+- Fix tankerkoenig with more than 10 stations ([@guillempages] - [#33098]) ([tankerkoenig docs])
+- Fix Extend ONVIF unique ID with profile index ([@frenck] - [#33103]) ([onvif docs])
+
+[#32791]: https://github.com/home-assistant/core/pull/32791
+[#32805]: https://github.com/home-assistant/core/pull/32805
+[#33001]: https://github.com/home-assistant/core/pull/33001
+[#33075]: https://github.com/home-assistant/core/pull/33075
+[#33079]: https://github.com/home-assistant/core/pull/33079
+[#33098]: https://github.com/home-assistant/core/pull/33098
+[#33103]: https://github.com/home-assistant/core/pull/33103
+[@Adminiuga]: https://github.com/Adminiuga
+[@austinmroczek]: https://github.com/austinmroczek
+[@escoand]: https://github.com/escoand
+[@frenck]: https://github.com/frenck
+[@guillempages]: https://github.com/guillempages
+[@scop]: https://github.com/scop
+[huawei_lte docs]: /integrations/huawei_lte/
+[onvif docs]: /integrations/onvif/
+[samsungtv docs]: /integrations/samsungtv/
+[tankerkoenig docs]: /integrations/tankerkoenig/
+[totalconnect docs]: /integrations/totalconnect/
+[zha docs]: /integrations/zha/
+
+## Release 0.107.6 - March 24
+
+- Integrate dockerbuild ([@pvizeli] - [#33168])
+- Fix script logging with name ([@balloob] - [#33120])
+- Fix minut point updating frozen config entry data ([@frenck] - [#33148]) ([point docs])
+- Bump OZW fork to 0.1.10 ([@pvizeli] - [#33205]) ([zwave docs])
+
+[#33120]: https://github.com/home-assistant/core/pull/33120
+[#33148]: https://github.com/home-assistant/core/pull/33148
+[#33168]: https://github.com/home-assistant/core/pull/33168
+[#33205]: https://github.com/home-assistant/core/pull/33205
+[@balloob]: https://github.com/balloob
+[@frenck]: https://github.com/frenck
+[@pvizeli]: https://github.com/pvizeli
+[point docs]: /integrations/point/
+[zwave docs]: /integrations/zwave/
+
+## Release 0.107.7 - March 25
+
+- Fix velbus dimming control ([@brefra] - [#33139]) ([velbus docs])
+- Increase timeout setting up IPMA ([@dgomes] - [#33194]) ([ipma docs])
+- Refactor ZHA platform setup ([@Adminiuga] - [#33226]) ([zha docs])
+- Ensure recorder event loop recovers if the database server dis… ([@bdraco] - [#33253]) ([recorder docs])
+- Schedule Unifi shutdown callback earlier ([@jjlawren] - [#33257]) ([unifi docs])
+
+[#33139]: https://github.com/home-assistant/core/pull/33139
+[#33194]: https://github.com/home-assistant/core/pull/33194
+[#33226]: https://github.com/home-assistant/core/pull/33226
+[#33253]: https://github.com/home-assistant/core/pull/33253
+[#33257]: https://github.com/home-assistant/core/pull/33257
+[@Adminiuga]: https://github.com/Adminiuga
+[@bdraco]: https://github.com/bdraco
+[@brefra]: https://github.com/brefra
+[@dgomes]: https://github.com/dgomes
+[@jjlawren]: https://github.com/jjlawren
+[ipma docs]: /integrations/ipma/
+[recorder docs]: /integrations/recorder/
+[unifi docs]: /integrations/unifi/
+[velbus docs]: /integrations/velbus/
+[zha docs]: /integrations/zha/
+
## All changes
- Nuki: add support for unique id ([@pvizeli] - [#31824]) ([nuki docs])
diff --git a/source/_redirects b/source/_redirects
index 321aa5292db..eb4f219f9c3 100644
--- a/source/_redirects
+++ b/source/_redirects
@@ -83,7 +83,6 @@
/components/air_quality.opensensemap /integrations/opensensemap
/components/alarm_control_panel.abode /integrations/abode
/components/alarm_control_panel.alarmdecoder /integrations/alarmdecoder#alarm-control-panel
-/components/alarm_control_panel.alarmdotcom /integrations/alarmdotcom
/components/alarm_control_panel.arlo /integrations/arlo
/components/alarm_control_panel.blink /integrations/blink
/components/alarm_control_panel.canary /integrations/canary
@@ -349,7 +348,6 @@
/components/device_tracker.mqtt_json /integrations/mqtt_json
/components/device_tracker.netgear /integrations/netgear
/components/device_tracker.nmap_tracker /integrations/nmap_tracker
-/components/device_tracker.openwrt /integrations/openwrt
/components/device_tracker.owntracks /integrations/owntracks
/components/device_tracker.owntracks_http /integrations/owntracks
/components/device_tracker.ping /integrations/ping
@@ -784,7 +782,6 @@
/components/sensor.modem_callerid /integrations/modem_callerid
/components/sensor.mold_indicator /integrations/mold_indicator
/components/sensor.moon /integrations/moon
-/components/sensor.mopar /integrations/mopar
/components/sensor.mqtt_room /integrations/mqtt_room
/components/sensor.mvglive /integrations/mvglive
/components/sensor.mychevy /integrations/mychevy
@@ -1100,7 +1097,6 @@
/components/alarm_control_panel.ifttt /integrations/alarm_control_panel.ifttt
/components/alarm_control_panel.mqtt /integrations/alarm_control_panel.mqtt
/components/alarmdecoder /integrations/alarmdecoder
-/components/alarmdotcom /integrations/alarmdotcom
/components/alert /integrations/alert
/components/alexa /integrations/alexa
/components/alexa.flash_briefings /integrations/alexa.flash_briefings
@@ -1581,7 +1577,6 @@
/components/mold_indicator /integrations/mold_indicator
/components/monoprice /integrations/monoprice
/components/moon /integrations/moon
-/components/mopar /integrations/mopar
/components/mpchc /integrations/mpchc
/components/mpd /integrations/mpd
/components/mqtt /integrations/mqtt
@@ -1659,7 +1654,6 @@
/components/opentherm_gw /integrations/opentherm_gw
/components/openuv /integrations/openuv
/components/openweathermap /integrations/openweathermap
-/components/openwrt /integrations/openwrt
/components/opple /integrations/opple
/components/orangepi_gpio /integrations/orangepi_gpio
/components/orvibo /integrations/orvibo
diff --git a/source/addons/index.html b/source/addons/index.html
index b8a3ca0390a..2cfbc5099a8 100644
--- a/source/addons/index.html
+++ b/source/addons/index.html
@@ -1,17 +1,17 @@
---
-title: "Hass.io Add-ons"
+title: "Home Assistant Add-ons"
description: "Find add-ons to install with Home Assistant."
regenerate: false
---
- To install add-ons, navigate to the Hass.io panel in your Home Assistant + To install add-ons, navigate to the Supervisor panel in your Home Assistant frontend, and click on the "ADD-ON STORE" tab. All add-ons, including their documentation, are available right from the store. Click on a add-on you are interested in, to read the documentation or to install the add-on.
- Add-ons are only available if you've used the Hass.io installer. If you + Add-ons are only available if you've used the Home Assistant installer. If you installed Home Assistant using any other method then you cannot use add-ons (but you can achieve the same result manually).
- Check the Hass.io forums for + Check the Home Assistant forums for add-on repositories managed by the community.
diff --git a/source/docs/index.markdown b/source/docs/index.markdown index 489af81e433..4ccf6afac68 100644 --- a/source/docs/index.markdown +++ b/source/docs/index.markdown @@ -10,7 +10,7 @@ The documentation covers beginner to advanced topics around the installation, se
+Screenshot of an entities card with a graph footer.
+