Date: Fri, 4 Jan 2019 18:57:56 +0000
Subject: [PATCH 03/47] Removing the pre 0.77 stuff (#8042)
The old, pre 0.77 docs, are confusing people, purging those. Some minor wording tweaks too.
---
.../device_tracker.gpslogger.markdown | 26 +++----------------
1 file changed, 4 insertions(+), 22 deletions(-)
diff --git a/source/_components/device_tracker.gpslogger.markdown b/source/_components/device_tracker.gpslogger.markdown
index 10889993651..c512698bedf 100644
--- a/source/_components/device_tracker.gpslogger.markdown
+++ b/source/_components/device_tracker.gpslogger.markdown
@@ -13,9 +13,9 @@ ha_release: 0.34
The `gpslogger` device tracker platform allows you to detect presence using [GPSLogger](http://code.mendhak.com/gpslogger/). GPSLogger is an open source app for [Android](https://play.google.com/store/apps/details?id=com.mendhak.gpslogger) that allows users to set up a `GET` request to update GPS coordinates. This can be configured with Home Assistant to update your location.
-## {% linkable_title Auth change release 0.77 and above %}
+## {% linkable_title Configuration %}
-Since release 0.77, we now have long-lived access tokens. These are setup under your profile and configured in the GPSLogger application on your smartphone as explained below.
+GPSLogger uses long-lived access tokens for authentication. These are setup [under your profile](/docs/authentication/#your-account-profile) and configured in the GPSLogger application on your smartphone as explained below.
```yaml
# Example configuration.yaml entry
@@ -23,23 +23,6 @@ device_tracker:
- platform: gpslogger
```
-## {% linkable_title Before release 0.77 %}
-
-To integrate GPSLogger in Home Assistant, add the following section to your `configuration.yaml` file:
-
-```yaml
-# Example configuration.yaml entry
-device_tracker:
- - platform: gpslogger
- password: !secret gpslogger_password
-```
-{% configuration %}
-password:
- description: Separate password for GPS Logger endpoint. If provided using regular API password to contact endpoint will result in 401 response.
- required: false
- type: string
-{% endconfiguration %}
-
## {% linkable_title Setup on your smartphone %}
Install [GPSLogger for Android](https://play.google.com/store/apps/details?id=com.mendhak.gpslogger) on your device.
@@ -77,11 +60,10 @@ Add the above URL after you modified it with your settings into the **URL** fiel
- Use the domain that Home Assistant is available on the internet (or the public IP address if you have a static IP address). This can be a local IP address if you are using an always on VPN from your mobile device to your home network.
- Only remove `PORT` if your Home Assistant instance is using port 443. Otherwise set it to the port you're using.
- For Home Assistant only the above URL, as written, will work - do not add, remove, or change the order of any of the parameters.
-- **0.77+** If you are using Long-Lived access tokens, then add `Authorization: Bearer LLAT` to the HTTP Headers setting (replace `LLAT` with your Long Lived Access Token).
-- **<0.77** Make sure to include your [API password](/components/http/) if you have configured a password. Add `&api_password=YOUR_PASSWORD` to the end of the URL.
+- Add `Authorization: Bearer LLAT` to the HTTP Headers setting (replace `LLAT` with your Long Lived Access Token).
- You can change the name of your device name by replacing `&device=%SER` with `&device=DEVICE_NAME`.
-If your battery drains fast then you can tune the performance of GPSLogger under **Performance** -> **Location providers**
+If your battery drains too fast then you can tune the performance of GPSLogger under **Performance** -> **Location providers**
From edef3571006c4081e0dcaa86cd63ef38582106b5 Mon Sep 17 00:00:00 2001
From: DubhAd
Date: Fri, 4 Jan 2019 18:58:40 +0000
Subject: [PATCH 04/47] Making the default `and` more obvious (#8043)
With the default of `and` being hidden away in the `and` block, it's not obvious. Pulling that out.
Also highlighting that after sunset/before sunrise is the same as a single state check, and same for before sunset/after sunrise.
---
source/_docs/scripts/conditions.markdown | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/source/_docs/scripts/conditions.markdown b/source/_docs/scripts/conditions.markdown
index 32ed35a628d..052845f3228 100644
--- a/source/_docs/scripts/conditions.markdown
+++ b/source/_docs/scripts/conditions.markdown
@@ -12,6 +12,8 @@ redirect_from: /getting-started/scripts-conditions/
Conditions can be used within a script or automation to prevent further execution. A condition will look at the system right now. For example a condition can test if a switch is currently turned on or off.
+Unlike a trigger, which is always `or`, conditions are `and` by default - all conditions have to be true.
+
### {% linkable_title AND condition %}
Test multiple conditions in 1 condition statement. Passes if all embedded conditions are valid.
@@ -28,7 +30,8 @@ condition:
below: 20
```
-If you do not want to combine AND and OR conditions, you can also just list them sequentially, by default all conditions have to be true.
+If you do not want to combine AND and OR conditions, you can also just list them sequentially.
+
The following configuration works the same as the one listed above:
```yaml
@@ -59,7 +62,7 @@ condition:
below: 20
```
-### {% linkable_title MIXED AND and OR conditions %}
+### {% linkable_title MIXED AND and OR conditions %}
Test multiple AND and OR conditions in 1 condition statement. Passes if any embedded conditions is valid.
This allows you to mix several AND and OR conditions together.
@@ -131,7 +134,7 @@ condition:
```yaml
condition:
- condition: or # 'when dark' condition: either after sunset or before sunrise
+ condition: or # 'when dark' condition: either after sunset or before sunrise - equivalent to a state condition on `sun.sun` of `below_horizon`
conditions:
- condition: sun
after: sunset
@@ -141,7 +144,7 @@ condition:
```yaml
condition:
- condition: and # 'when light' condition: before sunset and after sunrise
+ condition: and # 'when light' condition: before sunset and after sunrise - equivalent to a state condition on `sun.sun` of `above_horizon`
conditions:
- condition: sun
before: sunset
From cb95239db3850584d6a9a17ea23b7426c524c2fa Mon Sep 17 00:00:00 2001
From: Paulus Schoutsen
Date: Fri, 4 Jan 2019 16:25:08 -0500
Subject: [PATCH 05/47] Draft 85
---
_config.yml | 6 +-
source/_posts/2019-01-09-release-85.markdown | 833 +++++++++++++++++++
2 files changed, 836 insertions(+), 3 deletions(-)
create mode 100644 source/_posts/2019-01-09-release-85.markdown
diff --git a/_config.yml b/_config.yml
index f30f9ba24bb..ee361d83908 100644
--- a/_config.yml
+++ b/_config.yml
@@ -141,9 +141,9 @@ social:
# Home Assistant release details
current_major_version: 0
-current_minor_version: 84
-current_patch_version: 6
-date_released: 2018-12-21
+current_minor_version: 85
+current_patch_version: 0
+date_released: 2019-01-09
# Either # or the anchor link to latest release notes in the blog post.
# Must be prefixed with a # and have double quotes around it.
diff --git a/source/_posts/2019-01-09-release-85.markdown b/source/_posts/2019-01-09-release-85.markdown
new file mode 100644
index 00000000000..21a2d71c2aa
--- /dev/null
+++ b/source/_posts/2019-01-09-release-85.markdown
@@ -0,0 +1,833 @@
+---
+layout: post
+title: "0.85: TBD - UPDATE DATE"
+description: "TBD"
+date: 2019-01-09 00:01:00
+date_formatted: "January 9, 2019"
+author: Paulus Schoutsen
+author_twitter: balloob
+comments: true
+categories: Release-Notes
+og_image: /images/blog/2019-01-release-85/components.png
+---
+
+
+
+Warning. Slugify changed, which can impact entity ID creation if the entities used characters outside of A-Z and the integration has no unique IDs. We now better handle the characters and substitute it with an alternative instead of removing that character.
+
+## {% linkable_title New Platforms %}
+
+- TelldusLive config flow ([@fredrike] - [#18758]) ([tellduslive docs]) ([binary_sensor.tellduslive docs]) ([cover.tellduslive docs]) ([light.tellduslive docs]) ([sensor.tellduslive docs]) ([switch.tellduslive docs]) (new-platform)
+- Add NMBS (Belgian railway) sensor platform ([@thibmaek] - [#18610]) ([sensor.nmbs docs]) (new-platform)
+- Add air pollutants component ([@fabaff] - [#18707]) ([air_pollutants docs]) ([demo docs]) (new-platform)
+- Adding support for Plum Lightpad ([@ColinHarrington] - [#16576]) ([plum_lightpad docs]) ([binary_sensor.plum_lightpad docs]) ([light.plum_lightpad docs]) ([sensor.plum_lightpad docs]) (new-platform)
+- Add Ambient Weather PWS Sensor component ([@tmd224] - [#18551]) ([sensor.ambient_station docs]) (new-platform)
+- Add Brottsplatskartan sensor ([@chrillux] - [#19018]) ([sensor.brottsplatskartan docs]) (new-platform)
+- Add native ESPHome API component ([@OttoWinter] - [#19334]) (new-platform)
+- Add native ESPHome API binary sensor ([@OttoWinter] - [#19371]) ([esphome docs]) ([binary_sensor.esphome docs]) (new-platform)
+- Add native ESPHome API cover ([@OttoWinter] - [#19373]) ([esphome docs]) ([cover.esphome docs]) (new-platform)
+- Add native ESPHome API fan ([@OttoWinter] - [#19374]) ([esphome docs]) ([fan.esphome docs]) (new-platform)
+- Add native ESPHome API light ([@OttoWinter] - [#19375]) ([esphome docs]) ([light.esphome docs]) (new-platform)
+- Add native ESPHome API switch ([@OttoWinter] - [#19376]) ([esphome docs]) ([switch.esphome docs]) (new-platform)
+- Add GTT Sensor ([@eliseomartelli] - [#18449]) ([sensor.gtt docs]) (new-platform)
+- Add openSenseMap air pollutants platform ([@fabaff] - [#19357]) ([air_pollutants docs]) (new-platform)
+- Add Prezzibenzina (Italian Fuel Price) Sensor ([@eliseomartelli] - [#19297]) ([sensor.prezzibenzina docs]) (new-platform)
+- Add sensor platform for SolarEdge Monitoring API ([@GidoHakvoort] - [#18846]) ([sensor.solaredge docs]) (new-platform)
+- Add Mythic Beasts DNSAPI Component ([@thinkl33t] - [#18333]) ([mythicbeastsdns docs]) (new-platform)
+- Add new sensor platform to expose Islamic prayer times ([@uchagani] - [#19444]) ([sensor.islamic_prayer_times docs]) (new-platform)
+- Add Lutron Homeworks component ([@dubnom] - [#18311]) ([homeworks docs]) ([binary_sensor.homeworks docs]) ([light.homeworks docs]) (new-platform)
+- Improve Lutron RadioRA2 support, adding switches and scenes ([@cdheiser] - [#18330]) ([lutron docs]) ([scene.lutron docs]) ([switch.lutron docs]) (new-platform)
+- Pencom ([@dubnom] - [#19369]) ([switch.pencom docs]) (new-platform)
+- Add AfterShip sensor for packages ([@maxandersen] - [#18034]) ([sensor.aftership docs]) (new-platform)
+- Add Freebox component with sensors and device tracker ([@SNoof85] - [#18472]) ([device_tracker docs]) ([freebox docs]) ([sensor.freebox docs]) (breaking change) (new-platform)
+- LCN component and light platform ([@alengwenus] - [#18621]) ([lcn docs]) ([light.lcn docs]) (new-platform)
+- Add RaspyRFM switch platform ([@markusressel] - [#19130]) ([switch.raspyrfm docs]) (new-platform)
+- Add IDTECK proximity card component ([@dubnom] - [#18309]) ([sensor.idteck_prox docs]) (new-platform)
+- Add ness alarm control panel using nessclient ([@nickw444] - [#18463]) ([ness_alarm docs]) ([alarm_control_panel.ness_alarm docs]) ([binary_sensor.ness_alarm docs]) (new-platform)
+- Proactive Alexa ChangeReport messages ([@abmantis] - [#18114]) ([alexa docs]) (new-platform)
+
+## {% linkable_title If you need help... %}
+
+...don't hesitate to use our very active [forums](https://community.home-assistant.io/) or join us for a little [chat](https://discord.gg/c5DvZ4e). 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](https://github.com/home-assistant/home-assistant/issues). Make sure to fill in all fields of the issue template.
+
+
+
+## {% linkable_title Breaking Changes %}
+
+- Add SCAN_INTERVAL ([@fabaff] - [#19186]) ([weather docs]) (breaking change)
+- Add package data attribute to 17track.net summary sensors ([@bachya] - [#19213]) ([sensor.seventeentrack docs]) (breaking change)
+- RFC: Deprecate auto target all for services and introduce entity_id: * ([@balloob] - [#19006]) (breaking change)
+- home-assistant/home-assistant#17333: update to use DOMAIN constants and standards. ([@marchingphoenix] - [#19242]) ([climate.eq3btsmart docs]) (breaking change)
+- Add config flow for Daikin ([@fredrike] - [#19182]) ([daikin docs]) ([climate.daikin docs]) ([sensor.daikin docs]) (breaking change)
+- Add traccar motion, speed and battery_level attributes ([@ludeeus] - [#19090]) ([device_tracker docs]) (breaking change)
+- Use unicode slugify ([@pvizeli] - [#19192]) (breaking change)
+- Various enhancements for WeMo component/platforms ([@sqldiablo] - [#19419]) ([wemo docs]) ([binary_sensor.wemo docs]) ([fan.wemo docs]) ([light.wemo docs]) ([switch.wemo docs]) (breaking change)
+- Rename ocr.png to ssocr-(entity_name).png to allow multiple instances ([@jumpkick] - [#18634]) ([image_processing.seven_segments docs]) (breaking change)
+- Update pylaunches dependency to 0.2.0 ([@DoloresHA] - [#19570]) ([sensor.launch_library docs]) (breaking change)
+- Add Freebox component with sensors and device tracker ([@SNoof85] - [#18472]) ([device_tracker docs]) ([freebox docs]) ([sensor.freebox docs]) (breaking change) (new-platform)
+- Support knx operation types ([@marvin-w] - [#19546]) ([knx docs]) ([climate.knx docs]) (breaking change)
+- Improve Wemo setup speed ([@sqldiablo] - [#19563]) ([wemo docs]) ([binary_sensor.wemo docs]) ([switch.wemo docs]) (breaking change)
+
+## {% linkable_title All changes %}
+
+- Upgrade pylint to 2.2.2 ([@scop] - [#18750])
+- Add CM17A support ([@swilson] - [#19041]) ([light.x10 docs])
+- Set directv unavailable state when errors returned for longer then a minute ([@ehendrix23] - [#19014]) ([media_player.directv docs])
+- Bump lakeside requirement to support more Eufy devices ([@mjg59] - [#19080]) ([eufy docs])
+- Automatically detect if ipv4/ipv6 is used for cert_expiry ([@speedmann] - [#18916]) ([sensor.cert_expiry docs])
+- Support next generation of the Xiaomi Mi Smart Plug (chuangmi.plug.hmi205) ([@syssi] - [#19071]) ([switch.xiaomi_miio docs])
+- Fix the Xiaomi Aqara Cube rotate event of the LAN protocol 2.0 (Closes: #18199) ([@syssi] - [#19104]) ([binary_sensor.xiaomi_aqara docs])
+- Upgrade Mill library ([@Danielhiversen] - [#19117]) ([climate.mill docs])
+- Add Philips Moonlight Bedside Lamp support ([@syssi] - [#18496]) ([light.xiaomi_miio docs])
+- update edp_redy version ([@abmantis] - [#19078]) ([edp_redy docs])
+- Update Google Assistant services description and request sync timeout ([@edif30] - [#19113])
+- Fixed doorbird config without events (empty list) ([@basschipper] - [#19121]) ([doorbird docs])
+- Add code support for iAlarm ([@RyuzakiKK] - [#19124]) ([alarm_control_panel.ialarm docs])
+- Upgrade youtube_dl to 2018.12.03 ([@fabaff] - [#19139]) ([media_extractor docs])
+- Upgrade mypy to 0.650 ([@scop] - [#19150])
+- Update geizhals dependency ([@tinloaf] - [#19152]) ([sensor.geizhals docs])
+- Upgrade sphinx-autodoc-typehints to 1.5.2 ([@fabaff] - [#19140])
+- Upgrade slacker to 0.12.0 ([@fabaff] - [#19142]) ([notify docs])
+- Update radiotherm to 2.0.0 and handle change in tstat error detection ([@craftyguy] - [#19107]) ([climate.radiotherm docs])
+- Update pygtfs to upstream's 0.1.5 ([@jarondl] - [#19151]) ([sensor.gtfs docs])
+- ZHA - Event foundation ([@dmulcahey] - [#19095]) ([zha docs]) ([binary_sensor.zha docs])
+- TelldusLive config flow ([@fredrike] - [#18758]) ([tellduslive docs]) ([binary_sensor.tellduslive docs]) ([cover.tellduslive docs]) ([light.tellduslive docs]) ([sensor.tellduslive docs]) ([switch.tellduslive docs]) (new-platform)
+- Enable alarmdecoder to see open/close state of bypassed RF zones when armed ([@jkeljo] - [#18477]) ([alarmdecoder docs]) ([binary_sensor.alarmdecoder docs])
+- Add SCAN_INTERVAL ([@fabaff] - [#19186]) ([weather docs]) (breaking change)
+- Restore states for RFLink devices ([@javicalle] - [#18816]) ([rflink docs]) ([cover.rflink docs]) ([light.rflink docs])
+- Move daikin to package ([@fredrike] - [#19187]) ([daikin docs])
+- Update switchbot library ([@Danielhiversen] - [#19202]) ([switch.switchbot docs])
+- add unique_id to SMHI ([@fredrike] - [#19183]) ([weather.smhi docs])
+- Fix geizhals crash if no price found ([@tinloaf] - [#19197])
+- Add ZHA device handler library ([@dmulcahey] - [#19099]) ([zha docs])
+- Add package data attribute to 17track.net summary sensors ([@bachya] - [#19213]) ([sensor.seventeentrack docs]) (breaking change)
+- Convert songpal to use asynchronous websocket for state updates ([@rytilahti] - [#19129]) ([media_player.songpal docs])
+- Bumped NDMS2 client to 0.0.6 ([@foxel] - [#19244]) ([device_tracker docs])
+- RFC: Deprecate auto target all for services and introduce entity_id: * ([@balloob] - [#19006]) (breaking change)
+- Make automations log errors ([@balloob] - [#18965]) ([automation docs])
+- Re-use connection-pool ([@molobrakos] - [#19249]) ([volvooncall docs])
+- Add device registry to MQTT light ([@emontnemery] - [#19013]) ([light.mqtt docs])
+- Support for the Harman Kardon AVR ([@Devqon] - [#18471])
+- Fix point sensor discovery ([@fredrike] - [#19245]) ([sensor.point docs])
+- Resolve IOLinc sensor name ([@teharris1] - [#19050]) ([insteon docs]) ([binary_sensor.insteon docs])
+- Expose ZoneMinder availability to Home Assistant ([@rohankapoorcom] - [#18946]) ([camera.zoneminder docs]) ([sensor.zoneminder docs])
+- Upgraded enturclient to 0.1.2 ([@hfurubotten] - [#19267]) ([sensor.entur_public_transport docs])
+- Synology chat add verify ssl ([@bremor] - [#19276]) ([notify docs])
+- Add NMBS (Belgian railway) sensor platform ([@thibmaek] - [#18610]) ([sensor.nmbs docs]) (new-platform)
+- Add permission check to light service ([@balloob] - [#19259]) ([light docs])
+- Check admin permission before able to manage config entries ([@balloob] - [#19265]) ([config docs])
+- Rename is_owner decorator to is_admin ([@balloob] - [#19266]) ([config docs]) ([websocket_api docs])
+- home-assistant/home-assistant#17333: update to use DOMAIN constants and standards. ([@marchingphoenix] - [#19242]) ([climate.eq3btsmart docs]) (breaking change)
+- Make variable `entity_id` available to value_template for MQTT binary sensor ([@emontnemery] - [#19195]) ([binary_sensor.mqtt docs])
+- Set unavailable when unreachable ([@MaxG88] - [#19012]) ([media_player.gpmdp docs])
+- Updated ELIQ Online sensor to async API ([@molobrakos] - [#19248]) ([sensor.eliqonline docs])
+- Add air pollutants component ([@fabaff] - [#18707]) ([air_pollutants docs]) ([demo docs]) (new-platform)
+- Device config for Fibaro hub integration ([@pbalogh77] - [#19171])
+- Set InsteonEntity name to be combo of description and address. ([@wonderslug] - [#17262]) ([insteon docs])
+- Adding support for Plum Lightpad ([@ColinHarrington] - [#16576]) ([plum_lightpad docs]) ([binary_sensor.plum_lightpad docs]) ([light.plum_lightpad docs]) ([sensor.plum_lightpad docs]) (new-platform)
+- huawei_lte: Fetch only required data ([@scop] - [#17618]) ([device_tracker docs]) ([huawei_lte docs]) ([sensor.huawei_lte docs])
+- Add Ambient Weather PWS Sensor component ([@tmd224] - [#18551]) ([sensor.ambient_station docs]) (new-platform)
+- Add note to issue template regarding frontend issues ([@cgarwood] - [#19295])
+- Bump pyEight to fix Single Sleeper ([@mezz64] - [#19316]) ([eight_sleep docs])
+- Upgrade pytest to 4.0.2 ([@scop] - [#19327])
+- Upgrade pydocstyle to 3.0.0 ([@scop] - [#19328])
+- bump georss_client to 0.5 ([@exxamalte] - [#19337]) ([sensor.geo_rss_events docs])
+- Add Brottsplatskartan sensor ([@chrillux] - [#19018]) ([sensor.brottsplatskartan docs]) (new-platform)
+- Fix broken sensor.mqtt json_attributes deprecation message ([@emontnemery] - [#19349]) ([sensor.mqtt docs])
+- Adds io:OnOffIOComponent as switch to tahoma.py ([@jensihnow] - [#19338]) ([tahoma docs])
+- Add config flow for Daikin ([@fredrike] - [#19182]) ([daikin docs]) ([climate.daikin docs]) ([sensor.daikin docs]) (breaking change)
+- Add traccar motion, speed and battery_level attributes ([@ludeeus] - [#19090]) ([device_tracker docs]) (breaking change)
+- Initialise plant attributes at startup ([@PeteBa] - [#19315]) ([plant docs])
+- Remove recorder purge protection ([@amelchio] - [#19358])
+- Add native ESPHome API component ([@OttoWinter] - [#19334]) (new-platform)
+- Add support for statewide data for Flu Near You ([@bachya] - [#19341]) ([sensor.flunearyou docs])
+- Use unicode slugify ([@pvizeli] - [#19192]) (breaking change)
+- Upgrade youtube_dl to 2018.12.17 ([@fabaff] - [#19378]) ([media_extractor docs])
+- Upgrade TwitterAPI to 2.5.7 ([@fabaff] - [#19382]) ([notify docs])
+- Upgrade ruamel.yaml to 0.15.81 ([@fabaff] - [#19384])
+- Version bump pydaikin ([@fredrike] - [#19388]) ([daikin docs]) ([climate.daikin docs])
+- Upgrade keyrings.alt==3.1.1 ([@fabaff] - [#19386])
+- Set pytz to >=2018.07 ([@fabaff] - [#19387])
+- Upgrade RPi.GPIO to 0.6.5 ([@fabaff] - [#19392]) ([rpi_gpio docs])
+- Add air pollutants PROP_TO_ATTR ([@fabaff] - [#19336]) ([air_pollutants docs])
+- fix unique_id for Tellduslive sensors ([@fredrike] - [#19389]) ([sensor.tellduslive docs])
+- Add native ESPHome API binary sensor ([@OttoWinter] - [#19371]) ([esphome docs]) ([binary_sensor.esphome docs]) (new-platform)
+- Add native ESPHome API cover ([@OttoWinter] - [#19373]) ([esphome docs]) ([cover.esphome docs]) (new-platform)
+- Add native ESPHome API fan ([@OttoWinter] - [#19374]) ([esphome docs]) ([fan.esphome docs]) (new-platform)
+- Add native ESPHome API light ([@OttoWinter] - [#19375]) ([esphome docs]) ([light.esphome docs]) (new-platform)
+- Add native ESPHome API switch ([@OttoWinter] - [#19376]) ([esphome docs]) ([switch.esphome docs]) (new-platform)
+- Add native ESPHome API text sensor ([@OttoWinter] - [#19377]) ([sensor.esphome docs])
+- ESPHome Native API Restore Entities on startup ([@OttoWinter] - [#19379]) ([esphome docs])
+- Add native ESPHome API device registry feature ([@OttoWinter] - [#19381]) ([esphome docs])
+- Add native ESPHome API service call feature ([@OttoWinter] - [#19401]) ([esphome docs])
+- Upgade colorlog to 4.0.2 ([@fabaff] - [#19390])
+- Provide charging indicator for mychevy ([@sdague] - [#19348]) ([mychevy docs]) ([sensor.mychevy docs])
+- Add GTT Sensor ([@eliseomartelli] - [#18449]) ([sensor.gtt docs]) (new-platform)
+- Upgrade volvooncall to 0.8.7 ([@molobrakos] - [#19398]) ([volvooncall docs])
+- Cast lametric cycles parameter to int ([@jumpkick] - [#19370]) ([notify docs])
+- Satel integra monitor outputs ([@c-soft] - [#19149]) ([satel_integra docs]) ([binary_sensor.satel_integra docs])
+- Fix cpu_temp issue on Raspberry Pi ([@mretegan] - [#19404]) ([sensor.glances docs])
+- Add camera selection config to skybell camera ([@nhorvath] - [#19310]) ([skybell docs]) ([camera.skybell docs])
+- Bump pyEmby to 1.6, add channel media type mapping ([@mezz64] - [#19318]) ([media_player.emby docs])
+- Add openSenseMap air pollutants platform ([@fabaff] - [#19357]) ([air_pollutants docs]) (new-platform)
+- Optionally disable ssl verification for mjpeg ([@rohankapoorcom] - [#19277]) ([zoneminder docs]) ([camera.mjpeg docs]) ([camera.zoneminder docs])
+- Use string foratting ([@fabaff] - [#19427]) ([sensor.brottsplatskartan docs])
+- Add Prezzibenzina (Italian Fuel Price) Sensor ([@eliseomartelli] - [#19297]) ([sensor.prezzibenzina docs]) (new-platform)
+- Upgrade sqlalchemy to 1.2.15 ([@fabaff] - [#19383]) ([sensor.sql docs])
+- Upgrade requests to 2.21.0 ([@fabaff] - [#19385])
+- Miscellaneous ESPHome cleanups ([@OttoWinter] - [#19425]) ([esphome docs]) ([binary_sensor.esphome docs]) ([switch.esphome docs])
+- Fix typo ([@fabaff] - [#19433])
+- Various enhancements for WeMo component/platforms ([@sqldiablo] - [#19419]) ([wemo docs]) ([binary_sensor.wemo docs]) ([fan.wemo docs]) ([light.wemo docs]) ([switch.wemo docs]) (breaking change)
+- Add device_info to Daikin ([@fredrike] - [#19372]) ([daikin docs]) ([climate.daikin docs]) ([sensor.daikin docs])
+- Add sensor platform for SolarEdge Monitoring API ([@GidoHakvoort] - [#18846]) ([sensor.solaredge docs]) (new-platform)
+- Various updates ([@fabaff] - [#19449]) ([ihc docs])
+- Correct calls to subscription.async_unsubscribe_topics ([@emontnemery] - [#19414])
+- ZHA entity ZCL reporting configuration ([@Adminiuga] - [#19177]) ([zha docs]) ([binary_sensor.zha docs]) ([fan.zha docs]) ([light.zha docs]) ([sensor.zha docs]) ([switch.zha docs])
+- Add device registry to MQTT lock ([@emontnemery] - [#19333]) ([lock.mqtt docs])
+- Add device registry to MQTT alarm control panel ([@emontnemery] - [#19331]) ([alarm_control_panel.mqtt docs])
+- Add device registry to MQTT climate ([@emontnemery] - [#19332]) ([climate.mqtt docs])
+- Bump Pybotvac To Support D7 On Latest Firmware ([@dshokouhi] - [#19463]) ([neato docs])
+- Adds battery_percent which had been introduced with pyatmo 1.4 and resolves unknown var warning. ([@jensihnow] - [#19309]) ([sensor.netatmo docs])
+- Add Mythic Beasts DNSAPI Component ([@thinkl33t] - [#18333]) ([mythicbeastsdns docs]) (new-platform)
+- Rename ocr.png to ssocr-(entity_name).png to allow multiple instances ([@jumpkick] - [#18634]) ([image_processing.seven_segments docs]) (breaking change)
+- Update pynetgear to 0.5.2 ([@MatMaul] - [#19490]) ([device_tracker docs])
+- Reorder FLOW entries in config_entries.py ([@Solije] - [#19475])
+- Add timeout to RainMachine login ([@bachya] - [#19476]) ([rainmachine docs])
+- Add new sensor platform to expose Islamic prayer times ([@uchagani] - [#19444]) ([sensor.islamic_prayer_times docs]) (new-platform)
+- Add native ESPHome Home Assistant state feature ([@OttoWinter] - [#19429]) ([esphome docs])
+- Fixed the range filter unknown argument precision ([@timkoers] - [#19428]) ([sensor.filter docs])
+- Disable creating port mappings from UI, add discovery from component ([@StevenLooman] - [#18565]) ([upnp docs]) ([media_player.dlna_dmr docs])
+- Add Lutron Homeworks component ([@dubnom] - [#18311]) ([homeworks docs]) ([binary_sensor.homeworks docs]) ([light.homeworks docs]) (new-platform)
+- Allow scrape sensor to retry setting up platform if initial setup fails ([@uchagani] - [#19498]) ([sensor.scrape docs])
+- Clean up RFLink tests and add two tests ([@javicalle] - [#19511])
+- Add ZHA battery sensor ([@dmulcahey] - [#19363]) ([zha docs]) ([sensor.zha docs])
+- Restore state for zha binary_sensors on restart. ([@Adminiuga] - [#19314]) ([binary_sensor.zha docs])
+- Add deprecation warning ([@ludeeus] - [#19515]) ([sensor.ruter docs])
+- Update yale smart alarm client to v0.1.6 ([@domwillcode] - [#19495]) ([alarm_control_panel.yale_smart_alarm docs])
+- Add sunrise and sunset to Darksky weather sensor ([@fabaff] - [#19492]) ([sensor.darksky docs])
+- Update ZHA entity state on ZigBee zdo device announce ([@dmulcahey] - [#19208]) ([zha docs])
+- Fix fail2ban by removal of internal timer logic ([@grea09] - [#19456]) ([sensor.fail2ban docs])
+- Fix Mill connection problem ([@Danielhiversen] - [#19519]) ([climate.mill docs])
+- Add long click at new Aqara Wireless Remote Switch ([@ppanagiotis] - [#19518]) ([binary_sensor.xiaomi_aqara docs])
+- Add additional Z-Wave Bulbs to ZW098 Workaround ([@loe] - [#19480]) ([light.zwave docs])
+- Implement path in the config to fix issues for some users ([@wcomartin] - [#19491]) ([sensor.tautulli docs])
+- Add ZHA occupancy sensor ([@dmulcahey] - [#19365]) ([zha docs]) ([binary_sensor.zha docs])
+- Make ZHA entities non-polled by default ([@Adminiuga] - [#19536])
+- Pywemo version bump ([@sqldiablo] - [#19538])
+- Support ZHA light turn_off transition ([@Adminiuga] - [#19531]) ([light.zha docs])
+- increase robustness, when something upstream fails ([@dgomes] - [#19493]) ([weather.ipma docs])
+- Change ISY binary_sensor subnode to hex ([@Steve9F] - [#19471]) ([binary_sensor.isy994 docs])
+- Updated to support per device find iphone sound. ([@kdvlr] - [#19535]) ([device_tracker docs])
+- Fix issues in ZHA light ([@dmulcahey] - [#19368]) ([light.zha docs])
+- Add hub- and device-info for tellduslive ([@fredrike] - [#19180]) ([tellduslive docs]) ([sensor.tellduslive docs])
+- Configure ZHA entity on new ZHA device join ([@Adminiuga] - [#19470]) ([zha docs]) ([binary_sensor.zha docs]) ([fan.zha docs]) ([light.zha docs]) ([sensor.zha docs]) ([switch.zha docs])
+- Fix support for base topic for empty values in MQTT discovery msg ([@emontnemery] - [#19501]) ([mqtt docs])
+- Improve handling of MQTT light discovery ([@emontnemery] - [#19436]) ([mqtt docs])
+- Update homekit controller to homekit==0.12.0 ([@Jc2k] - [#19549]) ([homekit_controller docs]) ([climate.homekit_controller docs]) ([light.homekit_controller docs]) ([switch.homekit_controller docs])
+- Remove global from ZHA application controller ([@dmulcahey] - [#19557]) ([zha docs])
+- Improve Lutron RadioRA2 support, adding switches and scenes ([@cdheiser] - [#18330]) ([lutron docs]) ([scene.lutron docs]) ([switch.lutron docs]) (new-platform)
+- Clean up homematicip cloud ([@sander76] - [#19481]) ([homematicip_cloud docs])
+- Add HomematicIP SMI55 device ([@mxworm] - [#19400]) ([binary_sensor.homematicip_cloud docs]) ([sensor.homematicip_cloud docs])
+- Added support for triggered state on NX584 alarm. ([@mreiling] - [#19524]) ([alarm_control_panel.nx584 docs])
+- Add homematicip cloud full flush measuring switch ([@sander76] - [#19247]) ([switch.homematicip_cloud docs])
+- Add device_id configuration option to Bluetooth tracker ([@imotov] - [#18539]) ([device_tracker docs])
+- Whitelisting of lines on entur sensor ([@hfurubotten] - [#19539]) ([sensor.entur_public_transport docs])
+- Update pylaunches dependency to 0.2.0 ([@DoloresHA] - [#19570]) ([sensor.launch_library docs]) (breaking change)
+- Pencom ([@dubnom] - [#19369]) ([switch.pencom docs]) (new-platform)
+- Tibber, improve server reconnection ([@Danielhiversen] - [#19574]) ([tibber docs])
+- Link to dicttoxml excessive INFO logging issue ([@scop] - [#19575]) ([huawei_lte docs])
+- Add a new click_type "long_both" to improve the support of the new Xiaomi Wireless Wall Switch (remote.b286acn01) ([@syssi] - [#19573]) ([binary_sensor.xiaomi_aqara docs])
+- Clean up remaining rflink tests ([@javicalle] - [#19551])
+- Add a new click_type double_both to improve the support of the new Xiaomi aqara remote.b286acn01 dual switch. ([@tedsluis] - [#19578]) ([binary_sensor.xiaomi_aqara docs])
+- Upgrade sphinx-autodoc-typehints to 1.6.0 ([@fabaff] - [#19579])
+- Upgrade TwitterAPI to 2.5.8 ([@fabaff] - [#19581]) ([notify docs])
+- Upgrade pyowm to 2.10.0 ([@fabaff] - [#19582]) ([sensor.openweathermap docs]) ([weather.openweathermap docs])
+- Upgrade keyring to 17.1.0 ([@fabaff] - [#19583])
+- Upgrade rpi-rf to 0.9.7 ([@fabaff] - [#19394]) ([switch.rpi_rf docs])
+- Upgrade Sphinx to 1.8.3 ([@fabaff] - [#19580])
+- Fix mpd shuffle/random status ([@apetrycki] - [#19308]) ([media_player.mpd docs])
+- Add verify_ssl option to Splunk component ([@FieldofClay] - [#19112]) ([splunk docs])
+- Update pymitv dependency ([@simse] - [#19601]) ([media_player.xiaomi_tv docs])
+- Updated set of available voices for Yandex TTS ([@gipnokote] - [#19603]) ([tts docs])
+- Version Bump for aioftp ([@ioangogo] - [#19510]) ([camera.yi docs])
+- Don't truncate brightness and white_value of MQTT light ([@emontnemery] - [#19502]) ([light.mqtt docs])
+- Improve how neato displays alerts and add alerts for persistent maps ([@dshokouhi] - [#19593]) ([neato docs]) ([vacuum.neato docs])
+- Add AfterShip sensor for packages ([@maxandersen] - [#18034]) ([sensor.aftership docs]) (new-platform)
+- Upgrade aiohttp to 3.5.1 ([@fabaff] - [#19584])
+- Add Freebox component with sensors and device tracker ([@SNoof85] - [#18472]) ([device_tracker docs]) ([freebox docs]) ([sensor.freebox docs]) (breaking change) (new-platform)
+- Upgrade huawei-lte-api to 1.1.1 ([@scop] - [#19615]) ([huawei_lte docs])
+- Systemmonitor - add device_class property ([@ReneNulschDE] - [#19614]) ([sensor.systemmonitor docs])
+- LCN component and light platform ([@alengwenus] - [#18621]) ([lcn docs]) ([light.lcn docs]) (new-platform)
+- Add additional neato alerts and errors ([@dshokouhi] - [#19608]) ([neato docs])
+- Bump pyotgw to 0.4b0 ([@mvn23] - [#19618]) ([opentherm_gw docs])
+- Fix cpu_temp issue on Odroid ([@gipnokote] - [#19620]) ([sensor.glances docs])
+- Upgraded pyarlo to 0.2.3 ([@tchellomello] - [#19626]) ([arlo docs])
+- Upgrade to async_upnp_client==0.13.8 ([@StevenLooman] - [#19634]) ([upnp docs]) ([media_player.dlna_dmr docs])
+- Revert "Bump pyotgw to 0.4b0 (#19618)" ([@mvn23] - [#19635]) ([opentherm_gw docs])
+- Added events STARTED, RESTARTED AND PAUSED ([@mjrider] - [#19516]) ([timer docs])
+- Fix cpu_temp issue on Vero 4K ([@mretegan] - [#19638]) ([sensor.glances docs])
+- Use xml.etree through defusedxml ([@scop] - [#19640]) ([ihc docs]) ([namecheapdns docs]) ([sensor.ohmconnect docs])
+- Support knx operation types ([@marvin-w] - [#19546]) ([knx docs]) ([climate.knx docs]) (breaking change)
+- Improve Wemo setup speed ([@sqldiablo] - [#19563]) ([wemo docs]) ([binary_sensor.wemo docs]) ([switch.wemo docs]) (breaking change)
+- Use async_configure for ZHA IAS binary sensor ([@Adminiuga] - [#19629]) ([binary_sensor.zha docs])
+- Only bind clusters in ZHA remote entity ([@dmulcahey] - [#19577]) ([zha docs]) ([binary_sensor.zha docs])
+- Add RaspyRFM switch platform ([@markusressel] - [#19130]) ([switch.raspyrfm docs]) (new-platform)
+- Use aioharmony for remote.harmony platform ([@ehendrix23] - [#19595]) ([remote.harmony docs])
+- Bump pyHik library to 0.1.9 to improve device support. ([@mezz64] - [#19656]) ([binary_sensor.hikvision docs])
+- Fix ADS light when parameter adsvar_brightness is not set ([@carstenschroeder] - [#19636]) ([light.ads docs])
+- pytraccar version bump ([@ludeeus] - [#19659]) ([device_tracker docs])
+- Added regexp validation allowing Twilio notifications to use Sender ID instead of phone number ([@psvanstrom] - [#19644]) ([notify docs])
+- Fix exception checking for next dublin bus ([@ttroy50] - [#19663]) ([sensor.dublin_bus_transport docs])
+- Fix error in got_connected for remote.harmony ([@ehendrix23] - [#19662]) ([remote.harmony docs])
+- Fix homekit_controller pairing regression ([@Jc2k] - [#19654]) ([homekit_controller docs])
+- Add IDTECK proximity card component ([@dubnom] - [#18309]) ([sensor.idteck_prox docs]) (new-platform)
+- Fix london_underground issue ([@robmarkcole] - [#19642]) ([sensor.london_underground docs])
+- Luftdaten traceback ([@fabaff] - [#19666]) ([sensor.luftdaten docs])
+- Suppress traceback if network is not available ([@fabaff] - [#19651])
+- Improve rflink coverage ([@javicalle] - [#19596])
+- Add support for color_temp_command_template in MQTT light component ([@dchesterton] - [#19675]) ([light.mqtt docs])
+- Add ness alarm control panel using nessclient ([@nickw444] - [#18463]) ([ness_alarm docs]) ([alarm_control_panel.ness_alarm docs]) ([binary_sensor.ness_alarm docs]) (new-platform)
+- Update pyhomematic 0.1.54 + small fixes ([@danielperna84] - [#19667]) ([homematic docs]) ([sensor.homematic docs])
+- Envisalink pgm ([@Cinntax] - [#19499]) ([envisalink docs])
+- Bump pyotgw to 0.4b1 ([@mvn23] - [#19715]) ([opentherm_gw docs])
+- Bumping aioasuswrt version to 1.1.17 ([@kennedyshead] - [#19714]) ([asuswrt docs])
+- Adds ability to calibrate temperature for BME680 ([@ctborg] - [#19684]) ([sensor.bme680 docs])
+- Do not choke on no awair data ([@ahayworth] - [#19708]) ([sensor.awair docs])
+- Fix WeMo incorrect mapping of device type during discovery ([@sqldiablo] - [#19691]) ([wemo docs])
+- Drop bme680 os_lookup for temp_offset ([@ctborg] - [#19733]) ([sensor.bme680 docs])
+- Add exception handling to ADS shutdown ([@carstenschroeder] - [#19682]) ([ads docs])
+- Filter urllib3.connectionpool warnings in camera.axis and camera.zoneminder ([@rohankapoorcom] - [#19641]) ([camera.axis docs]) ([camera.mjpeg docs]) ([camera.zoneminder docs])
+- Proactive Alexa ChangeReport messages ([@abmantis] - [#18114]) ([alexa docs]) (new-platform)
+- Move envisalink component to package and add services.yaml ([@Cinntax] - [#19731]) ([envisalink docs])
+- Add mychevy optional country parameter ([@sdague] - [#19727]) ([mychevy docs])
+- Upgrade tibber library ([@Danielhiversen] - [#19768]) ([tibber docs])
+- Round illumination and lux value to one ([@bieniu] - [#19747]) ([sensor.xiaomi_aqara docs])
+
+[#16576]: https://github.com/home-assistant/home-assistant/pull/16576
+[#17262]: https://github.com/home-assistant/home-assistant/pull/17262
+[#17618]: https://github.com/home-assistant/home-assistant/pull/17618
+[#18034]: https://github.com/home-assistant/home-assistant/pull/18034
+[#18114]: https://github.com/home-assistant/home-assistant/pull/18114
+[#18309]: https://github.com/home-assistant/home-assistant/pull/18309
+[#18311]: https://github.com/home-assistant/home-assistant/pull/18311
+[#18330]: https://github.com/home-assistant/home-assistant/pull/18330
+[#18333]: https://github.com/home-assistant/home-assistant/pull/18333
+[#18449]: https://github.com/home-assistant/home-assistant/pull/18449
+[#18463]: https://github.com/home-assistant/home-assistant/pull/18463
+[#18471]: https://github.com/home-assistant/home-assistant/pull/18471
+[#18472]: https://github.com/home-assistant/home-assistant/pull/18472
+[#18477]: https://github.com/home-assistant/home-assistant/pull/18477
+[#18496]: https://github.com/home-assistant/home-assistant/pull/18496
+[#18539]: https://github.com/home-assistant/home-assistant/pull/18539
+[#18551]: https://github.com/home-assistant/home-assistant/pull/18551
+[#18565]: https://github.com/home-assistant/home-assistant/pull/18565
+[#18610]: https://github.com/home-assistant/home-assistant/pull/18610
+[#18621]: https://github.com/home-assistant/home-assistant/pull/18621
+[#18634]: https://github.com/home-assistant/home-assistant/pull/18634
+[#18707]: https://github.com/home-assistant/home-assistant/pull/18707
+[#18750]: https://github.com/home-assistant/home-assistant/pull/18750
+[#18758]: https://github.com/home-assistant/home-assistant/pull/18758
+[#18816]: https://github.com/home-assistant/home-assistant/pull/18816
+[#18846]: https://github.com/home-assistant/home-assistant/pull/18846
+[#18916]: https://github.com/home-assistant/home-assistant/pull/18916
+[#18946]: https://github.com/home-assistant/home-assistant/pull/18946
+[#18965]: https://github.com/home-assistant/home-assistant/pull/18965
+[#19006]: https://github.com/home-assistant/home-assistant/pull/19006
+[#19012]: https://github.com/home-assistant/home-assistant/pull/19012
+[#19013]: https://github.com/home-assistant/home-assistant/pull/19013
+[#19014]: https://github.com/home-assistant/home-assistant/pull/19014
+[#19018]: https://github.com/home-assistant/home-assistant/pull/19018
+[#19041]: https://github.com/home-assistant/home-assistant/pull/19041
+[#19050]: https://github.com/home-assistant/home-assistant/pull/19050
+[#19071]: https://github.com/home-assistant/home-assistant/pull/19071
+[#19078]: https://github.com/home-assistant/home-assistant/pull/19078
+[#19080]: https://github.com/home-assistant/home-assistant/pull/19080
+[#19090]: https://github.com/home-assistant/home-assistant/pull/19090
+[#19095]: https://github.com/home-assistant/home-assistant/pull/19095
+[#19099]: https://github.com/home-assistant/home-assistant/pull/19099
+[#19104]: https://github.com/home-assistant/home-assistant/pull/19104
+[#19107]: https://github.com/home-assistant/home-assistant/pull/19107
+[#19112]: https://github.com/home-assistant/home-assistant/pull/19112
+[#19113]: https://github.com/home-assistant/home-assistant/pull/19113
+[#19117]: https://github.com/home-assistant/home-assistant/pull/19117
+[#19121]: https://github.com/home-assistant/home-assistant/pull/19121
+[#19124]: https://github.com/home-assistant/home-assistant/pull/19124
+[#19129]: https://github.com/home-assistant/home-assistant/pull/19129
+[#19130]: https://github.com/home-assistant/home-assistant/pull/19130
+[#19139]: https://github.com/home-assistant/home-assistant/pull/19139
+[#19140]: https://github.com/home-assistant/home-assistant/pull/19140
+[#19142]: https://github.com/home-assistant/home-assistant/pull/19142
+[#19149]: https://github.com/home-assistant/home-assistant/pull/19149
+[#19150]: https://github.com/home-assistant/home-assistant/pull/19150
+[#19151]: https://github.com/home-assistant/home-assistant/pull/19151
+[#19152]: https://github.com/home-assistant/home-assistant/pull/19152
+[#19171]: https://github.com/home-assistant/home-assistant/pull/19171
+[#19177]: https://github.com/home-assistant/home-assistant/pull/19177
+[#19180]: https://github.com/home-assistant/home-assistant/pull/19180
+[#19182]: https://github.com/home-assistant/home-assistant/pull/19182
+[#19183]: https://github.com/home-assistant/home-assistant/pull/19183
+[#19186]: https://github.com/home-assistant/home-assistant/pull/19186
+[#19187]: https://github.com/home-assistant/home-assistant/pull/19187
+[#19192]: https://github.com/home-assistant/home-assistant/pull/19192
+[#19195]: https://github.com/home-assistant/home-assistant/pull/19195
+[#19197]: https://github.com/home-assistant/home-assistant/pull/19197
+[#19202]: https://github.com/home-assistant/home-assistant/pull/19202
+[#19208]: https://github.com/home-assistant/home-assistant/pull/19208
+[#19213]: https://github.com/home-assistant/home-assistant/pull/19213
+[#19242]: https://github.com/home-assistant/home-assistant/pull/19242
+[#19244]: https://github.com/home-assistant/home-assistant/pull/19244
+[#19245]: https://github.com/home-assistant/home-assistant/pull/19245
+[#19247]: https://github.com/home-assistant/home-assistant/pull/19247
+[#19248]: https://github.com/home-assistant/home-assistant/pull/19248
+[#19249]: https://github.com/home-assistant/home-assistant/pull/19249
+[#19259]: https://github.com/home-assistant/home-assistant/pull/19259
+[#19265]: https://github.com/home-assistant/home-assistant/pull/19265
+[#19266]: https://github.com/home-assistant/home-assistant/pull/19266
+[#19267]: https://github.com/home-assistant/home-assistant/pull/19267
+[#19276]: https://github.com/home-assistant/home-assistant/pull/19276
+[#19277]: https://github.com/home-assistant/home-assistant/pull/19277
+[#19295]: https://github.com/home-assistant/home-assistant/pull/19295
+[#19297]: https://github.com/home-assistant/home-assistant/pull/19297
+[#19308]: https://github.com/home-assistant/home-assistant/pull/19308
+[#19309]: https://github.com/home-assistant/home-assistant/pull/19309
+[#19310]: https://github.com/home-assistant/home-assistant/pull/19310
+[#19314]: https://github.com/home-assistant/home-assistant/pull/19314
+[#19315]: https://github.com/home-assistant/home-assistant/pull/19315
+[#19316]: https://github.com/home-assistant/home-assistant/pull/19316
+[#19318]: https://github.com/home-assistant/home-assistant/pull/19318
+[#19327]: https://github.com/home-assistant/home-assistant/pull/19327
+[#19328]: https://github.com/home-assistant/home-assistant/pull/19328
+[#19331]: https://github.com/home-assistant/home-assistant/pull/19331
+[#19332]: https://github.com/home-assistant/home-assistant/pull/19332
+[#19333]: https://github.com/home-assistant/home-assistant/pull/19333
+[#19334]: https://github.com/home-assistant/home-assistant/pull/19334
+[#19336]: https://github.com/home-assistant/home-assistant/pull/19336
+[#19337]: https://github.com/home-assistant/home-assistant/pull/19337
+[#19338]: https://github.com/home-assistant/home-assistant/pull/19338
+[#19341]: https://github.com/home-assistant/home-assistant/pull/19341
+[#19348]: https://github.com/home-assistant/home-assistant/pull/19348
+[#19349]: https://github.com/home-assistant/home-assistant/pull/19349
+[#19357]: https://github.com/home-assistant/home-assistant/pull/19357
+[#19358]: https://github.com/home-assistant/home-assistant/pull/19358
+[#19363]: https://github.com/home-assistant/home-assistant/pull/19363
+[#19365]: https://github.com/home-assistant/home-assistant/pull/19365
+[#19368]: https://github.com/home-assistant/home-assistant/pull/19368
+[#19369]: https://github.com/home-assistant/home-assistant/pull/19369
+[#19370]: https://github.com/home-assistant/home-assistant/pull/19370
+[#19371]: https://github.com/home-assistant/home-assistant/pull/19371
+[#19372]: https://github.com/home-assistant/home-assistant/pull/19372
+[#19373]: https://github.com/home-assistant/home-assistant/pull/19373
+[#19374]: https://github.com/home-assistant/home-assistant/pull/19374
+[#19375]: https://github.com/home-assistant/home-assistant/pull/19375
+[#19376]: https://github.com/home-assistant/home-assistant/pull/19376
+[#19377]: https://github.com/home-assistant/home-assistant/pull/19377
+[#19378]: https://github.com/home-assistant/home-assistant/pull/19378
+[#19379]: https://github.com/home-assistant/home-assistant/pull/19379
+[#19381]: https://github.com/home-assistant/home-assistant/pull/19381
+[#19382]: https://github.com/home-assistant/home-assistant/pull/19382
+[#19383]: https://github.com/home-assistant/home-assistant/pull/19383
+[#19384]: https://github.com/home-assistant/home-assistant/pull/19384
+[#19385]: https://github.com/home-assistant/home-assistant/pull/19385
+[#19386]: https://github.com/home-assistant/home-assistant/pull/19386
+[#19387]: https://github.com/home-assistant/home-assistant/pull/19387
+[#19388]: https://github.com/home-assistant/home-assistant/pull/19388
+[#19389]: https://github.com/home-assistant/home-assistant/pull/19389
+[#19390]: https://github.com/home-assistant/home-assistant/pull/19390
+[#19392]: https://github.com/home-assistant/home-assistant/pull/19392
+[#19394]: https://github.com/home-assistant/home-assistant/pull/19394
+[#19398]: https://github.com/home-assistant/home-assistant/pull/19398
+[#19400]: https://github.com/home-assistant/home-assistant/pull/19400
+[#19401]: https://github.com/home-assistant/home-assistant/pull/19401
+[#19404]: https://github.com/home-assistant/home-assistant/pull/19404
+[#19414]: https://github.com/home-assistant/home-assistant/pull/19414
+[#19419]: https://github.com/home-assistant/home-assistant/pull/19419
+[#19425]: https://github.com/home-assistant/home-assistant/pull/19425
+[#19427]: https://github.com/home-assistant/home-assistant/pull/19427
+[#19428]: https://github.com/home-assistant/home-assistant/pull/19428
+[#19429]: https://github.com/home-assistant/home-assistant/pull/19429
+[#19433]: https://github.com/home-assistant/home-assistant/pull/19433
+[#19436]: https://github.com/home-assistant/home-assistant/pull/19436
+[#19444]: https://github.com/home-assistant/home-assistant/pull/19444
+[#19449]: https://github.com/home-assistant/home-assistant/pull/19449
+[#19456]: https://github.com/home-assistant/home-assistant/pull/19456
+[#19463]: https://github.com/home-assistant/home-assistant/pull/19463
+[#19470]: https://github.com/home-assistant/home-assistant/pull/19470
+[#19471]: https://github.com/home-assistant/home-assistant/pull/19471
+[#19475]: https://github.com/home-assistant/home-assistant/pull/19475
+[#19476]: https://github.com/home-assistant/home-assistant/pull/19476
+[#19480]: https://github.com/home-assistant/home-assistant/pull/19480
+[#19481]: https://github.com/home-assistant/home-assistant/pull/19481
+[#19490]: https://github.com/home-assistant/home-assistant/pull/19490
+[#19491]: https://github.com/home-assistant/home-assistant/pull/19491
+[#19492]: https://github.com/home-assistant/home-assistant/pull/19492
+[#19493]: https://github.com/home-assistant/home-assistant/pull/19493
+[#19495]: https://github.com/home-assistant/home-assistant/pull/19495
+[#19498]: https://github.com/home-assistant/home-assistant/pull/19498
+[#19499]: https://github.com/home-assistant/home-assistant/pull/19499
+[#19501]: https://github.com/home-assistant/home-assistant/pull/19501
+[#19502]: https://github.com/home-assistant/home-assistant/pull/19502
+[#19510]: https://github.com/home-assistant/home-assistant/pull/19510
+[#19511]: https://github.com/home-assistant/home-assistant/pull/19511
+[#19515]: https://github.com/home-assistant/home-assistant/pull/19515
+[#19516]: https://github.com/home-assistant/home-assistant/pull/19516
+[#19518]: https://github.com/home-assistant/home-assistant/pull/19518
+[#19519]: https://github.com/home-assistant/home-assistant/pull/19519
+[#19524]: https://github.com/home-assistant/home-assistant/pull/19524
+[#19531]: https://github.com/home-assistant/home-assistant/pull/19531
+[#19535]: https://github.com/home-assistant/home-assistant/pull/19535
+[#19536]: https://github.com/home-assistant/home-assistant/pull/19536
+[#19538]: https://github.com/home-assistant/home-assistant/pull/19538
+[#19539]: https://github.com/home-assistant/home-assistant/pull/19539
+[#19546]: https://github.com/home-assistant/home-assistant/pull/19546
+[#19549]: https://github.com/home-assistant/home-assistant/pull/19549
+[#19551]: https://github.com/home-assistant/home-assistant/pull/19551
+[#19557]: https://github.com/home-assistant/home-assistant/pull/19557
+[#19563]: https://github.com/home-assistant/home-assistant/pull/19563
+[#19570]: https://github.com/home-assistant/home-assistant/pull/19570
+[#19573]: https://github.com/home-assistant/home-assistant/pull/19573
+[#19574]: https://github.com/home-assistant/home-assistant/pull/19574
+[#19575]: https://github.com/home-assistant/home-assistant/pull/19575
+[#19577]: https://github.com/home-assistant/home-assistant/pull/19577
+[#19578]: https://github.com/home-assistant/home-assistant/pull/19578
+[#19579]: https://github.com/home-assistant/home-assistant/pull/19579
+[#19580]: https://github.com/home-assistant/home-assistant/pull/19580
+[#19581]: https://github.com/home-assistant/home-assistant/pull/19581
+[#19582]: https://github.com/home-assistant/home-assistant/pull/19582
+[#19583]: https://github.com/home-assistant/home-assistant/pull/19583
+[#19584]: https://github.com/home-assistant/home-assistant/pull/19584
+[#19593]: https://github.com/home-assistant/home-assistant/pull/19593
+[#19595]: https://github.com/home-assistant/home-assistant/pull/19595
+[#19596]: https://github.com/home-assistant/home-assistant/pull/19596
+[#19601]: https://github.com/home-assistant/home-assistant/pull/19601
+[#19603]: https://github.com/home-assistant/home-assistant/pull/19603
+[#19608]: https://github.com/home-assistant/home-assistant/pull/19608
+[#19614]: https://github.com/home-assistant/home-assistant/pull/19614
+[#19615]: https://github.com/home-assistant/home-assistant/pull/19615
+[#19618]: https://github.com/home-assistant/home-assistant/pull/19618
+[#19620]: https://github.com/home-assistant/home-assistant/pull/19620
+[#19626]: https://github.com/home-assistant/home-assistant/pull/19626
+[#19629]: https://github.com/home-assistant/home-assistant/pull/19629
+[#19634]: https://github.com/home-assistant/home-assistant/pull/19634
+[#19635]: https://github.com/home-assistant/home-assistant/pull/19635
+[#19636]: https://github.com/home-assistant/home-assistant/pull/19636
+[#19638]: https://github.com/home-assistant/home-assistant/pull/19638
+[#19640]: https://github.com/home-assistant/home-assistant/pull/19640
+[#19641]: https://github.com/home-assistant/home-assistant/pull/19641
+[#19642]: https://github.com/home-assistant/home-assistant/pull/19642
+[#19644]: https://github.com/home-assistant/home-assistant/pull/19644
+[#19651]: https://github.com/home-assistant/home-assistant/pull/19651
+[#19654]: https://github.com/home-assistant/home-assistant/pull/19654
+[#19656]: https://github.com/home-assistant/home-assistant/pull/19656
+[#19659]: https://github.com/home-assistant/home-assistant/pull/19659
+[#19662]: https://github.com/home-assistant/home-assistant/pull/19662
+[#19663]: https://github.com/home-assistant/home-assistant/pull/19663
+[#19666]: https://github.com/home-assistant/home-assistant/pull/19666
+[#19667]: https://github.com/home-assistant/home-assistant/pull/19667
+[#19675]: https://github.com/home-assistant/home-assistant/pull/19675
+[#19682]: https://github.com/home-assistant/home-assistant/pull/19682
+[#19684]: https://github.com/home-assistant/home-assistant/pull/19684
+[#19691]: https://github.com/home-assistant/home-assistant/pull/19691
+[#19708]: https://github.com/home-assistant/home-assistant/pull/19708
+[#19714]: https://github.com/home-assistant/home-assistant/pull/19714
+[#19715]: https://github.com/home-assistant/home-assistant/pull/19715
+[#19727]: https://github.com/home-assistant/home-assistant/pull/19727
+[#19731]: https://github.com/home-assistant/home-assistant/pull/19731
+[#19733]: https://github.com/home-assistant/home-assistant/pull/19733
+[#19747]: https://github.com/home-assistant/home-assistant/pull/19747
+[#19768]: https://github.com/home-assistant/home-assistant/pull/19768
+[@Adminiuga]: https://github.com/Adminiuga
+[@Cinntax]: https://github.com/Cinntax
+[@ColinHarrington]: https://github.com/ColinHarrington
+[@Danielhiversen]: https://github.com/Danielhiversen
+[@Devqon]: https://github.com/Devqon
+[@DoloresHA]: https://github.com/DoloresHA
+[@FieldofClay]: https://github.com/FieldofClay
+[@GidoHakvoort]: https://github.com/GidoHakvoort
+[@Jc2k]: https://github.com/Jc2k
+[@MatMaul]: https://github.com/MatMaul
+[@MaxG88]: https://github.com/MaxG88
+[@OttoWinter]: https://github.com/OttoWinter
+[@PeteBa]: https://github.com/PeteBa
+[@ReneNulschDE]: https://github.com/ReneNulschDE
+[@RyuzakiKK]: https://github.com/RyuzakiKK
+[@SNoof85]: https://github.com/SNoof85
+[@Solije]: https://github.com/Solije
+[@Steve9F]: https://github.com/Steve9F
+[@StevenLooman]: https://github.com/StevenLooman
+[@abmantis]: https://github.com/abmantis
+[@ahayworth]: https://github.com/ahayworth
+[@alengwenus]: https://github.com/alengwenus
+[@amelchio]: https://github.com/amelchio
+[@apetrycki]: https://github.com/apetrycki
+[@bachya]: https://github.com/bachya
+[@balloob]: https://github.com/balloob
+[@basschipper]: https://github.com/basschipper
+[@bieniu]: https://github.com/bieniu
+[@bremor]: https://github.com/bremor
+[@c-soft]: https://github.com/c-soft
+[@carstenschroeder]: https://github.com/carstenschroeder
+[@cdheiser]: https://github.com/cdheiser
+[@cgarwood]: https://github.com/cgarwood
+[@chrillux]: https://github.com/chrillux
+[@craftyguy]: https://github.com/craftyguy
+[@ctborg]: https://github.com/ctborg
+[@danielperna84]: https://github.com/danielperna84
+[@dchesterton]: https://github.com/dchesterton
+[@dgomes]: https://github.com/dgomes
+[@dmulcahey]: https://github.com/dmulcahey
+[@domwillcode]: https://github.com/domwillcode
+[@dshokouhi]: https://github.com/dshokouhi
+[@dubnom]: https://github.com/dubnom
+[@edif30]: https://github.com/edif30
+[@ehendrix23]: https://github.com/ehendrix23
+[@eliseomartelli]: https://github.com/eliseomartelli
+[@emontnemery]: https://github.com/emontnemery
+[@exxamalte]: https://github.com/exxamalte
+[@fabaff]: https://github.com/fabaff
+[@foxel]: https://github.com/foxel
+[@fredrike]: https://github.com/fredrike
+[@gipnokote]: https://github.com/gipnokote
+[@grea09]: https://github.com/grea09
+[@hfurubotten]: https://github.com/hfurubotten
+[@imotov]: https://github.com/imotov
+[@ioangogo]: https://github.com/ioangogo
+[@jarondl]: https://github.com/jarondl
+[@javicalle]: https://github.com/javicalle
+[@jensihnow]: https://github.com/jensihnow
+[@jkeljo]: https://github.com/jkeljo
+[@jumpkick]: https://github.com/jumpkick
+[@kdvlr]: https://github.com/kdvlr
+[@kennedyshead]: https://github.com/kennedyshead
+[@loe]: https://github.com/loe
+[@ludeeus]: https://github.com/ludeeus
+[@marchingphoenix]: https://github.com/marchingphoenix
+[@markusressel]: https://github.com/markusressel
+[@marvin-w]: https://github.com/marvin-w
+[@maxandersen]: https://github.com/maxandersen
+[@mezz64]: https://github.com/mezz64
+[@mjg59]: https://github.com/mjg59
+[@mjrider]: https://github.com/mjrider
+[@molobrakos]: https://github.com/molobrakos
+[@mreiling]: https://github.com/mreiling
+[@mretegan]: https://github.com/mretegan
+[@mvn23]: https://github.com/mvn23
+[@mxworm]: https://github.com/mxworm
+[@nhorvath]: https://github.com/nhorvath
+[@nickw444]: https://github.com/nickw444
+[@pbalogh77]: https://github.com/pbalogh77
+[@ppanagiotis]: https://github.com/ppanagiotis
+[@psvanstrom]: https://github.com/psvanstrom
+[@pvizeli]: https://github.com/pvizeli
+[@robmarkcole]: https://github.com/robmarkcole
+[@rohankapoorcom]: https://github.com/rohankapoorcom
+[@rytilahti]: https://github.com/rytilahti
+[@sander76]: https://github.com/sander76
+[@scop]: https://github.com/scop
+[@sdague]: https://github.com/sdague
+[@simse]: https://github.com/simse
+[@speedmann]: https://github.com/speedmann
+[@sqldiablo]: https://github.com/sqldiablo
+[@swilson]: https://github.com/swilson
+[@syssi]: https://github.com/syssi
+[@tchellomello]: https://github.com/tchellomello
+[@tedsluis]: https://github.com/tedsluis
+[@teharris1]: https://github.com/teharris1
+[@thibmaek]: https://github.com/thibmaek
+[@thinkl33t]: https://github.com/thinkl33t
+[@timkoers]: https://github.com/timkoers
+[@tinloaf]: https://github.com/tinloaf
+[@tmd224]: https://github.com/tmd224
+[@ttroy50]: https://github.com/ttroy50
+[@uchagani]: https://github.com/uchagani
+[@wcomartin]: https://github.com/wcomartin
+[@wonderslug]: https://github.com/wonderslug
+[ads docs]: /components/ads/
+[air_pollutants docs]: /components/air_pollutants/
+[alarm_control_panel.ialarm docs]: /components/alarm_control_panel.ialarm/
+[alarm_control_panel.mqtt docs]: /components/alarm_control_panel.mqtt/
+[alarm_control_panel.ness_alarm docs]: /components/alarm_control_panel.ness_alarm/
+[alarm_control_panel.nx584 docs]: /components/alarm_control_panel.nx584/
+[alarm_control_panel.yale_smart_alarm docs]: /components/alarm_control_panel.yale_smart_alarm/
+[alarmdecoder docs]: /components/alarmdecoder/
+[alexa docs]: /components/alexa/
+[arlo docs]: /components/arlo/
+[asuswrt docs]: /components/asuswrt/
+[automation docs]: /components/automation/
+[binary_sensor.alarmdecoder docs]: /components/binary_sensor.alarmdecoder/
+[binary_sensor.esphome docs]: /components/binary_sensor.esphome/
+[binary_sensor.hikvision docs]: /components/binary_sensor.hikvision/
+[binary_sensor.homematicip_cloud docs]: /components/binary_sensor.homematicip_cloud/
+[binary_sensor.homeworks docs]: /components/binary_sensor.homeworks/
+[binary_sensor.insteon docs]: /components/binary_sensor.insteon/
+[binary_sensor.isy994 docs]: /components/binary_sensor.isy994/
+[binary_sensor.mqtt docs]: /components/binary_sensor.mqtt/
+[binary_sensor.ness_alarm docs]: /components/binary_sensor.ness_alarm/
+[binary_sensor.plum_lightpad docs]: /components/binary_sensor.plum_lightpad/
+[binary_sensor.satel_integra docs]: /components/binary_sensor.satel_integra/
+[binary_sensor.tellduslive docs]: /components/binary_sensor.tellduslive/
+[binary_sensor.wemo docs]: /components/binary_sensor.wemo/
+[binary_sensor.xiaomi_aqara docs]: /components/binary_sensor.xiaomi_aqara/
+[binary_sensor.zha docs]: /components/binary_sensor.zha/
+[camera.axis docs]: /components/camera.axis/
+[camera.mjpeg docs]: /components/camera.mjpeg/
+[camera.skybell docs]: /components/camera.skybell/
+[camera.yi docs]: /components/camera.yi/
+[camera.zoneminder docs]: /components/camera.zoneminder/
+[climate.daikin docs]: /components/climate.daikin/
+[climate.eq3btsmart docs]: /components/climate.eq3btsmart/
+[climate.homekit_controller docs]: /components/climate.homekit_controller/
+[climate.knx docs]: /components/climate.knx/
+[climate.mill docs]: /components/climate.mill/
+[climate.mqtt docs]: /components/climate.mqtt/
+[climate.radiotherm docs]: /components/climate.radiotherm/
+[config docs]: /components/config/
+[cover.esphome docs]: /components/cover.esphome/
+[cover.rflink docs]: /components/cover.rflink/
+[cover.tellduslive docs]: /components/cover.tellduslive/
+[daikin docs]: /components/daikin/
+[demo docs]: /components/demo/
+[device_tracker docs]: /components/device_tracker/
+[doorbird docs]: /components/doorbird/
+[edp_redy docs]: /components/edp_redy/
+[eight_sleep docs]: /components/eight_sleep/
+[envisalink docs]: /components/envisalink/
+[esphome docs]: /components/esphome/
+[eufy docs]: /components/eufy/
+[fan.esphome docs]: /components/fan.esphome/
+[fan.wemo docs]: /components/fan.wemo/
+[fan.zha docs]: /components/fan.zha/
+[freebox docs]: /components/freebox/
+[homekit_controller docs]: /components/homekit_controller/
+[homematic docs]: /components/homematic/
+[homematicip_cloud docs]: /components/homematicip_cloud/
+[homeworks docs]: /components/homeworks/
+[huawei_lte docs]: /components/huawei_lte/
+[ihc docs]: /components/ihc/
+[image_processing.seven_segments docs]: /components/image_processing.seven_segments/
+[insteon docs]: /components/insteon/
+[knx docs]: /components/knx/
+[lcn docs]: /components/lcn/
+[light docs]: /components/light/
+[light.ads docs]: /components/light.ads/
+[light.esphome docs]: /components/light.esphome/
+[light.homekit_controller docs]: /components/light.homekit_controller/
+[light.homeworks docs]: /components/light.homeworks/
+[light.lcn docs]: /components/light.lcn/
+[light.mqtt docs]: /components/light.mqtt/
+[light.plum_lightpad docs]: /components/light.plum_lightpad/
+[light.rflink docs]: /components/light.rflink/
+[light.tellduslive docs]: /components/light.tellduslive/
+[light.wemo docs]: /components/light.wemo/
+[light.x10 docs]: /components/light.x10/
+[light.xiaomi_miio docs]: /components/light.xiaomi_miio/
+[light.zha docs]: /components/light.zha/
+[light.zwave docs]: /components/light.zwave/
+[lock.mqtt docs]: /components/lock.mqtt/
+[lutron docs]: /components/lutron/
+[media_extractor docs]: /components/media_extractor/
+[media_player.directv docs]: /components/media_player.directv/
+[media_player.dlna_dmr docs]: /components/media_player.dlna_dmr/
+[media_player.emby docs]: /components/media_player.emby/
+[media_player.gpmdp docs]: /components/media_player.gpmdp/
+[media_player.mpd docs]: /components/media_player.mpd/
+[media_player.songpal docs]: /components/media_player.songpal/
+[media_player.xiaomi_tv docs]: /components/media_player.xiaomi_tv/
+[mqtt docs]: /components/mqtt/
+[mychevy docs]: /components/mychevy/
+[mythicbeastsdns docs]: /components/mythicbeastsdns/
+[namecheapdns docs]: /components/namecheapdns/
+[neato docs]: /components/neato/
+[ness_alarm docs]: /components/ness_alarm/
+[notify docs]: /components/notify/
+[opentherm_gw docs]: /components/opentherm_gw/
+[plant docs]: /components/plant/
+[plum_lightpad docs]: /components/plum_lightpad/
+[rainmachine docs]: /components/rainmachine/
+[remote.harmony docs]: /components/remote.harmony/
+[rflink docs]: /components/rflink/
+[rpi_gpio docs]: /components/rpi_gpio/
+[satel_integra docs]: /components/satel_integra/
+[scene.lutron docs]: /components/scene.lutron/
+[sensor.aftership docs]: /components/sensor.aftership/
+[sensor.ambient_station docs]: /components/sensor.ambient_station/
+[sensor.awair docs]: /components/sensor.awair/
+[sensor.bme680 docs]: /components/sensor.bme680/
+[sensor.brottsplatskartan docs]: /components/sensor.brottsplatskartan/
+[sensor.cert_expiry docs]: /components/sensor.cert_expiry/
+[sensor.daikin docs]: /components/sensor.daikin/
+[sensor.darksky docs]: /components/sensor.darksky/
+[sensor.dublin_bus_transport docs]: /components/sensor.dublin_bus_transport/
+[sensor.eliqonline docs]: /components/sensor.eliqonline/
+[sensor.entur_public_transport docs]: /components/sensor.entur_public_transport/
+[sensor.esphome docs]: /components/sensor.esphome/
+[sensor.fail2ban docs]: /components/sensor.fail2ban/
+[sensor.filter docs]: /components/sensor.filter/
+[sensor.flunearyou docs]: /components/sensor.flunearyou/
+[sensor.freebox docs]: /components/sensor.freebox/
+[sensor.geizhals docs]: /components/sensor.geizhals/
+[sensor.geo_rss_events docs]: /components/sensor.geo_rss_events/
+[sensor.glances docs]: /components/sensor.glances/
+[sensor.gtfs docs]: /components/sensor.gtfs/
+[sensor.gtt docs]: /components/sensor.gtt/
+[sensor.homematic docs]: /components/sensor.homematic/
+[sensor.homematicip_cloud docs]: /components/sensor.homematicip_cloud/
+[sensor.huawei_lte docs]: /components/sensor.huawei_lte/
+[sensor.idteck_prox docs]: /components/sensor.idteck_prox/
+[sensor.islamic_prayer_times docs]: /components/sensor.islamic_prayer_times/
+[sensor.launch_library docs]: /components/sensor.launch_library/
+[sensor.london_underground docs]: /components/sensor.london_underground/
+[sensor.luftdaten docs]: /components/sensor.luftdaten/
+[sensor.mqtt docs]: /components/sensor.mqtt/
+[sensor.mychevy docs]: /components/sensor.mychevy/
+[sensor.netatmo docs]: /components/sensor.netatmo/
+[sensor.nmbs docs]: /components/sensor.nmbs/
+[sensor.ohmconnect docs]: /components/sensor.ohmconnect/
+[sensor.openweathermap docs]: /components/sensor.openweathermap/
+[sensor.plum_lightpad docs]: /components/sensor.plum_lightpad/
+[sensor.point docs]: /components/sensor.point/
+[sensor.prezzibenzina docs]: /components/sensor.prezzibenzina/
+[sensor.ruter docs]: /components/sensor.ruter/
+[sensor.scrape docs]: /components/sensor.scrape/
+[sensor.seventeentrack docs]: /components/sensor.seventeentrack/
+[sensor.solaredge docs]: /components/sensor.solaredge/
+[sensor.sql docs]: /components/sensor.sql/
+[sensor.systemmonitor docs]: /components/sensor.systemmonitor/
+[sensor.tautulli docs]: /components/sensor.tautulli/
+[sensor.tellduslive docs]: /components/sensor.tellduslive/
+[sensor.xiaomi_aqara docs]: /components/sensor.xiaomi_aqara/
+[sensor.zha docs]: /components/sensor.zha/
+[sensor.zoneminder docs]: /components/sensor.zoneminder/
+[skybell docs]: /components/skybell/
+[splunk docs]: /components/splunk/
+[switch.esphome docs]: /components/switch.esphome/
+[switch.homekit_controller docs]: /components/switch.homekit_controller/
+[switch.homematicip_cloud docs]: /components/switch.homematicip_cloud/
+[switch.lutron docs]: /components/switch.lutron/
+[switch.pencom docs]: /components/switch.pencom/
+[switch.raspyrfm docs]: /components/switch.raspyrfm/
+[switch.rpi_rf docs]: /components/switch.rpi_rf/
+[switch.switchbot docs]: /components/switch.switchbot/
+[switch.tellduslive docs]: /components/switch.tellduslive/
+[switch.wemo docs]: /components/switch.wemo/
+[switch.xiaomi_miio docs]: /components/switch.xiaomi_miio/
+[switch.zha docs]: /components/switch.zha/
+[tahoma docs]: /components/tahoma/
+[tellduslive docs]: /components/tellduslive/
+[tibber docs]: /components/tibber/
+[timer docs]: /components/timer/
+[tts docs]: /components/tts/
+[upnp docs]: /components/upnp/
+[vacuum.neato docs]: /components/vacuum.neato/
+[volvooncall docs]: /components/volvooncall/
+[weather docs]: /components/weather/
+[weather.ipma docs]: /components/weather.ipma/
+[weather.openweathermap docs]: /components/weather.openweathermap/
+[weather.smhi docs]: /components/weather.smhi/
+[websocket_api docs]: /components/websocket_api/
+[wemo docs]: /components/wemo/
+[zha docs]: /components/zha/
+[zoneminder docs]: /components/zoneminder/
From 7df40e29c8dc8f0d41e135a052a35c78ed68e443 Mon Sep 17 00:00:00 2001
From: Jorim Tielemans
Date: Fri, 4 Jan 2019 23:53:45 +0100
Subject: [PATCH 06/47] Move blog post date back to the future (#8052)
---
source/_posts/2019-01-09-release-85.markdown | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/source/_posts/2019-01-09-release-85.markdown b/source/_posts/2019-01-09-release-85.markdown
index 21a2d71c2aa..7916b9040f6 100644
--- a/source/_posts/2019-01-09-release-85.markdown
+++ b/source/_posts/2019-01-09-release-85.markdown
@@ -2,7 +2,7 @@
layout: post
title: "0.85: TBD - UPDATE DATE"
description: "TBD"
-date: 2019-01-09 00:01:00
+date: 2019-01-04 00:01:00
date_formatted: "January 9, 2019"
author: Paulus Schoutsen
author_twitter: balloob
From fcc89ff6da22cee7987ed2409df4370115b47a17 Mon Sep 17 00:00:00 2001
From: DubhAd
Date: Sun, 6 Jan 2019 14:22:41 +0000
Subject: [PATCH 07/47] Yahoo Weather is dead, Jim
See also https://github.com/home-assistant/home-assistant/issues/19756
---
source/_components/weather.yweather.markdown | 38 +-------------------
1 file changed, 1 insertion(+), 37 deletions(-)
diff --git a/source/_components/weather.yweather.markdown b/source/_components/weather.yweather.markdown
index 382cbf26509..10d8ed2c91b 100644
--- a/source/_components/weather.yweather.markdown
+++ b/source/_components/weather.yweather.markdown
@@ -13,41 +13,5 @@ ha_release: 0.47
---
-The Yahoo Weather API is being [retired](https://developer.yahoo.com/weather/?guccounter=1). A replacement is the [`darksky` weather](/components/weather.darksky/).
+The Yahoo Weather API **has been** [retired](https://developer.yahoo.com/weather/?guccounter=1). A replacement is the [`darksky` weather](/components/weather.darksky/).
-
-The `yweather` platform uses [Yahoo Weather](https://www.yahoo.com/news/weather/) as a source for current meteorological data. This component will show you the condition and temperatures for max. 10 days.
-
-
-Use of the Yahoo Weather API should not exceed reasonable request volume. Access is limited to 2000 signed calls per day.
-
-
-## {% linkable_title Configuration %}
-
-The `woeid` (Where On Earth ID) for your location, as shown in the example below. You can find your WOEID by copying the numeric digits at the end of the URL for your location at [Yahoo Weather](https://www.yahoo.com/news/weather/). If you don't add a WOEID, it will be generated from Home Assistant's latitude and longitude.
-
-To add Yahoo Weather to your installation, add the following to your `configuration.yaml` file:
-
-```yaml
-# Example configuration.yaml entry
-weather:
- - platform: yweather
-```
-
-{% configuration %}
-woeid:
- description: Your Where On Earth ID, see above for all the info.
- required: false
- type: integer
-name:
- description: The name of the sensor. To easily recognize each sensor when adding more than one Yahoo weather sensor, it is recommended to use the name option.
- required: false
- type: string
- default: yweather
-{% endconfiguration %}
-
-
-This platform is an alternative to the [`yweather`](/components/sensor.yweather/) sensor.
-
-
-Details about the API are available in the [Yahoo! Developer Network](https://developer.yahoo.com/weather/).
From 6f9c7131e535a42f0517b8171917f4c82763457c Mon Sep 17 00:00:00 2001
From: Mike Kormendy
Date: Sun, 6 Jan 2019 14:20:42 -0600
Subject: [PATCH 08/47] Changes specifics on how the daemon is started. (#8083)
---
source/_docs/autostart/macos.markdown | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/source/_docs/autostart/macos.markdown b/source/_docs/autostart/macos.markdown
index 56e6b27c3f6..012c72ff83a 100644
--- a/source/_docs/autostart/macos.markdown
+++ b/source/_docs/autostart/macos.markdown
@@ -10,7 +10,7 @@ footer: true
redirect_from: /getting-started/autostart-macos/
---
-Setting up Home Assistant to run as a background service is simple; macOS will start Home Assistant on boot and make sure it's always running.
+Setting up Home Assistant to run as a background service is simple; macOS will start Home Assistant after the system has booted, the user has logged in, and make sure it's always running.
To get Home Assistant installed as a background service, run:
From 85e48c524bde05abd32b98d23ac4c5d552640294 Mon Sep 17 00:00:00 2001
From: Quatroking
Date: Sun, 6 Jan 2019 21:21:23 +0100
Subject: [PATCH 09/47] Update installation.markdown (#8082)
The VMDK file only works on VMWare Workstation, not on platforms such as VMWare ESXi
---
source/hassio/installation.markdown | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/source/hassio/installation.markdown b/source/hassio/installation.markdown
index a5e7057b215..f7ea51a0241 100644
--- a/source/hassio/installation.markdown
+++ b/source/hassio/installation.markdown
@@ -26,7 +26,7 @@ The following will take you through the steps required to install Hass.io.
- As a virtual appliance:
- - [VMDK][vmdk]
+ - [VMDK][vmdk] (VMWare Workstation)
- [VHDX (beta)][vhdx]
- [VDI (beta)][vdi]
- [OVA][Virtual Appliance] (not available at this time!)
From 0c9ab29936304f72864fd97f0957d38c8ad9275e Mon Sep 17 00:00:00 2001
From: mrpraline <2592283+mrpraline@users.noreply.github.com>
Date: Sun, 6 Jan 2019 22:11:59 +0100
Subject: [PATCH 10/47] Update owntracks.markdown (#8081)
* Update owntracks.markdown
Added descrition on how to set up integration.
Update Andriod setup descrition. I have no Iphone, so I can test that.
Thanks to .deisy in https://community.home-assistant.io/t/authentication-home-assistant-and-owntracks-http/77108/7
* Fix numbering
---
source/_components/owntracks.markdown | 22 +++++++++++++++++++---
1 file changed, 19 insertions(+), 3 deletions(-)
diff --git a/source/_components/owntracks.markdown b/source/_components/owntracks.markdown
index bd4cc4cae54..681476cff76 100644
--- a/source/_components/owntracks.markdown
+++ b/source/_components/owntracks.markdown
@@ -20,6 +20,18 @@ OwnTracks is a free and open source application for iOS and Android that allow y
By default the integration will listen for incoming messages from OwnTracks via HTTP. It will also listen for MQTT messages if Home Assistant is configured to use MQTT.
+### {% linkable_title Configuring the component %}
+
+1. Open the Home Assistant frontend
+1. Open Settings -> integrations
+1. If you see an Owntracks component under 'Configured', delete it.
+ - CLick on it.
+ - Click o the trashcan icon in the upper right corner.
+1. Now, look for Owntracks in 'Setup new integration' and click on CONFIGURE.
+1. The login credentials and configuration for owntracks will be presented to you.
+ in a popup window. You will need these in the configuration for the app as mentioned below.
+1. Save these credentials somewhere, as there is no way to get it back at a later point in time if it is lost, besides repeating step 1-5
+
### {% linkable_title Configuring the app - Android %}
[Install the OwnTracks application for Android.](https://play.google.com/store/apps/details?id=org.owntracks.android)
@@ -27,10 +39,14 @@ By default the integration will listen for incoming messages from OwnTracks via
In the OwnTracks app, open sidebar and click on preferences, then on connection. Change the following settings:
- Mode: Private HTTP
- - Host: ``
+ - Host: ``
- Identification:
- - Username: ``
- - Device ID: ``
+ - Username:
+ - Password: Can be left blank.
+ - Device ID: `
+ - Tracker ID: Two character tracker ID. (can be left blank)
+
+Your tracker device will be known in home assistant as _. If you entered a Tracker ID the tid attribute will be set to that ID.
### {% linkable_title Configuring the app - iOS %}
From f62781d7a6b0cf4dabc60e176b1da31575c6623b Mon Sep 17 00:00:00 2001
From: Hoobie7
Date: Mon, 7 Jan 2019 00:12:29 +0300
Subject: [PATCH 11/47] Update media_player.denonavr.markdown (#8072)
---
source/_components/media_player.denonavr.markdown | 1 +
1 file changed, 1 insertion(+)
diff --git a/source/_components/media_player.denonavr.markdown b/source/_components/media_player.denonavr.markdown
index 8a8ba032373..8812ba598fb 100644
--- a/source/_components/media_player.denonavr.markdown
+++ b/source/_components/media_player.denonavr.markdown
@@ -21,6 +21,7 @@ Supported devices:
- Denon AVR-X2000
- Denon AVR-X2100W
- Denon AVR-X4100W
+- Denon AVR-X4300H
- Denon AVR-1912
- Denon AVR-2312CI
- Denon AVR-3311CI
From c8649fd8aed03dd8dfb2dc2c205308270efd75d8 Mon Sep 17 00:00:00 2001
From: tigattack <10629864+tigattack@users.noreply.github.com>
Date: Sun, 6 Jan 2019 21:12:56 +0000
Subject: [PATCH 12/47] Fixed the first link to the Datapoint API. (#8071)
The first link to the Datapoint API wasn't formatted or linked correctly.
---
source/_components/weather.metoffice.markdown | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/source/_components/weather.metoffice.markdown b/source/_components/weather.metoffice.markdown
index 37d41463dbd..afadc9803ca 100644
--- a/source/_components/weather.metoffice.markdown
+++ b/source/_components/weather.metoffice.markdown
@@ -13,7 +13,7 @@ ha_release: 0.42
ha_iot_class: "Cloud Polling"
---
-The `metoffice` weather platform uses the Met Office's [DataPoint API][datapoint] for weather data.
+The `metoffice` weather platform uses the Met Office's [DataPoint API](http://www.metoffice.gov.uk/datapoint) for weather data.
## {% linkable_title Configuration %}
From 22d9246bbe31d6240106d9e08484be9ebdeaccaa Mon Sep 17 00:00:00 2001
From: Leonardo Merza
Date: Sun, 6 Jan 2019 16:13:22 -0500
Subject: [PATCH 13/47] libjson0-dev no longer available (#8075)
libjson0-dev is no longer available - replaced by libjson-c-dev
---
source/_components/media_player.pandora.markdown | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/source/_components/media_player.pandora.markdown b/source/_components/media_player.pandora.markdown
index 76c04061252..f84bfd41f14 100644
--- a/source/_components/media_player.pandora.markdown
+++ b/source/_components/media_player.pandora.markdown
@@ -24,7 +24,7 @@ This media player uses the [Pianobar command-line Pandora client](https://github
The version of pianobar that comes with Jessie has a bug, so you have to build a more recent version. The latest version depends on a recent version of libraries associated with ffmpeg, so you should make sure you go through the backport process documented in [The FFmpeg component](/components/ffmpeg/) before doing this. Install the following basic dependencies:
```bash
-$ sudo apt-get install git libao-dev libgcrypt11-dev libfaad-dev libmad0-dev libjson0-dev make pkg-config libcurl4-openssl-dev
+$ sudo apt-get install git libao-dev libgcrypt11-dev libfaad-dev libmad0-dev libjson-c-dev make pkg-config libcurl4-openssl-dev
```
And now install the backported ffmpeg-related libraries (note that if you're using an older version of ffmpeg for other things on this machine, you may encounter issues after doings this):
From 20f5ab2c642baa4ece3c047871f70e33ec4682c7 Mon Sep 17 00:00:00 2001
From: Jorim Tielemans
Date: Sun, 6 Jan 2019 22:14:24 +0100
Subject: [PATCH 14/47] Add redirects for esphome Platform (#8065)
* Update
* Add redirects for espohome platforms
---
source/_components/esphome.markdown | 5 +
source/developers/credits.markdown | 942 ++++++++++++++++++----------
2 files changed, 612 insertions(+), 335 deletions(-)
diff --git a/source/_components/esphome.markdown b/source/_components/esphome.markdown
index 78da0786716..57b41aa6950 100644
--- a/source/_components/esphome.markdown
+++ b/source/_components/esphome.markdown
@@ -11,6 +11,11 @@ logo: esphome.png
ha_category: DIY
ha_release: 0.85
ha_iot_class: "Local Push"
+redirect_from: /components/binary_sensor.esphome/
+redirect_from: /components/cover.esphome/
+redirect_from: /components/fan.esphome/
+redirect_from: /components/light.esphome/
+redirect_from: /components/switch.esphome/
---
This component allows you to connect your [ESPHome](https://esphomelib.com/esphomeyaml/index.html) devices directly into Home Assistant with the [native ESPHome API](https://esphomelib.com/esphomeyaml/components/api.html).
diff --git a/source/developers/credits.markdown b/source/developers/credits.markdown
index f0c537dba8c..b588bdb3ede 100644
--- a/source/developers/credits.markdown
+++ b/source/developers/credits.markdown
@@ -2,7 +2,7 @@
layout: page
title: "Credits"
description: "Credits for the developers who contributed to Home Assistant."
-date: 2018-12-13, 11:44:16 +0000
+date: 2019-01-04, 18:48:01 +0000
sidebar: true
comments: false
sharing: true
@@ -13,33 +13,33 @@ 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 "8424 total commits to the home-assistant organization:
-4661 commits to home-assistant
-1719 commits to home-assistant.io
-1267 commits to home-assistant-polymer
+- [Paulus Schoutsen (@balloob)](https://github.com/balloob "8521 total commits to the home-assistant organization:
+4692 commits to home-assistant
+1742 commits to home-assistant.io
+1296 commits to home-assistant-polymer
237 commits to home-assistant-js
146 commits to developers.home-assistant
-129 commits to netdisco
+131 commits to netdisco
116 commits to home-assistant-js-websocket
43 commits to hass-release
+20 commits to data.home-assistant
17 commits to LabelBot
15 commits to home-assistant-assets
11 commits to hassio
-10 commits to data.home-assistant
9 commits to hbmqtt-auth-home-assistant
8 commits to example-custom-config
7 commits to micropython-home-assistant
6 commits to custom-panel-starter-kit-react
+5 commits to home-assistant-notebooks
4 commits to ui-schema
-3 commits to home-assistant-notebooks
3 commits to hassio-addons
3 commits to hassio-build
2 commits to lambda-home-assistant-github
2 commits to home-assistant-iOS
-2 commits to issue-bot
2 commits to hassio-addons-example
-1 commit to warrant
+2 commits to issue-bot
1 commit to architecture
+1 commit to warrant
")
### {% linkable_title Contributors %}
@@ -70,12 +70,15 @@ This page contains a list of people who have contributed in one way or another t
- [a\-andre (@a-andre)](https://github.com/a-andre "3 total commits to the home-assistant organization:
3 commits to home-assistant
")
+- [a\-r\-j\-a\-n (@a-r-j-a-n)](https://github.com/a-r-j-a-n "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [Aaron (@mcd1992)](https://github.com/mcd1992 "5 total commits to the home-assistant organization:
5 commits to open-zwave
")
-- [Aaron Bach (@bachya)](https://github.com/bachya "120 total commits to the home-assistant organization:
-90 commits to home-assistant
-30 commits to home-assistant.io
+- [Aaron Bach (@bachya)](https://github.com/bachya "124 total commits to the home-assistant organization:
+92 commits to home-assistant
+32 commits to home-assistant.io
")
- [Aaron Linville (@linville)](https://github.com/linville "3 total commits to the home-assistant organization:
2 commits to appdaemon
@@ -108,9 +111,9 @@ This page contains a list of people who have contributed in one way or another t
- [ABOTlegacy (@ABOTlegacy)](https://github.com/ABOTlegacy "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Abílio Costa (@abmantis)](https://github.com/abmantis "38 total commits to the home-assistant organization:
-23 commits to home-assistant
-11 commits to home-assistant.io
+- [Abílio Costa (@abmantis)](https://github.com/abmantis "40 total commits to the home-assistant organization:
+24 commits to home-assistant
+12 commits to home-assistant.io
2 commits to home-assistant-polymer
1 commit to home-assistant-js-websocket
1 commit to netdisco
@@ -118,9 +121,9 @@ This page contains a list of people who have contributed in one way or another t
- [Achilleas Pipinellis (@axilleas)](https://github.com/axilleas "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Adam (@SilvrrGIT)](https://github.com/SilvrrGIT "7 total commits to the home-assistant organization:
-6 commits to home-assistant.io
-1 commit to home-assistant
+- [Adam (@SilvrrGIT)](https://github.com/SilvrrGIT "17 total commits to the home-assistant organization:
+15 commits to home-assistant.io
+2 commits to home-assistant
")
- [Adam Allport (@AAllport)](https://github.com/AAllport "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
@@ -129,9 +132,9 @@ This page contains a list of people who have contributed in one way or another t
1 commit to home-assistant-polymer
1 commit to home-assistant
")
-- [Adam Belebczuk (@sqldiablo)](https://github.com/sqldiablo "13 total commits to the home-assistant organization:
-8 commits to home-assistant
-5 commits to home-assistant.io
+- [Adam Belebczuk (@sqldiablo)](https://github.com/sqldiablo "18 total commits to the home-assistant organization:
+12 commits to home-assistant
+6 commits to home-assistant.io
")
- [Adam Cooper (@GenericStudent)](https://github.com/GenericStudent "11 total commits to the home-assistant organization:
8 commits to home-assistant
@@ -247,8 +250,8 @@ This page contains a list of people who have contributed in one way or another t
1 commit to home-assistant.io
")
- [akloeckner (@akloeckner)](https://github.com/akloeckner "12 total commits to the home-assistant organization:
-6 commits to home-assistant.io
6 commits to home-assistant
+6 commits to home-assistant.io
")
- [Akriti Chadda (@akriticg)](https://github.com/akriticg "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
@@ -268,10 +271,11 @@ This page contains a list of people who have contributed in one way or another t
- [Alasdair Nicol (@alasdairnicol)](https://github.com/alasdairnicol "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
")
-- [Alastair D'Silva (@deece)](https://github.com/deece "3 total commits to the home-assistant organization:
-1 commit to hassio
+- [Alastair D'Silva (@deece)](https://github.com/deece "4 total commits to the home-assistant organization:
1 commit to hassio-homeassistant
+1 commit to hassos
1 commit to hassio-build
+1 commit to hassio
")
- [Albatross (@DyingAlbatross)](https://github.com/DyingAlbatross "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
@@ -286,8 +290,9 @@ This page contains a list of people who have contributed in one way or another t
- [AlCalzone (@AlCalzone)](https://github.com/AlCalzone "1 total commits to the home-assistant organization:
1 commit to open-zwave
")
-- [Alec Rust (@AlecRust)](https://github.com/AlecRust "5 total commits to the home-assistant organization:
-5 commits to home-assistant.io
+- [Alec Rust (@AlecRust)](https://github.com/AlecRust "7 total commits to the home-assistant organization:
+6 commits to home-assistant.io
+1 commit to hassio-addons
")
- [Aleksandar Todorović \(r3bl\) (@aleksandar-todorovic)](https://github.com/aleksandar-todorovic "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
@@ -315,10 +320,10 @@ This page contains a list of people who have contributed in one way or another t
2 commits to home-assistant.io
1 commit to home-assistant
")
-- [Alex (@alexrockt)](https://github.com/alexrockt "1 total commits to the home-assistant organization:
+- [Alex (@MungoRae)](https://github.com/MungoRae "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
-- [Alex (@MungoRae)](https://github.com/MungoRae "1 total commits to the home-assistant organization:
+- [Alex (@alexrockt)](https://github.com/alexrockt "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
- [Alex (@alexanderVonBergner)](https://github.com/alexanderVonBergner "1 total commits to the home-assistant organization:
@@ -399,8 +404,8 @@ This page contains a list of people who have contributed in one way or another t
- [Alexandre Prates Dias (@pratesbh)](https://github.com/pratesbh "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Alexei Chetroi (@Adminiuga)](https://github.com/Adminiuga "13 total commits to the home-assistant organization:
-12 commits to home-assistant
+- [Alexei Chetroi (@Adminiuga)](https://github.com/Adminiuga "19 total commits to the home-assistant organization:
+18 commits to home-assistant
1 commit to home-assistant-polymer
")
- [Alexis Iglauer (@ax42)](https://github.com/ax42 "4 total commits to the home-assistant organization:
@@ -430,13 +435,16 @@ This page contains a list of people who have contributed in one way or another t
- [allixx (@allixx)](https://github.com/allixx "1 total commits to the home-assistant organization:
1 commit to dehydrated
")
-- [Alok Saboo (@arsaboo)](https://github.com/arsaboo "160 total commits to the home-assistant organization:
-91 commits to home-assistant.io
+- [Almost Engineer (@almostengr)](https://github.com/almostengr "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
+- [Alok Saboo (@arsaboo)](https://github.com/arsaboo "161 total commits to the home-assistant organization:
+92 commits to home-assistant.io
56 commits to home-assistant
7 commits to home-assistant-polymer
3 commits to developers.home-assistant
-1 commit to hassbian-scripts
1 commit to pi-gen
+1 commit to hassbian-scripts
1 commit to hassio-addons
")
- [amigian74 (@amigian74)](https://github.com/amigian74 "2 total commits to the home-assistant organization:
@@ -465,9 +473,10 @@ This page contains a list of people who have contributed in one way or another t
- [Anders Gjendem (@agjendem)](https://github.com/agjendem "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Anders Melchiorsen (@amelchio)](https://github.com/amelchio "288 total commits to the home-assistant organization:
-239 commits to home-assistant
+- [Anders Melchiorsen (@amelchio)](https://github.com/amelchio "295 total commits to the home-assistant organization:
+240 commits to home-assistant
46 commits to home-assistant.io
+6 commits to pyharmony
3 commits to home-assistant-polymer
")
- [Anders Norås (@anoras)](https://github.com/anoras "1 total commits to the home-assistant organization:
@@ -476,9 +485,13 @@ This page contains a list of people who have contributed in one way or another t
- [andig (@andig)](https://github.com/andig "2 total commits to the home-assistant organization:
2 commits to pi-gen
")
-- [Andrea (@BubiDevs)](https://github.com/BubiDevs "1 total commits to the home-assistant organization:
+- [Andre Lengwenus (@alengwenus)](https://github.com/alengwenus "2 total commits to the home-assistant organization:
+1 commit to home-assistant
1 commit to home-assistant.io
")
+- [Andrea (@BubiDevs)](https://github.com/BubiDevs "2 total commits to the home-assistant organization:
+2 commits to home-assistant.io
+")
- [Andrea Campi (@andreacampi)](https://github.com/andreacampi "8 total commits to the home-assistant organization:
6 commits to home-assistant
2 commits to home-assistant.io
@@ -521,11 +534,16 @@ This page contains a list of people who have contributed in one way or another t
- [Andreea\-Daniela Ene (@AndreeaEne)](https://github.com/AndreeaEne "3 total commits to the home-assistant organization:
3 commits to home-assistant.io
")
+- [Andrei (@gipnokote)](https://github.com/gipnokote "3 total commits to the home-assistant organization:
+2 commits to home-assistant
+1 commit to home-assistant.io
+")
- [Andrei Pop (@andreipop2005)](https://github.com/andreipop2005 "2 total commits to the home-assistant organization:
2 commits to home-assistant
")
-- [Andrej Friesen (@ajfriesen)](https://github.com/ajfriesen "3 total commits to the home-assistant organization:
+- [Andrej Friesen (@ajfriesen)](https://github.com/ajfriesen "4 total commits to the home-assistant organization:
3 commits to home-assistant.io
+1 commit to developers.home-assistant
")
- [Andrejs (@tlpbu)](https://github.com/tlpbu "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
@@ -542,10 +560,10 @@ This page contains a list of people who have contributed in one way or another t
1 commit to home-assistant
1 commit to home-assistant.io
")
-- [Andrew Cockburn (@acockburn)](https://github.com/acockburn "1181 total commits to the home-assistant organization:
-1044 commits to appdaemon
+- [Andrew Cockburn (@acockburn)](https://github.com/acockburn "1249 total commits to the home-assistant organization:
+1111 commits to appdaemon
88 commits to hadashboard
-27 commits to scenegen
+28 commits to scenegen
22 commits to home-assistant.io
")
- [Andrew Fahrenholtz (@PlasmaEye)](https://github.com/PlasmaEye "1 total commits to the home-assistant organization:
@@ -555,14 +573,17 @@ This page contains a list of people who have contributed in one way or another t
1 commit to appdaemon
1 commit to home-assistant.io
")
-- [Andrew Hayworth (@ahayworth)](https://github.com/ahayworth "10 total commits to the home-assistant organization:
-7 commits to home-assistant
+- [Andrew Hayworth (@ahayworth)](https://github.com/ahayworth "12 total commits to the home-assistant organization:
+9 commits to home-assistant
3 commits to home-assistant.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.io
")
+- [Andrew Loe (@loe)](https://github.com/loe "1 total commits to the home-assistant organization:
+1 commit to home-assistant
+")
- [Andrew Patton (@acusti)](https://github.com/acusti "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
@@ -597,9 +618,9 @@ This page contains a list of people who have contributed in one way or another t
- [andrewfoster (@andrewfoster)](https://github.com/andrewfoster "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
")
-- [Andrey (@andrey-git)](https://github.com/andrey-git "328 total commits to the home-assistant organization:
+- [Andrey (@andrey-git)](https://github.com/andrey-git "329 total commits to the home-assistant organization:
148 commits to home-assistant
-138 commits to home-assistant-polymer
+139 commits to home-assistant-polymer
37 commits to home-assistant.io
4 commits to open-zwave
1 commit to home-assistant-js-websocket
@@ -661,7 +682,8 @@ This page contains a list of people who have contributed in one way or another t
- [Anthony Arnaud (@aarnaud)](https://github.com/aarnaud "2 total commits to the home-assistant organization:
2 commits to home-assistant
")
-- [Anthony Hughes (@tony2nite)](https://github.com/tony2nite "3 total commits to the home-assistant organization:
+- [Anthony Hughes (@tony2nite)](https://github.com/tony2nite "15 total commits to the home-assistant organization:
+12 commits to pyharmony
1 commit to netdisco
1 commit to home-assistant
1 commit to home-assistant.io
@@ -674,8 +696,8 @@ This page contains a list of people who have contributed in one way or another t
2 commits to home-assistant.io
1 commit to home-assistant-polymer
")
-- [Antoine GRÉA (@grea09)](https://github.com/grea09 "2 total commits to the home-assistant organization:
-1 commit to home-assistant
+- [Antoine GRÉA (@grea09)](https://github.com/grea09 "3 total commits to the home-assistant organization:
+2 commits to home-assistant
1 commit to home-assistant.io
")
- [Antoine Meillet (@inetAnt)](https://github.com/inetAnt "1 total commits to the home-assistant organization:
@@ -723,6 +745,9 @@ This page contains a list of people who have contributed in one way or another t
- [apastuszak (@apastuszak)](https://github.com/apastuszak "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
+- [apetrycki (@apetrycki)](https://github.com/apetrycki "1 total commits to the home-assistant organization:
+1 commit to home-assistant
+")
- [apo\-mak (@apo-mak)](https://github.com/apo-mak "2 total commits to the home-assistant organization:
1 commit to home-assistant-polymer
1 commit to home-assistant.io
@@ -772,6 +797,9 @@ This page contains a list of people who have contributed in one way or another t
6 commits to home-assistant
2 commits to home-assistant.io
")
+- [Art M\. Gallagher (@artmg)](https://github.com/artmg "1 total commits to the home-assistant organization:
+1 commit to scenegen
+")
- [Artem (@ArtHome12)](https://github.com/ArtHome12 "2 total commits to the home-assistant organization:
2 commits to developers.home-assistant
")
@@ -898,9 +926,9 @@ This page contains a list of people who have contributed in one way or another t
- [Baran Kaynak (@barankaynak)](https://github.com/barankaynak "1 total commits to the home-assistant organization:
1 commit to home-assistant-polymer
")
-- [Barry Williams (@bazwilliams)](https://github.com/bazwilliams "10 total commits to the home-assistant organization:
+- [Barry Williams (@bazwilliams)](https://github.com/bazwilliams "11 total commits to the home-assistant organization:
6 commits to home-assistant
-2 commits to netdisco
+3 commits to netdisco
2 commits to home-assistant.io
")
- [Bart S (@zBart)](https://github.com/zBart "1 total commits to the home-assistant organization:
@@ -956,6 +984,9 @@ This page contains a list of people who have contributed in one way or another t
- [beestree (@beestree)](https://github.com/beestree "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
+- [bellma101 (@bellma101)](https://github.com/bellma101 "1 total commits to the home-assistant organization:
+1 commit to data.home-assistant
+")
- [Ben (@benweb)](https://github.com/benweb "6 total commits to the home-assistant organization:
6 commits to open-zwave
")
@@ -1031,6 +1062,9 @@ This page contains a list of people who have contributed in one way or another t
- [Benji (@bbbenji)](https://github.com/bbbenji "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
")
+- [Bennett Kanuka (@bkanuka)](https://github.com/bkanuka "8 total commits to the home-assistant organization:
+8 commits to pyharmony
+")
- [Benny de Leeuw (@leeuwte)](https://github.com/leeuwte "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
@@ -1054,9 +1088,9 @@ This page contains a list of people who have contributed in one way or another t
- [bestlibre (@bestlibre)](https://github.com/bestlibre "16 total commits to the home-assistant organization:
8 commits to home-assistant
5 commits to home-assistant.io
-1 commit to hassio
1 commit to hassio-build
1 commit to home-assistant-polymer
+1 commit to hassio
")
- [bigbadblunt (@bigbadblunt)](https://github.com/bigbadblunt "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
@@ -1131,14 +1165,18 @@ This page contains a list of people who have contributed in one way or another t
1 commit to home-assistant
1 commit to home-assistant.io
")
+- [Bo (@bohmandan)](https://github.com/bohmandan "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [Bob Anderson (@rwa)](https://github.com/rwa "12 total commits to the home-assistant organization:
7 commits to home-assistant
4 commits to home-assistant.io
1 commit to appdaemon
")
-- [Bob Clough (@thinkl33t)](https://github.com/thinkl33t "4 total commits to the home-assistant organization:
-3 commits to home-assistant
+- [Bob Clough (@thinkl33t)](https://github.com/thinkl33t "6 total commits to the home-assistant organization:
+4 commits to home-assistant
1 commit to appdaemon
+1 commit to home-assistant.io
")
- [Bob Igo (@Human)](https://github.com/Human "4 total commits to the home-assistant organization:
3 commits to home-assistant.io
@@ -1157,8 +1195,8 @@ This page contains a list of people who have contributed in one way or another t
2 commits to home-assistant
2 commits to home-assistant.io
")
-- [bonanitech (@bonanitech)](https://github.com/bonanitech "15 total commits to the home-assistant organization:
-15 commits to home-assistant.io
+- [bonanitech (@bonanitech)](https://github.com/bonanitech "16 total commits to the home-assistant organization:
+16 commits to home-assistant.io
")
- [bonterra (@bonterra)](https://github.com/bonterra "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
@@ -1168,8 +1206,8 @@ This page contains a list of people who have contributed in one way or another t
2 commits to home-assistant
")
- [Boris K (@bokub)](https://github.com/bokub "12 total commits to the home-assistant organization:
-6 commits to home-assistant.io
6 commits to home-assistant
+6 commits to home-assistant.io
")
- [bottomquark (@bottomquark)](https://github.com/bottomquark "4 total commits to the home-assistant organization:
3 commits to home-assistant.io
@@ -1215,10 +1253,11 @@ This page contains a list of people who have contributed in one way or another t
- [Brahma Fear (@brahmafear)](https://github.com/brahmafear "8 total commits to the home-assistant organization:
8 commits to home-assistant.io
")
-- [Bram Kragten (@bramkragten)](https://github.com/bramkragten "67 total commits to the home-assistant organization:
-34 commits to home-assistant-polymer
+- [Bram Kragten (@bramkragten)](https://github.com/bramkragten "70 total commits to the home-assistant organization:
+35 commits to home-assistant-polymer
25 commits to home-assistant
-8 commits to home-assistant.io
+9 commits to home-assistant.io
+1 commit to home-assistant-notebooks
")
- [Brandon Mathis (@imathis)](https://github.com/imathis "484 total commits to the home-assistant organization:
484 commits to home-assistant.io
@@ -1232,10 +1271,11 @@ This page contains a list of people who have contributed in one way or another t
- [brburns (@brburns)](https://github.com/brburns "2 total commits to the home-assistant organization:
2 commits to netdisco
")
-- [Brendan Berg (@captainnapalm)](https://github.com/captainnapalm "1 total commits to the home-assistant organization:
-1 commit to home-assistant.io
+- [bremor (@bremor)](https://github.com/bremor "3 total commits to the home-assistant organization:
+2 commits to home-assistant.io
+1 commit to home-assistant
")
-- [BrendanMoran (@bremor)](https://github.com/bremor "1 total commits to the home-assistant organization:
+- [Brendan Berg (@captainnapalm)](https://github.com/captainnapalm "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
- [Brendon Baumgartner (@bbrendon)](https://github.com/bbrendon "11 total commits to the home-assistant organization:
@@ -1301,8 +1341,8 @@ This page contains a list of people who have contributed in one way or another t
- [Brian Torres\-Gil (@btorresgil)](https://github.com/btorresgil "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
-- [Brian Towles (@wonderslug)](https://github.com/wonderslug "1 total commits to the home-assistant organization:
-1 commit to home-assistant
+- [Brian Towles (@wonderslug)](https://github.com/wonderslug "2 total commits to the home-assistant organization:
+2 commits to home-assistant
")
- [Brig Lamoreaux (@briglx)](https://github.com/briglx "2 total commits to the home-assistant organization:
1 commit to home-assistant
@@ -1374,11 +1414,11 @@ This page contains a list of people who have contributed in one way or another t
9 commits to home-assistant
3 commits to hassio
")
-- [c\-soft (@c-soft)](https://github.com/c-soft "2 total commits to the home-assistant organization:
-1 commit to home-assistant
-1 commit to home-assistant.io
+- [c\-soft (@c-soft)](https://github.com/c-soft "4 total commits to the home-assistant organization:
+2 commits to home-assistant
+2 commits to home-assistant.io
")
-- [Caius Seiger (@caiuspb)](https://github.com/caiuspb "3 total commits to the home-assistant organization:
+- [caius (@caiuspb)](https://github.com/caiuspb "3 total commits to the home-assistant organization:
3 commits to home-assistant
")
- [Caleb (@finish06)](https://github.com/finish06 "8 total commits to the home-assistant organization:
@@ -1407,9 +1447,9 @@ This page contains a list of people who have contributed in one way or another t
- [Carlo Costanzo (@CCOSTAN)](https://github.com/CCOSTAN "100 total commits to the home-assistant organization:
92 commits to home-assistant.io
5 commits to home-assistant
-1 commit to hassbian-scripts
-1 commit to homebridge-homeassistant
1 commit to fabric-home-assistant
+1 commit to homebridge-homeassistant
+1 commit to hassbian-scripts
")
- [Carlos Gustavo Sarmiento (@carlos-sarmiento)](https://github.com/carlos-sarmiento "2 total commits to the home-assistant organization:
1 commit to home-assistant
@@ -1418,10 +1458,16 @@ This page contains a list of people who have contributed in one way or another t
- [carlosmgr (@carlosmgr)](https://github.com/carlosmgr "6 total commits to the home-assistant organization:
6 commits to home-assistant
")
+- [carstenschroeder (@carstenschroeder)](https://github.com/carstenschroeder "2 total commits to the home-assistant organization:
+2 commits to home-assistant
+")
- [Carter (@BluGeni)](https://github.com/BluGeni "3 total commits to the home-assistant organization:
2 commits to home-assistant.io
1 commit to home-assistant
")
+- [Casper (@casperklein)](https://github.com/casperklein "1 total commits to the home-assistant organization:
+1 commit to hassio
+")
- [Casper Weiss Bang (@C0DK)](https://github.com/C0DK "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
@@ -1438,6 +1484,9 @@ This page contains a list of people who have contributed in one way or another t
1 commit to open-zwave
1 commit to home-assistant.io
")
+- [cclauss (@cclauss)](https://github.com/cclauss "1 total commits to the home-assistant organization:
+1 commit to appdaemon
+")
- [cdce8p (@cdce8p)](https://github.com/cdce8p "203 total commits to the home-assistant organization:
128 commits to home-assistant
50 commits to home-assistant.io
@@ -1445,8 +1494,9 @@ This page contains a list of people who have contributed in one way or another t
6 commits to developers.home-assistant
5 commits to hass-release
")
-- [cdheiser (@cdheiser)](https://github.com/cdheiser "1 total commits to the home-assistant organization:
-1 commit to home-assistant
+- [cdheiser (@cdheiser)](https://github.com/cdheiser "3 total commits to the home-assistant organization:
+2 commits to home-assistant
+1 commit to home-assistant.io
")
- [Cecron (@Cecron)](https://github.com/Cecron "1 total commits to the home-assistant organization:
1 commit to appdaemon
@@ -1457,6 +1507,9 @@ This page contains a list of people who have contributed in one way or another t
- [Cedric Van Goethem (@Zepheus)](https://github.com/Zepheus "2 total commits to the home-assistant organization:
2 commits to home-assistant
")
+- [ceejii (@ceejii)](https://github.com/ceejii "2 total commits to the home-assistant organization:
+2 commits to home-assistant.io
+")
- [celeroll (@celeroll)](https://github.com/celeroll "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
@@ -1466,8 +1519,8 @@ This page contains a list of people who have contributed in one way or another t
- [Cenk Gündoğan (@cgundogan)](https://github.com/cgundogan "1 total commits to the home-assistant organization:
1 commit to libcoap
")
-- [Censored3 (@Censored3)](https://github.com/Censored3 "5 total commits to the home-assistant organization:
-3 commits to hassio-addons
+- [Censored3 (@Censored3)](https://github.com/Censored3 "6 total commits to the home-assistant organization:
+4 commits to hassio-addons
1 commit to developers.home-assistant
1 commit to home-assistant.io
")
@@ -1490,8 +1543,8 @@ This page contains a list of people who have contributed in one way or another t
12 commits to home-assistant
7 commits to home-assistant.io
")
-- [Charles Garwood (@cgarwood)](https://github.com/cgarwood "54 total commits to the home-assistant organization:
-24 commits to home-assistant
+- [Charles Garwood (@cgarwood)](https://github.com/cgarwood "55 total commits to the home-assistant organization:
+25 commits to home-assistant
18 commits to home-assistant.io
12 commits to home-assistant-polymer
")
@@ -1623,6 +1676,10 @@ This page contains a list of people who have contributed in one way or another t
- [Christian Baer (@chrisb86)](https://github.com/chrisb86 "1 total commits to the home-assistant organization:
1 commit to dehydrated
")
+- [Christian Biamont (@chrillux)](https://github.com/chrillux "2 total commits to the home-assistant organization:
+1 commit to home-assistant
+1 commit to home-assistant.io
+")
- [Christian Brædstrup (@LinuxChristian)](https://github.com/LinuxChristian "9 total commits to the home-assistant organization:
8 commits to home-assistant
1 commit to home-assistant.io
@@ -1775,6 +1832,10 @@ This page contains a list of people who have contributed in one way or another t
3 commits to home-assistant.io
2 commits to home-assistant
")
+- [Colin Harrington (@ColinHarrington)](https://github.com/ColinHarrington "2 total commits to the home-assistant organization:
+1 commit to home-assistant
+1 commit to home-assistant.io
+")
- [Colin O'Dell (@colinodell)](https://github.com/colinodell "34 total commits to the home-assistant organization:
18 commits to home-assistant
15 commits to home-assistant.io
@@ -1852,6 +1913,10 @@ This page contains a list of people who have contributed in one way or another t
- [cswinford (@cswinford)](https://github.com/cswinford "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
+- [ctborg (@ctborg)](https://github.com/ctborg "4 total commits to the home-assistant organization:
+2 commits to home-assistant
+2 commits to home-assistant.io
+")
- [CTLS (@CTLS)](https://github.com/CTLS "4 total commits to the home-assistant organization:
3 commits to home-assistant
1 commit to home-assistant.io
@@ -1859,15 +1924,15 @@ This page contains a list of people who have contributed in one way or another t
- [CupricReki (@CupricReki)](https://github.com/CupricReki "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [CV (@dagobert)](https://github.com/dagobert "5 total commits to the home-assistant organization:
-5 commits to home-assistant.io
+- [CV (@dagobert)](https://github.com/dagobert "7 total commits to the home-assistant organization:
+7 commits to home-assistant.io
")
- [cweakland (@cweakland)](https://github.com/cweakland "1 total commits to the home-assistant organization:
1 commit to open-zwave
")
- [cxlwill (@cxlwill)](https://github.com/cxlwill "4 total commits to the home-assistant organization:
-2 commits to hassbian-scripts
2 commits to home-assistant-polymer
+2 commits to hassbian-scripts
")
- [daemondazz (@daemondazz)](https://github.com/daemondazz "2 total commits to the home-assistant organization:
2 commits to open-zwave
@@ -1882,8 +1947,11 @@ This page contains a list of people who have contributed in one way or another t
1 commit to hassbot
1 commit to homebridge-homeassistant
")
-- [damarco (@damarco)](https://github.com/damarco "11 total commits to the home-assistant organization:
-11 commits to home-assistant
+- [Dallas Opelt (@DallasO)](https://github.com/DallasO "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
+- [damarco (@damarco)](https://github.com/damarco "13 total commits to the home-assistant organization:
+13 commits to home-assistant
")
- [Dan (@danieljkemp)](https://github.com/danieljkemp "23 total commits to the home-assistant organization:
16 commits to home-assistant
@@ -1898,9 +1966,9 @@ This page contains a list of people who have contributed in one way or another t
- [Dan Chen (@djchen)](https://github.com/djchen "2 total commits to the home-assistant organization:
2 commits to home-assistant
")
-- [Dan Cinnamon (@Cinntax)](https://github.com/Cinntax "21 total commits to the home-assistant organization:
-17 commits to home-assistant
-4 commits to home-assistant.io
+- [Dan Cinnamon (@Cinntax)](https://github.com/Cinntax "24 total commits to the home-assistant organization:
+19 commits to home-assistant
+5 commits to home-assistant.io
")
- [Dan Faulknor (@danielfaulknor)](https://github.com/danielfaulknor "3 total commits to the home-assistant organization:
2 commits to home-assistant.io
@@ -1971,14 +2039,17 @@ This page contains a list of people who have contributed in one way or another t
4 commits to home-assistant
1 commit to netdisco
")
+- [Daniel Chesterton (@dchesterton)](https://github.com/dchesterton "1 total commits to the home-assistant organization:
+1 commit to home-assistant
+")
- [Daniel Claes (@daenny)](https://github.com/daenny "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
- [Daniel Escoz (@Darkhogg)](https://github.com/Darkhogg "3 total commits to the home-assistant organization:
3 commits to home-assistant.io
")
-- [Daniel Høyer Iversen (@Danielhiversen)](https://github.com/Danielhiversen "399 total commits to the home-assistant organization:
-271 commits to home-assistant
+- [Daniel Høyer Iversen (@Danielhiversen)](https://github.com/Danielhiversen "402 total commits to the home-assistant organization:
+274 commits to home-assistant
125 commits to home-assistant.io
3 commits to home-assistant-polymer
")
@@ -1997,9 +2068,9 @@ This page contains a list of people who have contributed in one way or another t
1 commit to home-assistant
1 commit to home-assistant.io
")
-- [Daniel Perna (@danielperna84)](https://github.com/danielperna84 "117 total commits to the home-assistant organization:
-61 commits to home-assistant
-45 commits to home-assistant.io
+- [Daniel Perna (@danielperna84)](https://github.com/danielperna84 "120 total commits to the home-assistant organization:
+62 commits to home-assistant
+47 commits to home-assistant.io
11 commits to hassio-addons
")
- [Daniel Peukert (@dpeukert)](https://github.com/dpeukert "3 total commits to the home-assistant organization:
@@ -2012,9 +2083,9 @@ This page contains a list of people who have contributed in one way or another t
- [Daniel Schaal (@schaal)](https://github.com/schaal "2 total commits to the home-assistant organization:
2 commits to home-assistant
")
-- [Daniel Shokouhi (@dshokouhi)](https://github.com/dshokouhi "43 total commits to the home-assistant organization:
+- [Daniel Shokouhi (@dshokouhi)](https://github.com/dshokouhi "46 total commits to the home-assistant organization:
23 commits to home-assistant.io
-20 commits to home-assistant
+23 commits to home-assistant
")
- [Daniel Stone (@daniel-stoneuk)](https://github.com/daniel-stoneuk "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
@@ -2153,8 +2224,9 @@ This page contains a list of people who have contributed in one way or another t
- [David Earl (@davidearl)](https://github.com/davidearl "1 total commits to the home-assistant organization:
1 commit to dehydrated
")
-- [David F\. Mulcahey (@dmulcahey)](https://github.com/dmulcahey "8 total commits to the home-assistant organization:
-8 commits to home-assistant
+- [David F\. Mulcahey (@dmulcahey)](https://github.com/dmulcahey "15 total commits to the home-assistant organization:
+14 commits to home-assistant
+1 commit to home-assistant.io
")
- [David Fiel (@dfiel)](https://github.com/dfiel "3 total commits to the home-assistant organization:
2 commits to home-assistant
@@ -2178,8 +2250,8 @@ This page contains a list of people who have contributed in one way or another t
1 commit to home-assistant.io
")
- [David McNett (@nugget)](https://github.com/nugget "10 total commits to the home-assistant organization:
-5 commits to home-assistant.io
5 commits to home-assistant
+5 commits to home-assistant.io
")
- [David Ohayon (@ohayon)](https://github.com/ohayon "3 total commits to the home-assistant organization:
3 commits to issue-bot
@@ -2328,8 +2400,8 @@ This page contains a list of people who have contributed in one way or another t
3 commits to home-assistant
1 commit to home-assistant-polymer
")
-- [Destix (@Destix)](https://github.com/Destix "2 total commits to the home-assistant organization:
-2 commits to home-assistant.io
+- [Destix (@Destix)](https://github.com/Destix "3 total commits to the home-assistant organization:
+3 commits to home-assistant.io
")
- [DetroitEE (@DetroitEE)](https://github.com/DetroitEE "3 total commits to the home-assistant organization:
3 commits to home-assistant.io
@@ -2351,6 +2423,9 @@ This page contains a list of people who have contributed in one way or another t
- [dhaas (@dhaas)](https://github.com/dhaas "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
+- [dhzl84 (@dhzl84)](https://github.com/dhzl84 "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [dickesW (@dickesW)](https://github.com/dickesW "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
@@ -2373,8 +2448,8 @@ This page contains a list of people who have contributed in one way or another t
- [Diogo Alves (@killercode)](https://github.com/killercode "2 total commits to the home-assistant organization:
2 commits to open-zwave
")
-- [Diogo Gomes (@dgomes)](https://github.com/dgomes "85 total commits to the home-assistant organization:
-57 commits to home-assistant
+- [Diogo Gomes (@dgomes)](https://github.com/dgomes "87 total commits to the home-assistant organization:
+59 commits to home-assistant
27 commits to home-assistant.io
1 commit to developers.home-assistant
")
@@ -2418,11 +2493,12 @@ This page contains a list of people who have contributed in one way or another t
- [dnguyen800 (@dnguyen800)](https://github.com/dnguyen800 "5 total commits to the home-assistant organization:
5 commits to home-assistant.io
")
-- [DoloresHA (@DoloresHA)](https://github.com/DoloresHA "2 total commits to the home-assistant organization:
+- [DoloresHA (@DoloresHA)](https://github.com/DoloresHA "3 total commits to the home-assistant organization:
2 commits to home-assistant.io
+1 commit to home-assistant
")
-- [Dom (@domwillcode)](https://github.com/domwillcode "3 total commits to the home-assistant organization:
-2 commits to home-assistant
+- [Dom (@domwillcode)](https://github.com/domwillcode "4 total commits to the home-assistant organization:
+3 commits to home-assistant
1 commit to home-assistant.io
")
- [Domantas (@Dohxis)](https://github.com/Dohxis "1 total commits to the home-assistant organization:
@@ -2447,9 +2523,10 @@ This page contains a list of people who have contributed in one way or another t
- [Doug (@douglasbeck)](https://github.com/douglasbeck "2 total commits to the home-assistant organization:
2 commits to open-zwave
")
-- [Dougal Matthews (@d0ugal)](https://github.com/d0ugal "7 total commits to the home-assistant organization:
+- [Dougal Matthews (@d0ugal)](https://github.com/d0ugal "8 total commits to the home-assistant organization:
5 commits to home-assistant
2 commits to home-assistant.io
+1 commit to hassio-addons
")
- [dpressle (@dpressle)](https://github.com/dpressle "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
@@ -2464,6 +2541,9 @@ This page contains a list of people who have contributed in one way or another t
- [dreizehnelf (@dreizehnelf)](https://github.com/dreizehnelf "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
+- [Drew Budwin (@dbudwin)](https://github.com/dbudwin "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [Drew Wells (@drewwells)](https://github.com/drewwells "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
@@ -2488,8 +2568,8 @@ This page contains a list of people who have contributed in one way or another t
- [dtorner (@dtorner)](https://github.com/dtorner "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [DubhAd (@DubhAd)](https://github.com/DubhAd "520 total commits to the home-assistant organization:
-514 commits to home-assistant.io
+- [DubhAd (@DubhAd)](https://github.com/DubhAd "527 total commits to the home-assistant organization:
+521 commits to home-assistant.io
2 commits to hassos
2 commits to developers.home-assistant
1 commit to appdaemon
@@ -2508,6 +2588,9 @@ This page contains a list of people who have contributed in one way or another t
- [Dustin Wyatt (@dmwyatt)](https://github.com/dmwyatt "1 total commits to the home-assistant organization:
1 commit to open-zwave
")
+- [Dwight Holman (@anonfunc)](https://github.com/anonfunc "6 total commits to the home-assistant organization:
+6 commits to pyharmony
+")
- [Dylan Barlett (@dbarlett)](https://github.com/dbarlett "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
@@ -2559,9 +2642,10 @@ This page contains a list of people who have contributed in one way or another t
9 commits to home-assistant
3 commits to home-assistant.io
")
-- [ehendrix23 (@ehendrix23)](https://github.com/ehendrix23 "23 total commits to the home-assistant organization:
-20 commits to home-assistant
-2 commits to home-assistant.io
+- [ehendrix23 (@ehendrix23)](https://github.com/ehendrix23 "29 total commits to the home-assistant organization:
+24 commits to home-assistant
+3 commits to home-assistant.io
+1 commit to pyharmony
1 commit to home-assistant-polymer
")
- [eiaro (@eiaro)](https://github.com/eiaro "4 total commits to the home-assistant organization:
@@ -2594,9 +2678,9 @@ This page contains a list of people who have contributed in one way or another t
- [Elias Karakoulakis (@ekarak)](https://github.com/ekarak "8 total commits to the home-assistant organization:
8 commits to open-zwave
")
-- [Eliseo Martelli (@eliseomartelli)](https://github.com/eliseomartelli "8 total commits to the home-assistant organization:
-7 commits to home-assistant
-1 commit to home-assistant.io
+- [Eliseo Martelli (@eliseomartelli)](https://github.com/eliseomartelli "12 total commits to the home-assistant organization:
+9 commits to home-assistant
+3 commits to home-assistant.io
")
- [Ellis Percival (@flyte)](https://github.com/flyte "31 total commits to the home-assistant organization:
25 commits to home-assistant
@@ -2611,6 +2695,9 @@ This page contains a list of people who have contributed in one way or another t
- [Emacee (@Emacee)](https://github.com/Emacee "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
+- [Emanuele (@ema987)](https://github.com/ema987 "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [Emanuele Palombo (@elbowz)](https://github.com/elbowz "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
@@ -2624,8 +2711,9 @@ This page contains a list of people who have contributed in one way or another t
2 commits to home-assistant.io
1 commit to home-assistant
")
-- [Emil Stjerneman (@bratanon)](https://github.com/bratanon "2 total commits to the home-assistant organization:
+- [Emil Stjerneman (@bratanon)](https://github.com/bratanon "3 total commits to the home-assistant organization:
2 commits to home-assistant
+1 commit to home-assistant-polymer
")
- [emil\-e (@emil-e)](https://github.com/emil-e "1 total commits to the home-assistant organization:
1 commit to python-openzwave
@@ -2643,9 +2731,9 @@ This page contains a list of people who have contributed in one way or another t
- [Emmanuel Mwangi (@cloudbring)](https://github.com/cloudbring "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [emontnemery (@emontnemery)](https://github.com/emontnemery "64 total commits to the home-assistant organization:
-51 commits to home-assistant
-12 commits to home-assistant.io
+- [emontnemery (@emontnemery)](https://github.com/emontnemery "95 total commits to the home-assistant organization:
+73 commits to home-assistant
+21 commits to home-assistant.io
1 commit to developers.home-assistant
")
- [Emre Saglam (@emresaglam)](https://github.com/emresaglam "1 total commits to the home-assistant organization:
@@ -2689,8 +2777,8 @@ 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 Nagley (@marchingphoenix)](https://github.com/marchingphoenix "14 total commits to the home-assistant organization:
-12 commits to home-assistant
+- [Eric Nagley (@marchingphoenix)](https://github.com/marchingphoenix "17 total commits to the home-assistant organization:
+15 commits to home-assistant
2 commits to home-assistant.io
")
- [Eric Oosting (@eoosting)](https://github.com/eoosting "3 total commits to the home-assistant organization:
@@ -2706,8 +2794,11 @@ This page contains a list of people who have contributed in one way or another t
- [Eric Thompson (@er0ck)](https://github.com/er0ck "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
")
-- [Erik Eriksson (@molobrakos)](https://github.com/molobrakos "122 total commits to the home-assistant organization:
-105 commits to home-assistant
+- [ericgingras (@e850205)](https://github.com/e850205 "1 total commits to the home-assistant organization:
+1 commit to home-assistant
+")
+- [Erik Eriksson (@molobrakos)](https://github.com/molobrakos "125 total commits to the home-assistant organization:
+108 commits to home-assistant
14 commits to home-assistant.io
3 commits to netdisco
")
@@ -2759,7 +2850,11 @@ This page contains a list of people who have contributed in one way or another t
3 commits to home-assistant
1 commit to home-assistant.io
")
-- [everix1992 (@everix1992)](https://github.com/everix1992 "2 total commits to the home-assistant organization:
+- [Evan Morse (@RowdyDog12)](https://github.com/RowdyDog12 "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
+- [everix1992 (@everix1992)](https://github.com/everix1992 "4 total commits to the home-assistant organization:
+2 commits to pyharmony
1 commit to home-assistant
1 commit to home-assistant.io
")
@@ -2782,25 +2877,26 @@ This page contains a list of people who have contributed in one way or another t
- [Ezra Bowden (@bn0)](https://github.com/bn0 "2 total commits to the home-assistant organization:
2 commits to warrant
")
-- [Fabian Affolter (@fabaff)](https://github.com/fabaff "5201 total commits to the home-assistant organization:
-3193 commits to home-assistant.io
-1798 commits to home-assistant
-37 commits to home-assistant-cli
+- [Fabian Affolter (@fabaff)](https://github.com/fabaff "5265 total commits to the home-assistant organization:
+3219 commits to home-assistant.io
+1826 commits to home-assistant
+38 commits to home-assistant-cli
+36 commits to home-assistant-notebooks
33 commits to home-assistant-assets
-32 commits to home-assistant-notebooks
-30 commits to developers.home-assistant
+32 commits to developers.home-assistant
18 commits to organization-internal
12 commits to hassio-build
11 commits to home-assistant-polymer
-10 commits to netdisco
+11 commits to netdisco
7 commits to hassos
-6 commits to hassio
6 commits to hassio-addons
+6 commits to hassio
3 commits to hass-release
2 commits to home-assistant-iOS
+2 commits to data.home-assistant
1 commit to home-assistant-js-websocket
-1 commit to ui-schema
1 commit to example-custom-config
+1 commit to ui-schema
")
- [Fabian Fischer (@nodomain)](https://github.com/nodomain "1 total commits to the home-assistant organization:
1 commit to hassio-addons
@@ -2864,8 +2960,8 @@ This page contains a list of people who have contributed in one way or another t
- [ferdydek (@ferdydek)](https://github.com/ferdydek "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Fermulator (@fermulator)](https://github.com/fermulator "1 total commits to the home-assistant organization:
-1 commit to home-assistant.io
+- [Fermulator (@fermulator)](https://github.com/fermulator "2 total commits to the home-assistant organization:
+2 commits to home-assistant.io
")
- [Fernando (@ferazambuja)](https://github.com/ferazambuja "4 total commits to the home-assistant organization:
4 commits to home-assistant.io
@@ -2874,6 +2970,10 @@ This page contains a list of people who have contributed in one way or another t
4 commits to home-assistant.io
2 commits to home-assistant
")
+- [FieldofClay (@FieldofClay)](https://github.com/FieldofClay "2 total commits to the home-assistant organization:
+1 commit to home-assistant
+1 commit to home-assistant.io
+")
- [fignew (@fignew)](https://github.com/fignew "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
@@ -2962,15 +3062,16 @@ This page contains a list of people who have contributed in one way or another t
- [fran1987 (@fran1987)](https://github.com/fran1987 "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Franck Nijhof (@frenck)](https://github.com/frenck "100 total commits to the home-assistant organization:
-49 commits to home-assistant.io
-20 commits to hassio-cli
+- [Franck Nijhof (@frenck)](https://github.com/frenck "104 total commits to the home-assistant organization:
+51 commits to home-assistant.io
+21 commits to hassio-cli
11 commits to hassio
8 commits to developers.home-assistant
5 commits to home-assistant
4 commits to hassio-addons
2 commits to home-assistant-polymer
1 commit to appdaemon
+1 commit to data.home-assistant
")
- [Frank (@syphernl)](https://github.com/syphernl "1 total commits to the home-assistant organization:
1 commit to home-assistant-polymer
@@ -3008,9 +3109,9 @@ This page contains a list of people who have contributed in one way or another t
1 commit to developers.home-assistant
1 commit to home-assistant
")
-- [Fredrik Erlandsson (@fredrike)](https://github.com/fredrike "18 total commits to the home-assistant organization:
-17 commits to home-assistant
-1 commit to home-assistant.io
+- [Fredrik Erlandsson (@fredrike)](https://github.com/fredrike "25 total commits to the home-assistant organization:
+23 commits to home-assistant
+2 commits to home-assistant.io
")
- [Fredrik Fjeld (@fredrikfjeld)](https://github.com/fredrikfjeld "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
@@ -3066,8 +3167,8 @@ This page contains a list of people who have contributed in one way or another t
- [Gaetan Semet (@gsemet)](https://github.com/gsemet "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
")
-- [Galtwise (@Galtwise)](https://github.com/Galtwise "1 total commits to the home-assistant organization:
-1 commit to home-assistant.io
+- [Galtwise (@Galtwise)](https://github.com/Galtwise "3 total commits to the home-assistant organization:
+3 commits to home-assistant.io
")
- [Gamester17 (@Gamester17)](https://github.com/Gamester17 "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
@@ -3142,13 +3243,13 @@ This page contains a list of people who have contributed in one way or another t
- [Georgii Staroselskii (@staroselskii)](https://github.com/staroselskii "1 total commits to the home-assistant organization:
1 commit to pi-gen
")
-- [Gerard (@erorus)](https://github.com/erorus "1 total commits to the home-assistant organization:
-1 commit to dehydrated
-")
- [Gerard (@gerard33)](https://github.com/gerard33 "22 total commits to the home-assistant organization:
13 commits to home-assistant.io
9 commits to home-assistant
")
+- [Gerard (@erorus)](https://github.com/erorus "1 total commits to the home-assistant organization:
+1 commit to dehydrated
+")
- [Gerardo Castillo (@altersis)](https://github.com/altersis "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
@@ -3191,6 +3292,10 @@ 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.io
")
+- [Gido (@GidoHakvoort)](https://github.com/GidoHakvoort "2 total commits to the home-assistant organization:
+1 commit to home-assistant
+1 commit to home-assistant.io
+")
- [Giel Janssens (@gieljnssns)](https://github.com/gieljnssns "7 total commits to the home-assistant organization:
5 commits to home-assistant
2 commits to home-assistant.io
@@ -3221,12 +3326,12 @@ This page contains a list of people who have contributed in one way or another t
- [gizmocuz (@gizmocuz)](https://github.com/gizmocuz "21 total commits to the home-assistant organization:
21 commits to open-zwave
")
-- [Glen Takahashi (@glentakahashi)](https://github.com/glentakahashi "2 total commits to the home-assistant organization:
-1 commit to home-assistant
+- [Glen Takahashi (@glentakahashi)](https://github.com/glentakahashi "4 total commits to the home-assistant organization:
+3 commits to home-assistant
1 commit to home-assistant.io
")
-- [Glenn Morrison (@atomicpapa)](https://github.com/atomicpapa "7 total commits to the home-assistant organization:
-7 commits to home-assistant.io
+- [Glenn Morrison (@atomicpapa)](https://github.com/atomicpapa "8 total commits to the home-assistant organization:
+8 commits to home-assistant.io
")
- [Glenn Waters (@gwww)](https://github.com/gwww "19 total commits to the home-assistant organization:
11 commits to home-assistant
@@ -3323,8 +3428,8 @@ This page contains a list of people who have contributed in one way or another t
- [gregwis (@gregwis)](https://github.com/gregwis "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [gremblin (@e2m32)](https://github.com/e2m32 "3 total commits to the home-assistant organization:
-3 commits to home-assistant.io
+- [gremblin (@e2m32)](https://github.com/e2m32 "4 total commits to the home-assistant organization:
+4 commits to home-assistant.io
")
- [groth\-its (@groth-its)](https://github.com/groth-its "2 total commits to the home-assistant organization:
2 commits to home-assistant
@@ -3469,9 +3574,9 @@ This page contains a list of people who have contributed in one way or another t
6 commits to home-assistant
5 commits to home-assistant.io
")
-- [Heine Furubotten (@hfurubotten)](https://github.com/hfurubotten "2 total commits to the home-assistant organization:
-1 commit to home-assistant
-1 commit to home-assistant.io
+- [Heine Furubotten (@hfurubotten)](https://github.com/hfurubotten "5 total commits to the home-assistant organization:
+3 commits to home-assistant
+2 commits to home-assistant.io
")
- [Heinrich Dahms (@htdahms)](https://github.com/htdahms "1 total commits to the home-assistant organization:
1 commit to home-assistant-iOS
@@ -3619,9 +3724,12 @@ This page contains a list of people who have contributed in one way or another t
- [Ian Darwin (@IanDarwin)](https://github.com/IanDarwin "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Ian Richardson (@iantrich)](https://github.com/iantrich "120 total commits to the home-assistant organization:
-98 commits to home-assistant-polymer
-15 commits to home-assistant.io
+- [Ian Day (@iandday)](https://github.com/iandday "16 total commits to the home-assistant organization:
+16 commits to pyharmony
+")
+- [Ian Richardson (@iantrich)](https://github.com/iantrich "139 total commits to the home-assistant organization:
+111 commits to home-assistant-polymer
+21 commits to home-assistant.io
6 commits to home-assistant
1 commit to developers.home-assistant
")
@@ -3652,8 +3760,9 @@ This page contains a list of people who have contributed in one way or another t
2 commits to home-assistant
1 commit to home-assistant.io
")
-- [Igor Motov (@imotov)](https://github.com/imotov "1 total commits to the home-assistant organization:
-1 commit to home-assistant.io
+- [Igor Motov (@imotov)](https://github.com/imotov "3 total commits to the home-assistant organization:
+2 commits to home-assistant.io
+1 commit to home-assistant
")
- [Igor Shults (@ishults)](https://github.com/ishults "12 total commits to the home-assistant organization:
6 commits to home-assistant
@@ -3694,9 +3803,9 @@ This page contains a list of people who have contributed in one way or another t
- [insajd (@insajd)](https://github.com/insajd "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Ioan Loosley (@ioangogo)](https://github.com/ioangogo "20 total commits to the home-assistant organization:
+- [Ioan Loosley (@ioangogo)](https://github.com/ioangogo "21 total commits to the home-assistant organization:
17 commits to home-assistant.io
-3 commits to home-assistant
+4 commits to home-assistant
")
- [ionred (@ionred)](https://github.com/ionred "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
@@ -3957,9 +4066,12 @@ This page contains a list of people who have contributed in one way or another t
- [Jason Woodward (@woodwardjd)](https://github.com/woodwardjd "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [javicalle (@javicalle)](https://github.com/javicalle "3 total commits to the home-assistant organization:
+- [Jasper van der Neut \- Stulen (@jvanderneutstulen)](https://github.com/jvanderneutstulen "4 total commits to the home-assistant organization:
+4 commits to hassos
+")
+- [javicalle (@javicalle)](https://github.com/javicalle "6 total commits to the home-assistant organization:
+4 commits to home-assistant
2 commits to home-assistant.io
-1 commit to home-assistant
")
- [Javier Gonel (@graffic)](https://github.com/graffic "2 total commits to the home-assistant organization:
2 commits to home-assistant
@@ -3997,6 +4109,9 @@ This page contains a list of people who have contributed in one way or another t
7 commits to home-assistant.io
6 commits to home-assistant
")
+- [Jc2k (@Jc2k)](https://github.com/Jc2k "2 total commits to the home-assistant organization:
+2 commits to home-assistant
+")
- [jchasey (@jchasey)](https://github.com/jchasey "1 total commits to the home-assistant organization:
1 commit to developers.home-assistant
")
@@ -4040,6 +4155,9 @@ This page contains a list of people who have contributed in one way or another t
- [Jeena Paradies (@jeena)](https://github.com/jeena "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
+- [Jeff Boothe (@jboothe)](https://github.com/jboothe "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [Jeff Irion (@JeffLIrion)](https://github.com/JeffLIrion "5 total commits to the home-assistant organization:
4 commits to home-assistant
1 commit to home-assistant.io
@@ -4058,9 +4176,13 @@ This page contains a list of people who have contributed in one way or another t
- [jeff tapia (@jtmoderate876)](https://github.com/jtmoderate876 "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Jeff Wilson (@jawilson)](https://github.com/jawilson "26 total commits to the home-assistant organization:
+- [Jeff Terrace (@jterrace)](https://github.com/jterrace "6 total commits to the home-assistant organization:
+6 commits to pyharmony
+")
+- [Jeff Wilson (@jawilson)](https://github.com/jawilson "28 total commits to the home-assistant organization:
20 commits to home-assistant
6 commits to home-assistant.io
+2 commits to pyharmony
")
- [Jeffrey Lin (@linjef)](https://github.com/linjef "3 total commits to the home-assistant organization:
2 commits to home-assistant
@@ -4069,18 +4191,19 @@ This page contains a list of people who have contributed in one way or another t
- [Jelmer Tiete (@JelmerT)](https://github.com/JelmerT "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
+- [Jens (@jensihnow)](https://github.com/jensihnow "5 total commits to the home-assistant organization:
+3 commits to home-assistant
+2 commits to home-assistant.io
+")
- [Jens (@jhoepken)](https://github.com/jhoepken "3 total commits to the home-assistant organization:
3 commits to home-assistant.io
")
-- [Jens (@jensihnow)](https://github.com/jensihnow "1 total commits to the home-assistant organization:
-1 commit to home-assistant
-")
- [Jens Kohl (@jk)](https://github.com/jk "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
- [Jens Østergaard Nielsen (@dingusdk)](https://github.com/dingusdk "8 total commits to the home-assistant organization:
-4 commits to home-assistant.io
4 commits to home-assistant
+4 commits to home-assistant.io
")
- [jensjakob (@jensjakob)](https://github.com/jensjakob "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
@@ -4170,8 +4293,8 @@ This page contains a list of people who have contributed in one way or another t
1 commit to home-assistant
")
- [JesseWebDotCom (@JesseWebDotCom)](https://github.com/JesseWebDotCom "16 total commits to the home-assistant organization:
-8 commits to home-assistant
8 commits to home-assistant.io
+8 commits to home-assistant
")
- [jessyjones (@jessyjones)](https://github.com/jessyjones "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
@@ -4196,6 +4319,9 @@ This page contains a list of people who have contributed in one way or another t
- [jimbob1001 (@jimbob1001)](https://github.com/jimbob1001 "4 total commits to the home-assistant organization:
4 commits to home-assistant.io
")
+- [jimboca (@jimboca)](https://github.com/jimboca "3 total commits to the home-assistant organization:
+3 commits to pyharmony
+")
- [Jimmy Tang (@jcftang)](https://github.com/jcftang "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
@@ -4236,10 +4362,10 @@ This page contains a list of people who have contributed in one way or another t
- [Joakim Plate (@elupus)](https://github.com/elupus "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
-- [Joakim Sørensen (@ludeeus)](https://github.com/ludeeus "213 total commits to the home-assistant organization:
+- [Joakim Sørensen (@ludeeus)](https://github.com/ludeeus "218 total commits to the home-assistant organization:
141 commits to hassbian-scripts
-38 commits to home-assistant.io
-34 commits to home-assistant
+40 commits to home-assistant.io
+37 commits to home-assistant
")
- [Joaquín (@joaqtor)](https://github.com/joaqtor "1 total commits to the home-assistant organization:
1 commit to home-assistant
@@ -4342,10 +4468,10 @@ This page contains a list of people who have contributed in one way or another t
- [John Allen (@jra3)](https://github.com/jra3 "2 total commits to the home-assistant organization:
2 commits to home-assistant
")
-- [John Arild Berentsen (@turbokongen)](https://github.com/turbokongen "225 total commits to the home-assistant organization:
+- [John Arild Berentsen (@turbokongen)](https://github.com/turbokongen "227 total commits to the home-assistant organization:
156 commits to home-assistant
-45 commits to home-assistant.io
-24 commits to home-assistant-polymer
+46 commits to home-assistant.io
+25 commits to home-assistant-polymer
")
- [John Boiles (@johnboiles)](https://github.com/johnboiles "2 total commits to the home-assistant organization:
1 commit to home-assistant
@@ -4369,12 +4495,15 @@ This page contains a list of people who have contributed in one way or another t
- [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 "51 total commits to the home-assistant organization:
-37 commits to home-assistant
+- [John Mihalic (@mezz64)](https://github.com/mezz64 "54 total commits to the home-assistant organization:
+40 commits to home-assistant
12 commits to home-assistant.io
1 commit to hadashboard
1 commit to home-assistant-polymer
")
+- [John Shahawy (@JohnShahawy)](https://github.com/JohnShahawy "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [John W\. Long (@jlong)](https://github.com/jlong "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
@@ -4413,6 +4542,9 @@ This page contains a list of people who have contributed in one way or another t
16 commits to homebridge-homeassistant
9 commits to home-assistant.io
")
+- [Jonas Janz (@PixelJonas)](https://github.com/PixelJonas "1 total commits to the home-assistant organization:
+1 commit to hassio-build
+")
- [Jonas Karlsson (@endor-force)](https://github.com/endor-force "13 total commits to the home-assistant organization:
6 commits to home-assistant.io
5 commits to hassio-addons
@@ -4436,8 +4568,8 @@ This page contains a list of people who have contributed in one way or another t
- [Jonathan Batchelor (@jmb)](https://github.com/jmb "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Jonathan Herlin (@Jonher937)](https://github.com/Jonher937 "1 total commits to the home-assistant organization:
-1 commit to home-assistant.io
+- [Jonathan Herlin (@Jonher937)](https://github.com/Jonher937 "2 total commits to the home-assistant organization:
+2 commits to home-assistant.io
")
- [Jonathan Keljo (@jkeljo)](https://github.com/jkeljo "6 total commits to the home-assistant organization:
3 commits to home-assistant
@@ -4483,13 +4615,13 @@ This page contains a list of people who have contributed in one way or another t
40 commits to home-assistant
3 commits to home-assistant.io
")
-- [Jorim Tielemans (@tjorim)](https://github.com/tjorim "84 total commits to the home-assistant organization:
-69 commits to home-assistant.io
+- [Jorim Tielemans (@tjorim)](https://github.com/tjorim "88 total commits to the home-assistant organization:
+73 commits to home-assistant.io
6 commits to home-assistant
-2 commits to hassio
+2 commits to hassio-cli
2 commits to hassio-addons
2 commits to developers.home-assistant
-2 commits to hassio-cli
+2 commits to hassio
1 commit to hassio-build
")
- [jorisc90 (@jorisc90)](https://github.com/jorisc90 "1 total commits to the home-assistant organization:
@@ -4587,6 +4719,9 @@ This page contains a list of people who have contributed in one way or another t
- [jtscott (@jtscott)](https://github.com/jtscott "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
+- [Juan Manuel Combetto (@omniwired)](https://github.com/omniwired "1 total commits to the home-assistant organization:
+1 commit to appdaemon
+")
- [Juan Martin (@tinchox5)](https://github.com/tinchox5 "1 total commits to the home-assistant organization:
1 commit to home-assistant-js-websocket
")
@@ -4623,6 +4758,9 @@ This page contains a list of people who have contributed in one way or another t
- [Julian Knauer (@jaypikay)](https://github.com/jaypikay "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
+- [Julien Brochet (@aerialls)](https://github.com/aerialls "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [Julien Danjou (@jd)](https://github.com/jd "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
@@ -4636,8 +4774,8 @@ This page contains a list of people who have contributed in one way or another t
28 commits to home-assistant
7 commits to home-assistant.io
")
-- [jumpkick (@jumpkick)](https://github.com/jumpkick "16 total commits to the home-assistant organization:
-12 commits to home-assistant
+- [jumpkick (@jumpkick)](https://github.com/jumpkick "18 total commits to the home-assistant organization:
+14 commits to home-assistant
4 commits to home-assistant.io
")
- [Junian Triajianto (@junian)](https://github.com/junian "1 total commits to the home-assistant organization:
@@ -4740,8 +4878,9 @@ This page contains a list of people who have contributed in one way or another t
4 commits to home-assistant
1 commit to home-assistant.io
")
-- [Karim Geiger (@KarimGeiger)](https://github.com/KarimGeiger "1 total commits to the home-assistant organization:
+- [Karim Geiger (@KarimGeiger)](https://github.com/KarimGeiger "2 total commits to the home-assistant organization:
1 commit to home-assistant
+1 commit to home-assistant.io
")
- [Karl Kihlström (@kalkih)](https://github.com/kalkih "6 total commits to the home-assistant organization:
4 commits to home-assistant-polymer
@@ -4765,6 +4904,9 @@ This page contains a list of people who have contributed in one way or another t
- [KD4SIR (@scotthibbs)](https://github.com/scotthibbs "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
+- [kdvlr (@kdvlr)](https://github.com/kdvlr "1 total commits to the home-assistant organization:
+1 commit to home-assistant
+")
- [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.io
@@ -4800,8 +4942,8 @@ This page contains a list of people who have contributed in one way or another t
13 commits to home-assistant.io
2 commits to appdaemon
")
-- [kennedyshead (@kennedyshead)](https://github.com/kennedyshead "40 total commits to the home-assistant organization:
-36 commits to home-assistant
+- [kennedyshead (@kennedyshead)](https://github.com/kennedyshead "42 total commits to the home-assistant organization:
+38 commits to home-assistant
4 commits to home-assistant.io
")
- [Kenny Millington (@kmdm)](https://github.com/kmdm "2 total commits to the home-assistant organization:
@@ -4913,8 +5055,8 @@ This page contains a list of people who have contributed in one way or another t
1 commit to home-assistant.io
")
- [Klaas Hoekema (@KlaasH)](https://github.com/KlaasH "12 total commits to the home-assistant organization:
-5 commits to home-assistant.io
5 commits to home-assistant
+5 commits to home-assistant.io
2 commits to home-assistant-polymer
")
- [Klaas Schoute (@klaasnicolaas)](https://github.com/klaasnicolaas "286 total commits to the home-assistant organization:
@@ -4935,6 +5077,9 @@ This page contains a list of people who have contributed in one way or another t
- [Koen Ekelschot (@peckham)](https://github.com/peckham "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
+- [Koen Kanters (@Koenkk)](https://github.com/Koenkk "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [koen01 (@koen01)](https://github.com/koen01 "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
@@ -5014,6 +5159,9 @@ This page contains a list of people who have contributed in one way or another t
- [Lance Haynie (@lancehaynie)](https://github.com/lancehaynie "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
+- [Lance Moss (@mossyhub)](https://github.com/mossyhub "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [lance36 (@lance36)](https://github.com/lance36 "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
@@ -5026,6 +5174,9 @@ This page contains a list of people who have contributed in one way or another t
- [Lars Englund (@larsenglund)](https://github.com/larsenglund "1 total commits to the home-assistant organization:
1 commit to appdaemon
")
+- [Lars Hagström (@DonOregano)](https://github.com/DonOregano "1 total commits to the home-assistant organization:
+1 commit to pyharmony
+")
- [Lars Kerick (@Brice187)](https://github.com/Brice187 "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
@@ -5035,6 +5186,9 @@ This page contains a list of people who have contributed in one way or another t
- [LaurensBot (@LaurensBot)](https://github.com/LaurensBot "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
")
+- [LaurentTrk (@LaurentTrk)](https://github.com/LaurentTrk "3 total commits to the home-assistant organization:
+3 commits to pyharmony
+")
- [LavaGlass (@LavaGlass)](https://github.com/LavaGlass "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
@@ -5111,16 +5265,16 @@ This page contains a list of people who have contributed in one way or another t
- [Levi Govaerts (@legovaer)](https://github.com/legovaer "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
-- [Lewis Juggins (@lwis)](https://github.com/lwis "69 total commits to the home-assistant organization:
+- [Lewis Juggins (@lwis)](https://github.com/lwis "70 total commits to the home-assistant organization:
56 commits to home-assistant
-12 commits to home-assistant.io
+13 commits to home-assistant.io
1 commit to home-assistant-polymer
")
- [Li\-Wen Yip (@liwenyip)](https://github.com/liwenyip "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [liaanvdm (@liaanvdm)](https://github.com/liaanvdm "1 total commits to the home-assistant organization:
-1 commit to home-assistant
+- [liaanvdm (@liaanvdm)](https://github.com/liaanvdm "3 total commits to the home-assistant organization:
+3 commits to home-assistant
")
- [Liang Sun (@leonsim)](https://github.com/leonsim "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
@@ -5156,8 +5310,8 @@ This page contains a list of people who have contributed in one way or another t
- [lolouk44 (@lolouk44)](https://github.com/lolouk44 "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [longman391 (@longman391)](https://github.com/longman391 "1 total commits to the home-assistant organization:
-1 commit to home-assistant.io
+- [longman391 (@longman391)](https://github.com/longman391 "2 total commits to the home-assistant organization:
+2 commits to home-assistant.io
")
- [lordneon (@lordneon)](https://github.com/lordneon "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
@@ -5198,9 +5352,9 @@ This page contains a list of people who have contributed in one way or another t
- [Luca Adrian Lindhorst (@lal12)](https://github.com/lal12 "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
")
-- [Luca Angemi (@luca-angemi)](https://github.com/luca-angemi "6 total commits to the home-assistant organization:
+- [Luca Angemi (@luca-angemi)](https://github.com/luca-angemi "8 total commits to the home-assistant organization:
+4 commits to home-assistant
3 commits to home-assistant.io
-2 commits to home-assistant
1 commit to home-assistant-polymer
")
- [Luca Simonetti @Nohup (@luca-simonetti)](https://github.com/luca-simonetti "1 total commits to the home-assistant organization:
@@ -5297,8 +5451,8 @@ This page contains a list of people who have contributed in one way or another t
- [Maarten Groeneweg (@lazytesting)](https://github.com/lazytesting "1 total commits to the home-assistant organization:
1 commit to hassio-addons
")
-- [Maciej Bieniek (@bieniu)](https://github.com/bieniu "9 total commits to the home-assistant organization:
-6 commits to home-assistant
+- [Maciej Bieniek (@bieniu)](https://github.com/bieniu "10 total commits to the home-assistant organization:
+7 commits to home-assistant
2 commits to home-assistant.io
1 commit to home-assistant-polymer
")
@@ -5338,8 +5492,8 @@ This page contains a list of people who have contributed in one way or another t
- [Magnus Månsson (@magma1447)](https://github.com/magma1447 "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Magnus Øverli (@magnusoverli)](https://github.com/magnusoverli "1 total commits to the home-assistant organization:
-1 commit to home-assistant.io
+- [Magnus Øverli (@magnusoverli)](https://github.com/magnusoverli "2 total commits to the home-assistant organization:
+2 commits to home-assistant.io
")
- [MagnusKnutas (@MagnusKnutas)](https://github.com/MagnusKnutas "29 total commits to the home-assistant organization:
29 commits to home-assistant
@@ -5358,8 +5512,8 @@ This page contains a list of people who have contributed in one way or another t
2 commits to home-assistant.io
")
- [Maikel Punie (@Cereal2nd)](https://github.com/Cereal2nd "8 total commits to the home-assistant organization:
-4 commits to home-assistant.io
4 commits to home-assistant
+4 commits to home-assistant.io
")
- [Maikel Wever (@maikelwever)](https://github.com/maikelwever "2 total commits to the home-assistant organization:
2 commits to home-assistant
@@ -5378,11 +5532,11 @@ This page contains a list of people who have contributed in one way or another t
3 commits to home-assistant
2 commits to home-assistant.io
")
-- [Malte Franken (@exxamalte)](https://github.com/exxamalte "38 total commits to the home-assistant organization:
-25 commits to home-assistant
-11 commits to home-assistant.io
+- [Malte Franken (@exxamalte)](https://github.com/exxamalte "42 total commits to the home-assistant organization:
+26 commits to home-assistant
+12 commits to home-assistant.io
+3 commits to home-assistant-polymer
1 commit to developers.home-assistant
-1 commit to home-assistant-polymer
")
- [Manoj (@vmulpuru)](https://github.com/vmulpuru "1 total commits to the home-assistant organization:
1 commit to home-assistant
@@ -5432,8 +5586,8 @@ This page contains a list of people who have contributed in one way or another t
5 commits to home-assistant.io
1 commit to home-assistant
")
-- [Marcelo Moreira de Mello (@tchellomello)](https://github.com/tchellomello "159 total commits to the home-assistant organization:
-89 commits to home-assistant
+- [Marcelo Moreira de Mello (@tchellomello)](https://github.com/tchellomello "160 total commits to the home-assistant organization:
+90 commits to home-assistant
67 commits to home-assistant.io
1 commit to home-assistant-assets
1 commit to hassio-build
@@ -5522,6 +5676,9 @@ This page contains a list of people who have contributed in one way or another t
1 commit to home-assistant
1 commit to home-assistant.io
")
+- [Marius Retegan (@mretegan)](https://github.com/mretegan "2 total commits to the home-assistant organization:
+2 commits to home-assistant
+")
- [Mariusz Łuciów (@mariuszluciow)](https://github.com/mariuszluciow "5 total commits to the home-assistant organization:
3 commits to home-assistant
1 commit to home-assistant-polymer
@@ -5607,6 +5764,10 @@ This page contains a list of people who have contributed in one way or another t
3 commits to home-assistant
2 commits to home-assistant.io
")
+- [Markus Ressel (@markusressel)](https://github.com/markusressel "2 total commits to the home-assistant organization:
+1 commit to home-assistant
+1 commit to home-assistant.io
+")
- [Markus Stenberg (@fingon)](https://github.com/fingon "6 total commits to the home-assistant organization:
6 commits to home-assistant
")
@@ -5624,8 +5785,8 @@ This page contains a list of people who have contributed in one way or another t
3 commits to home-assistant.io
")
- [Martin Donlon (@wickerwaka)](https://github.com/wickerwaka "4 total commits to the home-assistant organization:
-2 commits to home-assistant
2 commits to home-assistant.io
+2 commits to home-assistant
")
- [Martin Eberhardt (@DarkFox)](https://github.com/DarkFox "6 total commits to the home-assistant organization:
5 commits to home-assistant.io
@@ -5694,6 +5855,10 @@ This page contains a list of people who have contributed in one way or another t
- [marutanm (@marutanm)](https://github.com/marutanm "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
+- [Marvin Wichmann (@marvin-w)](https://github.com/marvin-w "2 total commits to the home-assistant organization:
+1 commit to home-assistant
+1 commit to home-assistant.io
+")
- [Masahiro Kamata (@kamatari)](https://github.com/kamatari "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
@@ -5715,14 +5880,14 @@ This page contains a list of people who have contributed in one way or another t
1 commit to homebridge-homeassistant
1 commit to home-assistant
")
-- [Mathieu Maret (@mmaret-geny)](https://github.com/mmaret-geny "1 total commits to the home-assistant organization:
-1 commit to home-assistant.io
-")
- [Mathieu Maret (@mmaret)](https://github.com/mmaret "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Mathieu Velten (@MatMaul)](https://github.com/MatMaul "5 total commits to the home-assistant organization:
-4 commits to home-assistant
+- [Mathieu Maret (@mmaret-geny)](https://github.com/mmaret-geny "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
+- [Mathieu Velten (@MatMaul)](https://github.com/MatMaul "6 total commits to the home-assistant organization:
+5 commits to home-assistant
1 commit to home-assistant.io
")
- [Matouš Bečvář (@MattXcz)](https://github.com/MattXcz "1 total commits to the home-assistant organization:
@@ -5861,8 +6026,8 @@ This page contains a list of people who have contributed in one way or another t
- [Mattias Ryrlén (@mattiasr)](https://github.com/mattiasr "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Mattias Welponer (@mxworm)](https://github.com/mxworm "25 total commits to the home-assistant organization:
-15 commits to home-assistant
+- [Mattias Welponer (@mxworm)](https://github.com/mxworm "26 total commits to the home-assistant organization:
+16 commits to home-assistant
9 commits to home-assistant.io
1 commit to home-assistant-polymer
")
@@ -5907,10 +6072,11 @@ This page contains a list of people who have contributed in one way or another t
- [Max Rumpf (@Maxr1998)](https://github.com/Maxr1998 "15 total commits to the home-assistant organization:
15 commits to home-assistant.io
")
-- [Max Rydahl Andersen (@maxandersen)](https://github.com/maxandersen "33 total commits to the home-assistant organization:
-29 commits to home-assistant-cli
+- [Max Rydahl Andersen (@maxandersen)](https://github.com/maxandersen "56 total commits to the home-assistant organization:
+50 commits to home-assistant-cli
+3 commits to home-assistant.io
2 commits to developers.home-assistant
-2 commits to home-assistant.io
+1 commit to home-assistant
")
- [Max von Webel (@343max)](https://github.com/343max "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
@@ -5919,6 +6085,9 @@ This page contains a list of people who have contributed in one way or another t
5 commits to home-assistant
3 commits to home-assistant.io
")
+- [MaxG88 (@MaxG88)](https://github.com/MaxG88 "1 total commits to the home-assistant organization:
+1 commit to home-assistant
+")
- [Maxim Krušina (@maximkrusina)](https://github.com/maximkrusina "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
@@ -5962,6 +6131,9 @@ This page contains a list of people who have contributed in one way or another t
- [meatheadmike (@meatheadmike)](https://github.com/meatheadmike "2 total commits to the home-assistant organization:
2 commits to home-assistant
")
+- [Megachip (@Megachip)](https://github.com/Megachip "2 total commits to the home-assistant organization:
+2 commits to home-assistant.io
+")
- [MeIchthys (@meichthys)](https://github.com/meichthys "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
")
@@ -6008,6 +6180,10 @@ This page contains a list of people who have contributed in one way or another t
- [Michael Chang (@micbase)](https://github.com/micbase "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
+- [Michael Dubno (@dubnom)](https://github.com/dubnom "6 total commits to the home-assistant organization:
+3 commits to home-assistant
+3 commits to home-assistant.io
+")
- [Michael Fester (@michaelfester)](https://github.com/michaelfester "6 total commits to the home-assistant organization:
4 commits to home-assistant.io
2 commits to home-assistant
@@ -6041,6 +6217,9 @@ This page contains a list of people who have contributed in one way or another t
- [Michael Luggen (@l00mi)](https://github.com/l00mi "5 total commits to the home-assistant organization:
5 commits to home-assistant.io
")
+- [Michael Meinel (@led02)](https://github.com/led02 "1 total commits to the home-assistant organization:
+1 commit to pyharmony
+")
- [Michael Pfister (@pfista)](https://github.com/pfista "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
")
@@ -6084,8 +6263,9 @@ This page contains a list of people who have contributed in one way or another t
- [MichaelSprague (@MichaelSprague)](https://github.com/MichaelSprague "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Michal (@Dinth)](https://github.com/Dinth "1 total commits to the home-assistant organization:
+- [Michal (@Dinth)](https://github.com/Dinth "2 total commits to the home-assistant organization:
1 commit to open-zwave
+1 commit to home-assistant.io
")
- [Michaël Arnauts (@michaelarnauts)](https://github.com/michaelarnauts "65 total commits to the home-assistant organization:
34 commits to home-assistant
@@ -6167,10 +6347,10 @@ This page contains a list of people who have contributed in one way or another t
- [Mikko Tapionlinna (@Arkkimaagi)](https://github.com/Arkkimaagi "2 total commits to the home-assistant organization:
2 commits to home-assistant
")
-- [Milan V\. (@milanvo)](https://github.com/milanvo "18 total commits to the home-assistant organization:
+- [Milan V\. (@milanvo)](https://github.com/milanvo "19 total commits to the home-assistant organization:
10 commits to home-assistant
7 commits to home-assistant.io
-1 commit to home-assistant-polymer
+2 commits to home-assistant-polymer
")
- [Milas Bowman (@milas)](https://github.com/milas "1 total commits to the home-assistant organization:
1 commit to home-assistant
@@ -6281,9 +6461,9 @@ This page contains a list of people who have contributed in one way or another t
- [Moos (@moos)](https://github.com/moos "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [mopolus (@mopolus)](https://github.com/mopolus "2 total commits to the home-assistant organization:
-1 commit to home-assistant
-1 commit to home-assistant.io
+- [mopolus (@mopolus)](https://github.com/mopolus "5 total commits to the home-assistant organization:
+3 commits to home-assistant
+2 commits to home-assistant.io
")
- [MORITA Hajime (@omo)](https://github.com/omo "3 total commits to the home-assistant organization:
3 commits to home-assistant.io
@@ -6308,6 +6488,9 @@ This page contains a list of people who have contributed in one way or another t
6 commits to home-assistant.io
3 commits to home-assistant
")
+- [mreiling (@mreiling)](https://github.com/mreiling "1 total commits to the home-assistant organization:
+1 commit to home-assistant
+")
- [mrosseel (@mrosseel)](https://github.com/mrosseel "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
@@ -6339,8 +6522,8 @@ This page contains a list of people who have contributed in one way or another t
- [mvillarejo (@mvillarejo)](https://github.com/mvillarejo "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
-- [mvn23 (@mvn23)](https://github.com/mvn23 "20 total commits to the home-assistant organization:
-10 commits to home-assistant
+- [mvn23 (@mvn23)](https://github.com/mvn23 "23 total commits to the home-assistant organization:
+13 commits to home-assistant
10 commits to home-assistant.io
")
- [mweimerskirch (@mweimerskirch)](https://github.com/mweimerskirch "3 total commits to the home-assistant organization:
@@ -6391,6 +6574,9 @@ This page contains a list of people who have contributed in one way or another t
13 commits to home-assistant
6 commits to home-assistant.io
")
+- [Nate Robinson (@NateRobinsonS)](https://github.com/NateRobinsonS "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [natemason (@natemason)](https://github.com/natemason "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
@@ -6477,8 +6663,8 @@ This page contains a list of people who have contributed in one way or another t
2 commits to home-assistant
2 commits to home-assistant.io
")
-- [Nicholas Westerhausen (@nwesterhausen)](https://github.com/nwesterhausen "17 total commits to the home-assistant organization:
-17 commits to home-assistant.io
+- [Nicholas Westerhausen (@nwesterhausen)](https://github.com/nwesterhausen "20 total commits to the home-assistant organization:
+20 commits to home-assistant.io
")
- [Nick Chamberlin (@NickChamberlin)](https://github.com/NickChamberlin "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
@@ -6486,9 +6672,9 @@ This page contains a list of people who have contributed in one way or another t
- [Nick Hammond (@nickhammond)](https://github.com/nickhammond "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Nick Horvath (@nhorvath)](https://github.com/nhorvath "6 total commits to the home-assistant organization:
-4 commits to home-assistant
-2 commits to home-assistant.io
+- [Nick Horvath (@nhorvath)](https://github.com/nhorvath "9 total commits to the home-assistant organization:
+5 commits to home-assistant
+4 commits to home-assistant.io
")
- [Nick Oliver (@PixnBits)](https://github.com/PixnBits "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
@@ -6505,8 +6691,8 @@ This page contains a list of people who have contributed in one way or another t
3 commits to home-assistant.io
2 commits to home-assistant
")
-- [Nick Whyte (@nickw444)](https://github.com/nickw444 "9 total commits to the home-assistant organization:
-6 commits to home-assistant
+- [Nick Whyte (@nickw444)](https://github.com/nickw444 "10 total commits to the home-assistant organization:
+7 commits to home-assistant
3 commits to home-assistant.io
")
- [Nick Zelei (@zelein)](https://github.com/zelein "1 total commits to the home-assistant organization:
@@ -6542,6 +6728,9 @@ This page contains a list of people who have contributed in one way or another t
- [Nicolas Quiénot (@niQo)](https://github.com/niQo "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
+- [Nicole Zeckner (@PurelyNicole)](https://github.com/PurelyNicole "2 total commits to the home-assistant organization:
+2 commits to home-assistant.io
+")
- [nicxvan (@nicxvan)](https://github.com/nicxvan "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
@@ -6678,8 +6867,8 @@ This page contains a list of people who have contributed in one way or another t
- [obgm (@obgm)](https://github.com/obgm "480 total commits to the home-assistant organization:
480 commits to libcoap
")
-- [Odianosen Ejale (@Odianosen25)](https://github.com/Odianosen25 "51 total commits to the home-assistant organization:
-51 commits to appdaemon
+- [Odianosen Ejale (@Odianosen25)](https://github.com/Odianosen25 "52 total commits to the home-assistant organization:
+52 commits to appdaemon
")
- [Odin Ugedal (@odinuge)](https://github.com/odinuge "2 total commits to the home-assistant organization:
1 commit to home-assistant
@@ -6800,15 +6989,19 @@ This page contains a list of people who have contributed in one way or another t
3 commits to home-assistant.io
2 commits to home-assistant
")
+- [osirisinferi (@osirisinferi)](https://github.com/osirisinferi "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [ottersen (@ottersen)](https://github.com/ottersen "11 total commits to the home-assistant organization:
11 commits to home-assistant.io
")
-- [Otto Winter (@OttoWinter)](https://github.com/OttoWinter "113 total commits to the home-assistant organization:
-79 commits to home-assistant
-24 commits to home-assistant.io
+- [Otto Winter (@OttoWinter)](https://github.com/OttoWinter "127 total commits to the home-assistant organization:
+91 commits to home-assistant
+25 commits to home-assistant.io
5 commits to home-assistant-polymer
3 commits to hass-release
2 commits to developers.home-assistant
+1 commit to netdisco
")
- [Otto\-G (@Otto-G)](https://github.com/Otto-G "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
@@ -6822,6 +7015,10 @@ This page contains a list of people who have contributed in one way or another t
- [panache67 (@panache67)](https://github.com/panache67 "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
+- [Panagiotis Panagiotopoulos (@ppanagiotis)](https://github.com/ppanagiotis "2 total commits to the home-assistant organization:
+1 commit to home-assistant
+1 commit to home-assistant.io
+")
- [Paolo Bonzini (@bonzini)](https://github.com/bonzini "2 total commits to the home-assistant organization:
1 commit to home-assistant
1 commit to home-assistant.io
@@ -6851,19 +7048,19 @@ This page contains a list of people who have contributed in one way or another t
- [Pascal Jungblut (@pascalj)](https://github.com/pascalj "1 total commits to the home-assistant organization:
1 commit to dehydrated
")
-- [Pascal Vizeli (@pvizeli)](https://github.com/pvizeli "4056 total commits to the home-assistant organization:
-1473 commits to hassio
-713 commits to hassos
-507 commits to home-assistant
-476 commits to hassio-build
-391 commits to hassio-addons
-343 commits to home-assistant.io
+- [Pascal Vizeli (@pvizeli)](https://github.com/pvizeli "4083 total commits to the home-assistant organization:
+1475 commits to hassio
+723 commits to hassos
+508 commits to home-assistant
+477 commits to hassio-build
+392 commits to hassio-addons
+344 commits to home-assistant.io
56 commits to hassio-homeassistant
29 commits to developers.home-assistant
20 commits to hassio-cli
+18 commits to hassio-auth
17 commits to hassio-addons-example
-12 commits to hassio-auth-pam
-11 commits to hassio-base
+16 commits to hassio-base
3 commits to home-assistant-polymer
3 commits to hassio-addons-development
1 commit to home-assistant-js-websocket
@@ -6884,8 +7081,8 @@ This page contains a list of people who have contributed in one way or another t
- [patock (@patock)](https://github.com/patock "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Patrick (@tradiuz)](https://github.com/tradiuz "5 total commits to the home-assistant organization:
-5 commits to home-assistant.io
+- [Patrick (@tradiuz)](https://github.com/tradiuz "6 total commits to the home-assistant organization:
+6 commits to home-assistant.io
")
- [Patrick Aikens (@duckpuppy)](https://github.com/duckpuppy "3 total commits to the home-assistant organization:
3 commits to home-assistant.io
@@ -6992,8 +7189,8 @@ This page contains a list of people who have contributed in one way or another t
- [Paxy (@Paxy)](https://github.com/Paxy "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
-- [pbalogh77 (@pbalogh77)](https://github.com/pbalogh77 "14 total commits to the home-assistant organization:
-12 commits to home-assistant
+- [pbalogh77 (@pbalogh77)](https://github.com/pbalogh77 "15 total commits to the home-assistant organization:
+13 commits to home-assistant
2 commits to home-assistant.io
")
- [pdanilew (@pdanilew)](https://github.com/pdanilew "1 total commits to the home-assistant organization:
@@ -7030,11 +7227,14 @@ This page contains a list of people who have contributed in one way or another t
- [Petar Petrov (@MindFreeze)](https://github.com/MindFreeze "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
")
+- [Pete LePage (@petele)](https://github.com/petele "3 total commits to the home-assistant organization:
+3 commits to pyharmony
+")
- [Pete Peterson (@petey)](https://github.com/petey "1 total commits to the home-assistant organization:
1 commit to home-assistant-polymer
")
-- [PeteBa (@PeteBa)](https://github.com/PeteBa "11 total commits to the home-assistant organization:
-5 commits to home-assistant
+- [PeteBa (@PeteBa)](https://github.com/PeteBa "12 total commits to the home-assistant organization:
+6 commits to home-assistant
4 commits to home-assistant-polymer
2 commits to home-assistant.io
")
@@ -7237,6 +7437,9 @@ This page contains a list of people who have contributed in one way or another t
- [pixelasticity (@pixelasticity)](https://github.com/pixelasticity "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
+- [pjv (@pjv)](https://github.com/pjv "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [pkonnekermetametrics (@pkonnekermetametrics)](https://github.com/pkonnekermetametrics "5 total commits to the home-assistant organization:
5 commits to warrant
")
@@ -7290,9 +7493,16 @@ This page contains a list of people who have contributed in one way or another t
- [PuckStar (@PuckStar)](https://github.com/PuckStar "7 total commits to the home-assistant organization:
7 commits to home-assistant.io
")
+- [Purplecarrot (@purplecarrot)](https://github.com/purplecarrot "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [pyitphyoaung (@pyitphyoaung)](https://github.com/pyitphyoaung "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
")
+- [Pär Svanström (@psvanstrom)](https://github.com/psvanstrom "2 total commits to the home-assistant organization:
+1 commit to home-assistant
+1 commit to home-assistant.io
+")
- [qinghuangchan (@qinghuangchan)](https://github.com/qinghuangchan "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
@@ -7308,9 +7518,9 @@ This page contains a list of people who have contributed in one way or another t
- [Questler (@Questler)](https://github.com/Questler "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [quthla (@quthla)](https://github.com/quthla "16 total commits to the home-assistant organization:
+- [quthla (@quthla)](https://github.com/quthla "17 total commits to the home-assistant organization:
+6 commits to home-assistant-polymer
6 commits to home-assistant
-5 commits to home-assistant-polymer
4 commits to home-assistant-iOS
1 commit to home-assistant.io
")
@@ -7321,8 +7531,8 @@ This page contains a list of people who have contributed in one way or another t
1 commit to home-assistant
1 commit to home-assistant.io
")
-- [R Huish (@genestealer)](https://github.com/genestealer "4 total commits to the home-assistant organization:
-4 commits to home-assistant.io
+- [R Huish (@genestealer)](https://github.com/genestealer "5 total commits to the home-assistant organization:
+5 commits to home-assistant.io
")
- [r4nd0mbr1ck (@r4nd0mbr1ck)](https://github.com/r4nd0mbr1ck "3 total commits to the home-assistant organization:
2 commits to home-assistant.io
@@ -7371,8 +7581,8 @@ This page contains a list of people who have contributed in one way or another t
1 commit to home-assistant
1 commit to home-assistant.io
")
-- [Ravi K (@shreram)](https://github.com/shreram "1 total commits to the home-assistant organization:
-1 commit to home-assistant.io
+- [Ravi K (@shreram)](https://github.com/shreram "2 total commits to the home-assistant organization:
+2 commits to home-assistant.io
")
- [Ray (@raymck)](https://github.com/raymck "2 total commits to the home-assistant organization:
2 commits to open-zwave
@@ -7430,8 +7640,8 @@ This page contains a list of people who have contributed in one way or another t
3 commits to home-assistant
1 commit to home-assistant.io
")
-- [Rene Nulsch (@ReneNulschDE)](https://github.com/ReneNulschDE "23 total commits to the home-assistant organization:
-15 commits to home-assistant
+- [Rene Nulsch (@ReneNulschDE)](https://github.com/ReneNulschDE "24 total commits to the home-assistant organization:
+16 commits to home-assistant
8 commits to home-assistant.io
")
- [Rene Tode (@ReneTode)](https://github.com/ReneTode "55 total commits to the home-assistant organization:
@@ -7444,6 +7654,9 @@ This page contains a list of people who have contributed in one way or another t
- [René Kliment (@renekliment)](https://github.com/renekliment "2 total commits to the home-assistant organization:
2 commits to home-assistant
")
+- [René\-Marc Simard (@renemarc)](https://github.com/renemarc "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [Rev Michael Greb (@mikegrb)](https://github.com/mikegrb "3 total commits to the home-assistant organization:
3 commits to home-assistant.io
")
@@ -7500,6 +7713,9 @@ This page contains a list of people who have contributed in one way or another t
- [Rick (@rcuddy)](https://github.com/rcuddy "1 total commits to the home-assistant organization:
1 commit to pi-gen
")
+- [Rick Rubino (@rrubin0)](https://github.com/rrubin0 "4 total commits to the home-assistant organization:
+4 commits to home-assistant.io
+")
- [Rick Sharp (@ricksharp)](https://github.com/ricksharp "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
@@ -7543,9 +7759,10 @@ This page contains a list of people who have contributed in one way or another t
- [Rob Slifka (@rslifka)](https://github.com/rslifka "5 total commits to the home-assistant organization:
5 commits to home-assistant.io
")
-- [Robbert Müller (@mjrider)](https://github.com/mjrider "6 total commits to the home-assistant organization:
-5 commits to hassio-cli
-1 commit to home-assistant.io
+- [Robbert Müller (@mjrider)](https://github.com/mjrider "10 total commits to the home-assistant organization:
+7 commits to hassio-cli
+2 commits to home-assistant.io
+1 commit to home-assistant
")
- [Robbie Page (@rorpage)](https://github.com/rorpage "3 total commits to the home-assistant organization:
3 commits to hassbian-scripts
@@ -7565,28 +7782,28 @@ This page contains a list of people who have contributed in one way or another t
7 commits to dehydrated
6 commits to netdisco
5 commits to organization-internal
-3 commits to home-assistant-js-websocket
-3 commits to home-assistant-cli
-3 commits to hassbot
-3 commits to scenegen
-3 commits to home-assistant-js
3 commits to hadashboard
-3 commits to appdaemon
+3 commits to home-assistant-cli
+3 commits to scenegen
+3 commits to hassbot
+3 commits to home-assistant-js-websocket
3 commits to organization
+3 commits to appdaemon
+3 commits to home-assistant-js
3 commits to open-zwave
+2 commits to LabelBot
2 commits to lambda-home-assistant-github
-2 commits to micropython-home-assistant
+2 commits to fabric-home-assistant
2 commits to home-assistant-notebooks
2 commits to home-assistant-assets
-2 commits to LabelBot
-2 commits to fabric-home-assistant
+2 commits to micropython-home-assistant
")
- [Robby Grossman (@freerobby)](https://github.com/freerobby "3 total commits to the home-assistant organization:
2 commits to home-assistant
1 commit to home-assistant.io
")
-- [Robert (@metbril)](https://github.com/metbril "8 total commits to the home-assistant organization:
-8 commits to home-assistant.io
+- [Robert (@metbril)](https://github.com/metbril "9 total commits to the home-assistant organization:
+9 commits to home-assistant.io
")
- [Robert (@rbrtio)](https://github.com/rbrtio "2 total commits to the home-assistant organization:
2 commits to open-zwave
@@ -7612,11 +7829,12 @@ This page contains a list of people who have contributed in one way or another t
1 commit to appdaemon
1 commit to hassos
")
-- [Robert Schütz (@dotlambda)](https://github.com/dotlambda "6 total commits to the home-assistant organization:
-2 commits to home-assistant-cli
+- [Robert Schütz (@dotlambda)](https://github.com/dotlambda "8 total commits to the home-assistant organization:
+3 commits to home-assistant-cli
2 commits to netdisco
1 commit to appdaemon
1 commit to home-assistant
+1 commit to home-assistant.io
")
- [Robert Svensson (@Kane610)](https://github.com/Kane610 "96 total commits to the home-assistant organization:
62 commits to home-assistant
@@ -7628,11 +7846,12 @@ This page contains a list of people who have contributed in one way or another t
- [robhuls (@robhuls)](https://github.com/robhuls "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
-- [Robin (@robmarkcole)](https://github.com/robmarkcole "71 total commits to the home-assistant organization:
+- [Robin (@robmarkcole)](https://github.com/robmarkcole "74 total commits to the home-assistant organization:
48 commits to home-assistant.io
-19 commits to home-assistant
+20 commits to home-assistant
+2 commits to home-assistant-notebooks
2 commits to home-assistant-assets
-1 commit to home-assistant-notebooks
+1 commit to data.home-assistant
1 commit to hassos
")
- [Robin (@kloknibor)](https://github.com/kloknibor "1 total commits to the home-assistant organization:
@@ -7655,9 +7874,9 @@ This page contains a list of people who have contributed in one way or another t
6 commits to home-assistant.io
3 commits to open-zwave
")
-- [Rohan Kapoor (@rohankapoorcom)](https://github.com/rohankapoorcom "38 total commits to the home-assistant organization:
-27 commits to home-assistant
-11 commits to home-assistant.io
+- [Rohan Kapoor (@rohankapoorcom)](https://github.com/rohankapoorcom "42 total commits to the home-assistant organization:
+30 commits to home-assistant
+12 commits to home-assistant.io
")
- [Roi Dayan (@roidayan)](https://github.com/roidayan "7 total commits to the home-assistant organization:
6 commits to home-assistant
@@ -7730,12 +7949,12 @@ This page contains a list of people who have contributed in one way or another t
- [rpr69 (@rpr69)](https://github.com/rpr69 "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
")
-- [rrubin0 (@rrubin0)](https://github.com/rrubin0 "4 total commits to the home-assistant organization:
-4 commits to home-assistant.io
-")
- [Ruben (@rubenvandeven)](https://github.com/rubenvandeven "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
+- [Ruben J\. Jongejan (@rvben)](https://github.com/rvben "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [RubenKelevra (@RubenKelevra)](https://github.com/RubenKelevra "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
@@ -7926,8 +8145,12 @@ This page contains a list of people who have contributed in one way or another t
- [Sander de Leeuw (@sdeleeuw)](https://github.com/sdeleeuw "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
-- [sander76 (@sander76)](https://github.com/sander76 "44 total commits to the home-assistant organization:
-40 commits to home-assistant
+- [Sander Geerts (@Devqon)](https://github.com/Devqon "2 total commits to the home-assistant organization:
+1 commit to home-assistant
+1 commit to home-assistant.io
+")
+- [sander76 (@sander76)](https://github.com/sander76 "46 total commits to the home-assistant organization:
+42 commits to home-assistant
4 commits to home-assistant.io
")
- [Sangwon Kim (@pueue)](https://github.com/pueue "1 total commits to the home-assistant organization:
@@ -8023,9 +8246,9 @@ This page contains a list of people who have contributed in one way or another t
- [Sean (@mitchese)](https://github.com/mitchese "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
-- [Sean Dague (@sdague)](https://github.com/sdague "81 total commits to the home-assistant organization:
-56 commits to home-assistant
-16 commits to home-assistant.io
+- [Sean Dague (@sdague)](https://github.com/sdague "85 total commits to the home-assistant organization:
+58 commits to home-assistant
+18 commits to home-assistant.io
5 commits to home-assistant-polymer
3 commits to netdisco
1 commit to home-assistant-js
@@ -8035,6 +8258,9 @@ This page contains a list of people who have contributed in one way or another t
4 commits to home-assistant.io
3 commits to hassio-build
")
+- [Sean Hoyt (@deadman96385)](https://github.com/deadman96385 "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [Sean Kerr (@seankerr)](https://github.com/seankerr "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
@@ -8063,9 +8289,9 @@ This page contains a list of people who have contributed in one way or another t
- [Sebastian (@sgso)](https://github.com/sgso "3 total commits to the home-assistant organization:
3 commits to libcoap
")
-- [Sebastian Muszynski (@syssi)](https://github.com/syssi "163 total commits to the home-assistant organization:
-105 commits to home-assistant
-53 commits to home-assistant.io
+- [Sebastian Muszynski (@syssi)](https://github.com/syssi "166 total commits to the home-assistant organization:
+107 commits to home-assistant
+54 commits to home-assistant.io
3 commits to netdisco
2 commits to home-assistant-polymer
")
@@ -8166,15 +8392,15 @@ This page contains a list of people who have contributed in one way or another t
")
- [Simon Holzmayer (@sholzmayer)](https://github.com/sholzmayer "5 total commits to the home-assistant organization:
2 commits to hassos
-1 commit to hassio
1 commit to developers.home-assistant
1 commit to home-assistant-polymer
+1 commit to hassio
")
- [Simon Hörrle (@CM000n)](https://github.com/CM000n "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
-- [Simon Nørager Sørensen (@simse)](https://github.com/simse "3 total commits to the home-assistant organization:
-2 commits to home-assistant
+- [Simon Nørager Sørensen (@simse)](https://github.com/simse "4 total commits to the home-assistant organization:
+3 commits to home-assistant
1 commit to home-assistant.io
")
- [Simon Szustkowski (@simonszu)](https://github.com/simonszu "7 total commits to the home-assistant organization:
@@ -8241,13 +8467,17 @@ This page contains a list of people who have contributed in one way or another t
- [snizzleorg (@snizzleorg)](https://github.com/snizzleorg "5 total commits to the home-assistant organization:
5 commits to hadashboard
")
-- [SNoof85 (@SNoof85)](https://github.com/SNoof85 "1 total commits to the home-assistant organization:
-1 commit to home-assistant
-")
-- [Soós Péter (@soosp)](https://github.com/soosp "3 total commits to the home-assistant organization:
+- [SNoof85 (@SNoof85)](https://github.com/SNoof85 "3 total commits to the home-assistant organization:
2 commits to home-assistant
1 commit to home-assistant.io
")
+- [sorinyo2004 (@sorinyo2004)](https://github.com/sorinyo2004 "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
+- [Soós Péter (@soosp)](https://github.com/soosp "4 total commits to the home-assistant organization:
+2 commits to home-assistant
+2 commits to home-assistant.io
+")
- [spacemanspiff2007 (@spacemanspiff2007)](https://github.com/spacemanspiff2007 "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
@@ -8347,6 +8577,9 @@ This page contains a list of people who have contributed in one way or another t
8 commits to home-assistant
3 commits to home-assistant.io
")
+- [stephanfevrier (@stephanfevrier)](https://github.com/stephanfevrier "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [Stephen Edgar (@ntwb)](https://github.com/ntwb "2 total commits to the home-assistant organization:
1 commit to fabric-home-assistant
1 commit to home-assistant.io
@@ -8387,12 +8620,18 @@ This page contains a list of people who have contributed in one way or another t
2 commits to home-assistant.io
1 commit to home-assistant
")
+- [Steve Scott (@thewishy)](https://github.com/thewishy "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [Steve Simms (@ssimms)](https://github.com/ssimms "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
- [Steve Thompson (@stetho)](https://github.com/stetho "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
+- [Steve9F (@Steve9F)](https://github.com/Steve9F "1 total commits to the home-assistant organization:
+1 commit to home-assistant
+")
- [Steven Adams (@navstev0)](https://github.com/navstev0 "2 total commits to the home-assistant organization:
2 commits to open-zwave
")
@@ -8404,8 +8643,8 @@ This page contains a list of people who have contributed in one way or another t
2 commits to home-assistant
1 commit to home-assistant.io
")
-- [Steven Looman (@StevenLooman)](https://github.com/StevenLooman "51 total commits to the home-assistant organization:
-46 commits to home-assistant
+- [Steven Looman (@StevenLooman)](https://github.com/StevenLooman "53 total commits to the home-assistant organization:
+48 commits to home-assistant
3 commits to netdisco
2 commits to home-assistant.io
")
@@ -8420,6 +8659,9 @@ This page contains a list of people who have contributed in one way or another t
5 commits to home-assistant.io
4 commits to home-assistant
")
+- [Stuart (@schford)](https://github.com/schford "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [Stuart McCroden (@McCroden)](https://github.com/McCroden "5 total commits to the home-assistant organization:
5 commits to home-assistant.io
")
@@ -8482,8 +8724,8 @@ This page contains a list of people who have contributed in one way or another t
6 commits to home-assistant.io
2 commits to home-assistant-cli
2 commits to home-assistant
-1 commit to developers.home-assistant
1 commit to hassio-build
+1 commit to developers.home-assistant
")
- [szaroubi (@szaroubi)](https://github.com/szaroubi "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
@@ -8514,6 +8756,9 @@ This page contains a list of people who have contributed in one way or another t
8 commits to home-assistant
1 commit to home-assistant.io
")
+- [Tal Salmona (@talsalmona)](https://github.com/talsalmona "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [tango\-foxtrot (@tango-foxtrot)](https://github.com/tango-foxtrot "1 total commits to the home-assistant organization:
1 commit to netdisco
")
@@ -8550,6 +8795,10 @@ This page contains a list of people who have contributed in one way or another t
- [Ted Kulp (@tedkulp)](https://github.com/tedkulp "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
+- [Ted Sluis (@tedsluis)](https://github.com/tedsluis "2 total commits to the home-assistant organization:
+1 commit to home-assistant
+1 commit to home-assistant.io
+")
- [tedstriker (@tedstriker)](https://github.com/tedstriker "4 total commits to the home-assistant organization:
3 commits to home-assistant.io
1 commit to home-assistant
@@ -8662,10 +8911,10 @@ This page contains a list of people who have contributed in one way or another t
13 commits to home-assistant.io
1 commit to home-assistant-polymer
")
-- [Thibault Maekelbergh (@thibmaek)](https://github.com/thibmaek "5 total commits to the home-assistant organization:
-3 commits to home-assistant.io
+- [Thibault Maekelbergh (@thibmaek)](https://github.com/thibmaek "7 total commits to the home-assistant organization:
+4 commits to home-assistant.io
+2 commits to home-assistant
1 commit to hassio-addons
-1 commit to home-assistant
")
- [thinkelastic (@thinkelastic)](https://github.com/thinkelastic "1 total commits to the home-assistant organization:
1 commit to open-zwave
@@ -8673,13 +8922,16 @@ This page contains a list of people who have contributed in one way or another t
- [ThinkPadNL (@ThinkPadNL)](https://github.com/ThinkPadNL "4 total commits to the home-assistant organization:
4 commits to home-assistant.io
")
-- [Thom Troy (@ttroy50)](https://github.com/ttroy50 "15 total commits to the home-assistant organization:
+- [Thom Troy (@ttroy50)](https://github.com/ttroy50 "16 total commits to the home-assistant organization:
8 commits to home-assistant.io
-7 commits to home-assistant
+8 commits to home-assistant
")
- [Thomas (@ktpx)](https://github.com/ktpx "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
")
+- [Thomas (@a-tom-s)](https://github.com/a-tom-s "1 total commits to the home-assistant organization:
+1 commit to home-assistant.io
+")
- [Thomas Delaet (@thomasdelaet)](https://github.com/thomasdelaet "5 total commits to the home-assistant organization:
3 commits to home-assistant
2 commits to home-assistant.io
@@ -8797,13 +9049,17 @@ This page contains a list of people who have contributed in one way or another t
- [Tim Wilde (@twilde)](https://github.com/twilde "1 total commits to the home-assistant organization:
1 commit to home-assistant
")
+- [timkoers (@timkoers)](https://github.com/timkoers "1 total commits to the home-assistant organization:
+1 commit to home-assistant
+")
- [Timm Schäuble (@tymm)](https://github.com/tymm "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Timmo (@timmo001)](https://github.com/timmo001 "11 total commits to the home-assistant organization:
+- [Timmo (@timmo001)](https://github.com/timmo001 "12 total commits to the home-assistant organization:
4 commits to home-assistant-polymer
4 commits to home-assistant
3 commits to home-assistant.io
+1 commit to data.home-assistant
")
- [Timo (@timotk)](https://github.com/timotk "1 total commits to the home-assistant organization:
1 commit to netdisco
@@ -8841,8 +9097,9 @@ This page contains a list of people who have contributed in one way or another t
- [tmartinez (@tmartinez69009)](https://github.com/tmartinez69009 "6 total commits to the home-assistant organization:
6 commits to open-zwave
")
-- [tmd224 (@tmd224)](https://github.com/tmd224 "1 total commits to the home-assistant organization:
-1 commit to home-assistant.io
+- [tmd224 (@tmd224)](https://github.com/tmd224 "3 total commits to the home-assistant organization:
+2 commits to home-assistant.io
+1 commit to home-assistant
")
- [Toast (@swetoast)](https://github.com/swetoast "2 total commits to the home-assistant organization:
2 commits to hassbian-scripts
@@ -8857,10 +9114,11 @@ This page contains a list of people who have contributed in one way or another t
- [Tobias Nordahl Kristensen (@exetico)](https://github.com/exetico "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Tobias Sauerwein (@cgtobi)](https://github.com/cgtobi "56 total commits to the home-assistant organization:
+- [Tobias Sauerwein (@cgtobi)](https://github.com/cgtobi "57 total commits to the home-assistant organization:
28 commits to home-assistant.io
27 commits to home-assistant
1 commit to appdaemon
+1 commit to data.home-assistant
")
- [Tobie Booth (@tobiebooth)](https://github.com/tobiebooth "6 total commits to the home-assistant organization:
4 commits to home-assistant
@@ -8873,11 +9131,11 @@ This page contains a list of people who have contributed in one way or another t
- [Toby Matejovsky (@tobym)](https://github.com/tobym "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [Tod Schmidt (@tschmidty69)](https://github.com/tschmidty69 "61 total commits to the home-assistant organization:
+- [Tod Schmidt (@tschmidty69)](https://github.com/tschmidty69 "62 total commits to the home-assistant organization:
22 commits to home-assistant
21 commits to appdaemon
10 commits to home-assistant.io
-6 commits to hassio-addons
+7 commits to hassio-addons
2 commits to hassio
")
- [Todd McNeal (@tmcneal)](https://github.com/tmcneal "2 total commits to the home-assistant organization:
@@ -8904,12 +9162,12 @@ This page contains a list of people who have contributed in one way or another t
6 commits to home-assistant-polymer
2 commits to netdisco
")
-- [Tom French (@Solije)](https://github.com/Solije "4 total commits to the home-assistant organization:
+- [Tom French (@Solije)](https://github.com/Solije "5 total commits to the home-assistant organization:
3 commits to home-assistant.io
-1 commit to home-assistant
+2 commits to home-assistant
")
-- [Tom Harris (@teharris1)](https://github.com/teharris1 "30 total commits to the home-assistant organization:
-20 commits to home-assistant
+- [Tom Harris (@teharris1)](https://github.com/teharris1 "31 total commits to the home-assistant organization:
+21 commits to home-assistant
10 commits to home-assistant.io
")
- [Tom Hoover (@tomhoover)](https://github.com/tomhoover "3 total commits to the home-assistant organization:
@@ -8965,8 +9223,11 @@ This page contains a list of people who have contributed in one way or another t
3 commits to home-assistant
1 commit to home-assistant.io
")
-- [tomlut (@tomlut)](https://github.com/tomlut "2 total commits to the home-assistant organization:
-2 commits to home-assistant.io
+- [tomlut (@tomlut)](https://github.com/tomlut "3 total commits to the home-assistant organization:
+3 commits to home-assistant.io
+")
+- [Tommi Pääkkö (@Glenf)](https://github.com/Glenf "1 total commits to the home-assistant organization:
+1 commit to developers.home-assistant
")
- [TomMini (@TomMini)](https://github.com/TomMini "1 total commits to the home-assistant organization:
1 commit to home-assistant-polymer
@@ -9103,14 +9364,15 @@ This page contains a list of people who have contributed in one way or another t
")
- [ubnt\-marc\-khouri (@ubnt-marc-khouri)](https://github.com/ubnt-marc-khouri "6 total commits to the home-assistant organization:
2 commits to home-assistant-polymer
-1 commit to developers.home-assistant
1 commit to hassio-build
+1 commit to developers.home-assistant
1 commit to home-assistant
1 commit to home-assistant.io
")
-- [uchagani (@uchagani)](https://github.com/uchagani "10 total commits to the home-assistant organization:
-9 commits to home-assistant
+- [uchagani (@uchagani)](https://github.com/uchagani "13 total commits to the home-assistant organization:
+11 commits to home-assistant
1 commit to home-assistant-polymer
+1 commit to home-assistant.io
")
- [Ugo Viti (@ugoviti)](https://github.com/ugoviti "24 total commits to the home-assistant organization:
24 commits to open-zwave
@@ -9185,8 +9447,11 @@ This page contains a list of people who have contributed in one way or another t
- [VdkaShaker (@VdkaShaker)](https://github.com/VdkaShaker "1 total commits to the home-assistant organization:
1 commit to home-assistant.io
")
-- [VDRainer (@VDRainer)](https://github.com/VDRainer "2 total commits to the home-assistant organization:
-2 commits to home-assistant.io
+- [VDRainer (@VDRainer)](https://github.com/VDRainer "3 total commits to the home-assistant organization:
+3 commits to home-assistant.io
+")
+- [Velik123 (@Velik123)](https://github.com/Velik123 "1 total commits to the home-assistant organization:
+1 commit to pyharmony
")
- [vetegrodd (@vetegrodd)](https://github.com/vetegrodd "1 total commits to the home-assistant organization:
1 commit to home-assistant
@@ -9219,16 +9484,16 @@ This page contains a list of people who have contributed in one way or another t
3 commits to home-assistant
1 commit to home-assistant.io
")
-- [Ville Skyttä (@scop)](https://github.com/scop "150 total commits to the home-assistant organization:
-98 commits to home-assistant
+- [Ville Skyttä (@scop)](https://github.com/scop "157 total commits to the home-assistant organization:
+104 commits to home-assistant
20 commits to home-assistant.io
-12 commits to netdisco
-5 commits to hassio-addons
+13 commits to netdisco
5 commits to hassio-cli
+5 commits to hassio-addons
4 commits to developers.home-assistant
2 commits to home-assistant-polymer
-2 commits to hassio
2 commits to hassio-build
+2 commits to hassio
")
- [vincemic (@vincemic)](https://github.com/vincemic "3 total commits to the home-assistant organization:
3 commits to open-zwave
@@ -9361,6 +9626,10 @@ This page contains a list of people who have contributed in one way or another t
4 commits to home-assistant.io
3 commits to home-assistant
")
+- [William Comartin (@wcomartin)](https://github.com/wcomartin "2 total commits to the home-assistant organization:
+1 commit to home-assistant
+1 commit to home-assistant.io
+")
- [William Johansson (@radhus)](https://github.com/radhus "2 total commits to the home-assistant organization:
1 commit to hassio
1 commit to home-assistant.io
@@ -9382,8 +9651,8 @@ This page contains a list of people who have contributed in one way or another t
- [wmn79 (@wmn79)](https://github.com/wmn79 "1 total commits to the home-assistant organization:
1 commit to open-zwave
")
-- [WofWca (@WofWca)](https://github.com/WofWca "9 total commits to the home-assistant organization:
-6 commits to home-assistant.io
+- [WofWca (@WofWca)](https://github.com/WofWca "10 total commits to the home-assistant organization:
+7 commits to home-assistant.io
3 commits to developers.home-assistant
")
- [wogri (@wogri)](https://github.com/wogri "1 total commits to the home-assistant organization:
@@ -9455,6 +9724,9 @@ This page contains a list of people who have contributed in one way or another t
1 commit to home-assistant
1 commit to home-assistant.io
")
+- [Xus Badia (@XusBadia)](https://github.com/XusBadia "1 total commits to the home-assistant organization:
+1 commit to home-assistant-polymer
+")
- [yankees9920 (@wagnerbenh)](https://github.com/wagnerbenh "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
")
@@ -9466,8 +9738,8 @@ This page contains a list of people who have contributed in one way or another t
1 commit to home-assistant.io
")
- [Yannick POLLART (@ypollart)](https://github.com/ypollart "8 total commits to the home-assistant organization:
-4 commits to home-assistant.io
4 commits to home-assistant
+4 commits to home-assistant.io
")
- [Yannick Simard (@TheRaven)](https://github.com/TheRaven "2 total commits to the home-assistant organization:
2 commits to home-assistant.io
@@ -9526,9 +9798,9 @@ This page contains a list of people who have contributed in one way or another t
- [Zachary Priddy (@zpriddy)](https://github.com/zpriddy "1 total commits to the home-assistant organization:
1 commit to open-zwave
")
-- [Zack Arnett (@zsarnett)](https://github.com/zsarnett "117 total commits to the home-assistant organization:
-89 commits to home-assistant-polymer
-27 commits to home-assistant.io
+- [Zack Arnett (@zsarnett)](https://github.com/zsarnett "123 total commits to the home-assistant organization:
+93 commits to home-assistant-polymer
+29 commits to home-assistant.io
1 commit to developers.home-assistant
")
- [zajnic (@zajnic)](https://github.com/zajnic "1 total commits to the home-assistant organization:
@@ -9600,4 +9872,4 @@ This page contains a list of people who have contributed in one way or another t
This page is irregularly updated using the [`hass-release` tool](https://github.com/home-assistant/hass-release). If you think that you are missing, please let us know.
-This page was last updated Thursday, December 13 2018, 11:44:16 UTC.
+This page was last updated Friday, January 04 2019, 18:48:01 UTC.
From 6708b658a0accb9abf643e826e8e495f8b47de18 Mon Sep 17 00:00:00 2001
From: Antoni K
Date: Mon, 7 Jan 2019 05:15:44 +0800
Subject: [PATCH 15/47] Capitalise I in Internet (#8064)
---
source/_addons/samba.markdown | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/source/_addons/samba.markdown b/source/_addons/samba.markdown
index f28ac32f215..ea917017664 100644
--- a/source/_addons/samba.markdown
+++ b/source/_addons/samba.markdown
@@ -13,7 +13,7 @@ featured: true
This add-on allows you to set up a [Samba](https://samba.org/) server to access Hass.io folders using Windows network shares.
-Be careful when setting up port forwarding for remote access. If you don't restrict access by setting a username and strong password, your configuration could be exposed to the entire internet!
+Be careful when setting up port forwarding for remote access. If you don't restrict access by setting a username and strong password, your configuration could be exposed to the entire Internet!
```json
From 19315937dfaa5261da468cd940d5897ad9c542f1 Mon Sep 17 00:00:00 2001
From: Martin Gafner
Date: Sun, 6 Jan 2019 22:16:57 +0100
Subject: [PATCH 16/47] Give a hint to the Persistent Notification Component
(#8053)
Again and again i was looking through this page and didn't find how to send persistent notifications to the Home Assistant Web Interface. That's why I propose to add that sentence.
---
source/_components/notify.markdown | 2 ++
1 file changed, 2 insertions(+)
diff --git a/source/_components/notify.markdown b/source/_components/notify.markdown
index fdf8980710d..b152139954b 100644
--- a/source/_components/notify.markdown
+++ b/source/_components/notify.markdown
@@ -11,6 +11,8 @@ footer: true
The `notify` component makes it possible to send notifications to a wide variety of platforms. Please check the sidebar for a full list of platforms that are supported.
+If you want to send notifications to the Home Assistant Web Interface you may use the [Persistent Notification Component](/components/persistent_notification/).
+
## {% linkable_title Configuration %}
```yaml
From d066b6945136f3565672438626f948e06b4ca08e Mon Sep 17 00:00:00 2001
From: pmmcmullen94
Date: Sun, 6 Jan 2019 13:17:30 -0800
Subject: [PATCH 17/47] Fixed broken link (#8051)
Virtual env link was broken
---
source/_docs/installation/windows.markdown | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/source/_docs/installation/windows.markdown b/source/_docs/installation/windows.markdown
index 3efe0581137..4ad45162efd 100644
--- a/source/_docs/installation/windows.markdown
+++ b/source/_docs/installation/windows.markdown
@@ -15,7 +15,7 @@ To run Home Assistant on Microsoft Windows installation you need to install Pyth
There may be alpha or beta releases of Python listed on that download page (marked by the letters `a` or `b` in the version number. Do not use these versions.
-If you use your machine for something other than Home Assistant, you should install it in a [Python virtual environment](#Installing_in_a_Python_virtual_environment).
+If you use your machine for something other than Home Assistant, you should install it in a [Python virtual environment](#installing-in-a-python-virtual-environment).
Start
From beba4f20df9765289fe7108aaab25779c83ee4b8 Mon Sep 17 00:00:00 2001
From: rgruebel
Date: Sun, 6 Jan 2019 22:19:59 +0100
Subject: [PATCH 18/47] Example fixed to be compatible with the latest ha
version (#8066)
---
source/_cookbook/python_component_mqtt_basic.markdown | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/source/_cookbook/python_component_mqtt_basic.markdown b/source/_cookbook/python_component_mqtt_basic.markdown
index f038f21969e..0d208a38736 100644
--- a/source/_cookbook/python_component_mqtt_basic.markdown
+++ b/source/_cookbook/python_component_mqtt_basic.markdown
@@ -34,8 +34,8 @@ DEFAULT_TOPIC = 'home-assistant/hello_mqtt'
def setup(hass, config):
"""Set up the Hello MQTT component."""
- mqtt = loader.get_component('mqtt')
- topic = config[DOMAIN].get('topic', DEFAULT_TOPIC)
+ mqtt = hass.components.mqtt
+ topic = config[DOMAIN].get(CONF_TOPIC, DEFAULT_TOPIC)
entity_id = 'hello_mqtt.last_message'
# Listener to be called when we receive a message.
@@ -44,7 +44,7 @@ def setup(hass, config):
hass.states.set(entity_id, payload)
# Subscribe our listener to a topic.
- mqtt.subscribe(hass, topic, message_received)
+ mqtt.subscribe(topic, message_received)
# Set the initial state.
hass.states.set(entity_id, 'No messages')
@@ -52,7 +52,7 @@ def setup(hass, config):
# Service to publish a message on MQTT.
def set_state_service(call):
"""Service to send a message."""
- mqtt.publish(hass, topic, call.data.get('new_state'))
+ mqtt.publish(topic, call.data.get('new_state'))
# Register our service with Home Assistant.
hass.services.register(DOMAIN, 'set_state', set_state_service)
From 143d1c820f97488b2b723aa5ef37b87c68039440 Mon Sep 17 00:00:00 2001
From: georgroehl <33599312+georgroehl@users.noreply.github.com>
Date: Sun, 6 Jan 2019 22:26:18 +0100
Subject: [PATCH 19/47] more detailed/changed Warning and Note (#8068)
It's not possible to run the sudo command inside the venv. I just tested the new, changed way (only run "pip3 install lxml" in venv) and it works.
Also the note regarding the password wasn't clear, so i changed "it" to "the password"
---
source/_components/device_tracker.fritz.markdown | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/source/_components/device_tracker.fritz.markdown b/source/_components/device_tracker.fritz.markdown
index f478fdea748..4bb281c39fb 100644
--- a/source/_components/device_tracker.fritz.markdown
+++ b/source/_components/device_tracker.fritz.markdown
@@ -18,8 +18,8 @@ The `fritz` platform offers presence detection by looking at connected devices t
## {% linkable_title Setup %}
-It might be necessary to install additional packages: $ sudo apt-get install python3-lxml
-If you installed Home Assistant in a virtualenv, run the following commands inside it: $ sudo apt-get install libxslt-dev libxml2-dev zlib1g-dev; pip3 install lxml
; be patient this will take a while.
+It might be necessary to install additional packages: $ sudo apt-get install python3-lxml libxslt-dev libxml2-dev zlib1g-dev
+If you installed Home Assistant in a virtualenv, run the following commands inside it: $ pip3 install lxml
; be patient this will take a while.