Skip to content

Commit b723b07

Browse files
committed
Site updated at 2017-09-26 07:14:23 UTC
1 parent 80847eb commit b723b07

File tree

415 files changed

+2329
-1581
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

415 files changed

+2329
-1581
lines changed

atom.xml

Lines changed: 46 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Home Assistant]]></title>
55
<link href="https://home-assistant.io/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-09-25T11:39:28+00:00</updated>
7+
<updated>2017-09-26T07:07:36+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>
@@ -13,6 +13,51 @@
1313
<generator uri="http://octopress.org/">Octopress</generator>
1414

1515

16+
<entry>
17+
<title type="html"><![CDATA[Improved Hass.io build system]]></title>
18+
<link href="https://home-assistant.io/blog/2017/09/26/new-hassio-build-system/"/>
19+
<updated>2017-09-26T03:00:00+00:00</updated>
20+
<id>https://home-assistant.io/blog/2017/09/26/new-hassio-build-system</id>
21+
<content type="html"><![CDATA[<p class="note">
22+
This is going to be a technical post for Hass.io add-on developers and people that run locally build add-ons (not the default).
23+
</p>
24+
25+
<p>Two months ago we <a href="/blog/2017/07/25/introducing-hassio/">introduced Hass.io</a>, allowing our users to easily install, update and manage their Home Assistant installation. In this short time we’ve seen great adoption from the community. Around 20% of our users are choosing Hass.io as their method of running Home Assistant today. We’ve also seen many add-ons being made available on <a href="https://community.home-assistant.io/tags/hassio-repository">the forums</a>. There are currently 14 reposities full of add-ons being shared!</p>
26+
27+
<p>Hass.io is built on top of Docker, a container runtime. One thing that Docker did not support was dynamic build environements. That was annoying for Hass.io because by supporting multiple CPU architectures, that was exactly what we needed! Luckily this feature has been added in Docker 17.05. By moving to Docker 17.05 as the minimum supported version we will be able to replace our templated Dockerfile approach with standard Dockerfiles that work out of the box. Thanks to <a href="https://github.com/frenck">Frenck</a> for notifying us of this new build feature.</p>
28+
29+
<p>This change only impacts people that build add-ons or use add-ons that are built locally. You can check if your add-on is building locally on the detail page of add-ons.</p>
30+
31+
<p class="note">
32+
If you are an add-on developer, read <a href="/developers/hassio/addon_publishing/#custom-add-ons">the documentation</a> on how to publish your add-ons to Docker Hub. This will greatly improve the user experience.
33+
</p>
34+
35+
<h3><a class="title-link" name="template-changes" href="#template-changes"></a> Template changes</h3>
36+
37+
<p>As an add-on developer, you will only have to change one line in your template to make it compatible with the new system. If you wish, you can also change the default build options for your image using the new <a href="/developers/hassio/addon_config/#add-on-extended-build"><code class="highlighter-rouge">build.json</code></a> file.</p>
38+
39+
<p>Old:</p>
40+
41+
<div class="highlighter-rouge"><pre class="highlight"><code>FROM %%BASE_IMAGE%%
42+
</code></pre>
43+
</div>
44+
45+
<p>New:</p>
46+
47+
<div class="highlighter-rouge"><pre class="highlight"><code>ARG BUILD_FROM
48+
FROM $BUILD_FROM
49+
</code></pre>
50+
</div>
51+
52+
<h3><a class="title-link" name="when" href="#when"></a> When</h3>
53+
54+
<p>The new system will become active with Hass.io 0.64 and Host OS 1.1. Host OS 1.1 is available today. Navigate to Advanced Settings in the Hass.io panel to start the OTA update.</p>
55+
56+
<p>We have also updated our build scripts and replaced it with a <a href="https://github.com/home-assistant/hassio-build/tree/master/builder">builder docker engine</a>. This builder makes deploying Hass.io components very easy. All basic functionality is supported. If you want more functionality, check out <a href="https://github.com/hassio-addons/build-env">the builder by the Community Hass.io Add-ons project</a>.</p>
57+
58+
]]></content>
59+
</entry>
60+
1661
<entry>
1762
<title type="html"><![CDATA[0.54: Todoist, DoorBird, Abode cameras]]></title>
1863
<link href="https://home-assistant.io/blog/2017/09/23/release-54/"/>
@@ -2240,21 +2285,6 @@ trigger:
22402285
<li>Fix MQTT camera test (<a href="https://github.com/balloob">@balloob</a> - <a href="https://github.com/home-assistant/home-assistant/pull/7878">#7878</a>)</li>
22412286
</ul>
22422287
2243-
]]></content>
2244-
</entry>
2245-
2246-
<entry>
2247-
<title type="html"><![CDATA[Home Assistant Podcast 1]]></title>
2248-
<link href="https://home-assistant.io/blog/2017/06/02/home-assistant-podcast-1/"/>
2249-
<updated>2017-06-02T06:00:00+00:00</updated>
2250-
<id>https://home-assistant.io/blog/2017/06/02/home-assistant-podcast-1</id>
2251-
<content type="html"><![CDATA[<p>The first podcast by <a href="https://hasspodcast.io">Home Assistant Podcast</a> contains an introduction and covers the <a href="/blog/2017/05/20/automation-editor-zwave-panel-ocr/">0.45</a> release of Home Assistant.</p>
2252-
2253-
<ul>
2254-
<li>Listen online: <a href="https://hasspodcast.io/ha001/">https://hasspodcast.io/ha001/</a></li>
2255-
<li>Download: <a href="https://hasspodcast.io/podcast-download/13/ha001.mp3">https://hasspodcast.io/podcast-download/13/ha001.mp3</a></li>
2256-
</ul>
2257-
22582288
]]></content>
22592289
</entry>
22602290

