From 4c4fb4ed8b5f119d572256272a91fc03ebe05246 Mon Sep 17 00:00:00 2001 From: Alex Harvey Date: Tue, 23 May 2017 10:57:07 -0700 Subject: [PATCH 1/2] Updater improvements to send option component information Updater improvements to send option component information, https://github.com/home-assistant/home-assistant/pull/7720 --- source/_components/updater.markdown | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/source/_components/updater.markdown b/source/_components/updater.markdown index eda5bd95f416..897034881061 100644 --- a/source/_components/updater.markdown +++ b/source/_components/updater.markdown @@ -23,6 +23,22 @@ updater: If you choose not to share any information when checking for updates, you can add `reporting: False`. +The other option, is to share a little bit more information. You can enable sharing of component information. To do this you have to add `share_components_info: True`. + +The data sent back is fairly limitied: +```json +"components": [ + "apcupsd", + "api", + "automation", + "binary_sensor", + "binary_sensor.zwave", + "camera", + "camera.uvc", + "config", + "config.core"... +``` + ### {% linkable_title Notification %} For an added bonus, an automation component can be created to send a message with a notifier when that state of this component's entity changes. From 214b618aa7cd6a5f690fd63634fa46d95309166f Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 15 Jun 2017 22:36:25 -0700 Subject: [PATCH 2/2] Update updater.markdown --- source/_components/updater.markdown | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/source/_components/updater.markdown b/source/_components/updater.markdown index 897034881061..89970ce5e1d7 100644 --- a/source/_components/updater.markdown +++ b/source/_components/updater.markdown @@ -23,9 +23,8 @@ updater: If you choose not to share any information when checking for updates, you can add `reporting: False`. -The other option, is to share a little bit more information. You can enable sharing of component information. To do this you have to add `share_components_info: True`. +It is possible to report the components that you are using to the Home Assistant developers. This will help them focus on improving the popular ones. To enable this option, you have to add `include_used_components: True`. -The data sent back is fairly limitied: ```json "components": [ "apcupsd", @@ -36,7 +35,9 @@ The data sent back is fairly limitied: "camera", "camera.uvc", "config", - "config.core"... + "config.core", + ... +] ``` ### {% linkable_title Notification %}