Site updated at 2017-08-26 06:14:00 UTC

This commit is contained in:
Travis CI 2017-08-26 06:14:00 +00:00
parent 0408a5478d
commit bf5e0c0bc2
733 changed files with 8077 additions and 1976 deletions

View file

@ -86,8 +86,7 @@
<li><strong>domain</strong> (<em>Required</em>): Domain they will proxy run with it.</li> <li><strong>domain</strong> (<em>Required</em>): Domain they will proxy run with it.</li>
</ul> </ul>
<p class="note"> <p class="note">
It is possible to deactive port 80 if you need this for things like <code class="highlighter-rouge">emulate_hue</code>. It exists a the moment no UI function for that, so you need call Hass.io API with SSH addon: It is possible to deactive port 80 if you need this for things like <code class="highlighter-rouge">emulate_hue</code>. Remove the host port from Network option of this add-on.
<code class="highlighter-rouge">curl -d '{"network": {"443/tcp": 443}}' http://172.17.0.2/addons/core_nginx_proxy/options</code>
</p> </p>
</article> </article>
</div> </div>

193
atom.xml
View file

@ -4,7 +4,7 @@
<title><![CDATA[Home Assistant]]></title> <title><![CDATA[Home Assistant]]></title>
<link href="https://home-assistant.io/atom.xml" rel="self"/> <link href="https://home-assistant.io/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/> <link href="https://home-assistant.io/"/>
<updated>2017-08-25T20:51:34+00:00</updated> <updated>2017-08-26T06:04:39+00:00</updated>
<id>https://home-assistant.io/</id> <id>https://home-assistant.io/</id>
<author> <author>
<name><![CDATA[Home Assistant]]></name> <name><![CDATA[Home Assistant]]></name>
@ -13,6 +13,181 @@
<generator uri="http://octopress.org/">Octopress</generator> <generator uri="http://octopress.org/">Octopress</generator>
<entry>
<title type="html"><![CDATA[0.51: Massive history speed up, finished automation editor and official vacuum cleaner support]]></title>
<link href="https://home-assistant.io/blog/2017/08/26/release-0-52/"/>
<updated>2017-08-26T00:11:05+00:00</updated>
<id>https://home-assistant.io/blog/2017/08/26/release-0-52</id>
<content type="html"><![CDATA[<p><a href="https://home-assistant.io/components/#version/0.52"><img src="https://home-assistant.io/images/blog/2017-08-0.52/components.png" style="border: 0;box-shadow: none;" /></a></p>
<p>Although the summer is in full progress, the development hasnt stalled. This release brings bug fixes, clean ups and another 8 new integrations. On top of that we are also introducing a new <a href="https://home-assistant.io/docs/scripts/editor/">script editor</a>!</p>
<p>To use the scripts editor, create a new file in your config directory named <code class="highlighter-rouge">scripts.yaml</code> and copy your existing scripts over:</p>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># scripts.yaml</span>
<span class="s">turn_on_some_lights</span><span class="pi">:</span>
<span class="s">alias</span><span class="pi">:</span> <span class="s">Turn on the lights</span>
<span class="s">sequence</span><span class="pi">:</span>
<span class="pi">-</span> <span class="s">data</span><span class="pi">:</span> <span class="pi">{}</span>
<span class="s">service</span><span class="pi">:</span> <span class="s">light.turn_on</span>
</code></pre>
</div>
<p>Than update your <code class="highlighter-rouge">configuration.yaml</code> to look like this:</p>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Configuration.yaml example</span>
<span class="s">script</span><span class="pi">:</span> <span class="kt">!include</span> <span class="s">scripts.yaml</span>
</code></pre>
</div>
<div class="videoWrapper">
<iframe src="https://www.youtube.com/embed/_Rntpcj1CGA" frameborder="0" allowfullscreen=""></iframe>
</div>
<h2>New Platforms</h2>
<ul>
<li>Add version sensor (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8912">#8912</a>) (<a href="https://home-assistant.io/components/sensor.version/">sensor.version docs</a>) (new-platform)</li>
<li>Nello.io lock support (<a href="https://github.com/pschmitt">@pschmitt</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8957">#8957</a>) (<a href="https://home-assistant.io/components/lock.nello/">lock.nello docs</a>) (new-platform)</li>
<li>Add HipChat notify service. (<a href="https://github.com/BioSehnsucht">@BioSehnsucht</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8918">#8918</a>) (<a href="https://home-assistant.io/components/notify.hipchat/">notify.hipchat docs</a>) (new-platform)</li>
<li>Refactor USPS into component with Sensors+Camera (<a href="https://github.com/mezz64">@mezz64</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8679">#8679</a>) (<a href="https://home-assistant.io/components/usps/">usps docs</a>) (<a href="https://home-assistant.io/components/camera.usps/">camera.usps docs</a>) (<a href="https://home-assistant.io/components/sensor.usps/">sensor.usps docs</a>) (breaking change) (new-platform)</li>
<li>Adds London_air component (<a href="https://github.com/robmarkcole">@robmarkcole</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9020">#9020</a>) (<a href="https://home-assistant.io/components/sensor.london_air/">sensor.london_air docs</a>) (new-platform)</li>
<li>Add Abode home security component (<a href="https://github.com/arsaboo">@arsaboo</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9030">#9030</a>) (<a href="https://home-assistant.io/components/abode/">abode docs</a>) (<a href="https://home-assistant.io/components/alarm_control_panel.abode/">alarm_control_panel.abode docs</a>) (<a href="https://home-assistant.io/components/binary_sensor.abode/">binary_sensor.abode docs</a>) (new-platform)</li>
<li>Add support for Prowl notifications. (<a href="https://github.com/mbrrg">@mbrrg</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9028">#9028</a>) (<a href="https://home-assistant.io/components/notify.prowl/">notify.prowl docs</a>) (new-platform)</li>
<li>Add worldtidesinfo sensor component (<a href="https://github.com/aetolus">@aetolus</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8860">#8860</a>) (<a href="https://home-assistant.io/components/sensor.worldtidesinfo/">sensor.worldtidesinfo docs</a>) (new-platform)</li>
</ul>
<h2><a class="title-link" name="if-you-need-help" href="#if-you-need-help"></a> If you need help…</h2>
<p>…dont hesitate to use our very active <a href="https://community.home-assistant.io/">forums</a> or join us for a little <a href="https://discord.gg/c5DvZ4e">chat</a>. The release notes have comments enabled but its preferred if you use the former communication channels. Thanks.</p>
<h2><a class="title-link" name="reporting-issues" href="#reporting-issues"></a> Reporting Issues</h2>
<p>Experiencing issues introduced by this release? Please report them in our <a href="https://github.com/home-assistant/home-assistant/issues">issue tracker</a>. Make sure to fill in all fields of the issue template.</p>
<!--more-->
<h2>Breaking Changes</h2>
<ul>
<li>Remove spaces from Xiami switch attributes (<a href="https://github.com/syssi">@syssi</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8952">#8952</a>) (<a href="https://home-assistant.io/components/switch.xiaomi/">switch.xiaomi docs</a>) (breaking change)</li>
<li>MQTT Switch: command and availability payload are now no longer linked. Command and availability payload default to ON/OFF and must be configured individually if custom values are required. (<a href="https://github.com/timstanley1985">@timstanley1985</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8934">#8934</a>) (<a href="https://home-assistant.io/components/switch.mqtt/">switch.mqtt docs</a>) (breaking change)</li>
</ul>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code> <span class="pi">-</span> <span class="s">platform</span><span class="pi">:</span> <span class="s">mqtt</span>
<span class="s">name</span><span class="pi">:</span> <span class="s2">"</span><span class="s">Kitchen"</span>
<span class="s">state_topic</span><span class="pi">:</span> <span class="s2">"</span><span class="s">stat/sonoff_1/POWER"</span>
<span class="s">command_topic</span><span class="pi">:</span> <span class="s2">"</span><span class="s">cmnd/sonoff_1/POWER"</span>
<span class="s">availability_topic</span><span class="pi">:</span> <span class="s2">"</span><span class="s">tele/sonoff_1/LWT"</span>
<span class="s">payload_available</span><span class="pi">:</span> <span class="s2">"</span><span class="s">Online"</span>
<span class="s">payload_not_available</span><span class="pi">:</span> <span class="s2">"</span><span class="s">Offline"</span>
<span class="s">retain</span><span class="pi">:</span> <span class="s">true</span>
</code></pre>
</div>
<ul>
<li>Refactor USPS into component with Sensors+Camera (<a href="https://github.com/mezz64">@mezz64</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8679">#8679</a>) (<a href="https://home-assistant.io/components/usps/">usps docs</a>) (<a href="https://home-assistant.io/components/camera.usps/">camera.usps docs</a>) (<a href="https://home-assistant.io/components/sensor.usps/">sensor.usps docs</a>) (breaking change) (new-platform)</li>
</ul>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">usps</span><span class="pi">:</span>
<span class="s">username</span><span class="pi">:</span> <span class="s">user</span>
<span class="s">password</span><span class="pi">:</span> <span class="s">pass</span>
<span class="s">name</span><span class="pi">:</span> <span class="s">optional</span>
</code></pre>
</div>
<ul>
<li>eliqonline: The optional channel_id configuration variable of the Eliqonline sensor needs to be a positive integer. (<a href="https://github.com/molobrakos">@molobrakos</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9072">#9072</a>) (<a href="https://home-assistant.io/components/sensor.eliqonline/">sensor.eliqonline docs</a>) (breaking change)</li>
<li>MySensors: Not a breaking change per se but users that have not been following the mysensors <a href="https://www.mysensors.org/download/serial_api_20">serial API</a> could face dropped messages after this change. Messages are now validated according to the API before being passed along from/to devices. See <a href="https://github.com/theolind/pymysensors/releases/tag/0.11">0.11 release notes</a> for more info. (<a href="https://github.com/MartinHjelmare">@MartinHjelmare</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9069">#9069</a>) (<a href="https://home-assistant.io/components/mysensors/">mysensors docs</a>) (<a href="https://home-assistant.io/components/binary_sensor.mysensors/">binary_sensor.mysensors docs</a>) (<a href="https://home-assistant.io/components/climate.mysensors/">climate.mysensors docs</a>) (<a href="https://home-assistant.io/components/cover.mysensors/">cover.mysensors docs</a>) (<a href="https://home-assistant.io/components/device_tracker.mysensors/">device_tracker.mysensors docs</a>) (<a href="https://home-assistant.io/components/light.mysensors/">light.mysensors docs</a>) (<a href="https://home-assistant.io/components/notify.mysensors/">notify.mysensors docs</a>) (<a href="https://home-assistant.io/components/sensor.mysensors/">sensor.mysensors docs</a>) (<a href="https://home-assistant.io/components/switch.mysensors/">switch.mysensors docs</a>) (breaking change)</li>
<li>Automatic has disabled password authentication on their API. Home Assistant will now use OAuth2 to authenticate accounts. The following steps must be taken to transition your setup:
1) Log in to your Automatic developer account. In the Automatic Developer Apps Manager, specify the OAuth Redirect URL in the developer page. This should be configured to <code class="highlighter-rouge">&lt;home-assistant-url&gt;/api/automatic/callback</code>. (Example: <code class="highlighter-rouge">http://hassio.local:8123/api/automatic/callback</code>) Note that this URL only needs to be accessible from the browser you use to perform the authentication.
2) Remove username/password from your automatic device tracker configuration in configuration.yaml.
3) If you have authorized your account for <code class="highlighter-rouge">scope:current_location</code>, add <code class="highlighter-rouge">current_location: true</code> to your automatic device tracker configuration in configuration.yaml.
4) When you restart home assistant, click on the Automatic Configure link in the Configurator card, and follow the instructions to authorize Home Assistant.<br /><br />NOTE: Automatics API is currently not correctly authorizing with refresh tokens, so Step 4 currently needs to be performed after every restart. (<a href="https://github.com/armills">@armills</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9002">#8962</a>) (<a href="https://home-assistant.io/components/configurator/">configurator docs</a>) (<a href="https://home-assistant.io/components/device_tracker.automatic/">device_tracker.automatic docs</a>) (breaking change)</li>
</ul>
<h2>All changes</h2>
<ul>
<li>Add version sensor (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8912">#8912</a>) (<a href="https://home-assistant.io/components/sensor.version/">sensor.version docs</a>) (new-platform)</li>
<li>Fix hue lights for Philips and non-philips lights (<a href="https://github.com/groth-its">@groth-its</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8905">#8905</a>) (<a href="https://home-assistant.io/components/light.hue/">light.hue docs</a>)</li>
<li>Fixed cert_expiry sensor to delay firing on HA startup (<a href="https://github.com/arsaboo">@arsaboo</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8920">#8920</a>) (<a href="https://home-assistant.io/components/sensor.cert_expiry/">sensor.cert_expiry docs</a>)</li>
<li>Remove spaces from Xiami switch attributes (<a href="https://github.com/syssi">@syssi</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8952">#8952</a>) (<a href="https://home-assistant.io/components/switch.xiaomi/">switch.xiaomi docs</a>) (breaking change)</li>
<li>Add service to alarm control panel for night mode arming (<a href="https://github.com/schmittx">@schmittx</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8614">#8614</a>) (<a href="https://home-assistant.io/components/alarm_control_panel/">alarm_control_panel docs</a>) (<a href="https://home-assistant.io/components/alarm_control_panel.totalconnect/">alarm_control_panel.totalconnect docs</a>)</li>
<li>Add support for Automatic OAuth2 authentication (<a href="https://github.com/armills">@armills</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8962">#8962</a>) (<a href="https://home-assistant.io/components/configurator/">configurator docs</a>) (<a href="https://home-assistant.io/components/device_tracker.automatic/">device_tracker.automatic docs</a>) (breaking change)</li>
<li>Nello.io lock support (<a href="https://github.com/pschmitt">@pschmitt</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8957">#8957</a>) (<a href="https://home-assistant.io/components/lock.nello/">lock.nello docs</a>) (new-platform)</li>
<li>Added continue-on-errors, added value template (<a href="https://github.com/iamjackg">@iamjackg</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8971">#8971</a>) (<a href="https://home-assistant.io/components/sensor.snmp/">sensor.snmp docs</a>)</li>
<li>Is_allowed_path raise for None path (<a href="https://github.com/danielhiversen">@danielhiversen</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8953">#8953</a>)</li>
<li>Fix #8960 - Decora Wi-Fi Switch unable to set brightness (<a href="https://github.com/tlyakhov">@tlyakhov</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8989">#8989</a>) (<a href="https://home-assistant.io/components/light.decora_wifi/">light.decora_wifi docs</a>)</li>
<li>Adds port/SSL config options for RainMachine (<a href="https://github.com/bachya">@bachya</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8986">#8986</a>) (<a href="https://home-assistant.io/components/switch.rainmachine/">switch.rainmachine docs</a>)</li>
<li>Automatic device tracker remove password (<a href="https://github.com/armills">@armills</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9002">#9002</a>) (<a href="https://home-assistant.io/components/device_tracker.automatic/">device_tracker.automatic docs</a>) (breaking change)</li>
<li>Add scripts editor backend (<a href="https://github.com/balloob">@balloob</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8993">#8993</a>) (<a href="https://home-assistant.io/components/config/">config docs</a>) (<a href="https://home-assistant.io/components/script/">script docs</a>) (new-platform)</li>
<li>MQTT Switch - Add configurable availability payload (<a href="https://github.com/timstanley1985">@timstanley1985</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8934">#8934</a>) (<a href="https://home-assistant.io/components/switch.mqtt/">switch.mqtt docs</a>) (breaking change)</li>
<li>Buienradar newconditions (<a href="https://github.com/mjj4791">@mjj4791</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8897">#8897</a>) (<a href="https://home-assistant.io/components/sensor.buienradar/">sensor.buienradar docs</a>) (<a href="https://home-assistant.io/components/weather.buienradar/">weather.buienradar docs</a>)</li>
<li>Pushbullet, fix multiple messages sent when url param is set (<a href="https://github.com/karlkar">@karlkar</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9006">#9006</a>) (<a href="https://home-assistant.io/components/notify.pushbullet/">notify.pushbullet docs</a>)</li>
<li>Update to pyenvisalink 2.2, and remove range validation on zonedump i… (<a href="https://github.com/Cinntax">@Cinntax</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8981">#8981</a>) (<a href="https://home-assistant.io/components/envisalink/">envisalink docs</a>)</li>
<li>Fix #9010 - Swiss Public Transportation shows departure time in the past (<a href="https://github.com/michaelhertig">@michaelhertig</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9011">#9011</a>) (<a href="https://home-assistant.io/components/sensor.swiss_public_transport/">sensor.swiss_public_transport docs</a>)</li>
<li>Add HipChat notify service. (<a href="https://github.com/BioSehnsucht">@BioSehnsucht</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8918">#8918</a>) (<a href="https://home-assistant.io/components/notify.hipchat/">notify.hipchat docs</a>) (new-platform)</li>
<li>Update onkyo-eiscp to 1.2.3 (<a href="https://github.com/danieljkemp">@danieljkemp</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9019">#9019</a>) (<a href="https://home-assistant.io/components/media_player.onkyo/">media_player.onkyo docs</a>)</li>
<li>Check if album image(s) exist in spotify (<a href="https://github.com/Tommatheussen">@Tommatheussen</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9024">#9024</a>) (<a href="https://home-assistant.io/components/media_player.spotify/">media_player.spotify docs</a>)</li>
<li>Update ffmpeg to 1.7 to fix severals problems (<a href="https://github.com/pvizeli">@pvizeli</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9029">#9029</a>)</li>
<li>Add state_with_unit property to state objects in templates (<a href="https://github.com/balloob">@balloob</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9014">#9014</a>)</li>
<li>Fix Geizhals index issue when not 4 prices available (<a href="https://github.com/celeroll">@celeroll</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9035">#9035</a>) (<a href="https://home-assistant.io/components/sensor.geizhals/">sensor.geizhals docs</a>)</li>
<li>Refactor USPS into component with Sensors+Camera (<a href="https://github.com/mezz64">@mezz64</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8679">#8679</a>) (<a href="https://home-assistant.io/components/usps/">usps docs</a>) (<a href="https://home-assistant.io/components/camera.usps/">camera.usps docs</a>) (<a href="https://home-assistant.io/components/sensor.usps/">sensor.usps docs</a>) (breaking change) (new-platform)</li>
<li>Set password after connecting. Fixes #8983 (<a href="https://github.com/StevenLooman">@StevenLooman</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9039">#9039</a>) (<a href="https://home-assistant.io/components/media_player.mpd/">media_player.mpd docs</a>)</li>
<li>Update iOS sensor (battery icon fix and format updates) (<a href="https://github.com/schmittx">@schmittx</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9032">#9032</a>)</li>
<li>Adds London_air component (<a href="https://github.com/robmarkcole">@robmarkcole</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9020">#9020</a>) (<a href="https://home-assistant.io/components/sensor.london_air/">sensor.london_air docs</a>) (new-platform)</li>
<li>Update pwmled to 1.2.1. (<a href="https://github.com/soldag">@soldag</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9040">#9040</a>) (<a href="https://home-assistant.io/components/light.rpi_gpio_pwm/">light.rpi_gpio_pwm docs</a>)</li>
<li>Configurable timeout for webostv. (<a href="https://github.com/soldag">@soldag</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9042">#9042</a>) (<a href="https://home-assistant.io/components/media_player.webostv/">media_player.webostv docs</a>)</li>
<li>Update ios.py (<a href="https://github.com/schmittx">@schmittx</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9041">#9041</a>) (<a href="https://home-assistant.io/components/sensor.ios/">sensor.ios docs</a>)</li>
<li>Support Windows in UPNP discovery (<a href="https://github.com/kabongsteve">@kabongsteve</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8936">#8936</a>)</li>
<li>Upgrade python-pushover to 0.3 (<a href="https://github.com/fanaticDavid">@fanaticDavid</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9045">#9045</a>) (<a href="https://home-assistant.io/components/notify.pushover/">notify.pushover docs</a>)</li>
<li>Add speeds to fan dropdown in ISY fan component (<a href="https://github.com/boojew">@boojew</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9004">#9004</a>) (<a href="https://home-assistant.io/components/fan.isy994/">fan.isy994 docs</a>)</li>
<li>Update Fitbit sensor (icons, formatting, client update) (<a href="https://github.com/schmittx">@schmittx</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9031">#9031</a>) (<a href="https://home-assistant.io/components/sensor.fitbit/">sensor.fitbit docs</a>)</li>
<li>Add Abode home security component (<a href="https://github.com/arsaboo">@arsaboo</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9030">#9030</a>) (<a href="https://home-assistant.io/components/abode/">abode docs</a>) (<a href="https://home-assistant.io/components/alarm_control_panel.abode/">alarm_control_panel.abode docs</a>) (<a href="https://home-assistant.io/components/binary_sensor.abode/">binary_sensor.abode docs</a>) (new-platform)</li>
<li>LIFX: avoid rare NoneType errors (<a href="https://github.com/amelchio">@amelchio</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9054">#9054</a>) (<a href="https://home-assistant.io/components/light.lifx/">light.lifx docs</a>)</li>
<li>Bump dlib face_recognition to 0.2.2 (<a href="https://github.com/arsaboo">@arsaboo</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9060">#9060</a>) (<a href="https://home-assistant.io/components/image_processing.dlib_face_detect/">image_processing.dlib_face_detect docs</a>) (<a href="https://home-assistant.io/components/image_processing.dlib_face_identify/">image_processing.dlib_face_identify docs</a>)</li>
<li>Update fitbit.py (<a href="https://github.com/schmittx">@schmittx</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9064">#9064</a>) (<a href="https://home-assistant.io/components/sensor.fitbit/">sensor.fitbit docs</a>)</li>
<li>Upgrade sendgrid to 5.0.0 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9062">#9062</a>) (<a href="https://home-assistant.io/components/notify.sendgrid/">notify.sendgrid docs</a>)</li>
<li>Upgrade slacker to 0.9.60 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9065">#9065</a>) (<a href="https://home-assistant.io/components/notify.slack/">notify.slack docs</a>)</li>
<li>Add support for Prowl notifications. (<a href="https://github.com/mbrrg">@mbrrg</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9028">#9028</a>) (<a href="https://home-assistant.io/components/notify.prowl/">notify.prowl docs</a>) (new-platform)</li>
<li>Upgrade onkyo-eiscp to 1.2.4 (fixes #8995) (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9068">#9068</a>) (<a href="https://home-assistant.io/components/media_player.onkyo/">media_player.onkyo docs</a>)</li>
<li>Workday sensor offset (<a href="https://github.com/LaStrada">@LaStrada</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8824">#8824</a>) (<a href="https://home-assistant.io/components/binary_sensor.workday/">binary_sensor.workday docs</a>)</li>
<li>eliqonline: channel id is an integer (<a href="https://github.com/molobrakos">@molobrakos</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9072">#9072</a>) (<a href="https://home-assistant.io/components/sensor.eliqonline/">sensor.eliqonline docs</a>) (breaking change)</li>
<li>Use builtin constants for Abode alarm_control_panel (<a href="https://github.com/arsaboo">@arsaboo</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9059">#9059</a>) (<a href="https://home-assistant.io/components/alarm_control_panel.abode/">alarm_control_panel.abode docs</a>)</li>
<li>bump python-ecobee-api version to 0.0.8 (<a href="https://github.com/nkgilley">@nkgilley</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9074">#9074</a>) (<a href="https://home-assistant.io/components/ecobee/">ecobee docs</a>)</li>
<li>Bump abodepy to 0.7.1 (<a href="https://github.com/arsaboo">@arsaboo</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9077">#9077</a>) (<a href="https://home-assistant.io/components/abode/">abode docs</a>)</li>
<li>async_query returns False if connection to server failed, handle this properly (<a href="https://github.com/molobrakos">@molobrakos</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9070">#9070</a>) (<a href="https://home-assistant.io/components/media_player.squeezebox/">media_player.squeezebox docs</a>)</li>
<li>Added insteonplm device_override multiple capabilities (<a href="https://github.com/teharris1">@teharris1</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9078">#9078</a>) (<a href="https://home-assistant.io/components/insteon_plm/">insteon_plm docs</a>)</li>
<li>Upgrade uber_rides to 0.5.1 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9080">#9080</a>) (<a href="https://home-assistant.io/components/sensor.uber/">sensor.uber docs</a>)</li>
<li>Upgrade discord.py to 0.16.10 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9082">#9082</a>) (<a href="https://home-assistant.io/components/notify.discord/">notify.discord docs</a>)</li>
<li>Fix <code class="highlighter-rouge">device</code> attribute in fritz_callmonitor.py (fixes #9055) (<a href="https://github.com/870074+max-te">@870074+max-te</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9081">#9081</a>) (<a href="https://home-assistant.io/components/sensor.fritzbox_callmonitor/">sensor.fritzbox_callmonitor docs</a>)</li>
<li>Upgrade youtube_dl to 2017.8.18 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9079">#9079</a>) (<a href="https://home-assistant.io/components/media_extractor/">media_extractor docs</a>)</li>
<li>Remove dash (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9089">#9089</a>)</li>
<li>Upgrade credstash to 1.13.3 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9088">#9088</a>)</li>
<li>9043 Fixed error while running dev docker (<a href="https://github.com/MungoRae">@MungoRae</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9044">#9044</a>)</li>
<li>Dont redefine consts (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9086">#9086</a>) (<a href="https://home-assistant.io/components/notify.hipchat/">notify.hipchat docs</a>)</li>
<li>Fix octoprint errors when printer is off/disconnected (<a href="https://github.com/w1ll1am23">@w1ll1am23</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8988">#8988</a>) (<a href="https://home-assistant.io/components/octoprint/">octoprint docs</a>) (<a href="https://home-assistant.io/components/sensor.octoprint/">sensor.octoprint docs</a>)</li>
<li>Pilight switch: restore last state after restart (<a href="https://github.com/janLo">@janLo</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8580">#8580</a>) (<a href="https://home-assistant.io/components/switch.pilight/">switch.pilight docs</a>)</li>
<li>Fix netdata system_load and add disk_free. (<a href="https://github.com/michaelarnauts">@michaelarnauts</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9091">#9091</a>) (<a href="https://home-assistant.io/components/sensor.netdata/">sensor.netdata docs</a>)</li>
<li>Add worldtidesinfo sensor component (<a href="https://github.com/aetolus">@aetolus</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8860">#8860</a>) (<a href="https://home-assistant.io/components/sensor.worldtidesinfo/">sensor.worldtidesinfo docs</a>) (new-platform)</li>
<li>Support changing the bulb color for tplink smartbulbs, fixes #8766 (<a href="https://github.com/rytilahti">@rytilahti</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8780">#8780</a>) (<a href="https://home-assistant.io/components/light.tplink/">light.tplink docs</a>)</li>
<li>bump snapcast version (<a href="https://github.com/happyleavesaoc">@happyleavesaoc</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9100">#9100</a>) (<a href="https://home-assistant.io/components/media_player.snapcast/">media_player.snapcast docs</a>)</li>
<li>bump fedex version (<a href="https://github.com/happyleavesaoc">@happyleavesaoc</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9099">#9099</a>) (<a href="https://home-assistant.io/components/sensor.fedex/">sensor.fedex docs</a>)</li>
<li>Yeelight fix updates on hsv mode (<a href="https://github.com/rytilahti">@rytilahti</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9093">#9093</a>) (<a href="https://home-assistant.io/components/light.yeelight/">light.yeelight docs</a>)</li>
<li>Catch exceptions (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9085">#9085</a>) (<a href="https://home-assistant.io/components/notify.discord/">notify.discord docs</a>)</li>
<li>Fix issue 8894 with uk_transport component if no next_buses or next_trains (<a href="https://github.com/robmarkcole">@robmarkcole</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9046">#9046</a>) (<a href="https://home-assistant.io/components/sensor.uk_transport/">sensor.uk_transport docs</a>)</li>
<li>upgrade Xiaomi Gateway lib to 0.3 (<a href="https://github.com/danielhiversen">@danielhiversen</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9101">#9101</a>) (<a href="https://home-assistant.io/components/xiaomi/">xiaomi docs</a>)</li>
<li>pythonegardia package requirement to .18 (<a href="https://github.com/jeroenterheerdt">@jeroenterheerdt</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9104">#9104</a>) (<a href="https://home-assistant.io/components/alarm_control_panel.egardia/">alarm_control_panel.egardia docs</a>)</li>
<li>Simplisafe unknown status fix (<a href="https://github.com/lekobob">@lekobob</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9111">#9111</a>) (<a href="https://home-assistant.io/components/alarm_control_panel.simplisafe/">alarm_control_panel.simplisafe docs</a>)</li>
<li>Update flux_led.py (<a href="https://github.com/danielhiversen">@danielhiversen</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9122">#9122</a>) (<a href="https://home-assistant.io/components/light.flux_led/">light.flux_led docs</a>)</li>
<li>Xiaomi (<a href="https://github.com/danielhiversen">@danielhiversen</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9126">#9126</a>) (<a href="https://home-assistant.io/components/xiaomi/">xiaomi docs</a>)</li>
<li>refactor pushbullet (<a href="https://github.com/danielhiversen">@danielhiversen</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9125">#9125</a>) (<a href="https://home-assistant.io/components/notify.pushbullet/">notify.pushbullet docs</a>)</li>
<li>optimistic mode for template covers (w/o timed movement) (<a href="https://github.com/PhracturedBlue">@PhracturedBlue</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8402">#8402</a>) (<a href="https://home-assistant.io/components/cover.template/">cover.template docs</a>)</li>
<li>Use const (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9127">#9127</a>) (<a href="https://home-assistant.io/components/prometheus/">prometheus docs</a>)</li>
<li>Refactor mysensors callback and add validation (<a href="https://github.com/MartinHjelmare">@MartinHjelmare</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9069">#9069</a>) (<a href="https://home-assistant.io/components/mysensors/">mysensors docs</a>) (<a href="https://home-assistant.io/components/binary_sensor.mysensors/">binary_sensor.mysensors docs</a>) (<a href="https://home-assistant.io/components/climate.mysensors/">climate.mysensors docs</a>) (<a href="https://home-assistant.io/components/cover.mysensors/">cover.mysensors docs</a>) (<a href="https://home-assistant.io/components/device_tracker.mysensors/">device_tracker.mysensors docs</a>) (<a href="https://home-assistant.io/components/light.mysensors/">light.mysensors docs</a>) (<a href="https://home-assistant.io/components/notify.mysensors/">notify.mysensors docs</a>) (<a href="https://home-assistant.io/components/sensor.mysensors/">sensor.mysensors docs</a>) (<a href="https://home-assistant.io/components/switch.mysensors/">switch.mysensors docs</a>) (breaking change)</li>
</ul>
]]></content>
</entry>
<entry> <entry>
<title type="html"><![CDATA[0.51: Massive history speed up, finished automation editor and official vacuum cleaner support]]></title> <title type="html"><![CDATA[0.51: Massive history speed up, finished automation editor and official vacuum cleaner support]]></title>
<link href="https://home-assistant.io/blog/2017/08/12/release-51/"/> <link href="https://home-assistant.io/blog/2017/08/12/release-51/"/>
@ -2019,22 +2194,6 @@ Reading package lists... Done
</p> </p>
<p>To make it ready for daily usage, dont forget to enable <a href="https://home-assistant.io/docs/autostart/">autostart</a>.</p> <p>To make it ready for daily usage, dont forget to enable <a href="https://home-assistant.io/docs/autostart/">autostart</a>.</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Grazer Linuxtage 2017: Python Everywhere]]></title>
<link href="https://home-assistant.io/blog/2017/05/07/grazer-linuxtage-2017-talk-python-everywhere/"/>
<updated>2017-05-07T02:00:00+00:00</updated>
<id>https://home-assistant.io/blog/2017/05/07/grazer-linuxtage-2017-talk-python-everywhere</id>
<content type="html"><![CDATA[<p>I like Python. Its a clean easy to read, easy to learn language. Yet when you use it for some time you still find more features to improve your coding. What I probably like most about Python is the community and the great libraries that already exist. Often solving a problem means including a pre-existing library and writing some glue code. That makes it quick to get things up and running.</p>
<p>I just gave a talk on how you can run Python to automate your home (yes with Home-Assistant) but also with <a href="https://micropython.org">MicroPython</a>. Micropython allows you to run Python on your DIY sensors and switches around your home. Python everywhere - even on the chips that give Home-Assistant the data to be awesome.</p>
<div class="videoWrapper">
<iframe width="560" height="315" src="https://www.youtube.com/embed/KNFZSSCPUyM" frameborder="0" allowfullscreen=""></iframe>
</div>
]]></content> ]]></content>
</entry> </entry>

View file

@ -128,6 +128,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -140,9 +143,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -162,6 +162,9 @@ This article will try to explain how they all relate.</p>
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -174,9 +177,6 @@ This article will try to explain how they all relate.</p>
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -152,6 +152,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -164,9 +167,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -135,6 +135,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -147,9 +150,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -139,6 +139,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -151,9 +154,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -145,6 +145,9 @@ Home Assistant now supports <code class="highlighter-rouge">--open-ui</code> and
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -157,9 +160,6 @@ Home Assistant now supports <code class="highlighter-rouge">--open-ui</code> and
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -150,6 +150,9 @@ Events are saved in a local database. Google Graphs is used to draw the graph. D
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -162,9 +165,6 @@ Events are saved in a local database. Google Graphs is used to draw the graph. D
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -136,6 +136,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -148,9 +151,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -130,6 +130,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -142,9 +145,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -133,6 +133,9 @@ The old logo, the new detailed logo and the new simple logo.
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -145,9 +148,6 @@ The old logo, the new detailed logo and the new simple logo.
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -158,6 +158,9 @@ An initial version of voice control for Home Assistant has landed. The current i
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -170,9 +173,6 @@ An initial version of voice control for Home Assistant has landed. The current i
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -194,6 +194,9 @@ I (Paulus) have contributed a scene component. A user can create scenes that cap
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -206,9 +209,6 @@ I (Paulus) have contributed a scene component. A user can create scenes that cap
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -202,6 +202,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -214,9 +217,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -146,6 +146,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -158,9 +161,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -216,6 +216,9 @@ Before diving into the newly supported devices and services, I want to highlight
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -228,9 +231,6 @@ Before diving into the newly supported devices and services, I want to highlight
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -262,6 +262,9 @@ This switch platform allows you to control your motion detection setting on your
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -274,9 +277,6 @@ This switch platform allows you to control your motion detection setting on your
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -226,6 +226,9 @@ Fabian has added support for <a href="https://forecast.io/">Forecast.io</a> to g
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -238,9 +241,6 @@ Fabian has added support for <a href="https://forecast.io/">Forecast.io</a> to g
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -209,6 +209,9 @@ Support for Temper temperature sensors has been contributed by <a href="https://
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -221,9 +224,6 @@ Support for Temper temperature sensors has been contributed by <a href="https://
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -146,6 +146,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -158,9 +161,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -246,6 +246,9 @@ The automation and script syntax here is using a deprecated and no longer suppor
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -258,9 +261,6 @@ The automation and script syntax here is using a deprecated and no longer suppor
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -207,6 +207,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -219,9 +222,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -284,6 +284,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -296,9 +299,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -274,6 +274,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -286,9 +289,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -173,6 +173,9 @@ Glances web server started on http://0.0.0.0:61208/
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -185,9 +188,6 @@ Glances web server started on http://0.0.0.0:61208/
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -169,6 +169,9 @@ Automation has gotten a lot of love. It now supports conditions, multiple trigge
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -181,9 +184,6 @@ Automation has gotten a lot of love. It now supports conditions, multiple trigge
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -152,6 +152,9 @@ Map in Home Assistant showing two people and three zones (home, school, work)
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -164,9 +167,6 @@ Map in Home Assistant showing two people and three zones (home, school, work)
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -337,6 +337,9 @@ Home Assistant will keep track of historical values and allow you to integrate i
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -349,9 +352,6 @@ Home Assistant will keep track of historical values and allow you to integrate i
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -142,6 +142,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -154,9 +157,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -159,6 +159,9 @@ This makes more sense as most people run Home Assistant as a daemon</p>
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -171,9 +174,6 @@ This makes more sense as most people run Home Assistant as a daemon</p>
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -157,6 +157,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -169,9 +172,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -184,6 +184,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -196,9 +199,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -135,6 +135,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -147,9 +150,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -143,6 +143,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -155,9 +158,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -197,6 +197,9 @@ name: binary_sensor
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -209,9 +212,6 @@ name: binary_sensor
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -164,6 +164,9 @@ This is where well configure our task, so select the plus icon to select an a
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -176,9 +179,6 @@ This is where well configure our task, so select the plus icon to select an a
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -150,6 +150,9 @@ Philips Hue FAQ entries regarding 3rd party light bulbs.
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -162,9 +165,6 @@ Philips Hue FAQ entries regarding 3rd party light bulbs.
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -189,6 +189,9 @@ sudo docker run -it --rm -p 80:80 --name certbot <span class="se">\</span>
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -201,9 +204,6 @@ sudo docker run -it --rm -p 80:80 --name certbot <span class="se">\</span>
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -167,6 +167,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -179,9 +182,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -158,6 +158,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -170,9 +173,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -147,6 +147,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -159,9 +162,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -161,6 +161,9 @@ Example of the new views in the frontend. <a href="/components/group/">Learn mor
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -173,9 +176,6 @@ Example of the new views in the frontend. <a href="/components/group/">Learn mor
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -281,6 +281,9 @@ Z-Wave light bulb |
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -293,9 +296,6 @@ Z-Wave light bulb |
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -255,6 +255,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -267,9 +270,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -166,6 +166,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -178,9 +181,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -220,6 +220,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -232,9 +235,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -163,6 +163,9 @@ Hold your NFC tag against the belly of Garfield to unlock the alarm.
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -175,9 +178,6 @@ Hold your NFC tag against the belly of Garfield to unlock the alarm.
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -165,6 +165,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -177,9 +180,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -166,6 +166,9 @@ player state attributes. This change affects automations, scripts and scenes.</l
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -178,9 +181,6 @@ player state attributes. This change affects automations, scripts and scenes.</l
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -174,6 +174,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -186,9 +189,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -134,6 +134,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -146,9 +149,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -137,6 +137,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -149,9 +152,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -146,6 +146,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -158,9 +161,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -132,6 +132,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -144,9 +147,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -144,6 +144,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -156,9 +159,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -166,6 +166,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -178,9 +181,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -208,6 +208,9 @@ For example, my wife works next door - and I couldnt detect whether shes a
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -220,9 +223,6 @@ For example, my wife works next door - and I couldnt detect whether shes a
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -132,6 +132,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -144,9 +147,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -206,6 +206,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -218,9 +221,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -132,6 +132,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -144,9 +147,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -138,6 +138,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -150,9 +153,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -162,6 +162,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -174,9 +177,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -135,6 +135,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -147,9 +150,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -236,6 +236,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -248,9 +251,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -144,6 +144,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -156,9 +159,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -176,6 +176,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -188,9 +191,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -148,6 +148,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -160,9 +163,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -170,6 +170,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -182,9 +185,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -216,6 +216,9 @@ target_dir /tmp
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -228,9 +231,6 @@ target_dir /tmp
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -171,6 +171,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -183,9 +186,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -161,6 +161,9 @@ Over a year ago I participated in the <a href="https://www.kickstarter.com/proje
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -173,9 +176,6 @@ Over a year ago I participated in the <a href="https://www.kickstarter.com/proje
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -167,6 +167,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -179,9 +182,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -204,6 +204,9 @@ SQLite version 3.11.0 2016-02-15 17:29:24
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -216,9 +219,6 @@ SQLite version 3.11.0 2016-02-15 17:29:24
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -171,6 +171,9 @@ One of the graphs created with this tutorial.
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -183,9 +186,6 @@ One of the graphs created with this tutorial.
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -251,6 +251,9 @@ If a module is missing then you need to download it from the <a href="https://gi
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -263,9 +266,6 @@ If a module is missing then you need to download it from the <a href="https://gi
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -183,6 +183,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -195,9 +198,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -215,6 +215,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -227,9 +230,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -210,6 +210,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -222,9 +225,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -183,6 +183,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -195,9 +198,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -221,6 +221,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -233,9 +236,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -133,6 +133,9 @@ Heatmap
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -145,9 +148,6 @@ Heatmap
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -282,6 +282,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -294,9 +297,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -209,6 +209,9 @@ So, part 1 of <a href="/blog/2016/07/28/esp8266-and-micropython-part1/">ESP8266
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -221,9 +224,6 @@ So, part 1 of <a href="/blog/2016/07/28/esp8266-and-micropython-part1/">ESP8266
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -211,6 +211,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -223,9 +226,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -216,6 +216,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -228,9 +231,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -137,6 +137,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -149,9 +152,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -145,6 +145,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -157,9 +160,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -227,6 +227,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -239,9 +242,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -399,6 +399,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -411,9 +414,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -155,6 +155,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -167,9 +170,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -223,6 +223,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -235,9 +238,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -184,6 +184,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -196,9 +199,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -245,6 +245,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -257,9 +260,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -198,6 +198,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -210,9 +213,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -136,6 +136,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -148,9 +151,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -146,6 +146,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -158,9 +161,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -215,6 +215,9 @@ You have to note:
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -227,9 +230,6 @@ You have to note:
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -138,6 +138,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -150,9 +153,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -175,6 +175,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half"> <section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1> <h1 class="title delta">Recent Posts</h1>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2017/08/26/release-0-52/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a> <a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
</li> </li>
@ -187,9 +190,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a> <a href="/blog/2017/07/27/talk-python-podcast/">Talk Python interview with Paulus Schoutsen</a>
</li> </li>
<li class="post">
<a href="/blog/2017/07/25/introducing-hassio/">Introducing Hass.io</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

Some files were not shown because too many files have changed in this diff Show more