blog/2014/12/18/website-launched/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,9 @@ <h1 class="title delta">Share this post</h1>
128128
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
129129
<h1 class="title delta">Recent Posts</h1>
130130
<ul class="divided">
131+
<li class="post">
132+
<a href="/blog/2017/09/26/new-hassio-build-system/">Improved Hass.io build system</a>
133+
</li>
131134
<li class="post">
132135
<a href="/blog/2017/09/23/release-54/">0.54: Todoist, DoorBird, Abode cameras</a>
133136
</li>
@@ -140,9 +143,6 @@ <h1 class="title delta">Recent Posts</h1>
140143
<li class="post">
141144
<a href="/blog/2017/08/26/release-0-52/">0.52: Scripts editor, Nello.io locks, HipChat and Abode Home Security</a>
142145
</li>
143-
<li class="post">
144-
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
145-
</li>
146146
</ul>
147147
</section>
148148
</div>

blog/2014/12/26/home-control-home-automation-and-the-smart-home/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,9 @@ <h1 class="title delta">Share this post</h1>
162162
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
163163
<h1 class="title delta">Recent Posts</h1>
164164
<ul class="divided">
165+
<li class="post">
166+
<a href="/blog/2017/09/26/new-hassio-build-system/">Improved Hass.io build system</a>
167+
</li>
165168
<li class="post">
166169
<a href="/blog/2017/09/23/release-54/">0.54: Todoist, DoorBird, Abode cameras</a>
167170
</li>
@@ -174,9 +177,6 @@ <h1 class="title delta">Recent Posts</h1>
174177
<li class="post">
175178
<a href="/blog/2017/08/26/release-0-52/">0.52: Scripts editor, Nello.io locks, HipChat and Abode Home Security</a>
176179
</li>
177-
<li class="post">
178-
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
179-
</li>
180180
</ul>
181181
</section>
182182
</div>

