mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-21 16:27:19 +00:00
Merge branch 'current' into next
This commit is contained in:
commit
922c88129d
@ -142,13 +142,13 @@ social:
|
||||
|
||||
# Home Assistant release details
|
||||
current_major_version: 0
|
||||
current_minor_version: 47
|
||||
current_patch_version: 1
|
||||
date_released: 2017-06-21
|
||||
current_minor_version: 48
|
||||
current_patch_version: 0
|
||||
date_released: 2017-07-02
|
||||
|
||||
# Either # or the anchor link to latest release notes in the blog post.
|
||||
# Must be prefixed with a # and have double quotes around it.
|
||||
# Major release:
|
||||
patch_version_notes: "#release-0471---june-21"
|
||||
patch_version_notes: "#"
|
||||
# Minor release (Example #release-0431---april-25):
|
||||
|
||||
|
@ -14,6 +14,16 @@
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: $palm-end) {
|
||||
#components-page {
|
||||
.hass-option-cards {
|
||||
.option-card {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: $lap-end) {
|
||||
#components-page {
|
||||
.filter-button-group {
|
||||
|
@ -1,5 +1,47 @@
|
||||
@charset "UTF-8";
|
||||
|
||||
$primary-color: #049cdb;
|
||||
|
||||
.site-header {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.search-container {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: white;
|
||||
padding-top: 19px;
|
||||
padding-right: 15%;
|
||||
|
||||
.search {
|
||||
max-width: 500px;
|
||||
width: 100%;
|
||||
border-bottom: 2px solid $primary-color;
|
||||
float: right;
|
||||
|
||||
.algolia-autocomplete {
|
||||
width: calc(100% - 58px);
|
||||
margin: 0 10px;
|
||||
}
|
||||
|
||||
input {
|
||||
border: 0;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: $menu-collapse) {
|
||||
.search-container {
|
||||
z-index: 20;
|
||||
padding-right: 5px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.hero {
|
||||
background-color: #038FC7;
|
||||
padding-bottom: 0;
|
||||
|
@ -81,13 +81,19 @@ header .grid {
|
||||
font-weight: normal;
|
||||
font-size: 14px;
|
||||
line-height: 1;
|
||||
|
||||
&.show-search {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.menu > li > a:hover, .menu > li > a:focus{
|
||||
background: $site-background;
|
||||
box-shadow: inset 0px 5px $navigation-color;
|
||||
color: $navigation-color;
|
||||
padding: 40px 12px 24px;
|
||||
padding-top: 40px;
|
||||
padding-bottom: 24px;
|
||||
}
|
||||
|
||||
.toggle{
|
||||
|
@ -11,6 +11,10 @@ footer: true
|
||||
|
||||
Setup and manage a [Dnsmasq](http://thekelleys.org.uk/dnsmasq/doc.html) dns server. This allow your to manipulate some dns requests. I.e. that inside your network, your homeassistant domain will resolve with a internal address.
|
||||
|
||||
<p class='note info'>
|
||||
`interface` options are for resinos based installation. On other system you can set it to `""`, for listen on every interface.
|
||||
</p>
|
||||
|
||||
```json
|
||||
{
|
||||
"defaults": ["8.8.8.8", "8.8.4.4"],
|
||||
|
@ -17,6 +17,7 @@ This add-on need port 80/443 to verify the certificate request, please stop all
|
||||
|
||||
```json
|
||||
{
|
||||
"challenge": "https",
|
||||
"email": "example@example.com",
|
||||
"domains": ["example.com", "mqtt.example.com", "hass.example.com"]
|
||||
}
|
||||
@ -24,6 +25,7 @@ This add-on need port 80/443 to verify the certificate request, please stop all
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **challenge** (*Optional*): Default it use 443 ('https') you can change it to 'http' for use port 80.
|
||||
- **email** (*Required*): Your email address for registration on Let's Encrypt.
|
||||
- **domains** (*Required*): A list of domains to create/renew the certificate.
|
||||
|
||||
|
55
source/_addons/mariadb.markdown
Normal file
55
source/_addons/mariadb.markdown
Normal file
@ -0,0 +1,55 @@
|
||||
---
|
||||
layout: page
|
||||
title: "MariaDB"
|
||||
description: "MariaDB Server is one of the most popular database servers in the world."
|
||||
date: 2017-04-30 13:28
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
---
|
||||
|
||||
Set up a [mariadb](https://mariadb.org/) SQL server. It support multible database, users and permission. If you want only connect from inside use `172.17.0.1` as host address.
|
||||
|
||||
```json
|
||||
{
|
||||
"databases": ["homeassistant"],
|
||||
"logins": [
|
||||
{
|
||||
"username": "hass",
|
||||
"host": "172.17.0.1",
|
||||
"password": "securePassword"
|
||||
}
|
||||
],
|
||||
"rights": [
|
||||
{
|
||||
"username": "hass",
|
||||
"host": "172.17.0.1",
|
||||
"database": "homeassistant",
|
||||
"grant": "ALL PRIVILEGES ON"
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **databases** (*Require*): Listen of databases.
|
||||
- **logins** (*Require*): Listen of logindata they will create or update.
|
||||
- **username** (*Require*): Username for login.
|
||||
- **host** (*Require*): Host for login, if you need a login with multibe hosts, use '%'.
|
||||
- **password** (*Require*): Password for login.
|
||||
- **rights** (*Require*): Listen of rights to be handle.
|
||||
- **username** (*Require*): Username for grant rights.
|
||||
- **host** (*Require*): Host is a part of username like above.
|
||||
- **database** (*Require*): Database name to grant this user rights to.
|
||||
- **grant** (*Require*): SQL grant part for access too.
|
||||
|
||||
## {% linkable_title Home Assistant configuration %}
|
||||
|
||||
Use the following configuration in Home Assistant to use the database above:
|
||||
|
||||
```yaml
|
||||
recorder:
|
||||
db_url: mysql://hass:securePassword@127.0.0.1/homeassistant
|
||||
```
|
@ -13,6 +13,7 @@ This allows you to set up a [Samba](https://samba.org/) server to access hass.io
|
||||
|
||||
```json
|
||||
{
|
||||
"name": "hassio",
|
||||
"workgroup": "WORKGROUP",
|
||||
"guest": true,
|
||||
"map_config": true,
|
||||
@ -25,6 +26,7 @@ This allows you to set up a [Samba](https://samba.org/) server to access hass.io
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **name** (*Optional*): default `hassio`. Set netbios name of hassio device.
|
||||
- **workgroup** (*Optional*): default `WORKGROUP`. Set network workgroup.
|
||||
- **guest** (*Optional*): Allow login without a username or password. Defaults to `true`.
|
||||
- **map_config** (*Optional*): Expose Home Assistant configuration folder. Defaults to `true`.
|
||||
|
@ -35,3 +35,12 @@ If you're coming from Rasbian or similar, use `root` rather than `pi` when conne
|
||||
Permission denied (publickey,keyboard-interactive)
|
||||
```
|
||||
</p>
|
||||
|
||||
<p class='note'>
|
||||
If you install this addon you can use `sshfs` as well to access files from a remote system where you have git and your favourite editing tools installed.
|
||||
|
||||
```bash
|
||||
$ mkdir ~/ha_config
|
||||
$ sshfs -o allow_other,defer_permissions root@h[your_hassio_ip]:/config ~/ha_config
|
||||
```
|
||||
</p>
|
||||
|
@ -23,7 +23,7 @@ Home Assistant will automatically discover their presence on your network.
|
||||
$ sudo apt-get install python3-gi gir1.2-gstreamer-1.0
|
||||
```
|
||||
|
||||
Depending on how you run Home Assistant you might be needed to symlink the `gi` module into your environment.
|
||||
Depending on how you run Home Assistant, you may need to symlink the `gi` module into your environment.
|
||||
|
||||
Hassbian:
|
||||
|
||||
|
@ -33,6 +33,7 @@ Configuration variables:
|
||||
- **payload_on** (*Optional*): The payload that represents enabled state. Default is "ON".
|
||||
- **payload_off** (*Optional*): The payload that represents disabled state. Default is "OFF".
|
||||
- **value_template** (*Optional*): Defines a [template](/docs/configuration/templating/#processing-incoming-data) to extract a value from the payload.
|
||||
- **scan_interval** (*Optional*): Defines number of seconds for polling interval (defaults to 60 seconds).
|
||||
|
||||
## {% linkable_title Examples %}
|
||||
|
||||
|
15
source/_components/binary_sensor.verisure.markdown
Normal file
15
source/_components/binary_sensor.verisure.markdown
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Verisure Binary Sensor"
|
||||
description: "Instructions how to integrate Verisure binary sensors into Home Assistant."
|
||||
date: 2016-02-23 21:31 +0100
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: verisure.png
|
||||
ha_category: Binary Sensor
|
||||
ha_iot_class: "Cloud Polling"
|
||||
---
|
||||
|
||||
Integrates Verisure binary sensors into Home Assistant. See the [main component](/components/verisure/) for configuration instructions.
|
@ -36,9 +36,9 @@ Once loaded, your front end will have the following components:
|
||||
* A camera image for each camera in your system.
|
||||
* A binary_sensor per camera that indicates whether motion detection is enabled.
|
||||
* A binary_sensor for the system that indicates if the system is armed or disarmed.
|
||||
* A sesnor per camera that reports temperature.
|
||||
* A sensor per camera that reports temperature.
|
||||
* A sensor per camera that reports battery level.
|
||||
* A sensor per camera that reports unread notification (ie. detected motion events).
|
||||
* A sensor per camera that reports unread notification (i.e., detected motion events).
|
||||
|
||||
Since the cameras are battery operated, the images are only updated in Home Assistant when the user manually forces a new photo. This image can be updated with the `snap_picture` service to force Home Assistant to request an update from Blink's servers. As a note, all of the camera-specific sensors are only polled when a new image is requested from the camera. This means that relying on any of these sensors to provide timely and accurate data is not recommended.
|
||||
|
||||
@ -59,7 +59,7 @@ For `arm_system`, the value sent can be either `True` or `False` and will arm an
|
||||
}
|
||||
```
|
||||
|
||||
Arm camera follows a similar structure, but each indidivual camera can have motion detection enabled or disabled. Because of this, you also need to supply a name. For example, if you have a camera named "Living Room" and you want to turn off motion detection on that camera, you would call the `arm_camera` service with the following payload:
|
||||
Arm camera follows a similar structure, but each individual camera can have motion detection enabled or disabled. Because of this, you also need to supply a name. For example, if you have a camera named "Living Room" and you want to turn off motion detection on that camera, you would call the `arm_camera` service with the following payload:
|
||||
|
||||
```json
|
||||
{
|
||||
|
@ -8,7 +8,7 @@ comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: knx.png
|
||||
ha_category: DIY
|
||||
ha_category: Climate
|
||||
ha_release: 0.25
|
||||
ha_iot_class: "Local Polling"
|
||||
---
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
layout: page
|
||||
title: "eQ-3 MAX! Cube binary sensors"
|
||||
title: "eQ-3 MAX! Cube thermostat"
|
||||
description: "Instructions on how to integrate eQ-3 MAX! components with Home Assistant via eQ-3 MAX! Cube."
|
||||
date: 2017-02-04 22:00
|
||||
sidebar: true
|
||||
|
55
source/_components/comfoconnect.markdown
Normal file
55
source/_components/comfoconnect.markdown
Normal file
@ -0,0 +1,55 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Zehnder ComfoAir Q Ventilation"
|
||||
description: "Instructions how to integrate Zehnder ComfoAir Q350/450/600 ventilation systems into Home Assistant."
|
||||
date: 2017-06-28 18:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: zehnder.png
|
||||
ha_category: Hub
|
||||
ha_release: "0.48"
|
||||
---
|
||||
|
||||
The `comfoconnect` component lets you control Zehnder ComfoAir [Q350](http://www.international.zehnder-systems.com/products-and-systems/comfosystems/zehnder-comfoair-q350-st)/[450](http://www.international.zehnder-systems.com/products-and-systems/comfosystems/zehnder-comfoair-q450-st)/[600](http://www.international.zehnder-systems.com/products-and-systems/comfosystems/zehnder-comfoair-q600-st)
|
||||
ventilation units from Home Assistant. You need a [ComfoConnect LAN C](http://www.zehnder.co.uk/products-and-systems/comfortable-indoor-ventilation/ms-comfoair-q/ideal-control#node-21233)
|
||||
bridge to connect the unit to your local network.
|
||||
|
||||
There is an official iPhone and Android app to configure and control your unit. This platform connects with the help of
|
||||
the unofficial [pycomfoconnect](https://github.com/michaelarnauts/comfoconnect) library.
|
||||
|
||||
The component has a fan platform to view and control the ventilation speed, and a sensors platform to read out the outdoor temperature and humidity, the indoor temperature and humidity, and the extract and supply air flow (in m³ per hour).
|
||||
|
||||
To set it up, add the following information to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
comfoconnect:
|
||||
host: 192.168.1.213
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **host** (*Required*): The ip or hostname of the ComfoConnect LAN C bridge.
|
||||
- **name** (*Optional*): The name of this device as you want to see it in Home Assistant.
|
||||
- **token** (*Optional*): The token you want to use when registering with the device. This is a random 32 char hexadecimal string. The default value is `00000000000000000000000000000001`.
|
||||
- **user_agent** (*Optional*): The name you want to supply when registering with the device. The default value is `Home Assistant`.
|
||||
- **pin** (*Optional*): The pin code to use when registering. This is `0000` by default. You only need to change this if you have changed the factory default pin.
|
||||
|
||||
To register the sensors, add the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
sensor:
|
||||
- platform: comfoconnect
|
||||
resources:
|
||||
- current_temperature
|
||||
- current_humidity
|
||||
- outside_temperature
|
||||
- outside_humidity
|
||||
- air_flow_supply
|
||||
- air_flow_exhaust
|
||||
```
|
||||
|
||||
<p class='note'>
|
||||
Note that it's not possible to have multiple connection to the bridge at the same time. This component will keep the connection open, and if you open the app, it will ask you to disconnect Home Assistant. If you close the app again, Home Assistant will reconnect automatically.
|
||||
</p>
|
@ -16,20 +16,23 @@ ha_release: 0.7.5
|
||||
A lot WiFi access points and WiFi routers support the Simple Network Management Protocol (SNMP). This is a standardized method for monitoring/manageing network connected devices. SNMP uses a tree-like hierarchy where each node is an object. Many of these objects contain (live) lists of insances and metrics, like network interfaces, disks, and wifi registrations.
|
||||
|
||||
<p class='note warning'>
|
||||
This device tracker needs SNMP to be enabled on the router.
|
||||
This device tracker needs SNMP to be enabled on the router. It could be that you need to install the SNMP support manually.
|
||||
</p>
|
||||
|
||||
OID examples:
|
||||
|
||||
- Mikrotik: `1.3.6.1.4.1.14988.1.1.1.2.1.1` (confirmed, unknown RouterOS version/model)
|
||||
- Mikrotik: `1.3.6.1.2.1.4.22.1.2` (confirmed, RouterOS 6.x on RB2011)
|
||||
- Aruba: `1.3.6.1.4.1.14823.2.3.3.1.2.4.1.2` (untested)
|
||||
- BiPAC 7800DXL: `1.3.6.1.2.1.17.7.1.2.2.1.1` (confirmed on firmware 2.32e)
|
||||
- OpenWrt: `1.3.6.1.2.1.4.22.1.2` (tested on Chaos Calmer 15.05 firmware, need to install snmpd package)
|
||||
- pfSense: `1.3.6.1.2.1.4.22.1.2` (tested on 2.2.4-RELEASE, need to enable SNMP service)
|
||||
- TPLink: `1.3.6.1.2.1.3.1.1.2.19.1` (Archer VR2600v, need to enable SNMP service)
|
||||
- EdgeRouter `1.3.6.1.2.1.4.22.1.2` (EdgeRouter Lite v1.9.0, need to enable SNMP service)
|
||||
- Ruckus: `1.3.6.1.4.1.25053.1.2.2.1.1.3.1.1.1.6` (Ruckus ZoneDirector, tested on 9.13.3)
|
||||
| Brand | Device/Firmware | OID |
|
||||
|---|---|---|---|
|
||||
| Mikrotik | unknown RouterOS version/model | `1.3.6.1.4.1.14988.1.1.1.2.1.1` |
|
||||
| Mikrotik | RouterOS 6.x on RB2011 | `1.3.6.1.2.1.4.22.1.2` |
|
||||
| Aruba | (untested) | `1.3.6.1.4.1.14823.2.3.3.1.2.4.1.2` |
|
||||
| pfSense | 2.2.4 | `1.3.6.1.2.1.4.22.1.2` |
|
||||
| BiPAC | 7800DXL Firmware 2.32e | `1.3.6.1.2.1.17.7.1.2.2.1.1` |
|
||||
| OpenWrt | Chaos Calmer 15.05 | `1.3.6.1.2.1.4.22.1.2` |
|
||||
| TP-Link | Archer VR2600v | `1.3.6.1.2.1.3.1.1.2.19.1` |
|
||||
| TP-Link | Archer VR600 | `1.3.6.1.2.1.3.1.1.2` |
|
||||
| EdgeRouter | Lite v1.9.0 | `1.3.6.1.2.1.4.22.1.2` |
|
||||
| Ruckus | ZoneDirector 9.13.3 | `1.3.6.1.4.1.25053.1.2.2.1.1.3.1.1.1.6` |
|
||||
|
||||
To use the SNMP version 1 platform in your installation, add the following to your `configuration.yaml` file:
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Zehnder ComfoAir Q Ventilation"
|
||||
description: "Instructions how to integrate Zehnder ComfoAir Q350/450/600 ventilation systems into Home Assistant."
|
||||
title: "Zehnder ComfoAir Q Ventilation fans"
|
||||
description: "Instructions how to integrate Zehnder ComfoAir Q350/450/600 fans into Home Assistant."
|
||||
date: 2017-06-28 18:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
@ -12,45 +12,6 @@ ha_category: Fan
|
||||
ha_release: "0.48"
|
||||
---
|
||||
|
||||
The `comfoconnect` component lets you control Zehnder ComfoAir [Q350](http://www.international.zehnder-systems.com/products-and-systems/comfosystems/zehnder-comfoair-q350-st)/[450](http://www.international.zehnder-systems.com/products-and-systems/comfosystems/zehnder-comfoair-q450-st)/[600](http://www.international.zehnder-systems.com/products-and-systems/comfosystems/zehnder-comfoair-q600-st)
|
||||
ventilation units from Home Assistant. You need a [ComfoConnect LAN C](http://www.zehnder.co.uk/products-and-systems/comfortable-indoor-ventilation/ms-comfoair-q/ideal-control#node-21233)
|
||||
bridge to connect the unit to your local network.
|
||||
Please see the [main component] for information how to set it up.
|
||||
|
||||
There is an official iPhone and Android app to configure and control your unit. This platform connects with the help of
|
||||
the unofficial [pycomfoconnect](https://github.com/michaelarnauts/comfoconnect) library.
|
||||
|
||||
The component has a fan platform to view and control the ventilation speed, and a sensors platform to read out the outdoor temperature and humidity, the indoor temperature and humidity, and the extract and supply air flow (in m³ per hour).
|
||||
|
||||
To set it up, add the following information to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
climate:
|
||||
- platform: comfoconnect
|
||||
host: 192.168.1.213
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **host** (*Required*): The ip or hostname of the ComfoConnect LAN C bridge.
|
||||
- **name** (*Optional*): The name of this device as you want to see it in Home Assistant.
|
||||
- **token** (*Optional*): The token you want to use when registering with the device. This is a random 32 char hexadecimal string. The default value is `00000000000000000000000000000001`.
|
||||
- **user_agent** (*Optional*): The name you want to supply when registering with the device. The default value is `Home Assistant`.
|
||||
- **pin** (*Optional*): The pin code to use when registering. This is `0000` by default. You only need to change this if you have changed the factory default pin.
|
||||
|
||||
To register the sensors, add the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
sensor:
|
||||
- platform: comfoconnect
|
||||
resources:
|
||||
- current_temperature
|
||||
- current_humidity
|
||||
- outside_temperature
|
||||
- outside_humidity
|
||||
- air_flow_supply
|
||||
- air_flow_exhaust
|
||||
```
|
||||
|
||||
<p class='note'>
|
||||
Note that it's not possible to have multiple connection to the bridge at the same time. This component will keep the connection open, and if you open the app, it will ask you to disconnect Home Assistant. If you close the app again, Home Assistant will reconnect automatically.
|
||||
</p>
|
||||
[main component]: /components/comfoconnect/
|
||||
|
@ -59,7 +59,7 @@ Configuration variables:
|
||||
- **view** (*Optional*): If yes then the entry will be shown as a view (tab) at the top.
|
||||
- **name** (*Optional*): Name of the group.
|
||||
- **icon** (*Optional*): If the group is a view, this icon will show at the top in the frontend instead of the name. If it's not a view, then the icon shows when this group is used in another group.
|
||||
- **control** (*Optional*): If hidden then the group switch will be hidden.
|
||||
- **control** (*Optional*): Set value to `hidden`. If hidden then the group switch will be hidden.
|
||||
- **entities** (*Required*): array or comma delimited string, list of entities to group.
|
||||
|
||||
<p class='img'>
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Home Assistant 0.47"
|
||||
title: "Home Assistant 0.48"
|
||||
description: ""
|
||||
date: 2016-12-16 17:00
|
||||
sidebar: true
|
||||
@ -9,7 +9,7 @@ sharing: true
|
||||
footer: true
|
||||
logo: home-assistant.png
|
||||
ha_category: Other
|
||||
ha_release: 0.47
|
||||
ha_release: 0.48
|
||||
---
|
||||
|
||||
Details about the latest release can always be found at:
|
||||
|
@ -43,6 +43,10 @@ Configuration variables:
|
||||
|
||||
Pick an icon that you can find on [materialdesignicons.com](https://materialdesignicons.com/) to use for your input and prefix the name with `mdi:`. For example `mdi:car`, `mdi:ambulance`, or `mdi:motorbike`.
|
||||
|
||||
<p class='note'>
|
||||
Because YAML defines [booleans](http://yaml.org/type/bool.html) as equivalent, any variations of 'On', 'Yes', 'Y', 'Off', 'No', or 'N' (regardless of case) used as option names will be replaced by True and False unless they are defined in quotation marks.
|
||||
</p>
|
||||
|
||||
### {% linkable_title Services %}
|
||||
|
||||
This components provide three services to modify the state of the `input_select`:
|
||||
|
@ -8,7 +8,7 @@ comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: knx.png
|
||||
ha_category: DIY
|
||||
ha_category: Light
|
||||
ha_release: 0.44
|
||||
ha_iot_class: "Local Polling"
|
||||
---
|
||||
|
@ -13,8 +13,7 @@ ha_iot_class: "Local Polling"
|
||||
ha_release: 0.7.2
|
||||
---
|
||||
|
||||
|
||||
The `denon` platform allows you to control a [Denon Network Receivers](http://www.denon.co.uk/chg/product/compactsystems/networkmusicsystems/ceolpiccolo) from Home Assistant.
|
||||
The `denon` platform allows you to control a [Denon Network Receivers](http://www.denon.co.uk/chg/product/compactsystems/networkmusicsystems/ceolpiccolo) from Home Assistant. It might be that your device is supported by the [Denon AVR] platform.
|
||||
|
||||
Supported devices:
|
||||
|
||||
@ -22,22 +21,6 @@ Supported devices:
|
||||
- Denon RCD-N8 (untested)
|
||||
- Denon RCD-N9 (partial support)
|
||||
- Denon AVR receivers with integrated Network support (partial support)
|
||||
- Denon AVR-X2000 (via denonavr platform)
|
||||
- Denon AVR-X2100W (via denonavr platform)
|
||||
- Denon AVR-X4100W (via denonavr platform)
|
||||
- Denon AVR-1912 (via denonavr platform)
|
||||
- Denon AVR-2312CI (via denonavr platform)
|
||||
- Denon AVR-3311CI (via denonavr platform)
|
||||
- Marantz M-CR603 (via denonavr platform)
|
||||
- Marantz M-RC610 (via denonavr platform)
|
||||
- Marantz SR5008 (via denonavr platform)
|
||||
- Marantz NR1604 (via denonavr platform)
|
||||
- Other Denon AVR receivers (via denonavr platform (untested))
|
||||
- Marantz receivers (experimental via denonavr platform)
|
||||
|
||||
<pre class='note'>
|
||||
If you have something else using the IP controller for your Denon AVR 3808CI, such as your URC controller, it will not work! There is either a bug or security issue with some models where only one device could be controlling the IP functionality.
|
||||
</pre>
|
||||
|
||||
To add a Denon Network Receiver to your installation, add the following to your `configuration.yaml` file:
|
||||
|
||||
@ -55,36 +38,11 @@ Configuration variables:
|
||||
- **name** (*Optional*): Name of the device.
|
||||
|
||||
A few notes for platform: denon
|
||||
|
||||
- The receiver handles only one telnet connection and refuses others.
|
||||
- Be careful with the volume. 100% or even 50% is very loud.
|
||||
- To be able to wake up the receiver, activate the "remote" setting in the receiver's settings.
|
||||
- Play and pause are supported, toggling is not possible.
|
||||
- Seeking cannot be implemented as the UI sends absolute positions. Only seeking via simulated button presses is possible.
|
||||
|
||||
|
||||
**denonavr platform**
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
media_player:
|
||||
- platform: denonavr
|
||||
host: IP_ADDRESS
|
||||
name: NAME
|
||||
show_all_sources: True / False
|
||||
zones:
|
||||
- zone: Zone2 / Zone3
|
||||
name: NAME
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **host** (*Optional*): IP address of the device. Example: 192.168.1.32. If not set, auto discovery is used.
|
||||
- **name** (*Optional*): Name of the device. If not set, friendlyName of receiver is used.
|
||||
- **show_all_sources** (*Optional*): If True all sources are displayed in sources list even if they are marked as deleted in the receiver. If False deleted sources are not displayed (default). Some receivers have a bug that marks all sources as deleted in the interface. In this case this option could help.
|
||||
- **zones** (*Optional*): List of additional zones to be activated. They are displayed as additional media players with the same functionality Main Zone of the device supports
|
||||
- **zone**: Zone which should be activated. Valid options are Zone2 and Zone3
|
||||
- **name** (*Optional*): Name of the zone. If not set the name of the main device + zone as suffix is taken.
|
||||
|
||||
A few notes for platform: denonavr
|
||||
- Additional option the control Denon AVR receivers with a builtin web server is using the HTTP interface with denonavr platform.
|
||||
- denonavr platform supports some additional functionalities like album covers, custom input source names and auto discovery.
|
||||
- Marantz receivers seem to a have quite simliar interface. Thus if you own one, give it a try.
|
||||
[Denon AVR]: /components/media_player.denonavr/
|
||||
|
67
source/_components/media_player.denonavr.markdown
Normal file
67
source/_components/media_player.denonavr.markdown
Normal file
@ -0,0 +1,67 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Denon AVR Network Receivers"
|
||||
description: "Instructions how to integrate Denon AVR Network Receivers into Home Assistant."
|
||||
date: 2015-09-08 09:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: denon.png
|
||||
ha_category: Media Player
|
||||
ha_iot_class: "Local Polling"
|
||||
ha_release: 0.7.2
|
||||
---
|
||||
|
||||
|
||||
The `denonavr` platform allows you to control a [Denon Network Receivers](http://www.denon.co.uk/chg/product/compactsystems/networkmusicsystems/ceolpiccolo) from Home Assistant. It might be that your device is supported by the [Denon] platform.
|
||||
|
||||
Supported devices:
|
||||
|
||||
- Denon AVR-X2000
|
||||
- Denon AVR-X2100W
|
||||
- Denon AVR-X4100W
|
||||
- Denon AVR-1912
|
||||
- Denon AVR-2312CI
|
||||
- Denon AVR-3311CI
|
||||
- Marantz M-CR603
|
||||
- Marantz M-RC610
|
||||
- Marantz SR5008
|
||||
- Marantz NR1604
|
||||
- Other Denon AVR receivers (untested)
|
||||
- Marantz receivers (experimental)
|
||||
|
||||
<pre class='note'>
|
||||
If you have something else using the IP controller for your Denon AVR 3808CI, such as your URC controller, it will not work! There is either a bug or security issue with some models where only one device could be controlling the IP functionality.
|
||||
</pre>
|
||||
|
||||
To add a Denon Network Receiver to your installation, add the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
media_player:
|
||||
- platform: denonavr
|
||||
host: IP_ADDRESS
|
||||
name: NAME
|
||||
show_all_sources: True / False
|
||||
zones:
|
||||
- zone: Zone2 / Zone3
|
||||
name: NAME
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **host** (*Optional*): IP address of the device. Example: 192.168.1.32. If not set, auto discovery is used.
|
||||
- **name** (*Optional*): Name of the device. If not set, friendlyName of receiver is used.
|
||||
- **show_all_sources** (*Optional*): If True all sources are displayed in sources list even if they are marked as deleted in the receiver. If False deleted sources are not displayed (default). Some receivers have a bug that marks all sources as deleted in the interface. In this case this option could help.
|
||||
- **zones** (*Optional*): List of additional zones to be activated. They are displayed as additional media players with the same functionality Main Zone of the device supports
|
||||
- **zone**: Zone which should be activated. Valid options are Zone2 and Zone3
|
||||
- **name** (*Optional*): Name of the zone. If not set the name of the main device + zone as suffix is taken.
|
||||
|
||||
A few notes:
|
||||
|
||||
- Additional option the control Denon AVR receivers with a builtin web server is using the HTTP interface with denonavr platform.
|
||||
- denonavr platform supports some additional functionalities like album covers, custom input source names and auto discovery.
|
||||
- Marantz receivers seem to a have quite simliar interface. Thus if you own one, give it a try.
|
||||
|
||||
[Denon]: /components/media_player.denon/
|
@ -33,8 +33,9 @@ sensor:
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **latitude** (*Optional*): Latitude to use for selection of data source location. Longitude and latitude will be taken from Home Assistant configuration, but can be overridden/changed in this component to select a different location for buienradar.
|
||||
- **longitude** (*Optional*): Longitude to use for selection of data source location. Longitude & latitude will be taken from Home Assistant configuration, but can be overridden/changed in this component to select a different location for buienradar.
|
||||
- **name** (*Optional*): You can specify a name of the component, but do not have to. If you specify a name, the sensors will get an entity name of 'sensor.[name]`[monitored_condition]`, for example: `sensor.lopik_temperature`; if no name is specified the sensors will be called `sensor.br_[monitored_condition]`, for example `sensor.br_temperature`.
|
||||
- **latitude** (*Optional*): Latitude to use for selection of data source location. Longitude and latitude will be taken from Home Assistant configuration, but can be overridden/changed in this component to select a different location for buienradar.nl.
|
||||
- **longitude** (*Optional*): Longitude to use for selection of data source location. Longitude and latitude will be taken from Home Assistant configuration, but can be overridden/changed in this component to select a different location for buienradar.nl.
|
||||
- **timeframe** (*Optional*): Minutes to look ahead for precipitation (5..120) [default: 60].
|
||||
- **monitored_conditions** array (*Required*): One or more conditions to display in the frontend.
|
||||
- **stationname**: The name of the selected meteo-station.
|
||||
|
17
source/_components/sensor.comfoconnect.markdown
Normal file
17
source/_components/sensor.comfoconnect.markdown
Normal file
@ -0,0 +1,17 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Zehnder ComfoAir Q Ventilation sensors"
|
||||
description: "Instructions how to integrate Zehnder ComfoAir Q350/450/600 sensors into Home Assistant."
|
||||
date: 2017-06-28 18:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: zehnder.png
|
||||
ha_category: Sensor
|
||||
ha_release: "0.48"
|
||||
---
|
||||
|
||||
Please see the [main component] for information how to set it up.
|
||||
|
||||
[main component]: /components/comfoconnect/
|
@ -31,7 +31,7 @@ Configuration variables:
|
||||
- **name** (*Optional*): Name of the command sensor.
|
||||
- **unit_of_measurement** (*Optional*): Defines the unit of measurement of the sensor, if any.
|
||||
- **value_template** (*Optional*): Defines a [template](/docs/configuration/templating/#processing-incoming-data) to extract a value from the payload.
|
||||
- **scan_interval** (*Optional*): Defines number of seconds for polling interval.
|
||||
- **scan_interval** (*Optional*): Defines number of seconds for polling interval (defaults to 60 seconds).
|
||||
|
||||
## {% linkable_title Examples %}
|
||||
|
||||
|
@ -8,7 +8,7 @@ comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: knx.png
|
||||
ha_category: DIY
|
||||
ha_category: Sensor
|
||||
ha_release: 0.29
|
||||
ha_iot_class: "Local Push"
|
||||
---
|
||||
|
@ -52,10 +52,10 @@ Configuration variables:
|
||||
- **rain**: Estimated rainfall for today in mm.
|
||||
- **sum_rain_1**: Rainfall in the last hour in mm.
|
||||
- **sum_rain_24**: Rainfall in mm from 00:00am - 23:59pm.
|
||||
- **WindAngle**: Wind angle
|
||||
- **WindStrength**: Wind strength
|
||||
- **GustAngle**: Wind gust angle
|
||||
- **GustStrength**: Wind gust strength
|
||||
- **windangle**: Wind angle
|
||||
- **windstrength**: Wind strength
|
||||
- **gustangle**: Wind gust angle
|
||||
- **guststrength**: Wind gust strength
|
||||
- **min_temp**: Min temperature for today
|
||||
- **max_temp**: Max temperature for today
|
||||
- **rf_status**: Current radio status per module. (90=low, 60=highest)
|
||||
@ -69,4 +69,3 @@ You can find your modules name in your [online NetAtmo account](https://my.netat
|
||||
<p class='img'>
|
||||
<img src='/images/screenshots/netatmo_module.png' />
|
||||
</p>
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
layout: page
|
||||
title: "Shiftr.io"
|
||||
description: "Transfer events to Shiftr.io."
|
||||
date: 2017-07-16 07:00
|
||||
date: 2017-06-16 07:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
|
@ -8,7 +8,7 @@ comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: knx.png
|
||||
ha_category: DIY
|
||||
ha_category: Switch
|
||||
ha_release: 0.24
|
||||
ha_iot_class: "Local Polling"
|
||||
---
|
||||
|
@ -26,8 +26,9 @@ weather:
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **latitude** (*Optional*): Latitude to use for selection of data source location. Longitude & latitude will be taken from Home Assistant configuration, but can be overridden/changed in this component to select a different location for buienradar.
|
||||
- **longitude**(*Optional*): Longitude to use for selection of data source location. Longitude & latitude will be taken from Home Assistant configuration, but can be overridden/changed in this component to select a different location for buienradar.
|
||||
- **name** (*Optional*): You can specify a name of the component, but do not have to. If you specify a name, the weather component will get an entity name of 'weather.[name]'; if no name is specified, it will try to set its name to 'weather.BR_[stationname]'. However at the moment in time the entity is created, no data has been retrieved yet, so the entity will get named 'weather.BR_unknown_station'. Later the station name will be known and get updated, but the entity name remains.
|
||||
- **latitude** (*Optional*): Latitude to use for selection of data source location. Longitude and latitude will be taken from Home Assistant configuration, but can be overridden/changed in this component to select a different location for buienradar.
|
||||
- **longitude**(*Optional*): Longitude to use for selection of data source location. Longitude and latitude will be taken from Home Assistant configuration, but can be overridden/changed in this component to select a different location for buienradar.
|
||||
- **forecast** (*Optional*): 'True' to add a temperature forecast, 'False' to suppress it.
|
||||
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
---
|
||||
layout: page
|
||||
title: "fail2ban for HASS"
|
||||
description: "Setting up fail2ban to read HASS log files to improve security."
|
||||
title: "fail2ban"
|
||||
description: "Setting up fail2ban to read Home Assistant's log files to improve security."
|
||||
date: 2017-05-24 10:05
|
||||
sidebar: true
|
||||
comments: false
|
||||
@ -14,6 +14,15 @@ This is a quick guide on how to setup fail2ban for Home Assistant. This was orig
|
||||
|
||||
First install `fail2ban`. On Debian/Ubuntu this would be `apt-get install fail2ban`. On other distros you can google it.
|
||||
|
||||
Then make sure logging is enabled in your `configuration.yaml` file for your Home Assistant instance:
|
||||
|
||||
```yaml
|
||||
logger:
|
||||
default: critical
|
||||
logs:
|
||||
homeassistant.components.http: warning
|
||||
```
|
||||
|
||||
Next we will be creating these three files :
|
||||
|
||||
- `/etc/fail2ban/fail2ban.local`
|
||||
|
@ -23,7 +23,7 @@ automation:
|
||||
to: 'on'
|
||||
action:
|
||||
service: homeassistant.turn_on
|
||||
entity_id: light.kitchen
|
||||
entity_id: light.kitchen_light
|
||||
|
||||
- alias: Turn off kitchen light 10 minutes after last movement
|
||||
trigger:
|
||||
|
@ -495,7 +495,7 @@ $ crontab -e
|
||||
* Scroll to the bottom of the file and paste in the following line
|
||||
|
||||
```text
|
||||
30 2 * * 1 /usr/bin/letsencrypt renew >> /var/log/le-renew.log
|
||||
30 2 * * 1 ~/certbot/certbot-auto renew --quiet --no-self-upgrade --standalone --preferred-challenges http-01
|
||||
```
|
||||
* Save the file and exit
|
||||
|
||||
|
@ -43,7 +43,7 @@ $ sudo pip3 install --upgrade requests
|
||||
|
||||
## {% linkable_title Configuring hapush (all installation methods) %}
|
||||
|
||||
When you have all the prereqs in place, copy the hapush.cfg.example file to hapush.cfg then edit it to reflect your environment:
|
||||
When you have all the prereqs in place, copy the `hapush.cfg.example` file to `hapush.cfg` then edit it to reflect your environment:
|
||||
|
||||
```
|
||||
ha_url = "http://192.168.1.10:8123"
|
||||
@ -61,13 +61,13 @@ logfile = "/etc/hapush/hapush.log"
|
||||
|
||||
## {% linkable_title Running hapush %}
|
||||
|
||||
For a manual installation you can then run hapush from the command line as follows:
|
||||
For a manual installation you can then run `hapush` from the command-line as follows:
|
||||
|
||||
```bash
|
||||
$ ./hapush.py hapush.cfg
|
||||
```
|
||||
|
||||
For docker installs, hapush will be started automatically when you run the startup command.
|
||||
For Docker installs, hapush will be started automatically when you run the startup command.
|
||||
|
||||
If all is well, you should start to see `hapush` responding to events as they occur. For a docker installation you should see these messages in `hapush/hapush.log`.
|
||||
|
||||
|
@ -10,13 +10,14 @@ footer: true
|
||||
redirect_from: /ecosystem/hadashboard/installation/
|
||||
---
|
||||
|
||||
Installation can be performed using Docker (Contributed by [marijngiesen](https://github.com/marijngiesen)) or manually if Docker doesn't work for you. We also have a Raspberry PI version of Docker contributed by [snizzleorg](https://community.home-assistant.io/users/snizzleorg/activity)
|
||||
Installation can be performed using Docker (Contributed by [marijngiesen](https://github.com/marijngiesen)) or manually if Docker doesn't work for you. We also have a Raspberry Pi version of Docker contributed by [snizzleorg](https://community.home-assistant.io/users/snizzleorg/activity).
|
||||
|
||||
## {% linkable_title Using Docker (Non Raspian) %}
|
||||
|
||||
Assuming you already have Docker installed, installation is fairly easy.
|
||||
|
||||
### {% linkable_title Clone the Repository %}
|
||||
|
||||
Clone the **hadashboard** repository to the current local directory on your machine.
|
||||
|
||||
``` bash
|
||||
@ -41,7 +42,7 @@ When the build completes, you can run the dashboard with the following command f
|
||||
$ docker run --name="hadashboard" -d -v <path_to_hadashboard>/dashboards:/app/dashboards -v <path_to_hadashboard>/lib/ha_conf.rb:/app/lib/ha_conf.rb -v <path_to_hadashboard>/hapush:/app/hapush --net=host hadashboard
|
||||
```
|
||||
|
||||
If you are running docker on windows you should not use the `--net` command and explicitly specify the port, aslo for security reason `--net=host` should not be used so the following can also be used in unix. This will also set the process to start when the docker process starts so you do not have to worry about reboots. To map the volumes make sure you have ticked the shred drives in the settings. In this example I am using `c:\hadashboard` as the location where the git clone was done and mapping to port 3030 on the host.
|
||||
If you are running docker on windows you should not use the `--net` command and explicitly specify the port, also for security reason `--net=host` should not be used so the following can also be used in unix. This will also set the process to start when the docker process starts so you do not have to worry about reboots. To map the volumes make sure you have ticked the shred drives in the settings. In this example I am using `c:\hadashboard` as the location where the git clone was done and mapping to port 3030 on the host.
|
||||
|
||||
```powershell
|
||||
docker run --restart=always --name="hadashboard" -p 3030:3030 -d -v C:/hadashboard/dashboards:/app/dashboards -v C:/hadashboard/lib/ha_conf.rb:/app/lib/ha_conf.rb -v C:/hadashboard/hapush:/app/hapush hadashboard
|
||||
@ -57,15 +58,13 @@ By default, the docker instance should pick up your timezone but if you want to
|
||||
|
||||
### {% linkable_title Docker on Raspberry Pi %}
|
||||
|
||||
Raspberry pi needs to use a different docker build file so the build command is slightly different:
|
||||
Raspberry Pi needs to use a different Docker build file so the build command is slightly different:
|
||||
|
||||
```bash
|
||||
$ sudo docker build -f Docker-raspi/Dockerfile -t hadashboard .
|
||||
```
|
||||
|
||||
Apart from that the other steps are identical.
|
||||
|
||||
*Note - this is pretty slow even on a PI3, be prepared for it to take an hour or two to build all of the extensions and install everything*
|
||||
Apart from that the other steps are identical. Running Docker is pretty slow even on a PI3, be prepared for it to take an hour or two to build all of the extensions and install everything.
|
||||
|
||||
## {% linkable_title Manual Installation %}
|
||||
|
||||
@ -82,17 +81,23 @@ Change your working directory to the repository root. Moving forward, we will be
|
||||
$ cd hadashboard
|
||||
```
|
||||
|
||||
### {% linkable_title 2. Install Dashing and prereqs %}
|
||||
### {% linkable_title 2. Install Dashing and prerequirments %}
|
||||
|
||||
Essentially, you want to make sure that you have Ruby installed on your local machine. Then, install the Dashing gem:
|
||||
Essentially, you want to make sure that you have Ruby installed on your local machine.
|
||||
|
||||
For Debian based distribution do:
|
||||
|
||||
```bash
|
||||
$ sudo apt-get install rubygems
|
||||
```
|
||||
|
||||
Then, install the Dashing gem:
|
||||
|
||||
```bash
|
||||
$ gem install dashing
|
||||
```
|
||||
|
||||
From your repository root, make sure that all dependencies are available.
|
||||
|
||||
Note: on some systems you may also need to install bundler:
|
||||
From your repository root, make sure that all dependencies are available. On some systems you may also need to install `bundler`:
|
||||
|
||||
```bash
|
||||
$ gem install bundler
|
||||
@ -104,9 +109,7 @@ When installed run it:
|
||||
$ bundle
|
||||
```
|
||||
|
||||
Bundle will now install all the ruby prereqs for running dashing.
|
||||
|
||||
Note: Prereqs will vary across different machines. So far users have reported requirements for some additional installs to allow the bundle to complete succesfully:
|
||||
Bundle will now install all the ruby prerequirements for running dashing. Prerequirements will vary across different machines. So far users have reported requirements for some additional installs to allow the bundle to complete succesfully:
|
||||
|
||||
- ruby-dev - `sudo apt-get install ruby-dev`
|
||||
- node-js - `sudo apt-get install nodejs`
|
||||
@ -115,18 +118,18 @@ Note: Prereqs will vary across different machines. So far users have reported re
|
||||
|
||||
You will need to research what works on your particular architecture and also bear in mind that version numbers may change over time.
|
||||
|
||||
Note: This is currently running on various versions of Ruby and there are no strong dependencies however your mileage may vary.
|
||||
This is currently running on various versions of Ruby and there are no strong dependencies however your mileage may vary.
|
||||
|
||||
## {% linkable_title Updating configuration (Manual and Docker) %}
|
||||
|
||||
Next, in the `./lib` directory, copy the ha_conf.rb.example file to ha_conf.rb and edit its settings to reflect your installation, pointing to the machine Home Assistant is running on and adding your api_key.
|
||||
Next, in the `./lib` directory, copy the `ha_conf.rb.example` file to `ha_conf.rb` and edit its settings to reflect your installation, pointing to the machine Home Assistant is running on and adding your API key.
|
||||
|
||||
```ruby
|
||||
$ha_url = "http://192.168.1.10:8123"
|
||||
$ha_apikey = "your key"
|
||||
```
|
||||
|
||||
- `$ha_url` is a reference to your home assistant installation and must include the correct port number and scheme (`http://` or `https://` as appropriate)
|
||||
- `$ha_url` is a reference to your Home Assistant installation and must include the correct port number and scheme (`http://` or `https://` as appropriate)
|
||||
- `$ha_apikey` should be set to your key if you have one, otherwise it can remain blank.
|
||||
|
||||
The file also contains example newsfeeds for the News widget:
|
||||
|
@ -10,8 +10,8 @@ footer: true
|
||||
redirect_from: /ecosystem/hadashboard/reboot/
|
||||
---
|
||||
|
||||
To run Dashing and `hapush` at reboot, I have provided sample init scripts in the `./init` directory. These have been tested on a Raspberry Pi - your mileage may vary on other systems.
|
||||
To run Dashing and `hapush` at reboot, checkout out the sample init scripts in the `./init` directory. These have been tested on a Raspberry Pi - your mileage may vary on other systems.
|
||||
|
||||
Instructions for automatically starting a docker install can be found [here](https://docs.docker.com/engine/admin/host_integration/).
|
||||
Instructions for automatically starting a Docker installation can be found [here](https://docs.docker.com/engine/admin/host_integration/).
|
||||
|
||||
For docker you may also want to use docker-compose - there is a sample compose file in the `./init` directory.
|
||||
For Docker you may also want to use `docker-compose` - there is a sample compose file in the `./init` directory.
|
||||
|
@ -16,10 +16,10 @@ To update the dashboard after new code has been released, just run the following
|
||||
$ git pull origin
|
||||
```
|
||||
|
||||
For some releases you may also need to rerun the bundle command:
|
||||
For some releases you may also need to rerun the `bundle` command:
|
||||
|
||||
``` bash
|
||||
$ bundle
|
||||
```
|
||||
|
||||
For docker users, you will also need to rerun the docker build process.
|
||||
For Docker users, you will also need to rerun the Docker build process.
|
||||
|
@ -9,4 +9,12 @@
|
||||
<nav>
|
||||
{% include site/navigation.html %}
|
||||
</nav>
|
||||
|
||||
<div class='search-container' style='display: none'>
|
||||
<div class='search'>
|
||||
<i class="icon-search"></i>
|
||||
<input id='search' placeholder='Search the docs…'>
|
||||
<a href='#' class='close'><i class="icon-remove-sign"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -16,4 +16,5 @@
|
||||
<li><a href="/developers/">Developers</a></li>
|
||||
<li><a href="/blog/">Blog</a></li>
|
||||
<li><a href="/help/">Need help?</a></li>
|
||||
<li><a href='#' class='show-search'><i class="icon-search"></i></a></li>
|
||||
</ul>
|
||||
|
20
source/_includes/javascripts/algolia.html
Normal file
20
source/_includes/javascripts/algolia.html
Normal file
@ -0,0 +1,20 @@
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/docsearch.js/2/docsearch.min.css" />
|
||||
<script type="text/javascript" src="https://cdn.jsdelivr.net/docsearch.js/2/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
docsearch({
|
||||
apiKey: 'ae96d94b201c5444c8a443093edf3efb',
|
||||
indexName: 'home-assistant',
|
||||
inputSelector: '#search',
|
||||
debug: false // Set debug to true if you want to inspect the dropdown
|
||||
});
|
||||
document.querySelector('.search .close').addEventListener('click', function(ev) {
|
||||
ev.preventDefault();
|
||||
document.querySelector('.search-container').style.display = 'none';
|
||||
});
|
||||
document.querySelector('.show-search').addEventListener('click', function(ev) {
|
||||
ev.preventDefault();
|
||||
document.querySelector('.search-container').style.display = 'block';
|
||||
document.getElementById('toggle').checked = false;
|
||||
document.querySelector('.search-container input').focus();
|
||||
});
|
||||
</script>
|
@ -5,6 +5,7 @@
|
||||
|
||||
{% include javascripts/google_analytics.html %}
|
||||
{% include javascripts/disqus.html %}
|
||||
{% include javascripts/algolia.html %}
|
||||
|
||||
{% if page.sidebar != false %}
|
||||
{% include javascripts/github.html %}
|
||||
|
@ -6,7 +6,7 @@ layout: compress
|
||||
|
||||
<body {% if page.body_id %} id="{{ page.body_id }}"{% endif %}>
|
||||
|
||||
<header>
|
||||
<header class='site-header'>
|
||||
{% include site/header.html %}
|
||||
</header>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
---
|
||||
layout: post
|
||||
title: "[Update: fixed] A frank and serious warning about Senic COVI"
|
||||
description: "The picture painted by Senic COVI is not as great as it seems."
|
||||
title: "[Update: fixed] A frank and serious warning about X"
|
||||
description: "The picture painted is not as great as it seems."
|
||||
date: 2017-06-20 01:04:05 +0000
|
||||
date_formatted: "June 20, 2017"
|
||||
author: Paulus Schoutsen & Robbie Trencheny
|
||||
@ -12,6 +12,8 @@ categories: Public-Service-Announcement
|
||||
|
||||
**Update June 21:** Senic has removed our name from their materials and have [issued an apology][apology]. We wish them best of luck with the launch of COVI.
|
||||
|
||||
**Update June 28:** Removed the brand name from the title to reduce the search ranking.
|
||||
|
||||
*Original post:*
|
||||
|
||||
<!--more-->
|
||||
|
513
source/_posts/2017-07-02-release-48.markdown
Normal file
513
source/_posts/2017-07-02-release-48.markdown
Normal file
@ -0,0 +1,513 @@
|
||||
---
|
||||
layout: post
|
||||
title: "0.48: Snips.ai, Shiftr.io and a massive History query speed up"
|
||||
description: "Build your own local voice assistant with the new Snips.ai component, visualize your data with Shiftr.io and enjoy faster history browsing."
|
||||
date: 2017-07-02 00:02:05 +0000
|
||||
date_formatted: "July 2, 2017"
|
||||
author: Paulus Schoutsen
|
||||
author_twitter: balloob
|
||||
comments: true
|
||||
categories: Release-Notes
|
||||
og_image: /images/blog/2017-07-0.48/components.png
|
||||
---
|
||||
|
||||
<a href='/components/#version/0.48'><img src='/images/blog/2017-07-0.48/components.png' style='border: 0;box-shadow: none;'></a>
|
||||
|
||||
It's time for a great new release!
|
||||
|
||||
We've started the process of upgrading our frontend technology. If you notice something not working that did work before, please open [an issue][issue-polymer].
|
||||
|
||||
[Pascal][@pvizeli] has added a new option to Home Assistant core to set a list of whitelisted folders that Home Assistant can read from. When a component allows to send files (like Telegram), it will only be allowed to send files from those directories. The only default whitelisted folder is the public `<config>/www` directory.
|
||||
|
||||
Z-Wave will, as announced in the [last release](/blog/2017/06/17/release-47/), be defaulting to generate the new entity ids. More info in the [blog post](/blog/2017/06/15/zwave-entity-ids/). You can still opt-in for the old style.
|
||||
|
||||
```yaml
|
||||
zwave:
|
||||
new_entity_ids: false
|
||||
```
|
||||
|
||||
## Big speed up in querying the history
|
||||
|
||||
Thanks to the work by [@cmsimike] in [#8255] you'll see a significant speed up when using the history view. In his local tests queries went from 1 minute to 90ms! ⚡️
|
||||
|
||||
## Snips.ai component
|
||||
|
||||
Snips has contributed a component to integrate with their Snips.ai local voice assistant. This will allow you to hook a speaker and a microphone into your Raspberry Pi and make your own local Amazon Echo quickly. See [the docs][snips docs] for further instructions.
|
||||
|
||||
Also a shoutout to [@michaelarnauts] for keeping an eye on our Docker build and once again reducing the file size 👍
|
||||
|
||||
[issue-polymer]: https://github.com/home-assistant/home-assistant-polymer/issues
|
||||
|
||||
## New Platforms
|
||||
|
||||
- Add initial support for Shiftr.io ([@fabaff] - [#7974]) ([shiftr docs]) (new-platform)
|
||||
- Upnp properties ([@dgomes] - [#8067]) ([upnp docs]) ([sensor.upnp docs]) (new-platform)
|
||||
- Add support for Insteon FanLinc fan ([@jawilson] - [#6959]) ([insteon_local docs]) ([fan.insteon_local docs]) (new-platform)
|
||||
- add knx cover support ([@tiktok7] - [#7997]) ([knx docs]) ([cover.knx docs]) (new-platform)
|
||||
- Add I2c BME280 temperature, humidity and pressure sensor for Raspberry Pi ([@azogue] - [#7989]) ([sensor.bme280 docs]) (new-platform)
|
||||
- Add I2c HTU21D temperature and humidity sensor for Raspberry Pi ([@azogue] - [#8049]) ([sensor.htu21d docs]) (new-platform)
|
||||
- Add new BH1750 light level sensor ([@azogue] - [#8050]) ([sensor.bh1750 docs]) (new-platform)
|
||||
- Rfxtrx binary sensor ([@ypollart] - [#6794]) ([rfxtrx docs]) ([binary_sensor.rfxtrx docs]) (new-platform)
|
||||
- Add ClickSend notify service. ([@omarusman] - [#8135]) ([notify.clicksend docs]) (new-platform)
|
||||
- Add device tracker for Linksys Smart Wifi devices ([@mortenlj] - [#8144]) ([device_tracker.linksys_smart docs]) (new-platform)
|
||||
- Openhardwaremonitor ([@depl0y] - [#8056]) ([sensor.openhardwaremonitor docs]) (new-platform)
|
||||
- WIP: Verisure app api ([@persandstrom] - [#7394]) ([verisure docs]) ([alarm_control_panel.verisure docs]) ([binary_sensor.verisure docs]) ([sensor.verisure docs]) ([switch.verisure docs]) (new-platform)
|
||||
- telegram_bot platform to only send messages ([@azogue] - [#8186]) (new-platform)
|
||||
- Comfoconnect fan component ([@michaelarnauts] - [#8073]) ([comfoconnect docs]) ([fan.comfoconnect docs]) ([sensor.comfoconnect docs]) (new-platform)
|
||||
- Implement templates for covers ([@PhracturedBlue] - [#8100]) ([cover.template docs]) (new-platform)
|
||||
- Snips ASR and NLU component ([@michaelfester] - [#8156]) ([snips docs]) (new-platform)
|
||||
|
||||
## {% linkable_title If you need help... %}
|
||||
...don't hesitate to use our very active [forums][forum] or join us for a little [chat][gitter]. The release notes have comments enabled but it's preferred if you use the former communication channels. Thanks.
|
||||
|
||||
## {% linkable_title Reporting Issues %}
|
||||
Experiencing issues introduced by this release? Please report them in our [issue tracker][issue]. Make sure to fill in all fields of the issue template.
|
||||
|
||||
<!--more-->
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
- We have added a new option to whitelist folders that can be used as sources for sending files. You will need to use this option if you are using files with the telegram component. ([@pvizeli] - [#8189]) (breaking change)
|
||||
|
||||
```yaml
|
||||
homeassistant:
|
||||
whitelist_external_dirs:
|
||||
- /tmp
|
||||
- /home/kenji/data
|
||||
```
|
||||
|
||||
- Vera battery levels will no longer have the percent sign appended ([@philhawthorne] - [#8069]) ([vera docs]) (breaking change)
|
||||
- Notify - SMTP: Added SMTP SSL/TLS support so now you should specify which encryption to use. ([@sn0oz] - [#7960]) ([notify.smtp docs]) (breaking change)
|
||||
|
||||
```
|
||||
notify:
|
||||
- name: mail
|
||||
platform: smtp
|
||||
server: !secret smtp_server
|
||||
sender: !secret mail_alert
|
||||
username: !secret mail_username
|
||||
password: !secret mail_password
|
||||
recipient: !secret mail_admin
|
||||
encryption: tls # Or starttls, none
|
||||
```
|
||||
|
||||
- Light - LIFX: The `lifx_effect_breathe` call was deprecated in version 0.47 and has now been removed. You can use `lifx_effect_pulse` with `mode: breathe` for the same effect. ([@amelchio] - [#8222]) ([light.lifx docs]) (breaking change)
|
||||
- LimitlessLED: No longer automatically fades the lights when turning the light off. Can be restored with a new config option. ([@SmilyOrg] - [#7369]) ([light.limitlessled docs]) (breaking change)
|
||||
|
||||
```yaml
|
||||
light:
|
||||
platform: limitlessled
|
||||
bridges:
|
||||
|
||||
- host: !secret limitless_v6_ip
|
||||
port: 5987
|
||||
version: 6
|
||||
groups:
|
||||
|
||||
- number: 1
|
||||
type: rgbww
|
||||
name: Safari Glow
|
||||
fade: none
|
||||
```
|
||||
|
||||
## All changes
|
||||
|
||||
- Update numpy 1.13.0 ([@pvizeli] - [#8059]) ([image_processing.opencv docs])
|
||||
- No update in MQTT Binary Sensor #7478 ([@pezinek] - [#8057])
|
||||
- Use standard entity_ids for zwave entities ([@armills] - [#7786]) ([zwave docs]) ([light.zwave docs]) (breaking change)
|
||||
- Fix some warnings found by quantifiedcode ([@andrey-git] - [#8027]) ([insteon_hub docs]) ([tellduslive docs]) ([calendar.google docs])
|
||||
- Always enable monkey patch ([@balloob] - [#8054])
|
||||
- Remove % sign from Vera Battery Levels ([@philhawthorne] - [#8069]) ([vera docs]) (breaking change)
|
||||
- Allow config of latitude and longitude ([@jshore1296] - [#8068]) ([sensor.wunderground docs])
|
||||
- Failed to parse response from WU API: 'record' (and 'recordyear') #7747 ([@pezinek] - [#8058]) ([sensor.wunderground docs])
|
||||
- Add initial support for Shiftr.io ([@fabaff] - [#7974]) ([shiftr docs]) (new-platform)
|
||||
- Add option to set language of openweathermap sensor, and handle updating errors ([@azogue] - [#8046]) ([sensor.openweathermap docs])
|
||||
- Bump pyEmby version to account for API changes ([@mezz64] - [#8070]) ([media_player.emby docs])
|
||||
- bump ups ([@happyleavesaoc] - [#8075]) ([sensor.ups docs])
|
||||
- bump usps version ([@happyleavesaoc] - [#8074]) ([sensor.usps docs])
|
||||
- Add to zwave services descriptions ([@andrey-git] - [#8072])
|
||||
- Fix attribute entity ([@pvizeli] - [#8066]) (breaking change)
|
||||
- Added 'all_plants' group and support for plant groups state. ([@aronsky] - [#8063]) ([group docs]) ([plant docs])
|
||||
- Fix EntityComponent handle entities without a name ([@balloob] - [#8065])
|
||||
- Update pyunifi component to use APIError passed from pyunifi 2.13. Better accommodate login failures with wrapper in pyunifi 2.13. ([@finish06] - [#7899]) ([device_tracker.unifi docs])
|
||||
- Stopping the logfile spam by piping STDERR to /dev/null ([@madpilot] - [#8081]) ([switch.wake_on_lan docs])
|
||||
- mpd: implement support for seek, shuffle, and clear playlist ([@auchter] - [#8090]) ([media_player.mpd docs])
|
||||
- Cleanup .coveragerc ([@michaelarnauts] - [#8088])
|
||||
- update pywebpush to 1.0.5 ([@perosb] - [#8084]) ([notify.html5 docs])
|
||||
- media player Kodi: handle TransportError exceptions when calling JSONRPC API methods ([@azogue] - [#8047]) ([media_player.kodi docs])
|
||||
- Upnp properties ([@dgomes] - [#8067]) ([upnp docs]) ([sensor.upnp docs]) (new-platform)
|
||||
- Add support for Insteon FanLinc fan ([@jawilson] - [#6959]) ([insteon_local docs]) ([fan.insteon_local docs]) (new-platform)
|
||||
- add knx cover support ([@tiktok7] - [#7997]) ([knx docs]) ([cover.knx docs]) (new-platform)
|
||||
- More updates to zwave services.yaml file ([@andrey-git] - [#8083])
|
||||
- Fix lights issue #8098 ([@tsvi] - [#8101]) ([light.vera docs])
|
||||
- increase timeout for setWebhook to 10s ([@azogue] - [#8102]) ([telegram_bot.webhooks docs])
|
||||
- Added SMTP SSL/TLS support ([@sn0oz] - [#7960]) ([notify.smtp docs]) (breaking change)
|
||||
- Fix Dyson async_add_job ([@CharlesBlonde] - [#8113]) ([fan.dyson docs]) ([sensor.dyson docs])
|
||||
- Update InfluxDB to handle datetime objects and multiple decimal points ([@philhawthorne] - [#8080]) ([influxdb docs])
|
||||
- Remove config details (see docs) ([@fabaff] - [#8119]) ([cover.knx docs])
|
||||
- Only mark active DHCP clients as present ([@cyberplant] - [#8110]) ([device_tracker.mikrotik docs])
|
||||
- Add option to specify the location of the API (fixes #8115) ([@fabaff] - [#8118]) ([sensor.pi_hole docs])
|
||||
- Fixed iTach command parsing with empty data ([@alanfischer] - [#8104]) ([remote.itach docs])
|
||||
- Upgrade mutagen to 1.38 ([@fabaff] - [#8126]) ([tts docs])
|
||||
- Upgrade paho-mqtt to 1.3.0 ([@fabaff] - [#8125]) ([mqtt docs]) ([shiftr docs])
|
||||
- Upgrade sqlalchemy to 1.1.11 ([@fabaff] - [#8124]) ([recorder docs])
|
||||
- Upgrade aiohttp to 2.2.0 ([@fabaff] - [#8121])
|
||||
- Upgrade RestrictedPython dependency ([@balloob] - [#8132]) ([python_script docs])
|
||||
- Added RFXTRX UV badge ([@lunar-consultancy] - [#8129]) ([rfxtrx docs])
|
||||
- Do not call update() in constructor ([@fabaff] - [#8120]) ([sensor.netdata docs])
|
||||
- Change Error Message when Turning off ISY994 Light ([@SConaway] - [#8131]) ([light.isy994 docs])
|
||||
- Allow iteration in python_script ([@balloob] - [#8134]) ([python_script docs])
|
||||
- Add current balance to hydroquebec sensor ([@titilambert] - [#8138]) ([sensor.hydroquebec docs])
|
||||
- Decora light: Fix brightness level in UI ([@titilambert] - [#8139]) ([light.decora docs])
|
||||
- Add I2c BME280 temperature, humidity and pressure sensor for Raspberry Pi ([@azogue] - [#7989]) ([sensor.bme280 docs]) (new-platform)
|
||||
- Upgrade libsoundtouch to prevent Python3.6 errors with enum. #7733 #8103 ([@CharlesBlonde] - [#8143]) ([media_player.soundtouch docs])
|
||||
- Adds CPU temp monitoring, and allow startup when endpoint is not yet available. ([@jjmontestl] - [#8093]) ([sensor.glances docs])
|
||||
- Add I2c HTU21D temperature and humidity sensor for Raspberry Pi ([@azogue] - [#8049]) ([sensor.htu21d docs]) (new-platform)
|
||||
- Add new BH1750 light level sensor ([@azogue] - [#8050]) ([sensor.bh1750 docs]) (new-platform)
|
||||
- LimitlessLED: Configurable fade-out behavior ([@SmilyOrg] - [#7369]) ([light.limitlessled docs]) (breaking change)
|
||||
- Harmony auto discovery via netdisco ([@tony2nite] - [#7741]) ([remote.harmony docs])
|
||||
- Rfxtrx binary sensor ([@ypollart] - [#6794]) ([rfxtrx docs]) ([binary_sensor.rfxtrx docs]) (new-platform)
|
||||
- Add support of Zone2 and Zone3 ([@scarface-4711] - [#8025]) ([media_player.denonavr docs])
|
||||
- Upgrade python-telegram-bot to 6.1.0 ([@fabaff] - [#8151]) ([telegram_bot docs])
|
||||
- Upgrade libsoundtouch to 0.6.2 ([@fabaff] - [#8149]) ([media_player.soundtouch docs])
|
||||
- Switch rachiopy to pypi ([@andrey-git] - [#8040]) ([switch.rachio docs])
|
||||
- ubus: Refresh session on Access denied ([@glance-] - [#8111])
|
||||
- Added invert flag for position for actuators that uses 100% for fully closed position ([@open-homeautomation] - [#8147])
|
||||
- add telegram_bot service: delete_message ([@azogue] - [#8153]) ([telegram_bot docs])
|
||||
- Fixed rfxtrx binary_sensor off command ([@basschipper] - [#8160]) ([rfxtrx docs]) ([binary_sensor.rfxtrx docs])
|
||||
- Use version 1.3 of radiotherm ([@twilde] - [#8164]) ([climate.radiotherm docs])
|
||||
- Tado climate device ([@wmalgadey] - [#8041]) ([tado docs]) ([climate.tado docs])
|
||||
- Add ClickSend notify service. ([@omarusman] - [#8135]) ([notify.clicksend docs]) (new-platform)
|
||||
- Add libboost-python1.62-dev (fixes #7851) ([@fabaff] - [#7868])
|
||||
- Uninstall enum34 in python3.6 docker image ([@jeanregisser] - [#8103])
|
||||
- Revert "Add libboost-python1.62-dev (fixes #7851)" ([@balloob] - [#8182])
|
||||
- Add device tracker for Linksys Smart Wifi devices ([@mortenlj] - [#8144]) ([device_tracker.linksys_smart docs]) (new-platform)
|
||||
- Update buienradar.py ([@lrmate] - [#8173]) ([sensor.buienradar docs])
|
||||
- Fix radiotherm model CT50 ([@tubaman] - [#8181]) ([climate.radiotherm docs])
|
||||
- Throw exception if _convert_for_display called on non Number ([@sdague] - [#8178]) ([climate docs]) ([climate.mysensors docs])
|
||||
- Added buienradar precipitation forecast average & total sensors ([@basschipper] - [#8171]) ([sensor.buienradar docs]) ([weather.buienradar docs])
|
||||
- Axis service vapix call ([@Kane610] - [#7794]) ([axis docs]) ([camera.axis docs])
|
||||
- added optional node_id to MQTT discovery ([@AlexMekkering] - [#8096])
|
||||
- Add offset option to sensor.gtfs ([@Kernald] - [#7980])
|
||||
- Switch to new zwave entity ids by default ([@armills] - [#8192]) ([zwave docs])
|
||||
- Pushed to version 0.5.1 of the library ([@scarface-4711] - [#8190]) ([media_player.denonavr docs])
|
||||
- Fix MySensors climate ([@balloob] - [#8193]) ([climate.mysensors docs])
|
||||
- Fix plants calling async methods from sync context ([@balloob] - [#8200])
|
||||
- Split mock_service ([@balloob] - [#8198])
|
||||
- add option to set content_type in camera.generic to support 'svg cameras' ([@azogue] - [#8188])
|
||||
- Remove unnecessary thread_ident assignment ([@armills] - [#8194])
|
||||
- Openhardwaremonitor ([@depl0y] - [#8056]) ([sensor.openhardwaremonitor docs]) (new-platform)
|
||||
- Add security layer to send file output things ([@pvizeli] - [#8189]) (breaking change)
|
||||
- Fix Plex component to use port number in discovery. ([@voltagex] - [#8197]) ([media_player.plex docs])
|
||||
- EntityComponent to retry platforms that are not ready yet ([@balloob] - [#8209])
|
||||
- WIP: Verisure app api ([@persandstrom] - [#7394]) ([verisure docs]) ([alarm_control_panel.verisure docs]) ([binary_sensor.verisure docs]) ([sensor.verisure docs]) ([switch.verisure docs]) (new-platform)
|
||||
- guess the content_type in local_file cameras ([@azogue] - [#8217]) ([camera.local_file docs])
|
||||
- Improve executor pool size / speedup python 3.5 ([@pvizeli] - [#8215])
|
||||
- LIFX: Move light effects to external library ([@amelchio] - [#8222]) ([light.lifx docs]) (breaking change)
|
||||
- Fixed mqtt subscription filter on sys $ topics ([@natemason] - [#8166]) ([mqtt docs])
|
||||
- telegram_bot platform to only send messages ([@azogue] - [#8186]) (new-platform)
|
||||
- add percentage (DPT_Scaling) KNX sensors ([@tiktok7] - [#8168]) ([sensor.knx docs])
|
||||
- Fix homeassistant.start trigger ([@azogue] - [#8220])
|
||||
- Cleanup automations yaml ([@balloob] - [#8223])
|
||||
- Do not call update() in constructor ([@fabaff] - [#8148]) ([sensor.glances docs])
|
||||
- KNX Cover tilt control ([@open-homeautomation] - [#8159]) ([cover.knx docs])
|
||||
- Comfoconnect fan component ([@michaelarnauts] - [#8073]) ([comfoconnect docs]) ([fan.comfoconnect docs]) ([sensor.comfoconnect docs]) (new-platform)
|
||||
- Upgrade python-digitalocean to 1.12 ([@fabaff] - [#8241]) ([digital_ocean docs])
|
||||
- update i2csense requirement ([@azogue] - [#8242]) ([sensor.bh1750 docs]) ([sensor.bme280 docs]) ([sensor.htu21d docs])
|
||||
- Update docstrings ([@fabaff] - [#8244]) ([comfoconnect docs]) ([fan.comfoconnect docs])
|
||||
- Do not call update() in constructor ([@fabaff] - [#8247]) ([binary_sensor.arest docs]) ([sensor.arest docs])
|
||||
- better logging to debug when a message is not sent ([@azogue] - [#8248]) ([telegram_bot docs])
|
||||
- LIFX: Small code cleanups ([@amelchio] - [#8228]) ([light.lifx docs])
|
||||
- Use 'hass.data' instead of global ([@fabaff] - [#8245]) ([digital_ocean docs]) ([binary_sensor.digital_ocean docs]) ([switch.digital_ocean docs])
|
||||
- Use constant and update ordering ([@fabaff] - [#8246]) ([arlo docs]) ([camera.arlo docs])
|
||||
- Add PlatformNotReady support for Sensibo ([@andrey-git] - [#8252]) ([climate.sensibo docs])
|
||||
- verisure component names ([@persandstrom] - [#8251]) ([binary_sensor.verisure docs]) ([camera.verisure docs]) ([lock.verisure docs]) ([switch.verisure docs])
|
||||
- further document add_node_secure ([@kentcalero] - [#8229])
|
||||
- Upgrade libnacl to 1.5.1 ([@fabaff] - [#8259]) ([device_tracker.owntracks docs])
|
||||
- Docker cleanup. ([@michaelarnauts] - [#8226])
|
||||
- Implement templates for covers ([@PhracturedBlue] - [#8100]) ([cover.template docs]) (new-platform)
|
||||
- Adding done_message to alert ([@karlw00t] - [#8116]) ([alert docs])
|
||||
- Camera services arm disarm including Netgear Arlo ([@viswa-swami] - [#7961]) ([camera.arlo docs])
|
||||
- Update modbus.py ([@lrmate] - [#8256]) ([binary_sensor.modbus docs])
|
||||
- components.knx - KNXMultiAddressDevice corrections ([@tiktok7] - [#8275]) ([knx docs])
|
||||
- Snips ASR and NLU component ([@michaelfester] - [#8156]) ([snips docs]) (new-platform)
|
||||
- Create an index on the states table to help hass startup time ([@cmsimike] - [#8255])
|
||||
|
||||
[#6794]: https://github.com/home-assistant/home-assistant/pull/6794
|
||||
[#6959]: https://github.com/home-assistant/home-assistant/pull/6959
|
||||
[#7369]: https://github.com/home-assistant/home-assistant/pull/7369
|
||||
[#7394]: https://github.com/home-assistant/home-assistant/pull/7394
|
||||
[#7741]: https://github.com/home-assistant/home-assistant/pull/7741
|
||||
[#7786]: https://github.com/home-assistant/home-assistant/pull/7786
|
||||
[#7794]: https://github.com/home-assistant/home-assistant/pull/7794
|
||||
[#7868]: https://github.com/home-assistant/home-assistant/pull/7868
|
||||
[#7899]: https://github.com/home-assistant/home-assistant/pull/7899
|
||||
[#7960]: https://github.com/home-assistant/home-assistant/pull/7960
|
||||
[#7961]: https://github.com/home-assistant/home-assistant/pull/7961
|
||||
[#7974]: https://github.com/home-assistant/home-assistant/pull/7974
|
||||
[#7980]: https://github.com/home-assistant/home-assistant/pull/7980
|
||||
[#7989]: https://github.com/home-assistant/home-assistant/pull/7989
|
||||
[#7997]: https://github.com/home-assistant/home-assistant/pull/7997
|
||||
[#8025]: https://github.com/home-assistant/home-assistant/pull/8025
|
||||
[#8027]: https://github.com/home-assistant/home-assistant/pull/8027
|
||||
[#8040]: https://github.com/home-assistant/home-assistant/pull/8040
|
||||
[#8041]: https://github.com/home-assistant/home-assistant/pull/8041
|
||||
[#8046]: https://github.com/home-assistant/home-assistant/pull/8046
|
||||
[#8047]: https://github.com/home-assistant/home-assistant/pull/8047
|
||||
[#8049]: https://github.com/home-assistant/home-assistant/pull/8049
|
||||
[#8050]: https://github.com/home-assistant/home-assistant/pull/8050
|
||||
[#8054]: https://github.com/home-assistant/home-assistant/pull/8054
|
||||
[#8056]: https://github.com/home-assistant/home-assistant/pull/8056
|
||||
[#8057]: https://github.com/home-assistant/home-assistant/pull/8057
|
||||
[#8058]: https://github.com/home-assistant/home-assistant/pull/8058
|
||||
[#8059]: https://github.com/home-assistant/home-assistant/pull/8059
|
||||
[#8063]: https://github.com/home-assistant/home-assistant/pull/8063
|
||||
[#8065]: https://github.com/home-assistant/home-assistant/pull/8065
|
||||
[#8066]: https://github.com/home-assistant/home-assistant/pull/8066
|
||||
[#8067]: https://github.com/home-assistant/home-assistant/pull/8067
|
||||
[#8068]: https://github.com/home-assistant/home-assistant/pull/8068
|
||||
[#8069]: https://github.com/home-assistant/home-assistant/pull/8069
|
||||
[#8070]: https://github.com/home-assistant/home-assistant/pull/8070
|
||||
[#8072]: https://github.com/home-assistant/home-assistant/pull/8072
|
||||
[#8073]: https://github.com/home-assistant/home-assistant/pull/8073
|
||||
[#8074]: https://github.com/home-assistant/home-assistant/pull/8074
|
||||
[#8075]: https://github.com/home-assistant/home-assistant/pull/8075
|
||||
[#8080]: https://github.com/home-assistant/home-assistant/pull/8080
|
||||
[#8081]: https://github.com/home-assistant/home-assistant/pull/8081
|
||||
[#8083]: https://github.com/home-assistant/home-assistant/pull/8083
|
||||
[#8084]: https://github.com/home-assistant/home-assistant/pull/8084
|
||||
[#8088]: https://github.com/home-assistant/home-assistant/pull/8088
|
||||
[#8090]: https://github.com/home-assistant/home-assistant/pull/8090
|
||||
[#8093]: https://github.com/home-assistant/home-assistant/pull/8093
|
||||
[#8096]: https://github.com/home-assistant/home-assistant/pull/8096
|
||||
[#8100]: https://github.com/home-assistant/home-assistant/pull/8100
|
||||
[#8101]: https://github.com/home-assistant/home-assistant/pull/8101
|
||||
[#8102]: https://github.com/home-assistant/home-assistant/pull/8102
|
||||
[#8103]: https://github.com/home-assistant/home-assistant/pull/8103
|
||||
[#8104]: https://github.com/home-assistant/home-assistant/pull/8104
|
||||
[#8110]: https://github.com/home-assistant/home-assistant/pull/8110
|
||||
[#8111]: https://github.com/home-assistant/home-assistant/pull/8111
|
||||
[#8113]: https://github.com/home-assistant/home-assistant/pull/8113
|
||||
[#8116]: https://github.com/home-assistant/home-assistant/pull/8116
|
||||
[#8118]: https://github.com/home-assistant/home-assistant/pull/8118
|
||||
[#8119]: https://github.com/home-assistant/home-assistant/pull/8119
|
||||
[#8120]: https://github.com/home-assistant/home-assistant/pull/8120
|
||||
[#8121]: https://github.com/home-assistant/home-assistant/pull/8121
|
||||
[#8124]: https://github.com/home-assistant/home-assistant/pull/8124
|
||||
[#8125]: https://github.com/home-assistant/home-assistant/pull/8125
|
||||
[#8126]: https://github.com/home-assistant/home-assistant/pull/8126
|
||||
[#8129]: https://github.com/home-assistant/home-assistant/pull/8129
|
||||
[#8131]: https://github.com/home-assistant/home-assistant/pull/8131
|
||||
[#8132]: https://github.com/home-assistant/home-assistant/pull/8132
|
||||
[#8134]: https://github.com/home-assistant/home-assistant/pull/8134
|
||||
[#8135]: https://github.com/home-assistant/home-assistant/pull/8135
|
||||
[#8138]: https://github.com/home-assistant/home-assistant/pull/8138
|
||||
[#8139]: https://github.com/home-assistant/home-assistant/pull/8139
|
||||
[#8143]: https://github.com/home-assistant/home-assistant/pull/8143
|
||||
[#8144]: https://github.com/home-assistant/home-assistant/pull/8144
|
||||
[#8147]: https://github.com/home-assistant/home-assistant/pull/8147
|
||||
[#8148]: https://github.com/home-assistant/home-assistant/pull/8148
|
||||
[#8149]: https://github.com/home-assistant/home-assistant/pull/8149
|
||||
[#8151]: https://github.com/home-assistant/home-assistant/pull/8151
|
||||
[#8153]: https://github.com/home-assistant/home-assistant/pull/8153
|
||||
[#8156]: https://github.com/home-assistant/home-assistant/pull/8156
|
||||
[#8159]: https://github.com/home-assistant/home-assistant/pull/8159
|
||||
[#8160]: https://github.com/home-assistant/home-assistant/pull/8160
|
||||
[#8164]: https://github.com/home-assistant/home-assistant/pull/8164
|
||||
[#8166]: https://github.com/home-assistant/home-assistant/pull/8166
|
||||
[#8168]: https://github.com/home-assistant/home-assistant/pull/8168
|
||||
[#8171]: https://github.com/home-assistant/home-assistant/pull/8171
|
||||
[#8173]: https://github.com/home-assistant/home-assistant/pull/8173
|
||||
[#8178]: https://github.com/home-assistant/home-assistant/pull/8178
|
||||
[#8181]: https://github.com/home-assistant/home-assistant/pull/8181
|
||||
[#8182]: https://github.com/home-assistant/home-assistant/pull/8182
|
||||
[#8186]: https://github.com/home-assistant/home-assistant/pull/8186
|
||||
[#8188]: https://github.com/home-assistant/home-assistant/pull/8188
|
||||
[#8189]: https://github.com/home-assistant/home-assistant/pull/8189
|
||||
[#8190]: https://github.com/home-assistant/home-assistant/pull/8190
|
||||
[#8192]: https://github.com/home-assistant/home-assistant/pull/8192
|
||||
[#8193]: https://github.com/home-assistant/home-assistant/pull/8193
|
||||
[#8194]: https://github.com/home-assistant/home-assistant/pull/8194
|
||||
[#8197]: https://github.com/home-assistant/home-assistant/pull/8197
|
||||
[#8198]: https://github.com/home-assistant/home-assistant/pull/8198
|
||||
[#8200]: https://github.com/home-assistant/home-assistant/pull/8200
|
||||
[#8209]: https://github.com/home-assistant/home-assistant/pull/8209
|
||||
[#8215]: https://github.com/home-assistant/home-assistant/pull/8215
|
||||
[#8217]: https://github.com/home-assistant/home-assistant/pull/8217
|
||||
[#8220]: https://github.com/home-assistant/home-assistant/pull/8220
|
||||
[#8222]: https://github.com/home-assistant/home-assistant/pull/8222
|
||||
[#8223]: https://github.com/home-assistant/home-assistant/pull/8223
|
||||
[#8226]: https://github.com/home-assistant/home-assistant/pull/8226
|
||||
[#8228]: https://github.com/home-assistant/home-assistant/pull/8228
|
||||
[#8229]: https://github.com/home-assistant/home-assistant/pull/8229
|
||||
[#8241]: https://github.com/home-assistant/home-assistant/pull/8241
|
||||
[#8242]: https://github.com/home-assistant/home-assistant/pull/8242
|
||||
[#8244]: https://github.com/home-assistant/home-assistant/pull/8244
|
||||
[#8245]: https://github.com/home-assistant/home-assistant/pull/8245
|
||||
[#8246]: https://github.com/home-assistant/home-assistant/pull/8246
|
||||
[#8247]: https://github.com/home-assistant/home-assistant/pull/8247
|
||||
[#8248]: https://github.com/home-assistant/home-assistant/pull/8248
|
||||
[#8251]: https://github.com/home-assistant/home-assistant/pull/8251
|
||||
[#8252]: https://github.com/home-assistant/home-assistant/pull/8252
|
||||
[#8255]: https://github.com/home-assistant/home-assistant/pull/8255
|
||||
[#8256]: https://github.com/home-assistant/home-assistant/pull/8256
|
||||
[#8259]: https://github.com/home-assistant/home-assistant/pull/8259
|
||||
[#8275]: https://github.com/home-assistant/home-assistant/pull/8275
|
||||
[@AlexMekkering]: https://github.com/AlexMekkering
|
||||
[@CharlesBlonde]: https://github.com/CharlesBlonde
|
||||
[@Kane610]: https://github.com/Kane610
|
||||
[@Kernald]: https://github.com/Kernald
|
||||
[@PhracturedBlue]: https://github.com/PhracturedBlue
|
||||
[@SConaway]: https://github.com/SConaway
|
||||
[@SmilyOrg]: https://github.com/SmilyOrg
|
||||
[@alanfischer]: https://github.com/alanfischer
|
||||
[@amelchio]: https://github.com/amelchio
|
||||
[@andrey-git]: https://github.com/andrey-git
|
||||
[@armills]: https://github.com/armills
|
||||
[@aronsky]: https://github.com/aronsky
|
||||
[@auchter]: https://github.com/auchter
|
||||
[@azogue]: https://github.com/azogue
|
||||
[@balloob]: https://github.com/balloob
|
||||
[@basschipper]: https://github.com/basschipper
|
||||
[@cmsimike]: https://github.com/cmsimike
|
||||
[@cyberplant]: https://github.com/cyberplant
|
||||
[@depl0y]: https://github.com/depl0y
|
||||
[@dgomes]: https://github.com/dgomes
|
||||
[@fabaff]: https://github.com/fabaff
|
||||
[@finish06]: https://github.com/finish06
|
||||
[@glance-]: https://github.com/glance-
|
||||
[@happyleavesaoc]: https://github.com/happyleavesaoc
|
||||
[@jawilson]: https://github.com/jawilson
|
||||
[@jeanregisser]: https://github.com/jeanregisser
|
||||
[@jjmontestl]: https://github.com/jjmontestl
|
||||
[@jshore1296]: https://github.com/jshore1296
|
||||
[@karlw00t]: https://github.com/karlw00t
|
||||
[@kentcalero]: https://github.com/kentcalero
|
||||
[@lrmate]: https://github.com/lrmate
|
||||
[@lunar-consultancy]: https://github.com/lunar-consultancy
|
||||
[@madpilot]: https://github.com/madpilot
|
||||
[@mezz64]: https://github.com/mezz64
|
||||
[@michaelarnauts]: https://github.com/michaelarnauts
|
||||
[@michaelfester]: https://github.com/michaelfester
|
||||
[@mortenlj]: https://github.com/mortenlj
|
||||
[@natemason]: https://github.com/natemason
|
||||
[@omarusman]: https://github.com/omarusman
|
||||
[@open-homeautomation]: https://github.com/open-homeautomation
|
||||
[@perosb]: https://github.com/perosb
|
||||
[@persandstrom]: https://github.com/persandstrom
|
||||
[@pezinek]: https://github.com/pezinek
|
||||
[@philhawthorne]: https://github.com/philhawthorne
|
||||
[@pvizeli]: https://github.com/pvizeli
|
||||
[@scarface-4711]: https://github.com/scarface-4711
|
||||
[@sdague]: https://github.com/sdague
|
||||
[@sn0oz]: https://github.com/sn0oz
|
||||
[@tiktok7]: https://github.com/tiktok7
|
||||
[@titilambert]: https://github.com/titilambert
|
||||
[@tony2nite]: https://github.com/tony2nite
|
||||
[@tsvi]: https://github.com/tsvi
|
||||
[@tubaman]: https://github.com/tubaman
|
||||
[@twilde]: https://github.com/twilde
|
||||
[@viswa-swami]: https://github.com/viswa-swami
|
||||
[@voltagex]: https://github.com/voltagex
|
||||
[@wmalgadey]: https://github.com/wmalgadey
|
||||
[@ypollart]: https://github.com/ypollart
|
||||
[alarm_control_panel.verisure docs]: /components/alarm_control_panel.verisure/
|
||||
[alert docs]: /components/alert/
|
||||
[arlo docs]: /components/arlo/
|
||||
[axis docs]: /components/axis/
|
||||
[binary_sensor.arest docs]: /components/binary_sensor.arest/
|
||||
[binary_sensor.digital_ocean docs]: /components/binary_sensor.digital_ocean/
|
||||
[binary_sensor.modbus docs]: /components/binary_sensor.modbus/
|
||||
[binary_sensor.rfxtrx docs]: /components/binary_sensor.rfxtrx/
|
||||
[binary_sensor.verisure docs]: /components/binary_sensor.verisure/
|
||||
[calendar.google docs]: /components/calendar.google/
|
||||
[camera.arlo docs]: /components/camera.arlo/
|
||||
[camera.axis docs]: /components/camera.axis/
|
||||
[camera.local_file docs]: /components/camera.local_file/
|
||||
[camera.verisure docs]: /components/camera.verisure/
|
||||
[climate docs]: /components/climate/
|
||||
[climate.mysensors docs]: /components/climate.mysensors/
|
||||
[climate.radiotherm docs]: /components/climate.radiotherm/
|
||||
[climate.sensibo docs]: /components/climate.sensibo/
|
||||
[climate.tado docs]: /components/climate.tado/
|
||||
[comfoconnect docs]: /components/comfoconnect/
|
||||
[cover.knx docs]: /components/cover.knx/
|
||||
[cover.template docs]: /components/cover.template/
|
||||
[device_tracker.linksys_smart docs]: /components/device_tracker.linksys_smart/
|
||||
[device_tracker.mikrotik docs]: /components/device_tracker.mikrotik/
|
||||
[device_tracker.owntracks docs]: /components/device_tracker.owntracks/
|
||||
[device_tracker.unifi docs]: /components/device_tracker.unifi/
|
||||
[digital_ocean docs]: /components/digital_ocean/
|
||||
[fan.comfoconnect docs]: /components/fan.comfoconnect/
|
||||
[fan.dyson docs]: /components/fan.dyson/
|
||||
[fan.insteon_local docs]: /components/fan.insteon_local/
|
||||
[group docs]: /components/group/
|
||||
[image_processing.opencv docs]: /components/image_processing.opencv/
|
||||
[influxdb docs]: /components/influxdb/
|
||||
[insteon_hub docs]: /components/insteon_hub/
|
||||
[insteon_local docs]: /components/insteon_local/
|
||||
[knx docs]: /components/knx/
|
||||
[light.decora docs]: /components/light.decora/
|
||||
[light.isy994 docs]: /components/light.isy994/
|
||||
[light.lifx docs]: /components/light.lifx/
|
||||
[light.limitlessled docs]: /components/light.limitlessled/
|
||||
[light.vera docs]: /components/light.vera/
|
||||
[light.zwave docs]: /components/light.zwave/
|
||||
[lock.verisure docs]: /components/lock.verisure/
|
||||
[media_player.denonavr docs]: /components/media_player.denonavr/
|
||||
[media_player.emby docs]: /components/media_player.emby/
|
||||
[media_player.kodi docs]: /components/media_player.kodi/
|
||||
[media_player.mpd docs]: /components/media_player.mpd/
|
||||
[media_player.plex docs]: /components/media_player.plex/
|
||||
[media_player.soundtouch docs]: /components/media_player.soundtouch/
|
||||
[mqtt docs]: /components/mqtt/
|
||||
[mqtt.discovery docs]: /components/mqtt.discovery/
|
||||
[notify.clicksend docs]: /components/notify.clicksend/
|
||||
[notify.html5 docs]: /components/notify.html5/
|
||||
[notify.smtp docs]: /components/notify.smtp/
|
||||
[plant docs]: /components/plant/
|
||||
[python_script docs]: /components/python_script/
|
||||
[recorder docs]: /components/recorder/
|
||||
[recorder.migration docs]: /components/recorder.migration/
|
||||
[recorder.models docs]: /components/recorder.models/
|
||||
[remote.harmony docs]: /components/remote.harmony/
|
||||
[remote.itach docs]: /components/remote.itach/
|
||||
[rfxtrx docs]: /components/rfxtrx/
|
||||
[sensor.arest docs]: /components/sensor.arest/
|
||||
[sensor.bh1750 docs]: /components/sensor.bh1750/
|
||||
[sensor.bme280 docs]: /components/sensor.bme280/
|
||||
[sensor.buienradar docs]: /components/sensor.buienradar/
|
||||
[sensor.comfoconnect docs]: /components/sensor.comfoconnect/
|
||||
[sensor.dyson docs]: /components/sensor.dyson/
|
||||
[sensor.glances docs]: /components/sensor.glances/
|
||||
[sensor.htu21d docs]: /components/sensor.htu21d/
|
||||
[sensor.hydroquebec docs]: /components/sensor.hydroquebec/
|
||||
[sensor.knx docs]: /components/sensor.knx/
|
||||
[sensor.netdata docs]: /components/sensor.netdata/
|
||||
[sensor.openhardwaremonitor docs]: /components/sensor.openhardwaremonitor/
|
||||
[sensor.openweathermap docs]: /components/sensor.openweathermap/
|
||||
[sensor.pi_hole docs]: /components/sensor.pi_hole/
|
||||
[sensor.upnp docs]: /components/sensor.upnp/
|
||||
[sensor.ups docs]: /components/sensor.ups/
|
||||
[sensor.usps docs]: /components/sensor.usps/
|
||||
[sensor.verisure docs]: /components/sensor.verisure/
|
||||
[sensor.wunderground docs]: /components/sensor.wunderground/
|
||||
[shiftr docs]: /components/shiftr/
|
||||
[snips docs]: /components/snips/
|
||||
[switch.digital_ocean docs]: /components/switch.digital_ocean/
|
||||
[switch.rachio docs]: /components/switch.rachio/
|
||||
[switch.verisure docs]: /components/switch.verisure/
|
||||
[switch.wake_on_lan docs]: /components/switch.wake_on_lan/
|
||||
[tado docs]: /components/tado/
|
||||
[telegram_bot docs]: /components/telegram_bot/
|
||||
[telegram_bot.webhooks docs]: /components/telegram_bot.webhooks/
|
||||
[tellduslive docs]: /components/tellduslive/
|
||||
[tts docs]: /components/tts/
|
||||
[upnp docs]: /components/upnp/
|
||||
[vera docs]: /components/vera/
|
||||
[verisure docs]: /components/verisure/
|
||||
[weather.buienradar docs]: /components/weather.buienradar/
|
||||
[zwave docs]: /components/zwave/
|
||||
[forum]: https://community.home-assistant.io/
|
||||
[gitter]: https://gitter.im/home-assistant/home-assistant
|
||||
[issue]: https://github.com/home-assistant/home-assistant/issues
|
@ -10,7 +10,7 @@ footer: true
|
||||
is_homepage: true
|
||||
hide_github_edit: true
|
||||
body_id: components-page
|
||||
regenerate: true
|
||||
regenerate: false
|
||||
---
|
||||
|
||||
{% assign count = site.components | size %}
|
||||
@ -257,3 +257,13 @@ allComponents.pop(); // remove placeholder element at the end
|
||||
applyFilter();
|
||||
})();
|
||||
</script>
|
||||
|
||||
<noscript>
|
||||
<ul>
|
||||
{% for component in components %}
|
||||
{% if component.ha_category %}
|
||||
<li><a href='{{ component.url }}'>{{ component.title }}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</noscript>
|
||||
|
@ -263,7 +263,8 @@ footer: true
|
||||
s_a[163] = "Drenthe|Flevoland|Friesland|Gelderland|Groningen|Limburg|Noord-Brabant|Noord-Holland|Overijssel|Utrecht|Zeeland|Zuid-Holland";
|
||||
s_a[164] = "Netherlands Antilles";
|
||||
s_a[165] = "Iles Loyaute|Nord|Sud";
|
||||
s_a[166] = "Akaroa|Amuri|Ashburton|Bay of Islands|Bruce|Buller|Chatham Islands|Cheviot|Clifton|Clutha|Cook|Dannevirke|Egmont|Eketahuna|Ellesmere|Eltham|Eyre|Featherston|Franklin|Golden Bay|Great Barrier Island|Grey|Hauraki Plains|Hawera|Hawke's Bay|Heathcote|Hikurangi|Hobson|Hokianga|Horowhenua|Hurunui|Hutt|Inangahua|Inglewood|Kaikoura|Kairanga|Kiwitea|Lake|Mackenzie|Malvern|Manaia|Manawatu|Mangonui|Maniototo|Marlborough|Masterton|Matamata|Mount Herbert|Ohinemuri|Opotiki|Oroua|Otamatea|Otorohanga|Oxford|Pahiatua|Paparua|Patea|Piako|Pohangina|Raglan|Rangiora|Rangitikei|Rodney|Rotorua|Runanga|Saint Kilda|Silverpeaks|Southland|Stewart Island|Stratford|Strathallan|Taranaki|Taumarunui|Taupo|Tauranga|Thames-Coromandel|Tuapeka|Vincent|Waiapu|Waiheke|Waihemo|Waikato|Waikohu|Waimairi|Waimarino|Waimate|Waimate West|Waimea|Waipa|Waipawa|Waipukurau|Wairarapa South|Wairewa|Wairoa|Waitaki|Waitomo|Waitotara|Wallace|Wanganui|Waverley|Wellington|Westland|Whakatane|Whangarei|Whangaroa|Woodville";
|
||||
// New Zealand
|
||||
s_a[166] = "Auckland|Bay of Plenty|Canterbury|Gisborne|Hawke's Bay|Manawatu-Wanganui|Marlborough|Nelson|Northland|Otago|Southland|Taranaki|Tasman|Waikato|Wellington|West Coast";
|
||||
s_a[167] = "Atlantico Norte|Atlantico Sur|Boaco|Carazo|Chinandega|Chontales|Esteli|Granada|Jinotega|Leon|Madriz|Managua|Masaya|Matagalpa|Nueva Segovia|Rio San Juan|Rivas";
|
||||
s_a[168] = "Agadez|Diffa|Dosso|Maradi|Niamey|Tahoua|Tillaberi|Zinder";
|
||||
s_a[169] = "Abia|Abuja Federal Capital Territory|Adamawa|Akwa Ibom|Anambra|Bauchi|Bayelsa|Benue|Borno|Cross River|Delta|Ebonyi|Edo|Ekiti|Enugu|Gombe|Imo|Jigawa|Kaduna|Kano|Katsina|Kebbi|Kogi|Kwara|Lagos|Nassarawa|Niger|Ogun|Ondo|Osun|Oyo|Plateau|Rivers|Sokoto|Taraba|Yobe|Zamfara";
|
||||
|
@ -2,7 +2,7 @@
|
||||
layout: page
|
||||
title: "Credits"
|
||||
description: "Credits for the developers who contributed to Home Assistant."
|
||||
date: 2017-06-10 09:18:30 +0000
|
||||
date: 2017-06-25 10:12:23 +0000
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
@ -13,7 +13,7 @@ This page contains a list of people who have contributed in one way or another t
|
||||
|
||||
### {% linkable_title Author %}
|
||||
|
||||
- [Paulus Schoutsen (@balloob)](https://github.com/balloob "5430 total commits to the home-assistant organization, 3330 commits to home-assistant, 1117 commits to home-assistant.github.io, 539 commits to home-assistant-polymer, 244 commits to home-assistant-js, 110 commits to netdisco, 40 commits to home-assistant-js-websocket, 13 commits to hass-release, 12 commits to home-assistant-assets, 7 commits to micropython-home-assistant, 4 commits to example-custom-config, 2 commits to python-hassbian, 2 commits to LabelBot, 2 commits to issue-bot, 2 commits to lambda-home-assistant-github, 2 commits to hassio, 1 commit to home-assistant-iOS, 1 commit to home-assistant-notebooks, 1 commit to hassio-addons, 1 commit to hassio-addons-example")
|
||||
- [Paulus Schoutsen (@balloob)](https://github.com/balloob "5474 total commits to the home-assistant organization, 3348 commits to home-assistant, 1132 commits to home-assistant.github.io, 545 commits to home-assistant-polymer, 244 commits to home-assistant-js, 110 commits to netdisco, 40 commits to home-assistant-js-websocket, 14 commits to hass-release, 12 commits to home-assistant-assets, 7 commits to example-custom-config, 7 commits to micropython-home-assistant, 3 commits to LabelBot, 2 commits to lambda-home-assistant-github, 2 commits to hassio, 2 commits to python-hassbian, 2 commits to issue-bot, 1 commit to hassio-addons-example, 1 commit to home-assistant-notebooks, 1 commit to home-assistant-iOS, 1 commit to hassio-addons")
|
||||
|
||||
### {% linkable_title Contributors %}
|
||||
|
||||
@ -28,9 +28,11 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Abhishek Anand (@aa755)](https://github.com/aa755 "2 total commits to the home-assistant organization, 1 commit to home-assistant, 1 commit to home-assistant.github.io")
|
||||
- [abmantis (@abmantis)](https://github.com/abmantis "5 total commits to the home-assistant organization, 5 commits to home-assistant")
|
||||
- [Achilleas Pipinellis (@axilleas)](https://github.com/axilleas "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Adam (@SilvrrGIT)](https://github.com/SilvrrGIT "8 total commits to the home-assistant organization, 8 commits to home-assistant.github.io")
|
||||
- [Adam Allport (@AAllport)](https://github.com/AAllport "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Adam Baxter (@voltagex)](https://github.com/voltagex "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer")
|
||||
- [Adam Garcia (@pancho-villa)](https://github.com/pancho-villa "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Adam Mills (@armills)](https://github.com/armills "160 total commits to the home-assistant organization, 107 commits to home-assistant, 25 commits to home-assistant.github.io, 24 commits to home-assistant-polymer, 3 commits to home-assistant-js, 1 commit to homebridge-homeassistant")
|
||||
- [Adam Mills (@armills)](https://github.com/armills "172 total commits to the home-assistant organization, 112 commits to home-assistant, 30 commits to home-assistant.github.io, 26 commits to home-assistant-polymer, 3 commits to home-assistant-js, 1 commit to homebridge-homeassistant")
|
||||
- [ADeeds (@ADeeds)](https://github.com/ADeeds "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [AdithyanI (@AdithyanI)](https://github.com/AdithyanI "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Aditya Shevade (@adibis)](https://github.com/adibis "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
@ -38,20 +40,19 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Adrien Brault (@adrienbrault)](https://github.com/adrienbrault "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Adrián López (@adrianlzt)](https://github.com/adrianlzt "8 total commits to the home-assistant organization, 6 commits to home-assistant.github.io, 2 commits to home-assistant")
|
||||
- [Alan Bowman (@alanbowman)](https://github.com/alanbowman "5 total commits to the home-assistant organization, 4 commits to home-assistant, 1 commit to home-assistant.github.io")
|
||||
- [Alan Fischer (@alanfischer)](https://github.com/alanfischer "7 total commits to the home-assistant organization, 5 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Alan Fischer (@alanfischer)](https://github.com/alanfischer "9 total commits to the home-assistant organization, 7 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Albert Lee (@trisk)](https://github.com/trisk "13 total commits to the home-assistant organization, 8 commits to home-assistant, 5 commits to home-assistant.github.io")
|
||||
- [Alberto Arias Maestro (@albertoarias)](https://github.com/albertoarias "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Aleksey Gureiev (@alg)](https://github.com/alg "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Alessandro Mogavero (@alexmogavero)](https://github.com/alexmogavero "4 total commits to the home-assistant organization, 3 commits to home-assistant, 1 commit to home-assistant.github.io")
|
||||
- [Alex (@asbach)](https://github.com/asbach "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [Alex Calderon (@AlexCalderon02)](https://github.com/AlexCalderon02 "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Alex Harvey (@infamy)](https://github.com/infamy "23 total commits to the home-assistant organization, 13 commits to home-assistant, 10 commits to home-assistant.github.io")
|
||||
- [Alex Mekkering (@AlexMekkering)](https://github.com/AlexMekkering "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Alex Harvey (@infamy)](https://github.com/infamy "25 total commits to the home-assistant organization, 14 commits to home-assistant, 11 commits to home-assistant.github.io")
|
||||
- [Alex Mekkering (@AlexMekkering)](https://github.com/AlexMekkering "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [Alex Popov (@AlexVPopov)](https://github.com/AlexVPopov "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Alex Tzonkov (@attzonko)](https://github.com/attzonko "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Alex Tzonkov (@attzonko)](https://github.com/attzonko "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Alex Vernacchia (@vernak2539)](https://github.com/vernak2539 "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Alexander Bandukwala (@7h3kk1d)](https://github.com/7h3kk1d "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Alexander Fortin (@shaftoe)](https://github.com/shaftoe "23 total commits to the home-assistant organization, 16 commits to home-assistant, 7 commits to home-assistant.github.io")
|
||||
- [Alexander Groß (@agross)](https://github.com/agross "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Alexander Kratzer (@hexxter)](https://github.com/hexxter "8 total commits to the home-assistant organization, 8 commits to home-assistant")
|
||||
- [Alexander Slansky (@aslansky)](https://github.com/aslansky "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
@ -63,16 +64,16 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [amorsillo (@AndrewMorsillo)](https://github.com/AndrewMorsillo "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer")
|
||||
- [Anastasia A. (@Sacret)](https://github.com/Sacret "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Anders Gjendem (@agjendem)](https://github.com/agjendem "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Anders Melchiorsen (@amelchio)](https://github.com/amelchio "72 total commits to the home-assistant organization, 52 commits to home-assistant, 18 commits to home-assistant.github.io, 2 commits to home-assistant-polymer")
|
||||
- [Anders Melchiorsen (@amelchio)](https://github.com/amelchio "78 total commits to the home-assistant organization, 55 commits to home-assistant, 21 commits to home-assistant.github.io, 2 commits to home-assistant-polymer")
|
||||
- [Andrea Falcone (@asfalcone)](https://github.com/asfalcone "5 total commits to the home-assistant organization, 5 commits to issue-bot")
|
||||
- [Andreas Ahrens (@DevvAndreas)](https://github.com/DevvAndreas "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Andreas Cambitsis (@acambitsis)](https://github.com/acambitsis "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Andreas Jacobsen (@andreasjacobsen93)](https://github.com/andreasjacobsen93 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Andreas Jacobsen (@andreasjacobsen93)](https://github.com/andreasjacobsen93 "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Andreas Rammhold (@andir)](https://github.com/andir "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer")
|
||||
- [Andreas Renberg (@IQAndreas)](https://github.com/IQAndreas "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Andreea-Daniela Ene (@AndreeaEne)](https://github.com/AndreeaEne "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Andrew (@aneisch)](https://github.com/aneisch "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||
- [Andrew (@aoakeson)](https://github.com/aoakeson "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [Andrew (@aneisch)](https://github.com/aneisch "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||
- [Andrew Cockburn (@acockburn)](https://github.com/acockburn "240 total commits to the home-assistant organization, 122 commits to appdaemon, 85 commits to hadashboard, 25 commits to scenegen, 8 commits to home-assistant.github.io")
|
||||
- [Andrew LeCody (@aceat64)](https://github.com/aceat64 "2 total commits to the home-assistant organization, 1 commit to home-assistant, 1 commit to home-assistant.github.io")
|
||||
- [Andrew Patton (@acusti)](https://github.com/acusti "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
@ -80,18 +81,18 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Andrew Stock (@watchforstock)](https://github.com/watchforstock "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Andrew Thigpen (@andythigpen)](https://github.com/andythigpen "33 total commits to the home-assistant organization, 32 commits to home-assistant, 1 commit to home-assistant-js")
|
||||
- [Andrew Williams (@nikdoof)](https://github.com/nikdoof "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [andrew-curtis (@andrew-curtis)](https://github.com/andrew-curtis "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
||||
- [Andrey (@andrey-git)](https://github.com/andrey-git "119 total commits to the home-assistant organization, 64 commits to home-assistant, 31 commits to home-assistant-polymer, 24 commits to home-assistant.github.io")
|
||||
- [andrew-curtis (@andrew-curtis)](https://github.com/andrew-curtis "7 total commits to the home-assistant organization, 7 commits to home-assistant.github.io")
|
||||
- [Andrey (@andrey-git)](https://github.com/andrey-git "126 total commits to the home-assistant organization, 70 commits to home-assistant, 32 commits to home-assistant-polymer, 24 commits to home-assistant.github.io")
|
||||
- [Andrey Petrov (@anpetrov)](https://github.com/anpetrov "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Andrzej (@andriej)](https://github.com/andriej "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [Andy Castille (@Klikini)](https://github.com/Klikini "2 total commits to the home-assistant organization, 1 commit to home-assistant, 1 commit to home-assistant.github.io")
|
||||
- [Andy Castille (@Klikini)](https://github.com/Klikini "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [Andy Lindeman (@alindeman)](https://github.com/alindeman "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Andy Loughran (@andylockran)](https://github.com/andylockran "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [andyat (@andyat)](https://github.com/andyat "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Anthony Hughes (@tony2nite)](https://github.com/tony2nite "1 total commits to the home-assistant organization, 1 commit to netdisco")
|
||||
- [Anthony Hughes (@tony2nite)](https://github.com/tony2nite "2 total commits to the home-assistant organization, 1 commit to netdisco, 1 commit to home-assistant")
|
||||
- [Antoine Bertin (@Diaoul)](https://github.com/Diaoul "5 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
||||
- [Anton Glukhov (@toxxin)](https://github.com/toxxin "1 total commits to the home-assistant organization, 1 commit to libcoap")
|
||||
- [Anton Lundin (@glance-)](https://github.com/glance- "4 total commits to the home-assistant organization, 3 commits to home-assistant, 1 commit to netdisco")
|
||||
- [Anton Lundin (@glance-)](https://github.com/glance- "5 total commits to the home-assistant organization, 4 commits to home-assistant, 1 commit to netdisco")
|
||||
- [Anton Sarukhanov (@antsar)](https://github.com/antsar "6 total commits to the home-assistant organization, 3 commits to home-assistant, 2 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
||||
- [Antonio Párraga Navarro (@aparraga)](https://github.com/aparraga "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Anubhaw Arya (@aarya123)](https://github.com/aarya123 "2 total commits to the home-assistant organization, 1 commit to home-assistant, 1 commit to home-assistant.github.io")
|
||||
@ -115,7 +116,7 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Barry Williams (@bazwilliams)](https://github.com/bazwilliams "10 total commits to the home-assistant organization, 6 commits to home-assistant, 2 commits to netdisco, 2 commits to home-assistant.github.io")
|
||||
- [Bart274 (@Bart274)](https://github.com/Bart274 "26 total commits to the home-assistant organization, 17 commits to home-assistant, 8 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
||||
- [Bartek Celary (@bcelary)](https://github.com/bcelary "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Bas Schipper (@basschipper)](https://github.com/basschipper "2 total commits to the home-assistant organization, 1 commit to home-assistant, 1 commit to home-assistant.github.io")
|
||||
- [Bas Schipper (@basschipper)](https://github.com/basschipper "5 total commits to the home-assistant organization, 3 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Bas Stottelaar (@basilfx)](https://github.com/basilfx "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Beat (@bdurrer)](https://github.com/bdurrer "12 total commits to the home-assistant organization, 10 commits to home-assistant.github.io, 1 commit to home-assistant-polymer, 1 commit to home-assistant")
|
||||
- [Beau Simensen (@simensen)](https://github.com/simensen "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
@ -130,12 +131,13 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Benny de Leeuw (@leeuwte)](https://github.com/leeuwte "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Benoit BESSET (@bbesset)](https://github.com/bbesset "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [bestlibre (@bestlibre)](https://github.com/bestlibre "13 total commits to the home-assistant organization, 7 commits to home-assistant, 4 commits to home-assistant.github.io, 1 commit to hassio, 1 commit to hassio-build")
|
||||
- [Bike Dude (@netzmacher)](https://github.com/netzmacher "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Bill Nelson (@xhostplus)](https://github.com/xhostplus "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Bjarni Ivarsson (@bjarniivarsson)](https://github.com/bjarniivarsson "8 total commits to the home-assistant organization, 5 commits to home-assistant, 3 commits to home-assistant-polymer")
|
||||
- [bl8rnr (@bl8rnr)](https://github.com/bl8rnr "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Blanyal D'Souza (@blanyal)](https://github.com/blanyal "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Boced66 (@boced66)](https://github.com/boced66 "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [boojew (@boojew)](https://github.com/boojew "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [boojew (@boojew)](https://github.com/boojew "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
||||
- [Boris K (@bokub)](https://github.com/bokub "11 total commits to the home-assistant organization, 6 commits to home-assistant.github.io, 5 commits to home-assistant")
|
||||
- [Brad Buran (@bburan)](https://github.com/bburan "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Brad Johnson (@bradsk88)](https://github.com/bradsk88 "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
@ -161,9 +163,9 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Bryce Edwards (@hoopty)](https://github.com/hoopty "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [BUUT! (@buut-vrij)](https://github.com/buut-vrij "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Caius Cioran (@caiuspb)](https://github.com/caiuspb "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||
- [Caleb (@finish06)](https://github.com/finish06 "6 total commits to the home-assistant organization, 5 commits to home-assistant, 1 commit to home-assistant.github.io")
|
||||
- [Caleb (@finish06)](https://github.com/finish06 "8 total commits to the home-assistant organization, 7 commits to home-assistant, 1 commit to home-assistant.github.io")
|
||||
- [Cameron Bulock (@cbulock)](https://github.com/cbulock "4 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to netdisco, 1 commit to home-assistant")
|
||||
- [Carlo Costanzo (@CCOSTAN)](https://github.com/CCOSTAN "83 total commits to the home-assistant organization, 75 commits to home-assistant.github.io, 5 commits to home-assistant, 1 commit to hassbian-scripts, 1 commit to fabric-home-assistant, 1 commit to homebridge-homeassistant")
|
||||
- [Carlo Costanzo (@CCOSTAN)](https://github.com/CCOSTAN "84 total commits to the home-assistant organization, 76 commits to home-assistant.github.io, 5 commits to home-assistant, 1 commit to fabric-home-assistant, 1 commit to hassbian-scripts, 1 commit to homebridge-homeassistant")
|
||||
- [carlosmgr (@carlosmgr)](https://github.com/carlosmgr "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
||||
- [Carter (@BluGeni)](https://github.com/BluGeni "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [Cedric Gatay (@CedricGatay)](https://github.com/CedricGatay "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
@ -172,7 +174,7 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [ChadCurvin (@ChadCurvin)](https://github.com/ChadCurvin "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [chanders (@chanders)](https://github.com/chanders "2 total commits to the home-assistant organization, 2 commits to hadashboard")
|
||||
- [CHAPELLE Quentin (@quentinchap)](https://github.com/quentinchap "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Charles Blonde (@CharlesBlonde)](https://github.com/CharlesBlonde "5 total commits to the home-assistant organization, 3 commits to home-assistant.github.io, 2 commits to home-assistant")
|
||||
- [Charles Blonde (@CharlesBlonde)](https://github.com/CharlesBlonde "9 total commits to the home-assistant organization, 5 commits to home-assistant, 4 commits to home-assistant.github.io")
|
||||
- [Charles Spirakis (@srcLurker)](https://github.com/srcLurker "8 total commits to the home-assistant organization, 5 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||
- [Chayoung You (@yous)](https://github.com/yous "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Check your git settings! (@invalid-email-address)](https://github.com/invalid-email-address "1 total commits to the home-assistant organization, 1 commit to libcoap")
|
||||
@ -187,7 +189,7 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Chris R. Miller (@mysteriouspants)](https://github.com/mysteriouspants "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Chris Sims (@jcsims)](https://github.com/jcsims "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Chris Smolen (@smolz)](https://github.com/smolz "10 total commits to the home-assistant organization, 6 commits to home-assistant.github.io, 4 commits to appdaemon")
|
||||
- [chris-thorn (@chris-thorn)](https://github.com/chris-thorn "6 total commits to the home-assistant organization, 6 commits to home-assistant.github.io")
|
||||
- [Chris Thorn (@chris-thorn)](https://github.com/chris-thorn "6 total commits to the home-assistant organization, 6 commits to home-assistant.github.io")
|
||||
- [Christiaan Blom (@Deinara)](https://github.com/Deinara "8 total commits to the home-assistant organization, 7 commits to home-assistant, 1 commit to home-assistant.github.io")
|
||||
- [Christian Brædstrup (@LinuxChristian)](https://github.com/LinuxChristian "8 total commits to the home-assistant organization, 7 commits to home-assistant, 1 commit to home-assistant.github.io")
|
||||
- [Christian Studer (@cstuder)](https://github.com/cstuder "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
@ -198,27 +200,22 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [chrysn (@chrysn)](https://github.com/chrysn "65 total commits to the home-assistant organization, 65 commits to libcoap")
|
||||
- [Chun-wei Kuo (@Domon)](https://github.com/Domon "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [chz^3 (@chzchzchz)](https://github.com/chzchzchz "1 total commits to the home-assistant organization, 1 commit to pi-gen")
|
||||
- [Ciquattro (@CiquattroFPV)](https://github.com/CiquattroFPV "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Ciquattro (@CiquattroFPV)](https://github.com/CiquattroFPV "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [clach04 (@clach04)](https://github.com/clach04 "5 total commits to the home-assistant organization, 3 commits to home-assistant.github.io, 2 commits to home-assistant")
|
||||
- [Claudiu Farcas (@farcasclaudiu)](https://github.com/farcasclaudiu "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Claus F. Strasburger (@cfstras)](https://github.com/cfstras "1 total commits to the home-assistant organization, 1 commit to pi-gen")
|
||||
- [Clemens Wolff (@c-w)](https://github.com/c-w "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Cláudio Ribeiro (@DailyMatters)](https://github.com/DailyMatters "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [codeavenger07 (@codeavenger07)](https://github.com/codeavenger07 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Colin O'Dell (@colinodell)](https://github.com/colinodell "20 total commits to the home-assistant organization, 12 commits to home-assistant, 8 commits to home-assistant.github.io")
|
||||
- [Conrad Juhl Andersen (@cnrd)](https://github.com/cnrd "2 total commits to the home-assistant organization, 1 commit to home-assistant, 1 commit to home-assistant.github.io")
|
||||
- [Conrad Juhl Andersen (@cnrd)](https://github.com/cnrd "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Constantine Grantcharov (@conz27)](https://github.com/conz27 "1 total commits to the home-assistant organization, 1 commit to libcoap")
|
||||
- [Cooper Dale (@Cooper-Dale)](https://github.com/Cooper-Dale "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Corban Mailloux (@corbanmailloux)](https://github.com/corbanmailloux "17 total commits to the home-assistant organization, 16 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [corneyl (@corneyl)](https://github.com/corneyl "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Craig Hills (@chills42)](https://github.com/chills42 "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Craig J. Ward (@wardcraigj)](https://github.com/wardcraigj "13 total commits to the home-assistant organization, 8 commits to home-assistant, 5 commits to home-assistant.github.io")
|
||||
- [cribbstechnologies (@cribbstechnologies)](https://github.com/cribbstechnologies "33 total commits to the home-assistant organization, 23 commits to home-assistant, 9 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
||||
- [cribbstechnologies (@cribbstechnologies)](https://github.com/cribbstechnologies "36 total commits to the home-assistant organization, 24 commits to home-assistant, 10 commits to home-assistant.github.io, 2 commits to home-assistant-polymer")
|
||||
- [CTLS (@CTLS)](https://github.com/CTLS "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Dale Higgs (@dale3h)](https://github.com/dale3h "24 total commits to the home-assistant organization, 13 commits to home-assistant.github.io, 9 commits to home-assistant, 1 commit to homebridge-homeassistant, 1 commit to hassbot")
|
||||
- [Dale Higgs (@dale3h)](https://github.com/dale3h "24 total commits to the home-assistant organization, 13 commits to home-assistant.github.io, 9 commits to home-assistant, 1 commit to hassbot, 1 commit to homebridge-homeassistant")
|
||||
- [Dan (@danieljkemp)](https://github.com/danieljkemp "22 total commits to the home-assistant organization, 15 commits to home-assistant, 7 commits to home-assistant.github.io")
|
||||
- [Dan Burke (@danburke)](https://github.com/danburke "1 total commits to the home-assistant organization, 1 commit to home-assistant.github.io")
|
||||
- [Dan Cinnamon (@Cinntax)](https://github.com/Cinntax "14 total commits to the home-assistant organization, 11 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||
- [Dan Cinnamon (@Cinntax)](https://github.com/Cinntax "13 total commits to the home-assistant organization, 11 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Dan Ford (@dpford)](https://github.com/dpford "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Dan Ports (@drkp)](https://github.com/drkp "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||
- [Dan Smith (@kk7ds)](https://github.com/kk7ds "84 total commits to the home-assistant organization, 68 commits to home-assistant, 14 commits to home-assistant.github.io, 2 commits to home-assistant-polymer")
|
||||
@ -257,6 +254,7 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Dennis Karpienski (@TheRealLink)](https://github.com/TheRealLink "24 total commits to the home-assistant organization, 15 commits to home-assistant-polymer, 6 commits to home-assistant, 2 commits to home-assistant.github.io, 1 commit to netdisco")
|
||||
- [Dennis Sutch (@sutch)](https://github.com/sutch "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [devdelay (@devdelay)](https://github.com/devdelay "16 total commits to the home-assistant organization, 7 commits to home-assistant.github.io, 5 commits to home-assistant, 4 commits to homebridge-homeassistant")
|
||||
- [Diogo Gomes (@dgomes)](https://github.com/dgomes "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Diogo Soares (@diogos88)](https://github.com/diogos88 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [dpressle (@dpressle)](https://github.com/dpressle "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [dramamoose (@dramamoose)](https://github.com/dramamoose "5 total commits to the home-assistant organization, 3 commits to home-assistant.github.io, 2 commits to home-assistant")
|
||||
@ -272,11 +270,11 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Eric Jansen (@ej81)](https://github.com/ej81 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Eric Rolf (@xrolfex)](https://github.com/xrolfex "13 total commits to the home-assistant organization, 13 commits to home-assistant")
|
||||
- [Eric Thompson (@er0ck)](https://github.com/er0ck "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Erik Eriksson (@molobrakos)](https://github.com/molobrakos "93 total commits to the home-assistant organization, 85 commits to home-assistant, 5 commits to home-assistant.github.io, 3 commits to netdisco")
|
||||
- [Erik Eriksson (@molobrakos)](https://github.com/molobrakos "94 total commits to the home-assistant organization, 86 commits to home-assistant, 5 commits to home-assistant.github.io, 3 commits to netdisco")
|
||||
- [Erik-jan Riemers (@riemers)](https://github.com/riemers "11 total commits to the home-assistant organization, 11 commits to home-assistant.github.io")
|
||||
- [ettisan (@ettisan)](https://github.com/ettisan "8 total commits to the home-assistant organization, 8 commits to home-assistant")
|
||||
- [Eugenio Panadero (@azogue)](https://github.com/azogue "16 total commits to the home-assistant organization, 9 commits to home-assistant, 7 commits to home-assistant.github.io")
|
||||
- [Fabian Affolter (@fabaff)](https://github.com/fabaff "3757 total commits to the home-assistant organization, 2367 commits to home-assistant.github.io, 1229 commits to home-assistant, 59 commits to home-assistant-ansible, 23 commits to home-assistant-dev-helper, 22 commits to home-assistant-notebooks, 21 commits to home-assistant-cli, 17 commits to home-assistant-assets, 10 commits to home-assistant-polymer, 8 commits to netdisco, 1 commit to home-assistant-js-websocket")
|
||||
- [Eugenio Panadero (@azogue)](https://github.com/azogue "29 total commits to the home-assistant organization, 17 commits to home-assistant, 12 commits to home-assistant.github.io")
|
||||
- [Fabian Affolter (@fabaff)](https://github.com/fabaff "3816 total commits to the home-assistant organization, 2407 commits to home-assistant.github.io, 1248 commits to home-assistant, 59 commits to home-assistant-ansible, 23 commits to home-assistant-dev-helper, 22 commits to home-assistant-notebooks, 21 commits to home-assistant-cli, 17 commits to home-assistant-assets, 10 commits to home-assistant-polymer, 8 commits to netdisco, 1 commit to home-assistant-js-websocket")
|
||||
- [Fabian Heredia Montiel (@fabianhjr)](https://github.com/fabianhjr "4 total commits to the home-assistant organization, 4 commits to home-assistant")
|
||||
- [Fabrizio Furnari (@fabfurnari)](https://github.com/fabfurnari "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [fakezeta (@fakezeta)](https://github.com/fakezeta "7 total commits to the home-assistant organization, 7 commits to home-assistant")
|
||||
@ -287,7 +285,7 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Ferry van Zeelst (@StaticCube)](https://github.com/StaticCube "6 total commits to the home-assistant organization, 4 commits to home-assistant.github.io, 2 commits to home-assistant")
|
||||
- [Finbarr Brady (@fbradyirl)](https://github.com/fbradyirl "8 total commits to the home-assistant organization, 8 commits to home-assistant")
|
||||
- [Flavio Castelli (@flavio)](https://github.com/flavio "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Florian Holzapfel (@florianholzapfel)](https://github.com/florianholzapfel "11 total commits to the home-assistant organization, 4 commits to home-assistant.github.io, 4 commits to home-assistant, 3 commits to netdisco")
|
||||
- [Florian Holzapfel (@florianholzapfel)](https://github.com/florianholzapfel "11 total commits to the home-assistant organization, 4 commits to home-assistant, 4 commits to home-assistant.github.io, 3 commits to netdisco")
|
||||
- [florincosta (@florincosta)](https://github.com/florincosta "6 total commits to the home-assistant organization, 3 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||
- [Fonta (@f0nt4)](https://github.com/f0nt4 "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||
- [Frank (@syphernl)](https://github.com/syphernl "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer")
|
||||
@ -313,6 +311,7 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Gianpaolo Macario (@gmacario)](https://github.com/gmacario "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Giel Janssens (@gieljnssns)](https://github.com/gieljnssns "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Gilles Margerie (@Gilles95)](https://github.com/Gilles95 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Giuseppe (@glpatcern)](https://github.com/glpatcern "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [GMFalka (@GMFalka)](https://github.com/GMFalka "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Gopal Kildoliya (@gopalkildoliya)](https://github.com/gopalkildoliya "6 total commits to the home-assistant organization, 4 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Graeme Smith (@Instagraeme)](https://github.com/Instagraeme "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
@ -327,8 +326,9 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Gustav Ahlberg (@Gyran)](https://github.com/Gyran "20 total commits to the home-assistant organization, 20 commits to home-assistant")
|
||||
- [gwendalg (@gwendalg)](https://github.com/gwendalg "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||
- [Hajime Morrita (@omo)](https://github.com/omo "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Hamid (@hamid-elaosta)](https://github.com/hamid-elaosta "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Hao Hu (@howiehu)](https://github.com/howiehu "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [happyleavesaoc (@happyleavesaoc)](https://github.com/happyleavesaoc "94 total commits to the home-assistant organization, 72 commits to home-assistant, 21 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
||||
- [happyleavesaoc (@happyleavesaoc)](https://github.com/happyleavesaoc "99 total commits to the home-assistant organization, 77 commits to home-assistant, 21 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
||||
- [Harald Nagel (@haraldnagel)](https://github.com/haraldnagel "8 total commits to the home-assistant organization, 6 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Hari Menon (@floydpink)](https://github.com/floydpink "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Harris Borawski (@hborawski)](https://github.com/hborawski "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
@ -375,18 +375,19 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Jan Pobořil (@iBobik)](https://github.com/iBobik "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Jan Wh (@janwh)](https://github.com/janwh "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Jan-Preben Mossin (@jpmossin)](https://github.com/jpmossin "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Janne Grunau (@jannau)](https://github.com/jannau "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Janne Grunau (@jannau)](https://github.com/jannau "4 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 2 commits to home-assistant")
|
||||
- [Jared Beckham (@jtbeckha)](https://github.com/jtbeckha "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Jared J. (@jjensn)](https://github.com/jjensn "2 total commits to the home-assistant organization, 1 commit to netdisco, 1 commit to home-assistant")
|
||||
- [Jason Carter (@JasonCarter80)](https://github.com/JasonCarter80 "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||
- [Jason Hite (@jasonmhite)](https://github.com/jasonmhite "6 total commits to the home-assistant organization, 6 commits to appdaemon")
|
||||
- [Javier González Calleja (@gonzalezcalleja)](https://github.com/gonzalezcalleja "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Jay Love (@jslove)](https://github.com/jslove "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Jean Regisser (@jeanregisser)](https://github.com/jeanregisser "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Jean Regisser (@jeanregisser)](https://github.com/jeanregisser "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Jean-Michel Julien (@KurdyMalloy)](https://github.com/KurdyMalloy "1 total commits to the home-assistant organization, 1 commit to libcoap")
|
||||
- [Jean-Michel Ruiz (@coolcow)](https://github.com/coolcow "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Jean-Philippe Bouillot (@Jypy)](https://github.com/Jypy "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Jeff Schroeder (@SEJeff)](https://github.com/SEJeff "17 total commits to the home-assistant organization, 17 commits to home-assistant")
|
||||
- [Jeff Wilson (@jawilson)](https://github.com/jawilson "16 total commits to the home-assistant organization, 13 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||
- [Jeff Wilson (@jawilson)](https://github.com/jawilson "17 total commits to the home-assistant organization, 14 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||
- [Jeffrey Lin (@linjef)](https://github.com/linjef "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Jeremiah Wuenschel (@jer)](https://github.com/jer "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Jeremy (@Wutname1)](https://github.com/Wutname1 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
@ -414,22 +415,22 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Johan Klintberg (@moogblob)](https://github.com/moogblob "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Johann Kellerman (@kellerza)](https://github.com/kellerza "144 total commits to the home-assistant organization, 114 commits to home-assistant, 30 commits to home-assistant.github.io")
|
||||
- [Johannes K. (@roadrash2108)](https://github.com/roadrash2108 "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||
- [John Arild Berentsen (@turbokongen)](https://github.com/turbokongen "178 total commits to the home-assistant organization, 141 commits to home-assistant, 30 commits to home-assistant.github.io, 7 commits to home-assistant-polymer")
|
||||
- [John Arild Berentsen (@turbokongen)](https://github.com/turbokongen "180 total commits to the home-assistant organization, 141 commits to home-assistant, 31 commits to home-assistant.github.io, 8 commits to home-assistant-polymer")
|
||||
- [John Coggeshall (@coogle)](https://github.com/coogle "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [John Lindley (@jwl17330536)](https://github.com/jwl17330536 "18 total commits to the home-assistant organization, 11 commits to hadashboard, 6 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [John McLaughlin (@loghound)](https://github.com/loghound "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [John Mihalic (@mezz64)](https://github.com/mezz64 "36 total commits to the home-assistant organization, 24 commits to home-assistant, 11 commits to home-assistant.github.io, 1 commit to hadashboard")
|
||||
- [John Mihalic (@mezz64)](https://github.com/mezz64 "37 total commits to the home-assistant organization, 25 commits to home-assistant, 11 commits to home-assistant.github.io, 1 commit to hadashboard")
|
||||
- [John Williams (@Jaidan)](https://github.com/Jaidan "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [johnappletree (@johnappletree)](https://github.com/johnappletree "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Jon (@JonMurphy)](https://github.com/JonMurphy "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Jon Caruana (@joncar)](https://github.com/joncar "5 total commits to the home-assistant organization, 3 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Jon Evans (@craftyjon)](https://github.com/craftyjon "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Jon Maddox (@maddox)](https://github.com/maddox "102 total commits to the home-assistant organization, 78 commits to home-assistant, 16 commits to homebridge-homeassistant, 8 commits to home-assistant.github.io")
|
||||
- [Jonatan Castro (@jcastro)](https://github.com/jcastro "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Jonatan Castro (@jcastro)](https://github.com/jcastro "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||
- [Jonathan Baginski (@patchedsoul)](https://github.com/patchedsoul "115 total commits to the home-assistant organization, 87 commits to fabric-home-assistant, 28 commits to home-assistant.github.io")
|
||||
- [joopert (@joopert)](https://github.com/joopert "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
||||
- [Jordan Keith (@zeddD1abl0)](https://github.com/zeddD1abl0 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Jose Juan Montes (@jjmontesl)](https://github.com/jjmontesl "7 total commits to the home-assistant organization, 5 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Jose Juan Montes (@jjmontesl)](https://github.com/jjmontesl "9 total commits to the home-assistant organization, 6 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||
- [Joseph Carter (@iKarith)](https://github.com/iKarith "8 total commits to the home-assistant organization, 8 commits to pi-gen")
|
||||
- [Joseph Piron (@eagleamon)](https://github.com/eagleamon "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||
- [Josh Anderson (@andersonshatch)](https://github.com/andersonshatch "5 total commits to the home-assistant organization, 3 commits to home-assistant, 2 commits to homebridge-homeassistant")
|
||||
@ -437,7 +438,7 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Josh Wright (@JshWright)](https://github.com/JshWright "29 total commits to the home-assistant organization, 21 commits to home-assistant, 8 commits to home-assistant.github.io")
|
||||
- [jpcomtois (@jpcomtois)](https://github.com/jpcomtois "1 total commits to the home-assistant organization, 1 commit to libcoap")
|
||||
- [JudgeDredd (@kentcalero)](https://github.com/kentcalero "6 total commits to the home-assistant organization, 6 commits to home-assistant.github.io")
|
||||
- [Juggels (@Juggels)](https://github.com/Juggels "7 total commits to the home-assistant organization, 5 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Juggels (@Juggels)](https://github.com/Juggels "8 total commits to the home-assistant organization, 5 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||
- [Julian Kahnert (@JulianKahnert)](https://github.com/JulianKahnert "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Julien Danjou (@jd)](https://github.com/jd "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [jumpkick (@jumpkick)](https://github.com/jumpkick "15 total commits to the home-assistant organization, 12 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||
@ -447,7 +448,7 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Justin Weberg (@justweb1)](https://github.com/justweb1 "28 total commits to the home-assistant organization, 13 commits to home-assistant-polymer, 7 commits to hassbot, 4 commits to home-assistant, 2 commits to home-assistant.github.io, 1 commit to home-assistant-js, 1 commit to hassio")
|
||||
- [Justyn Shull (@justyns)](https://github.com/justyns "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
||||
- [Kai (@luxus)](https://github.com/luxus "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [Kane610 (@Kane610)](https://github.com/Kane610 "5 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io, 1 commit to netdisco")
|
||||
- [Kane610 (@Kane610)](https://github.com/Kane610 "6 total commits to the home-assistant organization, 3 commits to home-assistant, 2 commits to home-assistant.github.io, 1 commit to netdisco")
|
||||
- [Karen Goode (@kfgoode)](https://github.com/kfgoode "4 total commits to the home-assistant organization, 4 commits to home-assistant")
|
||||
- [kaustubhphatak (@kaustubhphatak)](https://github.com/kaustubhphatak "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Keaton Taylor (@keatontaylor)](https://github.com/keatontaylor "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||
@ -456,7 +457,7 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Ken Bannister (@kb2ma)](https://github.com/kb2ma "1 total commits to the home-assistant organization, 1 commit to libcoap")
|
||||
- [Kevin (@Mister-Espria)](https://github.com/Mister-Espria "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Kevin Christensen (@nivekmai)](https://github.com/nivekmai "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Kevin Fronczak (@fronzbot)](https://github.com/fronzbot "6 total commits to the home-assistant organization, 3 commits to home-assistant.github.io, 3 commits to home-assistant")
|
||||
- [Kevin Fronczak (@fronzbot)](https://github.com/fronzbot "6 total commits to the home-assistant organization, 3 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||
- [Kevin Gisi (@gisikw)](https://github.com/gisikw "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
||||
- [Kevin Gottsman (@gottsman)](https://github.com/gottsman "7 total commits to the home-assistant organization, 6 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [Kevin Panaro (@kevinpanaro)](https://github.com/kevinpanaro "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
@ -472,13 +473,13 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [lamiskin (@lamiskin)](https://github.com/lamiskin "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [lee-js (@lee-js)](https://github.com/lee-js "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Leonardo Saraiva (@vyper)](https://github.com/vyper "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Lev Aronsky (@aronsky)](https://github.com/aronsky "7 total commits to the home-assistant organization, 5 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Lev Aronsky (@aronsky)](https://github.com/aronsky "9 total commits to the home-assistant organization, 7 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Lewis Juggins (@lwis)](https://github.com/lwis "52 total commits to the home-assistant organization, 41 commits to home-assistant, 10 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
||||
- [lichtteil (@lichtteil)](https://github.com/lichtteil "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [LightIsLife (@LightIsLife)](https://github.com/LightIsLife "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Lindsay Ward (@lindsaymarkward)](https://github.com/lindsaymarkward "17 total commits to the home-assistant organization, 13 commits to home-assistant.github.io, 4 commits to home-assistant")
|
||||
- [linuxlurak (@linuxlurak)](https://github.com/linuxlurak "5 total commits to the home-assistant organization, 3 commits to home-assistant.github.io, 2 commits to hadashboard")
|
||||
- [Luar Roji (@cyberplant)](https://github.com/cyberplant "5 total commits to the home-assistant organization, 4 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [Luar Roji (@cyberplant)](https://github.com/cyberplant "6 total commits to the home-assistant organization, 4 commits to home-assistant.github.io, 2 commits to home-assistant")
|
||||
- [LucaSoldi (@LucaSoldi)](https://github.com/LucaSoldi "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
||||
- [Lucien Guimier (@guimier)](https://github.com/guimier "1 total commits to the home-assistant organization, 1 commit to libcoap")
|
||||
- [Ludeeus (@ludeeus)](https://github.com/ludeeus "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
@ -500,10 +501,11 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Marc Egli (@frog32)](https://github.com/frog32 "9 total commits to the home-assistant organization, 7 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Marc Forth (@mf-social)](https://github.com/mf-social "11 total commits to the home-assistant organization, 10 commits to home-assistant.github.io, 1 commit to fabric-home-assistant")
|
||||
- [Marc Pabst (@mxtra)](https://github.com/mxtra "2 total commits to the home-assistant organization, 1 commit to home-assistant-polymer, 1 commit to home-assistant")
|
||||
- [Marc Plano-Lesay (@Kernald)](https://github.com/Kernald "9 total commits to the home-assistant organization, 9 commits to home-assistant.github.io")
|
||||
- [Marc Plano-Lesay (@Kernald)](https://github.com/Kernald "11 total commits to the home-assistant organization, 10 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [Marcel030nl (@Marcel030nl)](https://github.com/Marcel030nl "6 total commits to the home-assistant organization, 5 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [Marcelo Moreira de Mello (@tchellomello)](https://github.com/tchellomello "103 total commits to the home-assistant organization, 55 commits to home-assistant, 48 commits to home-assistant.github.io")
|
||||
- [Marcin Jaworski (@yawor)](https://github.com/yawor "10 total commits to the home-assistant organization, 10 commits to appdaemon")
|
||||
- [Marco Sirabella (@mjsir911)](https://github.com/mjsir911 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Marijn Giesen (@marijngiesen)](https://github.com/marijngiesen "7 total commits to the home-assistant organization, 5 commits to hadashboard, 2 commits to home-assistant.github.io")
|
||||
- [mariwing (@mariwing)](https://github.com/mariwing "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Mark (@scmmmh)](https://github.com/scmmmh "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
@ -520,12 +522,14 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Martin J. Laubach (@mjl)](https://github.com/mjl "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Martin Nöhrer (@matrixx567)](https://github.com/matrixx567 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Martin Rowan (@shortbloke)](https://github.com/shortbloke "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Martin Tremblay (@MartyTremblay)](https://github.com/MartyTremblay "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Martin Vacula (@MatoKafkac)](https://github.com/MatoKafkac "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Martokk (@martokk)](https://github.com/martokk "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Mathew Peterson (@mathewpeterson)](https://github.com/mathewpeterson "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [Matt N. (@mnoorenberghe)](https://github.com/mnoorenberghe "23 total commits to the home-assistant organization, 15 commits to home-assistant.github.io, 7 commits to home-assistant, 1 commit to home-assistant-polymer")
|
||||
- [Matt Rogers (@rogersmj)](https://github.com/rogersmj "20 total commits to the home-assistant organization, 20 commits to hadashboard")
|
||||
- [Matt Schmitt (@schmittx)](https://github.com/schmittx "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant")
|
||||
- [matt2005 (@matt2005)](https://github.com/matt2005 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Matteo Lampugnani (@t30)](https://github.com/t30 "7 total commits to the home-assistant organization, 7 commits to home-assistant.github.io")
|
||||
- [Matthew Bowen (@mgbowen)](https://github.com/mgbowen "4 total commits to the home-assistant organization, 3 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [Matthew Garrett (@mjg59)](https://github.com/mjg59 "9 total commits to the home-assistant organization, 6 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||
@ -536,7 +540,7 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [mboeru (@mboeru)](https://github.com/mboeru "1 total commits to the home-assistant organization, 1 commit to home-assistant-iOS")
|
||||
- [Micha LaQua (@milaq)](https://github.com/milaq "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||
- [Michael (@hartmms)](https://github.com/hartmms "6 total commits to the home-assistant organization, 4 commits to home-assistant.github.io, 2 commits to home-assistant")
|
||||
- [Michael Auchter (@auchter)](https://github.com/auchter "12 total commits to the home-assistant organization, 12 commits to home-assistant")
|
||||
- [Michael Auchter (@auchter)](https://github.com/auchter "13 total commits to the home-assistant organization, 13 commits to home-assistant")
|
||||
- [Michael Buffington (@elbowdonkey)](https://github.com/elbowdonkey "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Michael Furtak (@mfurtak)](https://github.com/mfurtak "5 total commits to the home-assistant organization, 5 commits to issue-bot")
|
||||
- [Michael Gilbert (@Zyell)](https://github.com/Zyell "8 total commits to the home-assistant organization, 8 commits to home-assistant")
|
||||
@ -545,9 +549,10 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Michael Luggen (@l00mi)](https://github.com/l00mi "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Michael Requeny (@requenym)](https://github.com/requenym "14 total commits to the home-assistant organization, 14 commits to home-assistant.github.io")
|
||||
- [Michael Shim (@shimeez)](https://github.com/shimeez "1 total commits to the home-assistant organization, 1 commit to fabric-home-assistant")
|
||||
- [Michaël Arnauts (@michaelarnauts)](https://github.com/michaelarnauts "49 total commits to the home-assistant organization, 24 commits to home-assistant, 21 commits to home-assistant.github.io, 3 commits to home-assistant-polymer, 1 commit to netdisco")
|
||||
- [Michaël Arnauts (@michaelarnauts)](https://github.com/michaelarnauts "50 total commits to the home-assistant organization, 25 commits to home-assistant, 21 commits to home-assistant.github.io, 3 commits to home-assistant-polymer, 1 commit to netdisco")
|
||||
- [Michel Settembrino (@MS-Informatique)](https://github.com/MS-Informatique "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [micw (@micw)](https://github.com/micw "8 total commits to the home-assistant organization, 5 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||
- [Miha Lunar (@SmilyOrg)](https://github.com/SmilyOrg "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [Mikayla Hutchinson (@mhutch)](https://github.com/mhutch "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Mike Hennessy (@henworth)](https://github.com/henworth "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Mike Megally (@cmsimike)](https://github.com/cmsimike "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
@ -561,12 +566,15 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Mitesh Patel (@gurumitts)](https://github.com/gurumitts "9 total commits to the home-assistant organization, 5 commits to home-assistant, 4 commits to home-assistant.github.io")
|
||||
- [Mitko Masarliev (@masarliev)](https://github.com/masarliev "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [mje-nz (@mje-nz)](https://github.com/mje-nz "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [mjj4791 (@mjj4791)](https://github.com/mjj4791 "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [mnestor (@mnestor)](https://github.com/mnestor "6 total commits to the home-assistant organization, 5 commits to home-assistant, 1 commit to home-assistant-polymer")
|
||||
- [Molodax (@Molodax)](https://github.com/Molodax "6 total commits to the home-assistant organization, 6 commits to home-assistant.github.io")
|
||||
- [Moon Shot (@moonshot)](https://github.com/moonshot "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Morten Lied Johansen (@mortenlj)](https://github.com/mortenlj "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [moskovskiy82 (@moskovskiy82)](https://github.com/moskovskiy82 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [mountainsandcode (@mountainsandcode)](https://github.com/mountainsandcode "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [mtl010957 (@mtl010957)](https://github.com/mtl010957 "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Myles Eftos (@madpilot)](https://github.com/madpilot "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Mārtiņš Grunskis (@grunskis)](https://github.com/grunskis "1 total commits to the home-assistant organization, 1 commit to netdisco")
|
||||
- [Nate (@BillyNate)](https://github.com/BillyNate "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Nathan Flynn (@eperdeme)](https://github.com/eperdeme "1 total commits to the home-assistant organization, 1 commit to hassio-addons")
|
||||
@ -588,8 +596,8 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Nikolas Beutler (@biacz)](https://github.com/biacz "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Nils Uliczka (@darookee)](https://github.com/darookee "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [NMA (@nma83)](https://github.com/nma83 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [nodomain (@nodomain)](https://github.com/nodomain "8 total commits to the home-assistant organization, 6 commits to home-assistant.github.io, 2 commits to homebridge-homeassistant")
|
||||
- [Nolan Gilley (@nkgilley)](https://github.com/nkgilley "111 total commits to the home-assistant organization, 86 commits to home-assistant, 25 commits to home-assistant.github.io")
|
||||
- [nodomain (@nodomain)](https://github.com/nodomain "9 total commits to the home-assistant organization, 7 commits to home-assistant.github.io, 2 commits to homebridge-homeassistant")
|
||||
- [Nolan Gilley (@nkgilley)](https://github.com/nkgilley "112 total commits to the home-assistant organization, 87 commits to home-assistant, 25 commits to home-assistant.github.io")
|
||||
- [nordlead2005 (@nordlead2005)](https://github.com/nordlead2005 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Nuno Sousa (@nunofgs)](https://github.com/nunofgs "7 total commits to the home-assistant organization, 4 commits to home-assistant, 2 commits to home-assistant.github.io, 1 commit to homebridge-homeassistant")
|
||||
- [nunojusto (@nunojusto)](https://github.com/nunojusto "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
@ -599,36 +607,32 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Oleksii Serdiuk (@leppa)](https://github.com/leppa "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Olimpiu Rob (@olimpiurob)](https://github.com/olimpiurob "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Oliv3rDog (@Oliv3rDog)](https://github.com/Oliv3rDog "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Oliver (@scarface-4711)](https://github.com/scarface-4711 "13 total commits to the home-assistant organization, 7 commits to home-assistant, 5 commits to home-assistant.github.io, 1 commit to netdisco")
|
||||
- [Oliver (@scarface-4711)](https://github.com/scarface-4711 "17 total commits to the home-assistant organization, 10 commits to home-assistant, 6 commits to home-assistant.github.io, 1 commit to netdisco")
|
||||
- [Oliver van Porten (@mcdeck)](https://github.com/mcdeck "10 total commits to the home-assistant organization, 10 commits to home-assistant")
|
||||
- [Open Home Automation (@open-homeautomation)](https://github.com/open-homeautomation "22 total commits to the home-assistant organization, 18 commits to home-assistant, 4 commits to home-assistant.github.io")
|
||||
- [OpenDave15 (@OpenDave15)](https://github.com/OpenDave15 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Otto Winter (@OttoWinter)](https://github.com/OttoWinter "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Omar Usman (@omarusman)](https://github.com/omarusman "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Open Home Automation (@open-homeautomation)](https://github.com/open-homeautomation "23 total commits to the home-assistant organization, 19 commits to home-assistant, 4 commits to home-assistant.github.io")
|
||||
- [Parker Moore (@parkr)](https://github.com/parkr "62 total commits to the home-assistant organization, 62 commits to home-assistant.github.io")
|
||||
- [Pascal Bach (@bachp)](https://github.com/bachp "10 total commits to the home-assistant organization, 9 commits to home-assistant, 1 commit to netdisco")
|
||||
- [Pascal Vizeli (@pvizeli)](https://github.com/pvizeli "1459 total commits to the home-assistant organization, 560 commits to hassio, 358 commits to home-assistant, 193 commits to hassio-addons, 169 commits to home-assistant.github.io, 163 commits to hassio-build, 14 commits to hassio-addons-example, 1 commit to netdisco, 1 commit to home-assistant-js-websocket")
|
||||
- [Pascal Vizeli (@pvizeli)](https://github.com/pvizeli "1510 total commits to the home-assistant organization, 574 commits to hassio, 363 commits to home-assistant, 208 commits to hassio-addons, 175 commits to hassio-build, 174 commits to home-assistant.github.io, 14 commits to hassio-addons-example, 1 commit to netdisco, 1 commit to home-assistant-js-websocket")
|
||||
- [patkap (@patkap)](https://github.com/patkap "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Patrick Aikens (@duckpuppy)](https://github.com/duckpuppy "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Patrick Easters (@patrickeasters)](https://github.com/patrickeasters "5 total commits to the home-assistant organization, 4 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [Patrick Easters (@patrickeasters)](https://github.com/patrickeasters "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||
- [Patrick White (@pw)](https://github.com/pw "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Patrik (@ggravlingen)](https://github.com/ggravlingen "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Paul Philippov (@themactep)](https://github.com/themactep "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Pavel Ponomarev (@awsum)](https://github.com/awsum "2 total commits to the home-assistant organization, 2 commits to home-assistant-polymer")
|
||||
- [PawelWMS (@PawelWMS)](https://github.com/PawelWMS "12 total commits to the home-assistant organization, 12 commits to libcoap")
|
||||
- [Pedro Navarro (@pedronavf)](https://github.com/pedronavf "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Pedro Pombeiro (@PombeirP)](https://github.com/PombeirP "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Per Osbäck (@perosb)](https://github.com/perosb "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||
- [Per Osbäck (@perosb)](https://github.com/perosb "4 total commits to the home-assistant organization, 4 commits to home-assistant")
|
||||
- [Per Sandström (@persandstrom)](https://github.com/persandstrom "119 total commits to the home-assistant organization, 95 commits to home-assistant, 12 commits to home-assistant-polymer, 12 commits to home-assistant.github.io")
|
||||
- [Pete Peterson (@petey)](https://github.com/petey "1 total commits to the home-assistant organization, 1 commit to home-assistant-polymer")
|
||||
- [PetePriority (@PetePriority)](https://github.com/PetePriority "3 total commits to the home-assistant organization, 2 commits to home-assistant.github.io, 1 commit to home-assistant")
|
||||
- [PetePriority (@PetePriority)](https://github.com/PetePriority "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [petkov (@petkov)](https://github.com/petkov "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Petr Vraník (@konikvranik)](https://github.com/konikvranik "11 total commits to the home-assistant organization, 6 commits to home-assistant, 5 commits to home-assistant.github.io")
|
||||
- [pezinek (@pezinek)](https://github.com/pezinek "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||
- [pezinek (@pezinek)](https://github.com/pezinek "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
||||
- [Phil (@godloth)](https://github.com/godloth "10 total commits to the home-assistant organization, 10 commits to home-assistant.github.io")
|
||||
- [Phil Haack (@Haacked)](https://github.com/Haacked "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Phil Hansen (@Hansen8601)](https://github.com/Hansen8601 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Phil Hawthorne (@philhawthorne)](https://github.com/philhawthorne "9 total commits to the home-assistant organization, 7 commits to home-assistant.github.io, 2 commits to home-assistant")
|
||||
- [Phil Kates (@philk)](https://github.com/philk "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Phil Hawthorne (@philhawthorne)](https://github.com/philhawthorne "11 total commits to the home-assistant organization, 7 commits to home-assistant.github.io, 4 commits to home-assistant")
|
||||
- [Phileep (@Phileep)](https://github.com/Phileep "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Philip Hofstetter (@pilif)](https://github.com/pilif "6 total commits to the home-assistant organization, 6 commits to home-assistant.github.io")
|
||||
- [Philip Lundrigan (@philipbl)](https://github.com/philipbl "65 total commits to the home-assistant organization, 56 commits to home-assistant, 9 commits to home-assistant.github.io")
|
||||
@ -637,7 +641,7 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Pierre Ståhl (@postlund)](https://github.com/postlund "26 total commits to the home-assistant organization, 18 commits to home-assistant, 4 commits to netdisco, 4 commits to home-assistant.github.io")
|
||||
- [pinksocks (@pinksocks)](https://github.com/pinksocks "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Piratonym (@Piratonym)](https://github.com/Piratonym "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [PuckStar (@PuckStar)](https://github.com/PuckStar "6 total commits to the home-assistant organization, 6 commits to home-assistant.github.io")
|
||||
- [PuckStar (@PuckStar)](https://github.com/PuckStar "7 total commits to the home-assistant organization, 7 commits to home-assistant.github.io")
|
||||
- [R Huish (@Genestealer)](https://github.com/Genestealer "18 total commits to the home-assistant organization, 18 commits to home-assistant.github.io")
|
||||
- [R1chardTM (@R1chardTM)](https://github.com/R1chardTM "9 total commits to the home-assistant organization, 5 commits to home-assistant, 4 commits to home-assistant.github.io")
|
||||
- [rbflurry (@rbflurry)](https://github.com/rbflurry "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
||||
@ -647,16 +651,13 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Rev Michael Greb (@mikegrb)](https://github.com/mikegrb "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [rhooper (@rhooper)](https://github.com/rhooper "30 total commits to the home-assistant organization, 25 commits to home-assistant, 3 commits to home-assistant.github.io, 2 commits to hadashboard")
|
||||
- [Riccardo Canta (@commento)](https://github.com/commento "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Riccardo Massari (@maxdrift)](https://github.com/maxdrift "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Richard Arends (@Mosibi)](https://github.com/Mosibi "8 total commits to the home-assistant organization, 8 commits to home-assistant")
|
||||
- [Richard Cox (@Khabi)](https://github.com/Khabi "12 total commits to the home-assistant organization, 8 commits to home-assistant, 4 commits to home-assistant.github.io")
|
||||
- [Richard Cunningham (@rythie)](https://github.com/rythie "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [RickyTaterSalad (@RickyTaterSalad)](https://github.com/RickyTaterSalad "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [rkabadi (@rkabadi)](https://github.com/rkabadi "17 total commits to the home-assistant organization, 17 commits to home-assistant")
|
||||
- [Rob Capellini (@capellini)](https://github.com/capellini "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||
- [Rob Johnson (@robjohnson189)](https://github.com/robjohnson189 "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Rob Slifka (@rslifka)](https://github.com/rslifka "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
||||
- [Robbie Trencheny (@robbiet480)](https://github.com/robbiet480 "1188 total commits to the home-assistant organization, 531 commits to home-assistant-iOS, 255 commits to home-assistant, 247 commits to home-assistant.github.io, 78 commits to homebridge-homeassistant, 15 commits to home-assistant-polymer, 9 commits to hubot-home-assistant, 8 commits to Analytics-Receiver, 6 commits to netdisco, 3 commits to organization, 3 commits to scenegen, 3 commits to appdaemon, 3 commits to hadashboard, 3 commits to home-assistant-js, 3 commits to home-assistant-cli, 3 commits to hassbot, 3 commits to home-assistant-js-websocket, 2 commits to home-assistant-dev-helper, 2 commits to fabric-home-assistant, 2 commits to home-assistant-ansible, 2 commits to home-assistant-notebooks, 2 commits to micropython-home-assistant, 2 commits to lambda-home-assistant-github, 2 commits to home-assistant-assets, 1 commit to LabelBot")
|
||||
- [Robbie Trencheny (@robbiet480)](https://github.com/robbiet480 "1189 total commits to the home-assistant organization, 531 commits to home-assistant-iOS, 255 commits to home-assistant, 247 commits to home-assistant.github.io, 78 commits to homebridge-homeassistant, 15 commits to home-assistant-polymer, 9 commits to hubot-home-assistant, 8 commits to Analytics-Receiver, 6 commits to netdisco, 3 commits to home-assistant-js, 3 commits to scenegen, 3 commits to appdaemon, 3 commits to home-assistant-js-websocket, 3 commits to home-assistant-cli, 3 commits to hadashboard, 3 commits to organization, 3 commits to hassbot, 2 commits to LabelBot, 2 commits to home-assistant-assets, 2 commits to home-assistant-dev-helper, 2 commits to lambda-home-assistant-github, 2 commits to fabric-home-assistant, 2 commits to micropython-home-assistant, 2 commits to home-assistant-ansible, 2 commits to home-assistant-notebooks")
|
||||
- [Robby Grossman (@freerobby)](https://github.com/freerobby "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Robin Laurén (@llauren)](https://github.com/llauren "1 total commits to the home-assistant organization, 1 commit to appdaemon")
|
||||
- [Roddie Hasan (@eiddor)](https://github.com/eiddor "6 total commits to the home-assistant organization, 6 commits to home-assistant.github.io")
|
||||
@ -680,7 +681,6 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Ryan Kraus (@rmkraus)](https://github.com/rmkraus "193 total commits to the home-assistant organization, 161 commits to home-assistant, 17 commits to home-assistant.github.io, 14 commits to home-assistant-polymer, 1 commit to home-assistant-notebooks")
|
||||
- [Ryan Parrish (@stickystyle)](https://github.com/stickystyle "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Ryan Turner (@ryanturner)](https://github.com/ryanturner "6 total commits to the home-assistant organization, 6 commits to home-assistant")
|
||||
- [Róbert Nagy (@vrnagy)](https://github.com/vrnagy "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
- [Sacha Telgenhof (@stelgenhof)](https://github.com/stelgenhof "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Sam Holmes (@sam3d)](https://github.com/sam3d "4 total commits to the home-assistant organization, 4 commits to pi-gen")
|
||||
- [Sam Jongenelen (@SamJongenelen)](https://github.com/SamJongenelen "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
@ -688,13 +688,13 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [sam-io (@sam-io)](https://github.com/sam-io "5 total commits to the home-assistant organization, 3 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Samuel Bétrisey (@betrisey)](https://github.com/betrisey "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Samuel Mertenat (@mertenats)](https://github.com/mertenats "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||
- [sander76 (@sander76)](https://github.com/sander76 "38 total commits to the home-assistant organization, 34 commits to home-assistant, 4 commits to home-assistant.github.io")
|
||||
- [sander76 (@sander76)](https://github.com/sander76 "39 total commits to the home-assistant organization, 35 commits to home-assistant, 4 commits to home-assistant.github.io")
|
||||
- [schneefux (@schneefux)](https://github.com/schneefux "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Scott Bradshaw (@swbradshaw)](https://github.com/swbradshaw "4 total commits to the home-assistant organization, 2 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Scott Griffin (@scottocs11)](https://github.com/scottocs11 "7 total commits to the home-assistant organization, 7 commits to home-assistant.github.io")
|
||||
- [Scott O'Neil (@americanwookie)](https://github.com/americanwookie "7 total commits to the home-assistant organization, 4 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||
- [Scott Reston (@ih8gates)](https://github.com/ih8gates "9 total commits to the home-assistant organization, 8 commits to home-assistant.github.io, 1 commit to home-assistant-polymer")
|
||||
- [Sean Dague (@sdague)](https://github.com/sdague "52 total commits to the home-assistant organization, 36 commits to home-assistant, 7 commits to home-assistant.github.io, 5 commits to home-assistant-polymer, 3 commits to netdisco, 1 commit to home-assistant-js")
|
||||
- [Sean Dague (@sdague)](https://github.com/sdague "54 total commits to the home-assistant organization, 37 commits to home-assistant, 8 commits to home-assistant.github.io, 5 commits to home-assistant-polymer, 3 commits to netdisco, 1 commit to home-assistant-js")
|
||||
- [Sebastian (@sebk-666)](https://github.com/sebk-666 "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Sebastian (@sgso)](https://github.com/sgso "3 total commits to the home-assistant organization, 3 commits to libcoap")
|
||||
- [Sebastian Hartnick (@goir)](https://github.com/goir "1 total commits to the home-assistant organization, 1 commit to home-assistant")
|
||||
@ -702,7 +702,6 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [sfam (@sfam)](https://github.com/sfam "65 total commits to the home-assistant organization, 58 commits to home-assistant, 5 commits to home-assistant.github.io, 1 commit to netdisco, 1 commit to home-assistant-polymer")
|
||||
- [Shawna (@Nightarrow85)](https://github.com/Nightarrow85 "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [siebert (@siebert)](https://github.com/siebert "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||
- [SilvrrGIT (@SilvrrGIT)](https://github.com/SilvrrGIT "8 total commits to the home-assistant organization, 8 commits to home-assistant.github.io")
|
||||
- [Simon Elsbrock (@else)](https://github.com/else "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Simon Szustkowski (@simonszu)](https://github.com/simonszu "7 total commits to the home-assistant organization, 4 commits to home-assistant.github.io, 3 commits to home-assistant")
|
||||
- [Sjors Spoorendonk (@sjorsjes)](https://github.com/sjorsjes "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||
@ -718,10 +717,10 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Stéphane Bidoul (ACSONE) (@sbidoul)](https://github.com/sbidoul "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [System Tester (@systemtester)](https://github.com/systemtester "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Sytone (@sytone)](https://github.com/sytone "10 total commits to the home-assistant organization, 6 commits to home-assistant.github.io, 2 commits to home-assistant-cli, 2 commits to home-assistant")
|
||||
- [Sören Oldag (@soldag)](https://github.com/soldag "11 total commits to the home-assistant organization, 7 commits to home-assistant.github.io, 4 commits to home-assistant")
|
||||
- [Sören Oldag (@soldag)](https://github.com/soldag "12 total commits to the home-assistant organization, 7 commits to home-assistant.github.io, 5 commits to home-assistant")
|
||||
- [Teagan Glenn (@Teagan42)](https://github.com/Teagan42 "58 total commits to the home-assistant organization, 49 commits to home-assistant, 8 commits to home-assistant.github.io, 1 commit to home-assistant-js")
|
||||
- [techtrails (@techtrails)](https://github.com/techtrails "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [tedstriker (@tedstriker)](https://github.com/tedstriker "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [tedstriker (@tedstriker)](https://github.com/tedstriker "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Teemu Mikkonen (@T3m3z)](https://github.com/T3m3z "5 total commits to the home-assistant organization, 3 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Teemu Patja (@tpatja)](https://github.com/tpatja "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Teemu R. (@rytilahti)](https://github.com/rytilahti "28 total commits to the home-assistant organization, 20 commits to home-assistant, 7 commits to home-assistant.github.io, 1 commit to netdisco")
|
||||
@ -730,8 +729,8 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Theb-1 (@Theb-1)](https://github.com/Theb-1 "5 total commits to the home-assistant organization, 5 commits to home-assistant")
|
||||
- [thecynic (@thecynic)](https://github.com/thecynic "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||
- [Theodor Lindquist (@theolind)](https://github.com/theolind "27 total commits to the home-assistant organization, 25 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Thiago Oliveira (@chilicheech)](https://github.com/chilicheech "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Thibault Cohen (@titilambert)](https://github.com/titilambert "30 total commits to the home-assistant organization, 19 commits to home-assistant, 11 commits to home-assistant.github.io")
|
||||
- [Thiago Oliveira (@chilicheech)](https://github.com/chilicheech "5 total commits to the home-assistant organization, 3 commits to home-assistant, 2 commits to home-assistant.github.io")
|
||||
- [Thibault Cohen (@titilambert)](https://github.com/titilambert "34 total commits to the home-assistant organization, 21 commits to home-assistant, 13 commits to home-assistant.github.io")
|
||||
- [ThinkPadNL (@ThinkPadNL)](https://github.com/ThinkPadNL "4 total commits to the home-assistant organization, 4 commits to home-assistant.github.io")
|
||||
- [Thomas (@ktpx)](https://github.com/ktpx "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Thomas Petazzoni (@tpetazzoni)](https://github.com/tpetazzoni "1 total commits to the home-assistant organization, 1 commit to libcoap")
|
||||
@ -749,7 +748,7 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Tom Dickman (@tdickman)](https://github.com/tdickman "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||
- [Tom Duijf (@tomduijf)](https://github.com/tomduijf "70 total commits to the home-assistant organization, 53 commits to home-assistant, 9 commits to home-assistant.github.io, 6 commits to home-assistant-polymer, 2 commits to netdisco")
|
||||
- [Tom Hoover (@tomhoover)](https://github.com/tomhoover "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Tom Matheussen (@Tommatheussen)](https://github.com/Tommatheussen "4 total commits to the home-assistant organization, 4 commits to home-assistant-polymer")
|
||||
- [Tom Matheussen (@Tommatheussen)](https://github.com/Tommatheussen "6 total commits to the home-assistant organization, 4 commits to home-assistant-polymer, 2 commits to home-assistant")
|
||||
- [Tom Usher (@tomusher)](https://github.com/tomusher "1 total commits to the home-assistant organization, 1 commit to netdisco")
|
||||
- [Tomi Tuhkanen (@ttu)](https://github.com/ttu "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||
- [Toshik (@Toshik)](https://github.com/Toshik "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant")
|
||||
@ -757,6 +756,7 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Trevor (@tboyce021)](https://github.com/tboyce021 "10 total commits to the home-assistant organization, 7 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||
- [Trey Hunner (@treyhunner)](https://github.com/treyhunner "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [trollkarlen (@trollkarlen)](https://github.com/trollkarlen "5 total commits to the home-assistant organization, 5 commits to home-assistant")
|
||||
- [Tsvi Mostovicz (@tsvi)](https://github.com/tsvi "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Tyler Crumpton (@tylercrumpton)](https://github.com/tylercrumpton "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Tyler Page (@iamtpage)](https://github.com/iamtpage "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Tõnis Tobre (@tobre6)](https://github.com/tobre6 "1 total commits to the home-assistant organization, 1 commit to homebridge-homeassistant")
|
||||
@ -764,10 +764,10 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Valentin VĂLCIU (@axiac)](https://github.com/axiac "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [viswa-swami (@viswa-swami)](https://github.com/viswa-swami "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [vllungu (@vllungu)](https://github.com/vllungu "3 total commits to the home-assistant organization, 3 commits to libcoap")
|
||||
- [vrs01 (@vrs01)](https://github.com/vrs01 "5 total commits to the home-assistant organization, 5 commits to home-assistant.github.io")
|
||||
- [vrs01 (@vrs01)](https://github.com/vrs01 "6 total commits to the home-assistant organization, 6 commits to home-assistant.github.io")
|
||||
- [Wagner Sartori Junior (@trunet)](https://github.com/trunet "1 total commits to the home-assistant organization, 1 commit to netdisco")
|
||||
- [Wilco Land (@Wilco89)](https://github.com/Wilco89 "3 total commits to the home-assistant organization, 3 commits to home-assistant.github.io")
|
||||
- [Will Heid (@bassclarinetl2)](https://github.com/bassclarinetl2 "13 total commits to the home-assistant organization, 12 commits to home-assistant.github.io, 1 commit to fabric-home-assistant")
|
||||
- [Will Heid (@bassclarinetl2)](https://github.com/bassclarinetl2 "14 total commits to the home-assistant organization, 13 commits to home-assistant.github.io, 1 commit to fabric-home-assistant")
|
||||
- [Will Hughes (@insertjokehere)](https://github.com/insertjokehere "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [Willems Davy (@joyrider3774)](https://github.com/joyrider3774 "7 total commits to the home-assistant organization, 4 commits to home-assistant.github.io, 3 commits to home-assistant")
|
||||
- [William Scanlon (@w1ll1am23)](https://github.com/w1ll1am23 "63 total commits to the home-assistant organization, 45 commits to home-assistant, 18 commits to home-assistant.github.io")
|
||||
@ -775,7 +775,7 @@ This page contains a list of people who have contributed in one way or another t
|
||||
- [Wojciech Bederski (@wuub)](https://github.com/wuub "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
- [wokar (@wokar)](https://github.com/wokar "12 total commits to the home-assistant organization, 8 commits to home-assistant, 4 commits to home-assistant.github.io")
|
||||
- [Wolf-Bastian Pöttner (@BastianPoe)](https://github.com/BastianPoe "6 total commits to the home-assistant organization, 3 commits to home-assistant, 3 commits to home-assistant.github.io")
|
||||
- [Wolfgang Malgadey (@wmalgadey)](https://github.com/wmalgadey "2 total commits to the home-assistant organization, 2 commits to home-assistant")
|
||||
- [Wolfgang Malgadey (@wmalgadey)](https://github.com/wmalgadey "3 total commits to the home-assistant organization, 3 commits to home-assistant")
|
||||
- [XECDesign (@XECDesign)](https://github.com/XECDesign "77 total commits to the home-assistant organization, 77 commits to pi-gen")
|
||||
- [Xorso (@Xorso)](https://github.com/Xorso "22 total commits to the home-assistant organization, 21 commits to home-assistant, 1 commit to hassio-addons")
|
||||
- [Yannick Simard (@TheRaven)](https://github.com/TheRaven "2 total commits to the home-assistant organization, 2 commits to home-assistant.github.io")
|
||||
@ -790,4 +790,4 @@ This page contains a list of people who have contributed in one way or another t
|
||||
|
||||
This page is irregularly updated using the [`credits_generator` tool](https://github.com/home-assistant/home-assistant.github.io/tree/next/credits_generator). If you think that you are missing, please let us know.
|
||||
|
||||
<i>This page was last updated Saturday, June 10th 2017, 9:18:30 am UTC.</i>
|
||||
<i>This page was last updated Sunday, June 25th 2017, 10:12:23 am UTC.</i>
|
||||
|
@ -9,20 +9,21 @@ sharing: true
|
||||
footer: true
|
||||
---
|
||||
|
||||
This page describes the steps for publishing a new Home Assistant release.
|
||||
This page describes the steps for publishing a new Home Assistant release. Those steps requires that you don't use forks but work with the repositories themself.
|
||||
|
||||
### {% linkable_title GitHub (3 days before release) %}
|
||||
|
||||
1. Merge `master` into `dev` to make the PR mergeable.
|
||||
2. Cut a release branch from `dev`. Example name `release-0-46`.
|
||||
3. Create a pull request from release branch to `master` with the upcoming release number as the title. PR message contains intro, highlighting major changes, and an overview of all changes tagging each author. Use [hass-release]https://github.com/home-assistant/hass-release) to collect the details.
|
||||
2. Cut a release branch from `dev`. Example name `release-0-49`.
|
||||
3. Create a pull request from the release branch to `master` with the upcoming release number as the title. PR message contains intro, highlighting major changes, and an overview of all changes tagging each author. Use [hass-release](https://github.com/home-assistant/hass-release) to collect the details.
|
||||
4. Update `homeassistant/const.py` with the correct version number (remove the `dev` tag) and push that commit to release branch.
|
||||
5. From now until the release branch has been merged, we tag bugfixes with the milestone for the release (create if doesn't exist).
|
||||
4. Update `homeassistant/const.py` with the upcoming version number (including the `dev` tag) and push that commit to the `dev` branch.
|
||||
|
||||
### {% linkable_title Website (3 days before release) %}
|
||||
|
||||
1. Merge `current` into `next`
|
||||
2. Cut release branch of `next`. For example `release-0-46`.
|
||||
2. Cut release branch of `next`. For example `release-0-49`.
|
||||
3. Open a PR from release branch to `current` with the upcoming release number as the title.
|
||||
|
||||
### {% linkable_title GitHub %}
|
||||
|
BIN
source/images/blog/2017-07-0.48/components.png
Normal file
BIN
source/images/blog/2017-07-0.48/components.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 76 KiB |
Loading…
x
Reference in New Issue
Block a user