Site updated at 2016-10-22 22:37:41 UTC

This commit is contained in:
Travis CI 2016-10-22 22:37:41 +00:00
parent ab857e95a7
commit 860912100c
408 changed files with 11332 additions and 1691 deletions

View file

@ -89,15 +89,20 @@
<hr class="divider">
<p>The <code class="highlighter-rouge">updater</code> component will check for new releases at startup and everyday at noon and midnight. It will show a badge in the frontend if a new version has been detected.</p>
<p>The <code class="highlighter-rouge">updater</code> component will check daily for new releases. It will show a badge in the frontend if a new version was found.</p>
<p>The updater component will also collect basic information about Home Assistant and its environment. The information includes the current Home Assistant version, the timezone, Python version and operating system infomation. No identifiable information (i.e. IP address, GPS coordinates, etc.) will ever be collected. If you are concerned about your privacy, you are welcome to scrutinize the Python <a href="https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/components/updater.py#L91">source code</a>.</p>
<p>To integrate this into Home Assistant, add the following section to your <code class="highlighter-rouge">configuration.yaml</code> file:</p>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Example configuration.yaml entry</span>
<span class="s">updater</span><span class="pi">:</span>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">updater</span><span class="pi">:</span>
</code></pre>
</div>
<p>If you choose not to share any information when checking for updates, you can add <code class="highlighter-rouge">reporting: False</code>.</p>
<h3><a class="title-link" name="notification" href="#notification"></a> Notification</h3>
<p>For an added bonus, an automation component can be created to send a message with a notifier when that state of this components entity changes.</p>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Example configuration.yaml entry</span>
@ -114,6 +119,7 @@
</div>
</article>