From 391d22ef846d4fa8738fed6e6ca8c9a252f78af0 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Thu, 18 May 2017 22:01:52 +0200 Subject: [PATCH 01/32] remove mnt --- source/hassio/addon_config.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/hassio/addon_config.markdown b/source/hassio/addon_config.markdown index 601d9bfd520..43cf4794f04 100644 --- a/source/hassio/addon_config.markdown +++ b/source/hassio/addon_config.markdown @@ -91,7 +91,7 @@ The config for an add-on is stored in `config.json`. | boot | yes | `auto` by system and manual or only `manual` | ports | no | Network ports to expose from the container. Format is `"container-port/type": host-port`. | devices | no | Device list to map into add-on. Format is: `::` -| map | no | List of maps for additional hass.io folders. Possible values: `config`, `ssl`, `addons`, `backup`, `share`, `mnt`. Default it map it `ro`, you can change that if you add a ":rw" at the end of name. +| map | no | List of maps for additional hass.io folders. Possible values: `config`, `ssl`, `addons`, `backup`, `share`. Default it map it `ro`, you can change that if you add a ":rw" at the end of name. | environment | no | A dict of environment variable to run add-on. | options | yes | Default options value of the add-on | schema | yes | Schema for options value of the add-on From 492c0a9cf4dc23b2784528318e14edd4d89ba4d8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 17 May 2017 07:24:29 +0200 Subject: [PATCH 02/32] Remove blank line --- source/_components/opencv.markdown | 1 - 1 file changed, 1 deletion(-) diff --git a/source/_components/opencv.markdown b/source/_components/opencv.markdown index ab98fadc783..0ea2dcc9f81 100644 --- a/source/_components/opencv.markdown +++ b/source/_components/opencv.markdown @@ -23,7 +23,6 @@ To setup OpenCV with Home Assistant, add the following section to your `configur ```yaml # Example configuration.yaml entry - opencv: classifier_group: - name: Family From 7b33501b308da2c58a770f2b6c97efecaa646113 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 17 May 2017 07:32:25 +0200 Subject: [PATCH 03/32] Add link to OpenALPR's wiki and add line break --- .../_components/image_processing.openalpr_local.markdown | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/source/_components/image_processing.openalpr_local.markdown b/source/_components/image_processing.openalpr_local.markdown index b41a691f434..76e00486710 100644 --- a/source/_components/image_processing.openalpr_local.markdown +++ b/source/_components/image_processing.openalpr_local.markdown @@ -22,17 +22,20 @@ For using inside automation look on [component](/components/image_processing) pa If you want process all data locally, you need version 2.3.1 or higher of the `alpr` commandline tool. -If you don't find binaries for your distribution you can compile from source. Documention of how to build openalpr is found [here](https://github.com/openalpr/openalpr/wiki). +If you don't find binaries for your distribution you can compile from source. Documention of how to build OpenALPR is found [here](https://github.com/openalpr/openalpr/wiki). On a Debian system you can use this `cmake` command to build only the command line tool: ```bash -$ cmake -DWITH_TEST=FALSE -DWITH_BINDING_JAVA=FALSE --DWITH_BINDING_PYTHON=FALSE --DWITH_BINDING_GO=FALSE -DWITH_DAEMON=FALSE -DCMAKE_INSTALL_PREFIX:PATH=/usr .. +$ cmake -DWITH_TEST=FALSE -DWITH_BINDING_JAVA=FALSE --DWITH_BINDING_PYTHON=FALSE \ + --DWITH_BINDING_GO=FALSE -DWITH_DAEMON=FALSE -DCMAKE_INSTALL_PREFIX:PATH=/usr .. ``` +For other operating system please refer to the [OpenALPR wiki](https://github.com/openalpr/openalpr/wiki). + Verify your `alpr` installation with: -``` +```bash $ wget -O- -q http://plates.openalpr.com/h786poj.jpg | alpr - ``` From b111adb1c30040efe69d8502d40fd47240c81339 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 17 May 2017 09:49:32 +0200 Subject: [PATCH 04/32] Add link to configuration docs --- source/_components/notify.file.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_components/notify.file.markdown b/source/_components/notify.file.markdown index b2c3a07d051..0061b31f003 100644 --- a/source/_components/notify.file.markdown +++ b/source/_components/notify.file.markdown @@ -28,7 +28,7 @@ notify: Configuration variables: - **name** (*Optional*): Setting the optional parameter `name` allows multiple notifiers to be created. The default value is `notify`. The notifier will bind to the service `notify.NOTIFIER_NAME`. -- **filename** (*Required*): Name of the file to use. The file will be created if it doesn't exist and saved in your `config/` folder. +- **filename** (*Required*): Name of the file to use. The file will be created if it doesn't exist and saved in your [configuration](/docs/configuration/) folder. - **timestamp** (*Optional*): Setting `timestamp` to `True` adds a timestamp to every entry. To use notifications, please see the [getting started with automation page](/getting-started/automation/). From 05fbf174b7185ca4a9edae13969046a3e13e37fe Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 18 May 2017 18:11:30 -0700 Subject: [PATCH 05/32] Add pycon post --- ...9-home-assistant-at-pycon-us-2017.markdown | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 source/_posts/2017-05-19-home-assistant-at-pycon-us-2017.markdown diff --git a/source/_posts/2017-05-19-home-assistant-at-pycon-us-2017.markdown b/source/_posts/2017-05-19-home-assistant-at-pycon-us-2017.markdown new file mode 100644 index 00000000000..57b2a18812a --- /dev/null +++ b/source/_posts/2017-05-19-home-assistant-at-pycon-us-2017.markdown @@ -0,0 +1,19 @@ +--- +layout: post +title: "Home Assistant at PyCon US 2017" +description: "A bunch of our developers and users will be at PyCon US 2017." +date: 2017-05-19 03:00:00 +date_formatted: "May 19, 2017" +author: Paulus Schoutsen +author_twitter: balloob +comments: true +categories: Community +--- + +In just 12 hours PyCon US 2017 starts. This is an exciting conference because there will be a bunch of Home Assistant developers and users there being able to meet in person. + +Just like last year, we'll be hosting a [Home Assistant Open Space](https://us.pycon.org/2017/events/open-spaces/). Please stop by to ask any questions you have to the available developers. We haven't reserved a slot yet but will do so tomorrow. We'll update this post and announce it on social media as we know time and location. + +We will also be taken part in the [development sprints](https://us.pycon.org/2017/community/sprints/) from Monday-Wednesday. You only need to bring a laptop. We'll help you get set up with a dev environment and you can be coding on top of Home Assistant in no time. Exact location inside the conference center to be announced. + +On a final note, the Home Assistant community is very very active so don't take it personal if we don't remember your name, issue or contribution. From 2eaeef397c498be4d5d0259b6a7d86c1565a506a Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 18 May 2017 18:12:22 -0700 Subject: [PATCH 06/32] Update date --- .../_posts/2017-05-19-home-assistant-at-pycon-us-2017.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_posts/2017-05-19-home-assistant-at-pycon-us-2017.markdown b/source/_posts/2017-05-19-home-assistant-at-pycon-us-2017.markdown index 57b2a18812a..dfd2742ed1d 100644 --- a/source/_posts/2017-05-19-home-assistant-at-pycon-us-2017.markdown +++ b/source/_posts/2017-05-19-home-assistant-at-pycon-us-2017.markdown @@ -2,7 +2,7 @@ layout: post title: "Home Assistant at PyCon US 2017" description: "A bunch of our developers and users will be at PyCon US 2017." -date: 2017-05-19 03:00:00 +date: 2017-05-19 00:00:01 date_formatted: "May 19, 2017" author: Paulus Schoutsen author_twitter: balloob From 0e75a4f5539a0eaec9e2261b6362adc266f3beb3 Mon Sep 17 00:00:00 2001 From: Aubin Paul Date: Fri, 19 May 2017 02:57:30 -0400 Subject: [PATCH 07/32] Link to the English Play Store (#2658) I suggest this links to the English version of the app since this is the English wiki --- source/_components/notify.nfandroidtv.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_components/notify.nfandroidtv.markdown b/source/_components/notify.nfandroidtv.markdown index b620f23a169..90b204dcfd0 100644 --- a/source/_components/notify.nfandroidtv.markdown +++ b/source/_components/notify.nfandroidtv.markdown @@ -13,7 +13,7 @@ ha_release: 0.32 --- -Notification platform for [Notifications for Android TV](https://play.google.com/store/apps/details?id=de.cyberdream.androidtv.notifications.google&hl=de) and [Notifications for FireTV](https://play.google.com/store/apps/details?id=de.cyberdream.firenotifications.google). +Notification platform for [Notifications for Android TV](https://play.google.com/store/apps/details?id=de.cyberdream.androidtv.notifications.google&hl=en) and [Notifications for FireTV](https://play.google.com/store/apps/details?id=de.cyberdream.firenotifications.google). The notifications are in the global scope of your Android TV device. They will be displayed regardless of which application is running. The In-App purchases only apply to the client for Android smartphones, so there isn't any limit when pushing notifications from Home Assistant. From e0ab75a8cb2145a6a8f52eb72a14ec2fc558df24 Mon Sep 17 00:00:00 2001 From: Andreas Ahrens Date: Fri, 19 May 2017 08:58:17 +0200 Subject: [PATCH 08/32] Update media_player.markdown (#2656) Changed shuffle_set from 'source' to 'shuffle' --- source/_components/media_player.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_components/media_player.markdown b/source/_components/media_player.markdown index b34b849927a..bd8054caa3d 100644 --- a/source/_components/media_player.markdown +++ b/source/_components/media_player.markdown @@ -71,4 +71,4 @@ Currently only supports Spotify. | Service data attribute | Optional | Description | | ---------------------- | -------- | ---------------------------------------------------- | | `entity_id` | no | Target a specific media player. For example `media_player.spotify`| -| `source` | no | `true`/`false` for enabling/disabling shuffle | +| `shuffle` | no | `true`/`false` for enabling/disabling shuffle | From 45a21d5c689aa57d37b97ff16c97a9f716642141 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 19 May 2017 10:16:09 +0200 Subject: [PATCH 09/32] Add maintenance --- source/_includes/asides/developers_navigation.html | 1 + 1 file changed, 1 insertion(+) diff --git a/source/_includes/asides/developers_navigation.html b/source/_includes/asides/developers_navigation.html index d7cfb876d3e..516c131a12f 100644 --- a/source/_includes/asides/developers_navigation.html +++ b/source/_includes/asides/developers_navigation.html @@ -87,6 +87,7 @@
  • {% active_link /developers/multiple_instances/ Multiple Instances %}
  • {% active_link /developers/website/ Home-Assistant.io %}
  • {% active_link /developers/releasing/ Releasing %}
  • +
  • {% active_link /developers/maintenance/ Maintenance %}
  • Governance