blog/2015/01/04/hey-pushbullet-nice-talking-to-you/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,9 @@ <h1 class="title delta">Share this post</h1>
152152
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
153153
<h1 class="title delta">Recent Posts</h1>
154154
<ul class="divided">
155+
<li class="post">
156+
<a href="/blog/2017/09/26/new-hassio-build-system/">Improved Hass.io build system</a>
157+
</li>
155158
<li class="post">
156159
<a href="/blog/2017/09/23/release-54/">0.54: Todoist, DoorBird, Abode cameras</a>
157160
</li>
@@ -164,9 +167,6 @@ <h1 class="title delta">Recent Posts</h1>
164167
<li class="post">
165168
<a href="/blog/2017/08/26/release-0-52/">0.52: Scripts editor, Nello.io locks, HipChat and Abode Home Security</a>
166169
</li>
167-
<li class="post">
168-
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
169-
</li>
170170
</ul>
171171
</section>
172172
</div>

blog/2015/01/11/bootstrapping-your-setup-with-discovery/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,9 @@ <h1 class="title delta">Share this post</h1>
135135
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
136136
<h1 class="title delta">Recent Posts</h1>
137137
<ul class="divided">
138+
<li class="post">
139+
<a href="/blog/2017/09/26/new-hassio-build-system/">Improved Hass.io build system</a>
140+
</li>
138141
<li class="post">
139142
<a href="/blog/2017/09/23/release-54/">0.54: Todoist, DoorBird, Abode cameras</a>
140143
</li>
@@ -147,9 +150,6 @@ <h1 class="title delta">Recent Posts</h1>
147150
<li class="post">
148151
<a href="/blog/2017/08/26/release-0-52/">0.52: Scripts editor, Nello.io locks, HipChat and Abode Home Security</a>
149152
</li>
150-
<li class="post">
151-
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
152-
</li>
153153
</ul>
154154
</section>
155155
</div>

blog/2015/01/13/nest-in-da-house/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,9 @@ <h1 class="title delta">Share this post</h1>
139139
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
140140
<h1 class="title delta">Recent Posts</h1>
141141
<ul class="divided">
142+
<li class="post">
143+
<a href="/blog/2017/09/26/new-hassio-build-system/">Improved Hass.io build system</a>
144+
</li>
142145
<li class="post">
143146
<a href="/blog/2017/09/23/release-54/">0.54: Todoist, DoorBird, Abode cameras</a>
144147
</li>
@@ -151,9 +154,6 @@ <h1 class="title delta">Recent Posts</h1>
151154
<li class="post">
152155
<a href="/blog/2017/08/26/release-0-52/">0.52: Scripts editor, Nello.io locks, HipChat and Abode Home Security</a>
153156
</li>
154-
<li class="post">
155-
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
156-
</li>
157157
</ul>
158158
</section>
159159
</div>

blog/2015/01/24/release-notes/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,9 @@ <h1 class="title delta">Share this post</h1>
145145
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
146146
<h1 class="title delta">Recent Posts</h1>
147147
<ul class="divided">
148+
<li class="post">
149+
<a href="/blog/2017/09/26/new-hassio-build-system/">Improved Hass.io build system</a>
150+
</li>
148151
<li class="post">
149152
<a href="/blog/2017/09/23/release-54/">0.54: Todoist, DoorBird, Abode cameras</a>
150153
</li>
@@ -157,9 +160,6 @@ <h1 class="title delta">Recent Posts</h1>
157160
<li class="post">
158161
<a href="/blog/2017/08/26/release-0-52/">0.52: Scripts editor, Nello.io locks, HipChat and Abode Home Security</a>
159162
</li>
160-
<li class="post">
161-
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
162-
</li>
163163
</ul>
164164
</section>
165165
</div>

blog/2015/02/08/looking-at-the-past/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,9 @@ <h1 class="title delta">Share this post</h1>
150150
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
151151
<h1 class="title delta">Recent Posts</h1>
152152
<ul class="divided">
153+
<li class="post">
154+
<a href="/blog/2017/09/26/new-hassio-build-system/">Improved Hass.io build system</a>
155+
</li>
153156
<li class="post">
154157
<a href="/blog/2017/09/23/release-54/">0.54: Todoist, DoorBird, Abode cameras</a>
155158
</li>
@@ -162,9 +165,6 @@ <h1 class="title delta">Recent Posts</h1>
162165
<li class="post">
163166
<a href="/blog/2017/08/26/release-0-52/">0.52: Scripts editor, Nello.io locks, HipChat and Abode Home Security</a>
164167
</li>
165-
<li class="post">
166-
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
167-
</li>
168168
</ul>
169169
</section>
170170
</div>

