Site updated at 2017-11-29 17:15:52 UTC

This commit is contained in:
Travis CI 2017-11-29 17:15:53 +00:00
parent a1681735c3
commit 49ccb38933
234 changed files with 2079 additions and 1702 deletions

368
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-11-29T08:10:50+00:00</updated> <updated>2017-11-29T17:07:57+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,153 @@
<generator uri="http://octopress.org/">Octopress</generator> <generator uri="http://octopress.org/">Octopress</generator>
<entry>
<title type="html"><![CDATA[Set up Hass.io on top of a virtual machine]]></title>
<link href="https://home-assistant.io/blog/2017/11/29/hassio-virtual-machine/"/>
<updated>2017-11-29T06:00:00+00:00</updated>
<id>https://home-assistant.io/blog/2017/11/29/hassio-virtual-machine</id>
<content type="html"><![CDATA[<p>The images for the Raspberry Pi family and the Intel NUC are an easy way to get started with <a href="/hassio/">Hass.io</a>. For a test or if you have a system which is already hosting virtual machines then the <a href="/hassio/installation/#alternative-install-on-generic-linux-server"><strong>Hass.io installer</strong></a> is an option to use Hass.io in a virtualized environment. In this guide the host is a Fedora 27 system with <a href="https://libvirt.org/">libvirt</a> support and the guest will be running Debian 9. Hass.io will be installed on the guest.</p>
<!--more-->
<p>Assuming that you already have setup <code class="highlighter-rouge">libvirtd</code>. You might need to install <code class="highlighter-rouge">virt-builder</code> and <code class="highlighter-rouge">virt-viewer</code> additionally.</p>
<div class="language-bash highlighter-rouge"><pre class="highlight"><code><span class="gp">$ </span>sudo dnf -y install libguestfs-tools-c virt-install virt-viewer
</code></pre>
</div>
<p>We will create a virtual machine with Debian 9 and a 10 GB disk image in the QCOW format. Use <code class="highlighter-rouge">$ virt-builder --list</code> to get an overview about whats operating systems are available if you prefer to use a different system.</p>
<div class="language-bash highlighter-rouge"><pre class="highlight"><code><span class="gp">$ </span>sudo virt-builder debian-9 <span class="se">\</span>
--output /var/lib/libvirt/images/hassio.img <span class="se">\</span>
--format qcow2 <span class="se">\</span>
--size 10G <span class="se">\</span>
--root-password password:test123 <span class="se">\</span>
--hostname hassio <span class="se">\</span>
--firstboot-command <span class="s2">"dpkg-reconfigure openssh-server"</span>
<span class="o">[</span>...]
<span class="o">[</span> 147.6] Finishing off
Output file: /var/lib/libvirt/images/hassio.img
Output size: 10.0G
Output format: qcow2
Total usable space: 9.3G
Free space: 8.1G <span class="o">(</span>87%<span class="o">)</span>
</code></pre>
</div>
<p>Now, we are making our new virtual machine available for <code class="highlighter-rouge">libvirtd</code>. If you get an error that the OS is unknown, use <code class="highlighter-rouge">$ osinfo-query os</code> to get the name to use with <code class="highlighter-rouge">--os-variant</code>. To access the virtual machine is connected to the bridge <code class="highlighter-rouge">bridge0</code>.</p>
<div class="language-bash highlighter-rouge"><pre class="highlight"><code><span class="gp">$ </span>sudo virt-install --name hassio --import --ram 1024 <span class="se">\</span>
--os-variant debian9 -w <span class="nv">bridge</span><span class="o">=</span>bridge0 <span class="se">\</span>
--autostart --disk /var/lib/libvirt/images/hassio.img
</code></pre>
</div>
<p class="img">
<img src="/images/blog/2017-11-hassio-virtual/virtual-machine-manager.png" />
Hass.io virtual machine in Virtual Machine Manager
</p>
<p>Depending on your preferences you can use the Virtual Machine Manager (<code class="highlighter-rouge">virt-manager</code>) or <code class="highlighter-rouge">virsh</code> to manage the created virtual machine. Log in and create an user with <code class="highlighter-rouge"># useradd ha</code> and set a password with <code class="highlighter-rouge"># passwd ha</code>. We will need that user to make a SSH connection to the virtual machine.</p>
<p>Log in as <code class="highlighter-rouge">ha</code> with the given password. If your are using the default network of <code class="highlighter-rouge">libvirtd</code> then the DHCP range is defined in <code class="highlighter-rouge">/var/lib/libvirt/dnsmasq/default.conf</code>. In this guide the virtual machine is present at 192.168.0.109.</p>
<div class="language-bash highlighter-rouge"><pre class="highlight"><code><span class="gp">$ </span>ssh ha@192.168.0.109
ha@192.168.0.109<span class="s1">'s password:
Linux hassio 4.9.0-3-amd64 #1 SMP Debian 4.9.30-2+deb9u3 (2017-08-06) x86_64
[...]
$
</span></code></pre>
</div>
<p>Install the requirements after you switch the user to <code class="highlighter-rouge">root</code>.</p>
<div class="language-bash highlighter-rouge"><pre class="highlight"><code><span class="gp">$ </span>su
Password:
<span class="gp">root@hassio:/home/ha# </span>
<span class="gp">root@hassio:/home/ha# </span>apt-get update
<span class="gp">root@hassio:/home/ha# </span>apt-get install bash socat jq curl avahi-daemon <span class="se">\</span>
apt-transport-https ca-certificates
</code></pre>
</div>
<p>We want the latest Docker release. This requires additional steps to set it up as unlike other distributions Debian is lacking behind with current packages.</p>
<div class="language-bash highlighter-rouge"><pre class="highlight"><code><span class="gp">root@hassio:/home/ha# </span>wget https://download.docker.com/linux/debian/gpg
<span class="gp">root@hassio:/home/ha# </span>apt-key add gpg
OK
<span class="gp">root@hassio:/home/ha# </span><span class="nb">echo</span> <span class="s2">"deb [arch=amd64] https://download.docker.com/linux/debian </span><span class="k">$(</span>lsb_release -cs<span class="k">)</span><span class="s2"> stable"</span> | tee -a /etc/apt/sources.list.d/docker.list
<span class="gp">root@hassio:/home/ha# </span>apt-get update
</code></pre>
</div>
<p>Now, its possible to install a current release of <a href="https://www.docker.com/">Docker</a>.</p>
<div class="language-bash highlighter-rouge"><pre class="highlight"><code><span class="gp">root@hassio:/home/ha# </span>apt-get -y install docker-ce
</code></pre>
</div>
<p>Start <code class="highlighter-rouge">docker</code> and enable it.</p>
<div class="language-bash highlighter-rouge"><pre class="highlight"><code><span class="gp">root@hassio:/home/ha# </span>systemctl start docker <span class="o">&amp;&amp;</span> systemctl <span class="nb">enable </span>docker
</code></pre>
</div>
<p>An <a href="https://github.com/home-assistant/hassio-build/tree/master/install#install-hassio">installation script</a> will take care about the setup of all moving parts.</p>
<div class="language-bash highlighter-rouge"><pre class="highlight"><code><span class="gp">root@hassio:/home/ha# </span>curl -sL https://raw.githubusercontent.com/home-assistant/hassio-build/master/install/hassio_install | bash -
<span class="o">[</span>INFO] Install supervisor docker
<span class="o">[</span>INFO] Install generic HostControl
<span class="o">[</span>INFO] Install startup scripts
<span class="o">[</span>INFO] Init systemd
Created symlink /etc/systemd/system/multi-user.target.wants/hassio-supervisor.service → /etc/systemd/system/hassio-supervisor.service.
<span class="o">[</span>INFO] Start services
</code></pre>
</div>
<p>If its done, then there will be two new containers.</p>
<div class="language-bash highlighter-rouge"><pre class="highlight"><code><span class="gp">root@hassio:/home/ha# </span>docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
ada5bbfc74f0 homeassistant/qemux86-64-homeassistant <span class="s2">"/usr/bin/entry.sh..."</span> 4 minutes ago Up 4 minutes homeassistant
5954ac452ffc homeassistant/amd64-hassio-supervisor <span class="s2">"/usr/bin/entry.sh..."</span> 7 minutes ago Up 7 minutes hassio_supervisor
</code></pre>
</div>
<p>After a connection to the container which is containing Home Assistant is made, you will see the log output.</p>
<div class="language-bash highlighter-rouge"><pre class="highlight"><code><span class="gp">root@hassio:/home/ha# </span>docker attach --sig-proxy<span class="o">=</span><span class="nb">false </span>ada5bbfc74f0
2017-11-28 19:24:30 INFO <span class="o">(</span>MainThread<span class="o">)</span> <span class="o">[</span>homeassistant.core] Bus:Handling &lt;Event state_changed[L]: <span class="nv">entity_id</span><span class="o">=</span>sun.sun, <span class="nv">old_state</span><span class="o">=</span>&lt;state sun.sun<span class="o">=</span>below_horizon; <span class="nv">next_dawn</span><span class="o">=</span>2017-11-29T06:17:58+00:00,...
</code></pre>
</div>
<p>For further details about the container, <code class="highlighter-rouge">inspect</code> can help.</p>
<div class="language-bash highlighter-rouge"><pre class="highlight"><code><span class="gp">root@hassio:/home/ha# </span>docker inspect bb32b525d1ad
<span class="o">[</span>...]
<span class="s2">"OnBuild"</span>: null,
<span class="s2">"Labels"</span>: <span class="o">{</span>
<span class="s2">"io.hass.arch"</span>: <span class="s2">"amd64"</span>,
<span class="s2">"io.hass.machine"</span>: <span class="s2">"qemux86-64"</span>,
<span class="s2">"io.hass.type"</span>: <span class="s2">"homeassistant"</span>,
<span class="s2">"io.hass.version"</span>: <span class="s2">"0.58.1"</span>
<span class="o">}</span>
<span class="o">[</span>...]
</code></pre>
</div>
<p>Hass.io is now ready. The frontend is available at <a href="http://192.168.0.109:8123">http://192.168.0.109:8123</a>. Yes, the IP address is the one of the guest.</p>
<p class="img">
<img src="/images/blog/2017-11-hassio-virtual/hassio.png" />
Hass.io overview
</p>
<p>Keep in mind that there are limitations with this approach. Not all <a href="/addons/">add-ons</a> will work and some dont make sense to use as the hardware is not present. E.g., use the <a href="https://github.com/hassio-addons/addon-ssh">SSH community add-on</a> instead of the default <a href="/addons/ssh/">SSH add-on</a>.</p>
]]></content>
</entry>
<entry> <entry>
<title type="html"><![CDATA[0.58: More translations, faster frontend, system log]]></title> <title type="html"><![CDATA[0.58: More translations, faster frontend, system log]]></title>
<link href="https://home-assistant.io/blog/2017/11/18/release-58/"/> <link href="https://home-assistant.io/blog/2017/11/18/release-58/"/>
@ -1891,225 +2038,6 @@ Other than that the changes are mostly to our tool <code class="highlighter-roug
<p>To get started with the new image, check out the installation instructions on the <a href="https://home-assistant.io/docs/installation/hassbian/installation/">installing Hassbian page</a>.</p> <p>To get started with the new image, check out the installation instructions on the <a href="https://home-assistant.io/docs/installation/hassbian/installation/">installing Hassbian page</a>.</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[0.53: Tesla, Customize editor, and super fast KNX rewrite]]></title>
<link href="https://home-assistant.io/blog/2017/09/09/release-53/"/>
<updated>2017-09-09T00:11:05+00:00</updated>
<id>https://home-assistant.io/blog/2017/09/09/release-53</id>
<content type="html"><![CDATA[<p><a href="/components/#version/0.53"><img src="/images/blog/2017-09-0.53/components.png" style="border: 0;box-shadow: none;" /></a></p>
<p>The Home Assistant community has been super busy in the last two weeks to bring you this amazing release. 60 different contributors have done over a 100 PRs filled with new features, bug fixes and performance improvements.</p>
<p>9 days away from our 4th birthday, weve just accomplished a couple of great milestones that I would love to share with you. Weve hit over 8000 stars 🌟 on GitHub and starting this release we now ship over 800 platforms and components!</p>
<h2><a class="title-link" name="customize-editor" href="#customize-editor"></a> Customize editor</h2>
<p>Another step in making Home Assistant configurable via the frontend has been contributed by @andrey-git: a customization editor! You are now able to inspect all (possible) customizations of an entity and update them with just a few taps. Want to change the name or icon of an entity? All possible in mere seconds.</p>
<p class="img">
<img src="/images/blog/2017-09-0.53/customize-editor.png" />
Screenshot of the new customize editor.
</p>
<p>New Home Assistant configurations will be created correctly automatically. If you are an existing user, make sure you have the config screen enabled and that you include customizations from <code class="highlighter-rouge">customize.yaml</code>.</p>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Example configuration.yaml entry</span>
<span class="s">homeassistant</span><span class="pi">:</span>
<span class="c1"># Include the customizations.</span>
<span class="s">customize</span><span class="pi">:</span> <span class="kt">!include</span> <span class="s">customize.yaml</span>
<span class="c1"># Enable the config screen</span>
<span class="s">config</span><span class="pi">:</span>
</code></pre>
</div>
<h2><a class="title-link" name="tesla" href="#tesla"></a> Tesla</h2>
<p>Thanks to the contribution by @zabuldon, you will now be able to control your Tesla car from Home Assistant. Youre able to check the temperature inside and outside your car, control your AC and unlock the car.</p>
<h2><a class="title-link" name="input-text" href="#input-text"></a> Input text</h2>
<p>This release introduces a new input component: <code class="highlighter-rouge">input_text</code> contributed by @BioSehnsucht. With this component you will be able to set free form from the UI and then let that be used by your automations or templates.</p>
<h2><a class="title-link" name="knx" href="#knx"></a> KNX</h2>
<p>This release ships a new KNX implementation thanks to @Julius2342. It will instantly show all changed states of KNX devices within Home Assistant. Additionally it brings support for HVAC devices and notification services. It also adds a service for direct communication with the KNX bus. You can connect to KNX/IP routing and tunnelling devices. In the background it uses asyncio communication. Check the climate integration in action <a href="https://www.youtube.com/watch?v=JI0VJzlGpx4">here</a> and see the lights in action below:</p>
<div class="videoWrapper">
<iframe src="https://www.youtube.com/embed/Fe3yaflU2XM" frameborder="0" allowfullscreen=""></iframe>
</div>
<h2><a class="title-link" name="new-platforms" href="#new-platforms"></a> New Platforms</h2>
<ul>
<li>Xiaomi Philips Lights integration (<a href="https://github.com/syssi">@syssi</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9087">#9087</a>) (<a href="https://home-assistant.io/components/light.xiaomi_philipslight/">light.xiaomi_philipslight docs</a>) (new-platform)</li>
<li>Mycroft notify/component (<a href="https://github.com/btotharye">@btotharye</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9173">#9173</a>) (<a href="https://home-assistant.io/components/mycroft/">mycroft docs</a>) (<a href="https://home-assistant.io/components/notify.mycroft/">notify.mycroft docs</a>) (new-platform)</li>
<li>Add counter component (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9146">#9146</a>) (<a href="https://home-assistant.io/components/counter/">counter docs</a>) (new-platform)</li>
<li>Support for season sensor (<a href="https://github.com/w1ll1am23">@w1ll1am23</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8958">#8958</a>) (<a href="https://home-assistant.io/components/sensor.season/">sensor.season docs</a>) (new-platform)</li>
<li>Abode push events and lock, cover, and switch components (<a href="https://github.com/1091741+MisterWil">@1091741+MisterWil</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9095">#9095</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>) (<a href="https://home-assistant.io/components/cover.abode/">cover.abode docs</a>) (<a href="https://home-assistant.io/components/lock.abode/">lock.abode docs</a>) (<a href="https://home-assistant.io/components/switch.abode/">switch.abode docs</a>) (new-platform)</li>
<li>Bayesian Binary Sensor (<a href="https://github.com/jlmcgehee21">@jlmcgehee21</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8810">#8810</a>) (<a href="https://home-assistant.io/components/binary_sensor.bayesian/">binary_sensor.bayesian docs</a>) (new-platform)</li>
<li>Add Tank Utility sensor (<a href="https://github.com/krismolendyke">@krismolendyke</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9132">#9132</a>) (<a href="https://home-assistant.io/components/sensor.tank_utility/">sensor.tank_utility docs</a>) (new-platform)</li>
<li>Tesla platform (<a href="https://github.com/zabuldon">@zabuldon</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9211">#9211</a>) (<a href="https://home-assistant.io/components/tesla/">tesla docs</a>) (<a href="https://home-assistant.io/components/binary_sensor.tesla/">binary_sensor.tesla docs</a>) (<a href="https://home-assistant.io/components/climate.tesla/">climate.tesla docs</a>) (<a href="https://home-assistant.io/components/device_tracker.tesla/">device_tracker.tesla docs</a>) (<a href="https://home-assistant.io/components/lock.tesla/">lock.tesla docs</a>) (<a href="https://home-assistant.io/components/sensor.tesla/">sensor.tesla docs</a>) (new-platform)</li>
<li>mopar sensor (<a href="https://github.com/happyleavesaoc">@happyleavesaoc</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9136">#9136</a>) (<a href="https://home-assistant.io/components/sensor.mopar/">sensor.mopar docs</a>) (new-platform)</li>
<li>Add Geofency device tracker (<a href="https://github.com/gunnarhelgason">@gunnarhelgason</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9106">#9106</a>) (<a href="https://home-assistant.io/components/device_tracker.geofency/">device_tracker.geofency docs</a>) (new-platform)</li>
<li>Added DWD WarnApp Sensor (<a href="https://github.com/runningman84">@runningman84</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8657">#8657</a>) (<a href="https://home-assistant.io/components/sensor.dwdwarnapp/">sensor.dwdwarnapp docs</a>) (new-platform)</li>
<li>Add input_text component (<a href="https://github.com/BioSehnsucht">@BioSehnsucht</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9112">#9112</a>) (<a href="https://home-assistant.io/components/input_text/">input_text docs</a>) (new-platform)</li>
<li>Introducing a media_player component for Yamaha Multicast devices (<a href="https://github.com/jalmeroth">@jalmeroth</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9258">#9258</a>) (<a href="https://home-assistant.io/components/media_player.yamaha_musiccast/">media_player.yamaha_musiccast docs</a>) (new-platform)</li>
<li>Stable and asynchronous KNX library. (<a href="https://github.com/Julius2342">@Julius2342</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8725">#8725</a>) (<a href="https://home-assistant.io/components/knx/">knx docs</a>) (<a href="https://home-assistant.io/components/binary_sensor.knx/">binary_sensor.knx docs</a>) (<a href="https://home-assistant.io/components/climate.knx/">climate.knx docs</a>) (<a href="https://home-assistant.io/components/cover.knx/">cover.knx docs</a>) (<a href="https://home-assistant.io/components/light.knx/">light.knx docs</a>) (<a href="https://home-assistant.io/components/sensor.knx/">sensor.knx docs</a>) (<a href="https://home-assistant.io/components/switch.knx/">switch.knx docs</a>) (new-platform)</li>
<li>Adds the AirVisual air quality sensor platform (<a href="https://github.com/bachya">@bachya</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9320">#9320</a>) (<a href="https://home-assistant.io/components/sensor.airvisual/">sensor.airvisual docs</a>) (new-platform)</li>
</ul>
<h2><a class="title-link" name="release-0531---september-12" href="#release-0531---september-12"></a> Release 0.53.1 - September 12</h2>
<ul>
<li>Fix Twitter notifications with certain media such as small images (<a href="https://github.com/MikeChristianson">@MikeChristianson</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9354">#9354</a>) (<a href="https://home-assistant.io/components/notify.twitter/">notify.twitter docs</a>)</li>
<li>Added additional string check in Wunderground sensor (<a href="https://github.com/arsaboo">@arsaboo</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9380">#9380</a>) (<a href="https://home-assistant.io/components/sensor.wunderground/">sensor.wunderground docs</a>)</li>
<li>Fixing foscam library dependency/requirements (<a href="https://github.com/viswa-swami">@viswa-swami</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9387">#9387</a>) (<a href="https://home-assistant.io/components/camera.foscam/">camera.foscam docs</a>)</li>
<li>Fixes for customize editor (<a href="https://github.com/andrey-git">@andrey-git</a>)</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><a class="title-link" name="breaking-changes" href="#breaking-changes"></a> Breaking Changes</h2>
<ul>
<li>The new customize editor is using the file <code class="highlighter-rouge">customize.yaml</code> in your config folder. If you are using this file today for other config, make sure to rename it before using the new customize UI editor. (<a href="https://github.com/andrey-git">@andrey-git</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9134">#9134</a>) (<a href="https://home-assistant.io/components/config/">config docs</a>) (breaking change) (new-platform)</li>
<li>The frontend component now supports loading custom html files when Home Assistant front end starts (<a href="https://github.com/andrey-git">@andrey-git</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9150">#9150</a>) (breaking change). It could be Javascript, CSS or custom Web Components. Along there was a breaking change in the way Custom UI is used:
<ul>
<li><code class="highlighter-rouge">custom_ui_state_card</code> now specifies the exact element name and not a suffix after <code class="highlighter-rouge">state-card</code>. So if you had <code class="highlighter-rouge">state_card_custom_ui: custom-ui</code> in your config, you should change it to <code class="highlighter-rouge">state_card_custom_ui: state-card-custom-ui</code></li>
<li><code class="highlighter-rouge">custom_ui_state_card</code> no longer makes the html fetch, you should make it separately:</li>
</ul>
</li>
</ul>
<div class="highlighter-rouge"><pre class="highlight"><code>frontend:
extra_html_url:
- /local/custom_ui/state-card-custom-ui.html
</code></pre>
</div>
<ul>
<li>The Egardia alarm control panel now defaults to port 52010 instead of 85. (<a href="https://github.com/jeroenterheerdt">@jeroenterheerdt</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9225">#9225</a>) (<a href="https://home-assistant.io/components/alarm_control_panel.egardia/">alarm_control_panel.egardia docs</a>) (breaking change)</li>
<li>The Homematic <code class="highlighter-rouge">delay</code> option has been dropped because it is no longer necessary (<a href="https://github.com/pvizeli">@pvizeli</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9058">#9058</a>) (<a href="https://home-assistant.io/components/homematic/">homematic docs</a>) (<a href="https://home-assistant.io/components/binary_sensor.homematic/">binary_sensor.homematic docs</a>) (<a href="https://home-assistant.io/components/climate.homematic/">climate.homematic docs</a>) (<a href="https://home-assistant.io/components/cover.homematic/">cover.homematic docs</a>) (<a href="https://home-assistant.io/components/light.homematic/">light.homematic docs</a>) (<a href="https://home-assistant.io/components/sensor.homematic/">sensor.homematic docs</a>) (<a href="https://home-assistant.io/components/switch.homematic/">switch.homematic docs</a>) (breaking change)</li>
<li>Switch - Dlink: Remove spaces and capital letters from attribute names for consistency (<a href="https://github.com/emlt">@emlt</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9277">#9277</a>) (<a href="https://home-assistant.io/components/switch.dlink/">switch.dlink docs</a>) (breaking change)</li>
</ul>
<h2><a class="title-link" name="all-changes" href="#all-changes"></a> All changes</h2>
<ul>
<li>Xiaomi Philips Lights integration (<a href="https://github.com/syssi">@syssi</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9087">#9087</a>) (<a href="https://home-assistant.io/components/light.xiaomi_philipslight/">light.xiaomi_philipslight docs</a>) (new-platform)</li>
<li>Backend changes for customize config panel. (<a href="https://github.com/andrey-git">@andrey-git</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9134">#9134</a>) (<a href="https://home-assistant.io/components/config/">config docs</a>) (breaking change)</li>
<li>Upgrade async_timeout to 1.3.0 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9156">#9156</a>)</li>
<li>Remove links to gitter (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9155">#9155</a>)</li>
<li>Upgrade sphinx-autodoc-typehints to 1.2.3 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9151">#9151</a>)</li>
<li>Upgrade uber_rides to 0.5.2 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9149">#9149</a>) (<a href="https://home-assistant.io/components/sensor.uber/">sensor.uber docs</a>)</li>
<li>Allow specifying custom html urls to load. (<a href="https://github.com/andrey-git">@andrey-git</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9150">#9150</a>) (breaking change)</li>
<li>Allow getting number of available states in template (<a href="https://github.com/balloob">@balloob</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9158">#9158</a>)</li>
<li>upgrade xiaomi lib to 0.3.1 to supprt water sensor (<a href="https://github.com/danielhiversen">@danielhiversen</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9168">#9168</a>) (<a href="https://home-assistant.io/components/xiaomi/">xiaomi docs</a>)</li>
<li>Use node_modules gulp in script/build_frontend (<a href="https://github.com/armills">@armills</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9170">#9170</a>)</li>
<li>Mysensors nodes can be renamed in config file (<a href="https://github.com/EmitKiwi">@EmitKiwi</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9123">#9123</a>) (<a href="https://home-assistant.io/components/mysensors/">mysensors docs</a>)</li>
<li>Xiaomi gateway: Device support for the Aqara Water Leak Sensor (sensor_wleak.aq1) (<a href="https://github.com/syssi">@syssi</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9172">#9172</a>) (<a href="https://home-assistant.io/components/xiaomi/">xiaomi docs</a>) (<a href="https://home-assistant.io/components/binary_sensor.xiaomi/">binary_sensor.xiaomi docs</a>)</li>
<li>“TypeError: write_to_hub() takes 2 positional arguments but 4 were given” fixed. (<a href="https://github.com/syssi">@syssi</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9174">#9174</a>) (<a href="https://home-assistant.io/components/cover.xiaomi/">cover.xiaomi docs</a>)</li>
<li>Mycroft notify/component (<a href="https://github.com/btotharye">@btotharye</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9173">#9173</a>) (<a href="https://home-assistant.io/components/mycroft/">mycroft docs</a>) (<a href="https://home-assistant.io/components/notify.mycroft/">notify.mycroft docs</a>) (new-platform)</li>
<li>Fix dht22 when no data was read initially #8976 (<a href="https://github.com/maweki">@maweki</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9198">#9198</a>) (<a href="https://home-assistant.io/components/sensor.dht/">sensor.dht docs</a>)</li>
<li>Update pushbullet.py (<a href="https://github.com/bobnwk">@bobnwk</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9200">#9200</a>) (<a href="https://home-assistant.io/components/notify.pushbullet/">notify.pushbullet docs</a>)</li>
<li>fix worldtidesinfo #9184 (<a href="https://github.com/aetolus">@aetolus</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9201">#9201</a>) (<a href="https://home-assistant.io/components/sensor.worldtidesinfo/">sensor.worldtidesinfo docs</a>)</li>
<li>Add “status” to Sonarr sensor (<a href="https://github.com/tboyce021">@tboyce021</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9204">#9204</a>) (<a href="https://home-assistant.io/components/sensor.radarr/">sensor.radarr docs</a>) (<a href="https://home-assistant.io/components/sensor.sonarr/">sensor.sonarr docs</a>)</li>
<li>Prevent error when no forecast data was available (<a href="https://github.com/mjj4791">@mjj4791</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9176">#9176</a>) (<a href="https://home-assistant.io/components/sensor.buienradar/">sensor.buienradar docs</a>)</li>
<li>Fix and optimize digitalloggers platform (<a href="https://github.com/dale3h">@dale3h</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9203">#9203</a>) (<a href="https://home-assistant.io/components/switch.digitalloggers/">switch.digitalloggers docs</a>)</li>
<li>Add counter component (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9146">#9146</a>) (<a href="https://home-assistant.io/components/counter/">counter docs</a>) (new-platform)</li>
<li>Support for season sensor (<a href="https://github.com/w1ll1am23">@w1ll1am23</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8958">#8958</a>) (<a href="https://home-assistant.io/components/sensor.season/">sensor.season docs</a>) (new-platform)</li>
<li>Issue #6893 in rfxtrx (<a href="https://github.com/danielhiversen">@danielhiversen</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9130">#9130</a>) (<a href="https://home-assistant.io/components/rfxtrx/">rfxtrx docs</a>)</li>
<li>Refactor rfxtrx (<a href="https://github.com/danielhiversen">@danielhiversen</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9117">#9117</a>) (<a href="https://home-assistant.io/components/rfxtrx/">rfxtrx docs</a>) (<a href="https://home-assistant.io/components/cover.rfxtrx/">cover.rfxtrx docs</a>) (<a href="https://home-assistant.io/components/light.rfxtrx/">light.rfxtrx docs</a>) (<a href="https://home-assistant.io/components/switch.rfxtrx/">switch.rfxtrx docs</a>)</li>
<li>Upgrade pymysensors to 0.11.1 (<a href="https://github.com/MartinHjelmare">@MartinHjelmare</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9212">#9212</a>) (<a href="https://home-assistant.io/components/mysensors/">mysensors docs</a>)</li>
<li>Abode push events and lock, cover, and switch components (<a href="https://github.com/1091741+MisterWil">@1091741+MisterWil</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9095">#9095</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>) (<a href="https://home-assistant.io/components/cover.abode/">cover.abode docs</a>) (<a href="https://home-assistant.io/components/lock.abode/">lock.abode docs</a>) (<a href="https://home-assistant.io/components/switch.abode/">switch.abode docs</a>) (new-platform)</li>
<li>Add cloud auth support (<a href="https://github.com/balloob">@balloob</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9208">#9208</a>)</li>
<li>Bayesian Binary Sensor (<a href="https://github.com/jlmcgehee21">@jlmcgehee21</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8810">#8810</a>) (<a href="https://home-assistant.io/components/binary_sensor.bayesian/">binary_sensor.bayesian docs</a>) (new-platform)</li>
<li>directv: extended discovery via REST api, bug fix (<a href="https://github.com/sielicki">@sielicki</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8800">#8800</a>) (<a href="https://home-assistant.io/components/media_player.directv/">media_player.directv docs</a>)</li>
<li>Upgrade pyasn1 to 0.3.3 and pyasn1-modules to 0.1.1 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9216">#9216</a>) (<a href="https://home-assistant.io/components/notify.xmpp/">notify.xmpp docs</a>)</li>
<li>Upgrade sendgrid to 5.0.1 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9215">#9215</a>) (<a href="https://home-assistant.io/components/notify.sendgrid/">notify.sendgrid docs</a>)</li>
<li>Fix fitbit error when trying to access token after upgrade. (<a href="https://github.com/tchellomello">@tchellomello</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9183">#9183</a>) (<a href="https://home-assistant.io/components/sensor.fitbit/">sensor.fitbit docs</a>)</li>
<li>Allow sonos to select album as a source (<a href="https://github.com/commento">@commento</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9221">#9221</a>) (<a href="https://home-assistant.io/components/media_player.sonos/">media_player.sonos docs</a>)</li>
<li>Add max_age to statistics sensor (<a href="https://github.com/tinloaf">@tinloaf</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8790">#8790</a>) (<a href="https://home-assistant.io/components/sensor.statistics/">sensor.statistics docs</a>)</li>
<li>Egardia package to .19 and change in port number for egardiaserver (<a href="https://github.com/jeroenterheerdt">@jeroenterheerdt</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9225">#9225</a>) (<a href="https://home-assistant.io/components/alarm_control_panel.egardia/">alarm_control_panel.egardia docs</a>) (breaking change)</li>
<li>pushbullet, send a file from url (<a href="https://github.com/danielhiversen">@danielhiversen</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9189">#9189</a>) (<a href="https://home-assistant.io/components/notify.pushbullet/">notify.pushbullet docs</a>)</li>
<li>Add Tank Utility sensor (<a href="https://github.com/krismolendyke">@krismolendyke</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9132">#9132</a>) (<a href="https://home-assistant.io/components/sensor.tank_utility/">sensor.tank_utility docs</a>) (new-platform)</li>
<li>Upgrade shodan to 1.7.5 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9228">#9228</a>) (<a href="https://home-assistant.io/components/sensor.shodan/">sensor.shodan docs</a>)</li>
<li>Tesla platform (<a href="https://github.com/zabuldon">@zabuldon</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9211">#9211</a>) (<a href="https://home-assistant.io/components/tesla/">tesla docs</a>) (<a href="https://home-assistant.io/components/binary_sensor.tesla/">binary_sensor.tesla docs</a>) (<a href="https://home-assistant.io/components/climate.tesla/">climate.tesla docs</a>) (<a href="https://home-assistant.io/components/device_tracker.tesla/">device_tracker.tesla docs</a>) (<a href="https://home-assistant.io/components/lock.tesla/">lock.tesla docs</a>) (<a href="https://home-assistant.io/components/sensor.tesla/">sensor.tesla docs</a>) (new-platform)</li>
<li>[light.tradfri] Full range of white spectrum lightbulbs support (<a href="https://github.com/matemaciek">@matemaciek</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9224">#9224</a>) (<a href="https://home-assistant.io/components/tradfri/">tradfri docs</a>) (<a href="https://home-assistant.io/components/light.tradfri/">light.tradfri docs</a>)</li>
<li>Allow panels with external URL (<a href="https://github.com/andrey-git">@andrey-git</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9214">#9214</a>)</li>
<li>Use ZCL mandatory attribute to determine ZHA light capabilities (<a href="https://github.com/jkl1337">@jkl1337</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9232">#9232</a>) (<a href="https://home-assistant.io/components/light.zha/">light.zha docs</a>)</li>
<li>A bugfix for pushbullet (<a href="https://github.com/danielhiversen">@danielhiversen</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9237">#9237</a>) (<a href="https://home-assistant.io/components/notify.pushbullet/">notify.pushbullet docs</a>)</li>
<li>mopar sensor (<a href="https://github.com/happyleavesaoc">@happyleavesaoc</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9136">#9136</a>) (<a href="https://home-assistant.io/components/sensor.mopar/">sensor.mopar docs</a>) (new-platform)</li>
<li>Upgrade discord.py to 0.16.11 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9239">#9239</a>) (<a href="https://home-assistant.io/components/notify.discord/">notify.discord docs</a>)</li>
<li>Skip automatic events older than latest data (<a href="https://github.com/armills">@armills</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9230">#9230</a>) (<a href="https://home-assistant.io/components/device_tracker.automatic/">device_tracker.automatic docs</a>)</li>
<li>title and message was swapped in pushbullet (<a href="https://github.com/danielhiversen">@danielhiversen</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9241">#9241</a>) (<a href="https://home-assistant.io/components/notify.pushbullet/">notify.pushbullet docs</a>)</li>
<li>Fix possible KeyError (<a href="https://github.com/MartinHjelmare">@MartinHjelmare</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9242">#9242</a>) (<a href="https://home-assistant.io/components/mysensors/">mysensors docs</a>)</li>
<li>WIP: Homematic improvements with new hass interfaces (<a href="https://github.com/pvizeli">@pvizeli</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9058">#9058</a>) (<a href="https://home-assistant.io/components/homematic/">homematic docs</a>) (<a href="https://home-assistant.io/components/binary_sensor.homematic/">binary_sensor.homematic docs</a>) (<a href="https://home-assistant.io/components/climate.homematic/">climate.homematic docs</a>) (<a href="https://home-assistant.io/components/cover.homematic/">cover.homematic docs</a>) (<a href="https://home-assistant.io/components/light.homematic/">light.homematic docs</a>) (<a href="https://home-assistant.io/components/sensor.homematic/">sensor.homematic docs</a>) (<a href="https://home-assistant.io/components/switch.homematic/">switch.homematic docs</a>) (breaking change)</li>
<li>Add available to sonos (<a href="https://github.com/pvizeli">@pvizeli</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9243">#9243</a>) (<a href="https://home-assistant.io/components/media_player.sonos/">media_player.sonos docs</a>)</li>
<li>Make sure Ring binary_sensor state will update only if device_id matches (<a href="https://github.com/tchellomello">@tchellomello</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9247">#9247</a>) (<a href="https://home-assistant.io/components/binary_sensor.ring/">binary_sensor.ring docs</a>)</li>
<li>
<table>
<tbody>
<tr>
<td>Added configurable timeout for receiver HTTP requests</td>
<td>Additional AV… (<a href="https://github.com/scarface-4711">@scarface-4711</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9244">#9244</a>) (<a href="https://home-assistant.io/components/media_player.denonavr/">media_player.denonavr docs</a>)</td>
</tr>
</tbody>
</table>
</li>
<li>upgrade xiaomi lib (<a href="https://github.com/danielhiversen">@danielhiversen</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9250">#9250</a>) (<a href="https://home-assistant.io/components/xiaomi/">xiaomi docs</a>)</li>
<li>Fix nello.io login (<a href="https://github.com/pschmitt">@pschmitt</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9251">#9251</a>) (<a href="https://home-assistant.io/components/lock.nello/">lock.nello docs</a>)</li>
<li>This is to fix #6386: Manual Alarm not re-arm after 2nd trigger (<a href="https://github.com/snjoetw">@snjoetw</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9249">#9249</a>) (<a href="https://home-assistant.io/components/alarm_control_panel.manual/">alarm_control_panel.manual docs</a>)</li>
<li>Version bump of DLink switch to v0.6.0 (<a href="https://github.com/LinuxChristian">@LinuxChristian</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9252">#9252</a>) (<a href="https://home-assistant.io/components/switch.dlink/">switch.dlink docs</a>)</li>
<li>Upgrade sendgrid to 5.2.0 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9254">#9254</a>) (<a href="https://home-assistant.io/components/notify.sendgrid/">notify.sendgrid docs</a>)</li>
<li>Upgrade psutil to 5.3.0 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9253">#9253</a>) (<a href="https://home-assistant.io/components/sensor.systemmonitor/">sensor.systemmonitor docs</a>)</li>
<li>Adding ZWave CentralScene activation handler. (<a href="https://github.com/sirmalloc">@sirmalloc</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9178">#9178</a>) (<a href="https://home-assistant.io/components/zwave/">zwave docs</a>)</li>
<li>Add Geofency device tracker (<a href="https://github.com/gunnarhelgason">@gunnarhelgason</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9106">#9106</a>) (<a href="https://home-assistant.io/components/device_tracker.geofency/">device_tracker.geofency docs</a>) (new-platform)</li>
<li>flux: fix for when stop_time is after midnight (<a href="https://github.com/abmantis">@abmantis</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8932">#8932</a>)</li>
<li>Change attribute names (<a href="https://github.com/emlt">@emlt</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9277">#9277</a>) (<a href="https://home-assistant.io/components/switch.dlink/">switch.dlink docs</a>) (breaking change)</li>
<li>insteon_plm: fix typo in attributes (<a href="https://github.com/drkp">@drkp</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9284">#9284</a>) (<a href="https://home-assistant.io/components/insteon_plm/">insteon_plm docs</a>)</li>
<li>discovery: If unknown NetDisco service discovered, log about it. (<a href="https://github.com/pfalcon">@pfalcon</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9280">#9280</a>)</li>
<li>Upgrade youtube_dl to 2017.9.2 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9279">#9279</a>) (<a href="https://home-assistant.io/components/media_extractor/">media_extractor docs</a>)</li>
<li>Upgrade python-telegram-bot to 8.0.0 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9282">#9282</a>) (<a href="https://home-assistant.io/components/telegram_bot/">telegram_bot docs</a>) (<a href="https://home-assistant.io/components/switch.rest/">switch.rest docs</a>)</li>
<li>rfxtrx lib upgrade (<a href="https://github.com/danielhiversen">@danielhiversen</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9288">#9288</a>) (<a href="https://home-assistant.io/components/rfxtrx/">rfxtrx docs</a>)</li>
<li>Fixing bug when using egardiaserver - package requirement updated to 1.0.20. (<a href="https://github.com/jeroenterheerdt">@jeroenterheerdt</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9294">#9294</a>) (<a href="https://home-assistant.io/components/alarm_control_panel.egardia/">alarm_control_panel.egardia docs</a>)</li>
<li>Added intent_type to exception log (<a href="https://github.com/andreasjacobsen93">@andreasjacobsen93</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9289">#9289</a>) (<a href="https://home-assistant.io/components/snips/">snips docs</a>)</li>
<li>Handle spotify failing to refresh access_token (<a href="https://github.com/Tommatheussen">@Tommatheussen</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9295">#9295</a>) (<a href="https://home-assistant.io/components/media_player.spotify/">media_player.spotify docs</a>)</li>
<li>Core track same state for a period / Allow on platforms (<a href="https://github.com/pvizeli">@pvizeli</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9273">#9273</a>)</li>
<li>Improved Lutron Caseta shade support (<a href="https://github.com/30200174+upsert">@30200174+upsert</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9302">#9302</a>) (<a href="https://home-assistant.io/components/lutron_caseta/">lutron_caseta docs</a>) (<a href="https://home-assistant.io/components/cover.lutron_caseta/">cover.lutron_caseta docs</a>) (<a href="https://home-assistant.io/components/light.lutron_caseta/">light.lutron_caseta docs</a>) (<a href="https://home-assistant.io/components/switch.lutron_caseta/">switch.lutron_caseta docs</a>)</li>
<li>Upgrade mycroftapi to 2.0 (<a href="https://github.com/btotharye">@btotharye</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9309">#9309</a>) (<a href="https://home-assistant.io/components/mycroft/">mycroft docs</a>)</li>
<li>Fix for Honeywell Round thermostats (<a href="https://github.com/dansarginson">@dansarginson</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9308">#9308</a>) (<a href="https://home-assistant.io/components/climate.honeywell/">climate.honeywell docs</a>)</li>
<li>Update jinja to 2.9.6 (<a href="https://github.com/pvizeli">@pvizeli</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9306">#9306</a>)</li>
<li>Ensure display-name does not exceed 12 characters for CecAdapter. (<a href="https://github.com/gollo">@gollo</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9268">#9268</a>) (<a href="https://home-assistant.io/components/hdmi_cec/">hdmi_cec docs</a>)</li>
<li>Expose hue group 0 (<a href="https://github.com/filcole">@filcole</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8663">#8663</a>) (<a href="https://home-assistant.io/components/light.hue/">light.hue docs</a>)</li>
<li>Added DWD WarnApp Sensor (<a href="https://github.com/runningman84">@runningman84</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8657">#8657</a>) (<a href="https://home-assistant.io/components/sensor.dwdwarnapp/">sensor.dwdwarnapp docs</a>) (new-platform)</li>
<li>Add input_text component (<a href="https://github.com/BioSehnsucht">@BioSehnsucht</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9112">#9112</a>) (<a href="https://home-assistant.io/components/input_text/">input_text docs</a>) (new-platform)</li>
<li>Introducing a media_player component for Yamaha Multicast devices (<a href="https://github.com/jalmeroth">@jalmeroth</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9258">#9258</a>) (<a href="https://home-assistant.io/components/media_player.yamaha_musiccast/">media_player.yamaha_musiccast docs</a>) (new-platform)</li>
<li>Handle the case where no registration number is available (instead display VIN (vehicle identification number)). (<a href="https://github.com/molobrakos">@molobrakos</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9073">#9073</a>) (<a href="https://home-assistant.io/components/volvooncall/">volvooncall docs</a>) (<a href="https://home-assistant.io/components/device_tracker.volvooncall/">device_tracker.volvooncall docs</a>)</li>
<li>Add post_pending_state attribute to manual alarm_control_panel (<a href="https://github.com/snjoetw">@snjoetw</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9291">#9291</a>) (<a href="https://home-assistant.io/components/alarm_control_panel.manual/">alarm_control_panel.manual docs</a>)</li>
<li>Add new config variable to MQTT light (<a href="https://github.com/belyalov">@belyalov</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9304">#9304</a>) (<a href="https://home-assistant.io/components/light.mqtt/">light.mqtt docs</a>)</li>
<li>Follow Twitter guidelines for media upload by conforming to the “STATUS” phase, when required, and by providing “media_category” information. These will, for example, allow users to upload videos that exceed the basic 30 second limit. (<a href="https://github.com/MikeChristianson">@MikeChristianson</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9261">#9261</a>) (<a href="https://home-assistant.io/components/notify.twitter/">notify.twitter docs</a>)</li>
<li>Optionally disable ssl certificate validity check. (<a href="https://github.com/1868995+ohmer1">@1868995+ohmer1</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9181">#9181</a>) (<a href="https://home-assistant.io/components/notify.xmpp/">notify.xmpp docs</a>)</li>
<li>Version bump dlib to 1.0.0 (<a href="https://github.com/arsaboo">@arsaboo</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9316">#9316</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>Fixed bug with devices not being discovered correctly. (<a href="https://github.com/1091741+MisterWil">@1091741+MisterWil</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9311">#9311</a>) (<a href="https://home-assistant.io/components/abode/">abode docs</a>)</li>
<li>Platform not ready behavior fixed. (<a href="https://github.com/syssi">@syssi</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9325">#9325</a>) (<a href="https://home-assistant.io/components/light.xiaomi_philipslight/">light.xiaomi_philipslight docs</a>)</li>
<li>Stable and asynchronous KNX library. (<a href="https://github.com/Julius2342">@Julius2342</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8725">#8725</a>) (<a href="https://home-assistant.io/components/knx/">knx docs</a>) (<a href="https://home-assistant.io/components/binary_sensor.knx/">binary_sensor.knx docs</a>) (<a href="https://home-assistant.io/components/climate.knx/">climate.knx docs</a>) (<a href="https://home-assistant.io/components/cover.knx/">cover.knx docs</a>) (<a href="https://home-assistant.io/components/light.knx/">light.knx docs</a>) (<a href="https://home-assistant.io/components/sensor.knx/">sensor.knx docs</a>) (<a href="https://home-assistant.io/components/switch.knx/">switch.knx docs</a>) (new-platform)</li>
<li>Fix for potential issue with tesla initialization (<a href="https://github.com/zabuldon">@zabuldon</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9307">#9307</a>) (<a href="https://home-assistant.io/components/tesla/">tesla docs</a>)</li>
<li>Adds the AirVisual air quality sensor platform (<a href="https://github.com/bachya">@bachya</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9320">#9320</a>) (<a href="https://home-assistant.io/components/sensor.airvisual/">sensor.airvisual docs</a>) (new-platform)</li>
<li>Cleanup input_text (<a href="https://github.com/balloob">@balloob</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9326">#9326</a>) (<a href="https://home-assistant.io/components/input_text/">input_text docs</a>)</li>
<li>Bump pyHik version to add IO support (<a href="https://github.com/mezz64">@mezz64</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9341">#9341</a>) (<a href="https://home-assistant.io/components/binary_sensor.hikvision/">binary_sensor.hikvision docs</a>)</li>
</ul>
]]></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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -140,9 +143,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -164,9 +167,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -147,9 +150,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -151,9 +154,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -148,9 +151,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -142,9 +145,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -214,9 +217,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -158,9 +161,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -158,9 +161,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -219,9 +222,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -296,9 +299,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -286,9 +289,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -154,9 +157,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -169,9 +172,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -196,9 +199,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -147,9 +150,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -155,9 +158,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -209,9 +212,6 @@ name: binary_sensor
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -192,6 +192,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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -204,9 +207,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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -179,9 +182,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -170,9 +173,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -159,9 +162,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -293,9 +296,6 @@ Z-Wave light bulb |
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -267,9 +270,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -178,9 +181,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -232,9 +235,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -177,9 +180,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -186,9 +189,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -146,9 +149,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -149,9 +152,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -158,9 +161,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -144,9 +147,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -156,9 +159,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -178,9 +181,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -144,9 +147,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -218,9 +221,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -144,9 +147,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -150,9 +153,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -174,9 +177,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -147,9 +150,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -248,9 +251,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -156,9 +159,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -188,9 +191,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -160,9 +163,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -182,9 +185,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -228,9 +231,6 @@ target_dir /tmp
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -183,9 +186,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -179,9 +182,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -195,9 +198,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -227,9 +230,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -222,9 +225,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -195,9 +198,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -233,9 +236,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -145,9 +148,6 @@ Heatmap
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -294,9 +297,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</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/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -223,9 +226,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -228,9 +231,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -149,9 +152,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -157,9 +160,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -239,9 +242,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -411,9 +414,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -167,9 +170,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -235,9 +238,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -196,9 +199,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -257,9 +260,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -210,9 +213,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -148,9 +151,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -158,9 +161,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -227,9 +230,6 @@ You have to note:
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -150,9 +153,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -187,9 +190,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

View file

@ -261,6 +261,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/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a> <a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li> </li>
@ -273,9 +276,6 @@
<li class="post"> <li class="post">
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a> <a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
</li> </li>
<li class="post">
<a href="/blog/2017/11/04/release-57/">0.57: Translations, Hacktoberfest, Timers</a>
</li>
</ul> </ul>
</section> </section>
</div> </div>

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