blog/2015/02/24/streaming-updates/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,9 @@ <h1 class="title delta">Share this post</h1>
136136
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
137137
<h1 class="title delta">Recent Posts</h1>
138138
<ul class="divided">
139+
<li class="post">
140+
<a href="/blog/2017/09/26/new-hassio-build-system/">Improved Hass.io build system</a>
141+
</li>
139142
<li class="post">
140143
<a href="/blog/2017/09/23/release-54/">0.54: Todoist, DoorBird, Abode cameras</a>
141144
</li>
@@ -148,9 +151,6 @@ <h1 class="title delta">Recent Posts</h1>
148151
<li class="post">
149152
<a href="/blog/2017/08/26/release-0-52/">0.52: Scripts editor, Nello.io locks, HipChat and Abode Home Security</a>
150153
</li>
151-
<li class="post">
152-
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
153-
</li>
154154
</ul>
155155
</section>
156156
</div>

blog/2015/03/01/home-assistant-migrating-to-yaml/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,9 @@ <h1 class="title delta">Share this post</h1>
130130
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
131131
<h1 class="title delta">Recent Posts</h1>
132132
<ul class="divided">
133+
<li class="post">
134+
<a href="/blog/2017/09/26/new-hassio-build-system/">Improved Hass.io build system</a>
135+
</li>
133136
<li class="post">
134137
<a href="/blog/2017/09/23/release-54/">0.54: Todoist, DoorBird, Abode cameras</a>
135138
</li>
@@ -142,9 +145,6 @@ <h1 class="title delta">Recent Posts</h1>
142145
<li class="post">
143146
<a href="/blog/2017/08/26/release-0-52/">0.52: Scripts editor, Nello.io locks, HipChat and Abode Home Security</a>
144147
</li>
145-
<li class="post">
146-
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
147-
</li>
148148
</ul>
149149
</section>
150150
</div>

blog/2015/03/08/new-logo/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,9 @@ <h1 class="title delta">Share this post</h1>
133133
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
134134
<h1 class="title delta">Recent Posts</h1>
135135
<ul class="divided">
136+
<li class="post">
137+
<a href="/blog/2017/09/26/new-hassio-build-system/">Improved Hass.io build system</a>
138+
</li>
136139
<li class="post">
137140
<a href="/blog/2017/09/23/release-54/">0.54: Todoist, DoorBird, Abode cameras</a>
138141
</li>
@@ -145,9 +148,6 @@ <h1 class="title delta">Recent Posts</h1>
145148
<li class="post">
146149
<a href="/blog/2017/08/26/release-0-52/">0.52: Scripts editor, Nello.io locks, HipChat and Abode Home Security</a>
147150
</li>
148-
<li class="post">
149-
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
150-
</li>
151151
</ul>
152152
</section>
153153
</div>

blog/2015/03/11/release-notes/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,9 @@ <h1 class="title delta">Share this post</h1>
158158
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
159159
<h1 class="title delta">Recent Posts</h1>
160160
<ul class="divided">
161+
<li class="post">
162+
<a href="/blog/2017/09/26/new-hassio-build-system/">Improved Hass.io build system</a>
163+
</li>
161164
<li class="post">
162165
<a href="/blog/2017/09/23/release-54/">0.54: Todoist, DoorBird, Abode cameras</a>
163166
</li>
@@ -170,9 +173,6 @@ <h1 class="title delta">Recent Posts</h1>
170173
<li class="post">
171174
<a href="/blog/2017/08/26/release-0-52/">0.52: Scripts editor, Nello.io locks, HipChat and Abode Home Security</a>
172175
</li>
173-
<li class="post">
174-
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
175-
</li>
176176
</ul>
177177
</section>
178178
</div>

blog/2015/03/22/release-notes/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,9 @@ <h1 class="title delta">Share this post</h1>
194194
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
195195
<h1 class="title delta">Recent Posts</h1>
196196
<ul class="divided">
197+
<li class="post">
198+
<a href="/blog/2017/09/26/new-hassio-build-system/">Improved Hass.io build system</a>
199+
</li>
197200
<li class="post">
198201
<a href="/blog/2017/09/23/release-54/">0.54: Todoist, DoorBird, Abode cameras</a>
199202
</li>
@@ -206,9 +209,6 @@ <h1 class="title delta">Recent Posts</h1>
206209
<li class="post">
207210
<a href="/blog/2017/08/26/release-0-52/">0.52: Scripts editor, Nello.io locks, HipChat and Abode Home Security</a>
208211
</li>
209-
<li class="post">
210-
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
211-
</li>
212212
</ul>
213213
</section>
214214
</div>

blog/2015/04/25/release-notes/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,9 @@ <h1 class="title delta">Share this post</h1>
202202
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
203203
<h1 class="title delta">Recent Posts</h1>
204204
<ul class="divided">
205+
<li class="post">
206+
<a href="/blog/2017/09/26/new-hassio-build-system/">Improved Hass.io build system</a>
207+
</li>
205208
<li class="post">
206209
<a href="/blog/2017/09/23/release-54/">0.54: Todoist, DoorBird, Abode cameras</a>
207210
</li>
@@ -214,9 +217,6 @@ <h1 class="title delta">Recent Posts</h1>
214217
<li class="post">
215218
<a href="/blog/2017/08/26/release-0-52/">0.52: Scripts editor, Nello.io locks, HipChat and Abode Home Security</a>
216219
</li>
217-
<li class="post">
218-
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
219-
</li>
220220
</ul>
221221
</section>
222222
</div>

blog/2015/05/09/utc-time-zone-awareness/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,9 @@ <h1 class="title delta">Share this post</h1>
146146
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
147147
<h1 class="title delta">Recent Posts</h1>
148148
<ul class="divided">
149+
<li class="post">
150+
<a href="/blog/2017/09/26/new-hassio-build-system/">Improved Hass.io build system</a>
151+
</li>
149152
<li class="post">
150153
<a href="/blog/2017/09/23/release-54/">0.54: Todoist, DoorBird, Abode cameras</a>
151154
</li>
@@ -158,9 +161,6 @@ <h1 class="title delta">Recent Posts</h1>
158161
<li class="post">
159162
<a href="/blog/2017/08/26/release-0-52/">0.52: Scripts editor, Nello.io locks, HipChat and Abode Home Security</a>
160163
</li>
161-
<li class="post">
162-
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
163-
</li>
164164
</ul>
165165
</section>
166166
</div>

blog/2015/05/14/release-notes/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,9 @@ <h1 class="title delta">Share this post</h1>
216216
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
217217
<h1 class="title delta">Recent Posts</h1>
218218
<ul class="divided">
219+
<li class="post">
220+
<a href="/blog/2017/09/26/new-hassio-build-system/">Improved Hass.io build system</a>
221+
</li>
219222
<li class="post">
220223
<a href="/blog/2017/09/23/release-54/">0.54: Todoist, DoorBird, Abode cameras</a>
221224
</li>
@@ -228,9 +231,6 @@ <h1 class="title delta">Recent Posts</h1>
228231
<li class="post">
229232
<a href="/blog/2017/08/26/release-0-52/">0.52: Scripts editor, Nello.io locks, HipChat and Abode Home Security</a>
230233
</li>
231-
<li class="post">
232-
<a href="/blog/2017/08/12/release-51/">0.51: Massive history speed up, finished automation editor and official vacuum cleaner support</a>
233-
</li>
234234
</ul>
235235
</section>
236236
</div>

0 commit comments

Comments
 (0)