From bcd83fabf906979ffe4c0d23766e89b67aee99e3 Mon Sep 17 00:00:00 2001 From: Tom Brien Date: Wed, 5 Aug 2020 22:24:03 +0100 Subject: [PATCH 01/34] Companion apps update blog post (#14167) * First stab on iOS side * Merge Android and update iOS * Android updates Co-authored-by: Daniel Shokouhi --- ...20-08-05-mobile-apps-new-features.markdown | 141 ++++++++++++++++++ .../Companion-new-upcoming.png | Bin 0 -> 53898 bytes .../biometric_unlock.png | Bin 0 -> 110311 bytes .../geocoded_sensor.png | Bin 0 -> 45171 bytes .../ios-notification-examples.png | Bin 0 -> 935621 bytes 5 files changed, 141 insertions(+) create mode 100644 source/_posts/2020-08-05-mobile-apps-new-features.markdown create mode 100644 source/images/blog/2020-08-05-mobile-apps-new-features/Companion-new-upcoming.png create mode 100644 source/images/blog/2020-08-05-mobile-apps-new-features/biometric_unlock.png create mode 100644 source/images/blog/2020-08-05-mobile-apps-new-features/geocoded_sensor.png create mode 100644 source/images/blog/2020-08-05-mobile-apps-new-features/ios-notification-examples.png diff --git a/source/_posts/2020-08-05-mobile-apps-new-features.markdown b/source/_posts/2020-08-05-mobile-apps-new-features.markdown new file mode 100644 index 00000000000..b22d982728d --- /dev/null +++ b/source/_posts/2020-08-05-mobile-apps-new-features.markdown @@ -0,0 +1,141 @@ +--- +title: "Home Assistant Companion Apps: New and Upcoming Features" +description: "What's new and what's in the works with the companion apps" +date: 2020-08-05 00:00:00 +date_formatted: "August 5, 2020" +comments: false +author: Daniel Shokouhi & Tom Brien +author_twitter: tbrien88 +categories: Release-Notes +og_image: /images/blog/2020-08-05-mobile-apps-new-features/Companion-new-upcoming.png +--- + +Hi, it's been a while since we let you know about all the great things you can do with the Home Assistant Companion Apps for Android and iOS, so let's rectify that now as there are so many exciting updates. Before we get started on that though, iOS users should take a moment to read [this blog post](/blog/2020/07/28/ios-app-migration) which has some important information about a small change coming up. + +## A note on privacy + +Currently we use Google's Firebase notification service for sending notifications to your device and also for tracking crashes. We did this because of simplicity, due to how notifications work on iOS we can't use just any server to send notifications, in fact there is a pretty narrow choice. Using Firebase allowed use to provide notifications at no cost to you! However, many people were uncomfortable about this and would prefer an app that did not rely on Google's servers. Well we hear you and we are actively looking at moving to other providers. While we have not completed this work yet, we just wanted to let you know it is something that is being actively developed and hopefully we will have more news very soon. + +## Android minimal app + +On a related note, we are delighted to say we now offer a way to install a minimal version of the Android app that is completely free of any reliance on Google. This version of the app does not have location tracking or notifications. We hope that by providing this version of the app more developers will be excited about contributing to the app in general. For now, you can find the APKs in the [GitHub Actions](https://github.com/home-assistant/android/actions) page from each pull request. + +## What's New(ish) + +The short answer is lots! The Android and iOS apps are developed by separate teams so while the features are similar, they are not identical and do not follow a common road map. Android changes are up next, [click here to jump to the iOS update](#ios) + +### Android + +#### Notification Improvements + +Throughout the past few releases Android notifications were greatly improved with new features and fixes. + +Starting in 1.8.0 we enhanced our image notifications to allow for not only a relative path (i.e. storing in your [`www`](/integrations/http#hosting-files) folder) but you can also request a snapshot using the [Camera Proxy API](https://developers.home-assistant.io/docs/api/rest/#get-apicamera_proxycameraentity_id). All authentication is handled via the app so you don't need to worry about it. You can also use [click action](https://companion.home-assistant.io/docs/notifications/notifications-basic/#notification-click-actio) and [actionable notifications](https://companion.home-assistant.io/docs/notifications/actionable-notifications#building-automations-for-notification-actions) to navigate to a specific lovelace view. + +From 1.9.0 you can now create and remove [notification channels](https://companion.home-assistant.io/docs/notifications/notifications-basic#notification-channels) on the fly. This is helpful so you can create channels that can override your do not disturb settings, specifically for notifications like the alarm while notifications for your laundry can continue to let you be undisturbed. + +In 1.10.0 we further enhanced our notifications to allow for many new options. Users can now change the [LED Color](https://companion.home-assistant.io/docs/notifications/notifications-basic#notification-led-color), [vibration pattern](https://companion.home-assistant.io/docs/notifications/notifications-basic#notification-vibration-pattern) and [importance](https://companion.home-assistant.io/docs/notifications/notifications-basic#notification-channel-importance) of a message. These options can also be used with a channel to help set defaults to allow you to further distinguish between notifications. You can now [group](https://companion.home-assistant.io/docs/notifications/notifications-basic#thread-id-grouping-notifications) your notifications to help declutter the notification pull down. [Persistent notifications](https://companion.home-assistant.io/docs/notifications/notifications-basic#persistent-notification) were also introduced so you can't simply swipe away those important notifications, you can pair this with the [`sticky`](https://companion.home-assistant.io/docs/notifications/notifications-basic#sticky-notification) property so the notification does not disappear. The `message` now allows for [HTML formatting](https://companion.home-assistant.io/docs/notifications/notifications-basic#notification-message-html-formatting) so you can highlight the important parts. Users can also supply an [icon](https://companion.home-assistant.io/docs/notifications/notifications-basic#notification-icon) much like they can with an image. For the unimportant notifications you can set a [timeout](https://companion.home-assistant.io/docs/notifications/notifications-basic#notification-timeout) so after x amount of seconds the notification is automatically dismissed. + +```yaml +automation: + - alias: Alarm triggered + trigger: + platform: state + entity_id: alarm_control_panel.home + to: triggered + action: + service: notify.mobile_app_pixel_4_xl + data: + message: "Front alarm triggered" # some HTML formatting to highlight the alert + data: + channel: Alarm # creates a new channel called Alarm that you can manage from your device + importance: high # set the channel importance to high + ledColor: red # make the LED flash red for this notification + vibrationPattern: "100,30,100,30,100,30,200,30,200,30,200,30,100,30,100,30,100" # SOS vibration pattern + persistent: true # set to persistent + sticky: true # make sure it doesn't dismiss if selected + clickAction: /lovelace/alarm # navigate user to the lovelace alarm view + icon: /local/alarm.jpg # relative path to the icon + color: red # set the color of the notification to red + group: alarm # the group name to group together notifications + tag: alarm # tag is required in order to remove the persistent notification +``` + + +In the above automation example a new channel with the name `Alarm` will be created with a default setting for vibration, LED and importance. This notification will also be persistent and part of a group and tag along with an icon amongst other changes. + + +#### Sensors + +Starting with 1.8.0 we have introduced a new [Geocoded sensor](https://companion.home-assistant.io/docs/core/sensors#geocoded-location-sensor) that helps translate your GPS location to an actual street address. + +

+Screenshot of the Geocoded Sensor +Screenshot of the Geocoded Sensor. +

+ +The battery level sensor was split in 1.9.0 to include a [battery state sensor](https://companion.home-assistant.io/docs/core/sensors#battery-sensors) so you can see when your device is actively `charging`, `not_charging`, `discharging` and `full`. You can also distinguish whether its `wireless`, `ac` or `usb`. The state now updates immediately upon being plugged in and unplugged to allow for quicker automations. + + +#### Biometrics + +Biometrics were introduced in 1.9.0 to allow the user to lock down the app when they are not using it. Upon launching the app you will see a lockscreen like below requesting for either your fingerprint or face to unlock the app. You can set this feature up by visiting the App Configuration screen inside the app. + +

+Screenshot of Biometric Unlock +Screenshot of Biometric Unlock. +

+ + +#### Additional Improvements + +We have also been hard at working making improvements in other areas of the app: + +* [Widgets](https://companion.home-assistant.io/docs/core/android-widgets) were enhanced to allow you to select from a list of valid and available services along with the ability to add additional data fields that the service may require. +* In App Configuration the Home Network WiFi SSID option now allows the user to select multiple SSIDs. +* A Cookie Manager was added to our WebView that will allow you to save cookies from sites that you may use in the [webpage card](/lovelace/iframe/). +* More descriptive SSL error messages were added to help users resolve local issues they may encounter while setting up the app. +* Device ID is now sent with the event data for actionable notifications. + +### iOS + +Firstly, we should say a hello to Zac ([@zacwest](https://github.com/zacwest)) who has joined the iOS team and contributed a huge amount of code in the last couple of months. In fact, Zac has rewritten much of the underlying code of the app in that time, so while it may look much the same, behind the scenes it's almost a new app! Some features that are now in the iOS app are: + +#### Stability + +Making the app reliable and eliminating bugs was a big focus. You won’t have to pull-to-refresh as often, sensors update more reliably, and editing things like actions and notifications won’t accidentally delete them. + +Whether it is to turn on the lights when you get home at night, or send a someone a notification that you're leaving work and how long the journey should take, we know that this is what a lot of people use the app for the most and we also know the performance has not been 100 % and that changes in recent versions of iOS seem to have made this work. There have been a huge number of changes to work around these issues (unfortunately Apple's CoreLocation framework is something of a black box), we now sanity check the location data before sending it to Home Assistant, checking if the accuracy is acceptable or if an update from a minute ago has better accuracy. We also try and get a new update when accuracy is bad. While we still use significant location changes (such as changing cell tower) to wake the app up from the background, we now automatically discard the data they provide and attempt to get a higher accuracy GPS location. + +#### Empowering Notifications + +Notifications are some of the more powerful ways you can interact with the app, and they are now even more powerful. [Camera notifications](https://companion.home-assistant.io/docs/notifications/dynamic-content) will now stream via HTTP Live Streaming (HLS) instead of the older MJPEG standard when you have the `stream` integration enabled, giving you a more live experience; camera notifications also show up in the right aspect ratio; you can add per-action URLs that should be launched for each action of a notification; relative URLs (like `/lovelace-tacos/0`) will now open within the app without kicking you out to Safari. + +

+Screenshot of new notification example triggers and service calls +Screenshot of example triggers and service calls for notifications. +

+ +#### More frequent sensor updates while using the app + +A lot of people have asked for the sensors to be updated more frequently. The problem we have is while the app is in the background it is asleep as part of iOS's efforts to preserve battery. However, while you're using the app it should be able to send data frequently. You can now set a desired frequency of sensor updates while you have the app open. This can be as slow as every hour or as fast as every 20 seconds! Hopefully this will be a huge improvement for people using iPads as wall-mounted kiosks. + +#### No more duplicate integrations + +Previously when you removed and reinstalled the app you would get a new `..._2` integration in Home Assistant along with a new set of sensors like `sensor.freds_iphone_2`. This was a pain! Especially for our amazing beta testers who often went through the app's onboarding process several times in a day to check for bugs (THANK YOU!). Now the app registers its unique ID with Home Assistant, this means in most cases when you reinstall or reset up the app it should just pick and use the old integration and entities. + +#### Usability + +Another avenue of improvement is making things a bit easier. You’ll now find example triggers and service calls when configuring notification categories and actions within the app; theme color choices should always come through; you can adjust things like the zoom factor of the pages or how often sensors update if the app remains open; and more! You will definitely want to dig into the [releases](https://github.com/home-assistant/iOS/releases) or play around in the app’s settings. + +#### A look ahead at iOS 14 + +Coming to iOS 14 is Widgets, and no doubt there’s some huge potential here. A good analogy for what they can do is to think of them as Apple Watch complications; relatively static displays that can be updated with a multitude of data. One thing we’d love is to get an idea of the information and displays you’re interested in seeing here as Widgets get built out over the next few months. Please let us know any ideas you have on [this thread](https://community.home-assistant.io/t/what-kind-of-ios-14-widgets-would-you-like-to-see). + +iOS 14 is also introducing [Local Push Connectivity](https://developer.apple.com/documentation/networkextension/local_push_connectivity), which adds support for push notifications on your local network that do not require a trip to the cloud. This, like Critical Alerts, requires explicit approval from Apple, but we’re hopeful about improving the experience with your boats and RVs! + +## That's it, almost + +Wow, thanks for reading all the way down here! Everything you've read about wouldn't be possible without a very dedicated team of volunteers. In addition to the highlights above, we’ve also fixed a good amount of bugs and made other improvements across the board. Thanks goes to [JBassett](https://github.com/JBassett), [KBerstene](https://github.com/KBerstene), [chriss158](https://github.com/chriss158), [timmmeeeh](https://github.com/timmmeeeh), [timmoo001](https://github.com/timmoo001), [craftykoala](https://github.com/craftykoala), [jeroenseegers](https://github.com/jeroenseegers), [yoxjames](https://github.com/yoxjames), and [neopilou](https://github.com/neopilou) on the Android side and [robbiet480](https://www.github.com/robbiet480) and [zacwest](https://www.github.com/zacwest) on iOS. + +Two last things, firstly a reminder that you can find our complete docs for the apps on [their own site](https://companion.home-assitant.io). Secondly, as you're the kind of person that reads whole blog posts (well done again!) you might be the perfect beta tester for our apps, if you think you could help out, you can sign up for the Android app [here](https://play.google.com/apps/testing/io.homeassistant.companion.android) or the iOS app [here](https://companion.home-assistant.io/app/ios/beta). diff --git a/source/images/blog/2020-08-05-mobile-apps-new-features/Companion-new-upcoming.png b/source/images/blog/2020-08-05-mobile-apps-new-features/Companion-new-upcoming.png new file mode 100644 index 0000000000000000000000000000000000000000..ede0123ea6356515cd2eccc71fd9b830812d5f7b GIT binary patch literal 53898 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 Q^M-yaDJCacf-vy;KO1dNSO5S3 literal 0 HcmV?d00001 diff --git a/source/images/blog/2020-08-05-mobile-apps-new-features/biometric_unlock.png b/source/images/blog/2020-08-05-mobile-apps-new-features/biometric_unlock.png new file mode 100644 index 0000000000000000000000000000000000000000..8f2d26d27b379bdcd80b3b5cb9fb4de0e48065e9 GIT binary patch literal 110311 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 literal 0 HcmV?d00001 diff --git a/source/images/blog/2020-08-05-mobile-apps-new-features/ios-notification-examples.png b/source/images/blog/2020-08-05-mobile-apps-new-features/ios-notification-examples.png new file mode 100644 index 0000000000000000000000000000000000000000..2608dce486e304671915d3c067d4265e31458ff6 GIT binary patch literal 935621 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%0DOjncEE@vAkLC$hm&(_La%W# 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�G={PKu^IufR1DdGOMi7(L)&00jm-Xb_5N35Yi#9 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¨Bj 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%0Dr0X`Fqc=E7vU71?q_f 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 literal 0 HcmV?d00001 From 6e97f0dfe5c5abe3c43104f8fd6d7c8d3de9a674 Mon Sep 17 00:00:00 2001 From: Robbie Trencheny Date: Wed, 5 Aug 2020 14:48:45 -0700 Subject: [PATCH 02/34] enable comments --- source/_posts/2020-08-05-mobile-apps-new-features.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_posts/2020-08-05-mobile-apps-new-features.markdown b/source/_posts/2020-08-05-mobile-apps-new-features.markdown index b22d982728d..bf2429e4cfb 100644 --- a/source/_posts/2020-08-05-mobile-apps-new-features.markdown +++ b/source/_posts/2020-08-05-mobile-apps-new-features.markdown @@ -3,7 +3,7 @@ title: "Home Assistant Companion Apps: New and Upcoming Features" description: "What's new and what's in the works with the companion apps" date: 2020-08-05 00:00:00 date_formatted: "August 5, 2020" -comments: false +comments: true author: Daniel Shokouhi & Tom Brien author_twitter: tbrien88 categories: Release-Notes From f6a470d9fe885fd898b86750a7944fca4585a2f5 Mon Sep 17 00:00:00 2001 From: Graham Wetzler Date: Wed, 5 Aug 2020 17:23:35 -0500 Subject: [PATCH 03/34] Fix typo (#14169) --- source/_posts/2020-08-05-mobile-apps-new-features.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_posts/2020-08-05-mobile-apps-new-features.markdown b/source/_posts/2020-08-05-mobile-apps-new-features.markdown index bf2429e4cfb..8ababb862ab 100644 --- a/source/_posts/2020-08-05-mobile-apps-new-features.markdown +++ b/source/_posts/2020-08-05-mobile-apps-new-features.markdown @@ -14,7 +14,7 @@ Hi, it's been a while since we let you know about all the great things you can d ## A note on privacy -Currently we use Google's Firebase notification service for sending notifications to your device and also for tracking crashes. We did this because of simplicity, due to how notifications work on iOS we can't use just any server to send notifications, in fact there is a pretty narrow choice. Using Firebase allowed use to provide notifications at no cost to you! However, many people were uncomfortable about this and would prefer an app that did not rely on Google's servers. Well we hear you and we are actively looking at moving to other providers. While we have not completed this work yet, we just wanted to let you know it is something that is being actively developed and hopefully we will have more news very soon. +Currently we use Google's Firebase notification service for sending notifications to your device and also for tracking crashes. We did this because of simplicity, due to how notifications work on iOS we can't use just any server to send notifications, in fact there is a pretty narrow choice. Using Firebase allowed us to provide notifications at no cost to you! However, many people were uncomfortable about this and would prefer an app that did not rely on Google's servers. Well we hear you and we are actively looking at moving to other providers. While we have not completed this work yet, we just wanted to let you know it is something that is being actively developed and hopefully we will have more news very soon. ## Android minimal app From 1625ccf4ca17f73b80c7f5cb3d437d572a817f8c Mon Sep 17 00:00:00 2001 From: Robbie Trencheny Date: Wed, 5 Aug 2020 15:24:10 -0700 Subject: [PATCH 04/34] Update line about Firebase costs --- source/_posts/2020-08-05-mobile-apps-new-features.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_posts/2020-08-05-mobile-apps-new-features.markdown b/source/_posts/2020-08-05-mobile-apps-new-features.markdown index 8ababb862ab..011f2e062be 100644 --- a/source/_posts/2020-08-05-mobile-apps-new-features.markdown +++ b/source/_posts/2020-08-05-mobile-apps-new-features.markdown @@ -14,7 +14,7 @@ Hi, it's been a while since we let you know about all the great things you can d ## A note on privacy -Currently we use Google's Firebase notification service for sending notifications to your device and also for tracking crashes. We did this because of simplicity, due to how notifications work on iOS we can't use just any server to send notifications, in fact there is a pretty narrow choice. Using Firebase allowed us to provide notifications at no cost to you! However, many people were uncomfortable about this and would prefer an app that did not rely on Google's servers. Well we hear you and we are actively looking at moving to other providers. While we have not completed this work yet, we just wanted to let you know it is something that is being actively developed and hopefully we will have more news very soon. +Currently we use Google's Firebase notification service for sending notifications to your device and also for tracking crashes. We did this because of simplicity, due to how notifications work on iOS we can't use just any server to send notifications, in fact there is a pretty narrow choice. Using Firebase allowed us to keep costs low, which Nabu Casa then covered so people are able to use it at no cost. However, many people were uncomfortable about this and would prefer an app that did not rely on Google's servers. Well we hear you and we are actively looking at moving to other providers. While we have not completed this work yet, we just wanted to let you know it is something that is being actively developed and hopefully we will have more news very soon. ## Android minimal app From 39d7b306a4786cf968ca464b7423fae1059d064d Mon Sep 17 00:00:00 2001 From: Daniel Shokouhi Date: Thu, 6 Aug 2020 02:13:48 -0700 Subject: [PATCH 05/34] Correct minimal location and add entity state widget to blog post (#14172) --- source/_posts/2020-08-05-mobile-apps-new-features.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_posts/2020-08-05-mobile-apps-new-features.markdown b/source/_posts/2020-08-05-mobile-apps-new-features.markdown index 011f2e062be..b4668d19991 100644 --- a/source/_posts/2020-08-05-mobile-apps-new-features.markdown +++ b/source/_posts/2020-08-05-mobile-apps-new-features.markdown @@ -18,7 +18,7 @@ Currently we use Google's Firebase notification service for sending notification ## Android minimal app -On a related note, we are delighted to say we now offer a way to install a minimal version of the Android app that is completely free of any reliance on Google. This version of the app does not have location tracking or notifications. We hope that by providing this version of the app more developers will be excited about contributing to the app in general. For now, you can find the APKs in the [GitHub Actions](https://github.com/home-assistant/android/actions) page from each pull request. +On a related note, we are delighted to say we now offer a way to install a minimal version of the Android app that is completely free of any reliance on Google. This version of the app does not have location tracking or notifications. We hope that by providing this version of the app more developers will be excited about contributing to the app in general. You can find the APK on the [release](https://github.com/home-assistant/android/releases) page up on GitHub starting from version 2.1.0. ## What's New(ish) @@ -91,7 +91,7 @@ Screenshot of Biometric Unlock. We have also been hard at working making improvements in other areas of the app: -* [Widgets](https://companion.home-assistant.io/docs/core/android-widgets) were enhanced to allow you to select from a list of valid and available services along with the ability to add additional data fields that the service may require. +* There are now 2 [widgets](https://companion.home-assistant.io/docs/core/android-widgets) that you can set up, with Entity State being the latest addition. The Entity State widget will display the state and any attribute of the selected entity. It will update once every 30 minutes or when tapped. The Service Call widget was also enhanced to allow you to select from a list of valid and available services along with the ability to add additional data fields that the service may require. * In App Configuration the Home Network WiFi SSID option now allows the user to select multiple SSIDs. * A Cookie Manager was added to our WebView that will allow you to save cookies from sites that you may use in the [webpage card](/lovelace/iframe/). * More descriptive SSL error messages were added to help users resolve local issues they may encounter while setting up the app. From 5cb1b4db6f695f18ad2bd55929a0b9d3949a955f Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Fri, 7 Aug 2020 17:53:30 +0200 Subject: [PATCH 06/34] Clarify expire_after for MQTT sensor (#14183) * Clarify expire_after for MQTT sensor * :pencil2: Tweak Co-authored-by: Klaas Schoute --- source/_integrations/sensor.mqtt.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_integrations/sensor.mqtt.markdown b/source/_integrations/sensor.mqtt.markdown index 87a5c37e5ed..b3566daaf68 100644 --- a/source/_integrations/sensor.mqtt.markdown +++ b/source/_integrations/sensor.mqtt.markdown @@ -65,7 +65,7 @@ device_class: type: device_class default: None expire_after: - description: Defines the number of seconds after the value expires if it's not updated. + description: Defines the number of seconds after the sensor's state expires, if it's not updated. After expiry, the sensor's state becomes `unavailable`. required: false type: integer default: 0 From a19d794c7dcff56c94c466d853ec5a4b93767a35 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Fri, 7 Aug 2020 17:56:57 +0200 Subject: [PATCH 07/34] Correct documentation of MQTT binary_sensor expire_after (#14176) * Correct documentation of MQTT binary_sensor expire_after * Update binary_sensor.mqtt.markdown * Update binary_sensor.mqtt.markdown * :pencil2: Tweak Co-authored-by: Klaas Schoute --- source/_integrations/binary_sensor.mqtt.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_integrations/binary_sensor.mqtt.markdown b/source/_integrations/binary_sensor.mqtt.markdown index 01e954bca5c..ed81a5ab9e8 100644 --- a/source/_integrations/binary_sensor.mqtt.markdown +++ b/source/_integrations/binary_sensor.mqtt.markdown @@ -92,7 +92,7 @@ device_class: required: false type: string expire_after: - description: "Defines the number of seconds after the sensor's state expires if it's not updated. After expiry, the sensor's state becomes `unavailable` if any `availability` topic is defined and `unknown` otherwise." + description: Defines the number of seconds after the sensor's state expires, if it's not updated. After expiry, the sensor's state becomes `unavailable`. required: false type: integer force_update: From 879554d461b31ab6ace7a3f44acc9d0d69f35fa5 Mon Sep 17 00:00:00 2001 From: DrBlokmeister <57352628+DrBlokmeister@users.noreply.github.com> Date: Fri, 7 Aug 2020 18:06:07 +0200 Subject: [PATCH 08/34] Fix broken amazon link (#14184) Previous Amazon link was broken. I replaced it by a banggood link. Could also be replaced by a gearbest (https://www.gearbest.com/automation-modules/pp_3009630609765309.html) or unavailable Amazon product (https://us.amazon.com/Xiaomi-Bluetooth-Temperature-Sensitive-Thermometer/dp/B07B9SJJZJ). --- source/_integrations/mitemp_bt.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_integrations/mitemp_bt.markdown b/source/_integrations/mitemp_bt.markdown index 8af615f505a..4169f4bab10 100644 --- a/source/_integrations/mitemp_bt.markdown +++ b/source/_integrations/mitemp_bt.markdown @@ -8,7 +8,7 @@ ha_iot_class: Local Polling ha_domain: mitemp_bt --- -The `mitemp_bt` sensor platform allows one to monitor room temperature and humidity. The [Xiaomi Mijia BLE Temperature and Humidity sensor with LCD](https://www.amazon.com/Temperature-Humidity-Xiaomi-Bluetooth-Screen-Remote/dp/B079L6N6PC) is a small Bluetooth Low Energy device that monitors the room temperature and humidity. As only a single BLE device can be polled at the same time, the library employs locking to make sure this is the case. +The `mitemp_bt` sensor platform allows one to monitor room temperature and humidity. The [Xiaomi Mijia BLE Temperature and Humidity sensor with LCD](https://www.banggood.com/Xiaomi-Mijia-Bluetooth-Thermometer-Hygrometer-with-LCD-Screen-Magnetic-Suction-Wall-Stickers-p-1232396.html) is a small Bluetooth Low Energy device that monitors the room temperature and humidity. As only a single BLE device can be polled at the same time, the library employs locking to make sure this is the case. ## Installation From 9f3e7150fdf2c51c469899c88f4464d470cf8bb5 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Fri, 7 Aug 2020 18:06:48 +0200 Subject: [PATCH 09/34] Update MQTT binary sensor example (#14182) --- source/_integrations/binary_sensor.mqtt.markdown | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/source/_integrations/binary_sensor.mqtt.markdown b/source/_integrations/binary_sensor.mqtt.markdown index ed81a5ab9e8..8dfe12a234d 100644 --- a/source/_integrations/binary_sensor.mqtt.markdown +++ b/source/_integrations/binary_sensor.mqtt.markdown @@ -160,14 +160,17 @@ value_template: In this section, you will find some real-life examples of how to use this sensor. -### Full configuration +### Full configuration with JSON data +This is an example of a configuration where the state is extracted from a JSON formatted MQTT message. To test, you can use the command line tool `mosquitto_pub` shipped with `mosquitto` or the `mosquitto-clients` package to send MQTT messages. To set the state of the binary sensor manually: ```bash -mosquitto_pub -h 127.0.0.1 -t home-assistant/window/contact -m "OFF" +mosquitto_pub -h 127.0.0.1 -t home-assistant/window/availability -m "online" +mosquitto_pub -h 127.0.0.1 -t home-assistant/window/contact -m '{"state":"ON"}' +mosquitto_pub -h 127.0.0.1 -t home-assistant/window/contact -m '{"state":"OFF"}' ``` The example below shows a full configuration for a binary sensor: @@ -181,14 +184,13 @@ binary_sensor: name: "Window Contact Sensor" state_topic: "home-assistant/window/contact" payload_on: "ON" - payload_off: "OFF" availability: - topic: "home-assistant/window/availability" payload_available: "online" payload_not_available: "offline" qos: 0 device_class: opening - value_template: '{{ value.x }}' + value_template: '{{ value_json.state }}' ``` {% endraw %} From 88ae81529f6c8848628ee679c2b1a76add46d00c Mon Sep 17 00:00:00 2001 From: gozasc Date: Fri, 7 Aug 2020 12:07:32 -0400 Subject: [PATCH 10/34] Update enable_i2c.markdown (#14181) Minor grammatical changes. --- source/hassio/enable_i2c.markdown | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/source/hassio/enable_i2c.markdown b/source/hassio/enable_i2c.markdown index 4c4d2693381..aae3b17c2b7 100644 --- a/source/hassio/enable_i2c.markdown +++ b/source/hassio/enable_i2c.markdown @@ -1,12 +1,11 @@ --- -title: "Enable i2c on the Home Assistant Operating System" +title: "Enable I2C on the Home Assistant Operating System" description: "Instructions on how to enable I2C on a Raspberry PI" --- -Home Assistant using the Home Assistant Operating System, is a managed environment. -Which means you can't use existing methods to enable the I2C bus on a Raspberry Pi. +Home Assistant using the Home Assistant Operating System is a managed environment, which means you can't use existing methods to enable the I2C bus on a Raspberry Pi. -If you're attempting to add an external sensor, you will have to [enable the I2C interface in the Home Assistant configuration](https://github.com/home-assistant/hassos/blob/dev/Documentation/boards/raspberrypi.md#i2c) using a USB stick. +If you're attempting to add an external sensor you will have to [enable the I2C interface in the Home Assistant configuration](https://github.com/home-assistant/hassos/blob/dev/Documentation/boards/raspberrypi.md#i2c) using a USB stick. ## Step by step instructions From 1c5a7a0fac5e833b4dfca48ecd9a6e9bf0707651 Mon Sep 17 00:00:00 2001 From: gozasc Date: Fri, 7 Aug 2020 12:07:52 -0400 Subject: [PATCH 11/34] Update zwave.markdown (#14180) Minor grammatical changes. --- source/hassio/zwave.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/hassio/zwave.markdown b/source/hassio/zwave.markdown index 9499c3922c1..323deb20f35 100644 --- a/source/hassio/zwave.markdown +++ b/source/hassio/zwave.markdown @@ -13,7 +13,7 @@ zwave: ## RAZBERRY BOARD If you need GPIO on Raspberry Pi 3 for your Z-Wave module, add the following line into `config.txt` (you have to access that on the SD card directly. Simply plug it into your PC and edit it there. -The `config.txt` is not accessible from the Home Assistant Operating System, you may need to open the SD card on a Windows or Linux system.: +The `config.txt` is not accessible from the Home Assistant Operating System, you may need to open the SD card on a Windows or Linux system: ```txt dtoverlay=pi3-miniuart-bt @@ -39,7 +39,7 @@ zha: ## Ubuntu and Debian based host system -If your instance is running on a Debian based system, e.g., Ubuntu, the ModemManager may cause unexpected issues. +If your instance is running on a Debian-based system, e.g., Ubuntu, the ModemManager may cause unexpected issues. The ModemManager might be claiming or interfering with a USB Z-Wave stick, like the much used Aeotec ones. If you experience issues where the stick stops responding, needs to be re-plugged or Home Assistant needs a restart to get Z-Wave back, chances are high that the ModemManager is causing the issue. From 9b20fd8ac58a6d8184d64b8d73349b8e16733fa1 Mon Sep 17 00:00:00 2001 From: Daniel Shokouhi Date: Fri, 7 Aug 2020 09:08:06 -0700 Subject: [PATCH 12/34] Correct companion link (#14179) --- source/_posts/2020-08-05-mobile-apps-new-features.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_posts/2020-08-05-mobile-apps-new-features.markdown b/source/_posts/2020-08-05-mobile-apps-new-features.markdown index b4668d19991..495006c927a 100644 --- a/source/_posts/2020-08-05-mobile-apps-new-features.markdown +++ b/source/_posts/2020-08-05-mobile-apps-new-features.markdown @@ -138,4 +138,4 @@ iOS 14 is also introducing [Local Push Connectivity](https://developer.apple.com Wow, thanks for reading all the way down here! Everything you've read about wouldn't be possible without a very dedicated team of volunteers. In addition to the highlights above, we’ve also fixed a good amount of bugs and made other improvements across the board. Thanks goes to [JBassett](https://github.com/JBassett), [KBerstene](https://github.com/KBerstene), [chriss158](https://github.com/chriss158), [timmmeeeh](https://github.com/timmmeeeh), [timmoo001](https://github.com/timmoo001), [craftykoala](https://github.com/craftykoala), [jeroenseegers](https://github.com/jeroenseegers), [yoxjames](https://github.com/yoxjames), and [neopilou](https://github.com/neopilou) on the Android side and [robbiet480](https://www.github.com/robbiet480) and [zacwest](https://www.github.com/zacwest) on iOS. -Two last things, firstly a reminder that you can find our complete docs for the apps on [their own site](https://companion.home-assitant.io). Secondly, as you're the kind of person that reads whole blog posts (well done again!) you might be the perfect beta tester for our apps, if you think you could help out, you can sign up for the Android app [here](https://play.google.com/apps/testing/io.homeassistant.companion.android) or the iOS app [here](https://companion.home-assistant.io/app/ios/beta). +Two last things, firstly a reminder that you can find our complete docs for the apps on [their own site](https://companion.home-assistant.io). Secondly, as you're the kind of person that reads whole blog posts (well done again!) you might be the perfect beta tester for our apps, if you think you could help out, you can sign up for the Android app [here](https://play.google.com/apps/testing/io.homeassistant.companion.android) or the iOS app [here](https://companion.home-assistant.io/app/ios/beta). From 5497cf81a93f85a8a0454e8623acd4a9403815aa Mon Sep 17 00:00:00 2001 From: gozasc Date: Fri, 7 Aug 2020 12:10:13 -0400 Subject: [PATCH 13/34] Update hassos_faq.markdown (#14178) Grammatical changes (superfluous commas, not starting sentences with contractions), spacing changes for the sake of consistency on the page, added a missing word (from) and a missing period. --- source/hassio/hassos_faq.markdown | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/hassio/hassos_faq.markdown b/source/hassio/hassos_faq.markdown index 22a91ea8e17..917a180651f 100644 --- a/source/hassio/hassos_faq.markdown +++ b/source/hassio/hassos_faq.markdown @@ -6,7 +6,7 @@ description: "Frequently Asked Questions for Home Assistant OS" The bootloader for Home Assistant OS (uboot) does not yet support Pi4 booting from USB. Support is likely a month or two away as of July 2020. -The Pi4, with 8GB RAM, is similarly waiting for support from upstream. +The Pi4 with 8GB RAM is similarly waiting for support from upstream. ## How do I run a specific version of Home Assistant? @@ -37,12 +37,12 @@ No. The USB "CONFIG" stick is only used to import a network profile to `/etc/Net This error indicates the image, whether for updating to Home Assistant or installing or updating an add-on, was not able to be pulled to your system. This is usually a situation where there is not enough space for the image to be downloaded. The first thing to check for is the available space on your system. -Please note, if you are running the operating system as a virtual machine; the default VM image is only about 6GB. Many VM users run into this as they have not allocated enough storage. 32 GB is the minimum recommended size. +Please note, if you are running the operating system as a virtual machine; the default VM image is only about 6GB. Many VM users run into this as they have not allocated enough storage. 32GB is the minimum recommended size. -You'll need to explore your own system to determine where space has gone. +You will need to explore your own system to determine where space has gone. Using `df -h` in the SSH add-on console to you can quickly check to see if you have space available. -If there is plenty of space available then you might check to see if you are having network issues that are preventing images being downloaded. +If there is plenty of space available then you might check to see if you are having network issues that are preventing images from being downloaded. ## Why does the start button for an add-on flash red when I click it? @@ -53,6 +53,6 @@ The logs on this page are the same you would see using `ha logs` in the custom C ## I'm trying to find my files on the host or SD card. Where are they? On a Home Assistant OS install, your files are on the data partition within `/mnt/data/supervisor/`. -On the SD itself, this is an EXT4 partition labeled `hassos-data` +On the SD itself, this is an EXT4 partition labeled `hassos-data`. On a Supervised install, they are in `/usr/share/hassio/`. From 8df762c00c0dde7221c59c5b47d4be6f00661cb0 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Fri, 7 Aug 2020 18:26:32 +0200 Subject: [PATCH 14/34] Update Material Design Icons link to 5.3.45 (#14170) --- source/_docs/configuration/customizing-devices.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_docs/configuration/customizing-devices.markdown b/source/_docs/configuration/customizing-devices.markdown index 9ce66f5edef..ecf57c32456 100644 --- a/source/_docs/configuration/customizing-devices.markdown +++ b/source/_docs/configuration/customizing-devices.markdown @@ -40,7 +40,7 @@ entity_picture: required: false type: string icon: - description: "Any icon from [MaterialDesignIcons.com](http://MaterialDesignIcons.com) ([Cheatsheet](https://cdn.materialdesignicons.com/4.5.95/)). Prefix name with `mdi:`, ie `mdi:home`. Note: Newer icons may not yet be available in the current Home Assistant release. You can check when an icon was added to MaterialDesignIcons.com at [MDI History](https://materialdesignicons.com/history)." + description: "Any icon from [MaterialDesignIcons.com](http://MaterialDesignIcons.com) ([Cheatsheet](https://cdn.materialdesignicons.com/5.3.45/)). Prefix name with `mdi:`, ie `mdi:home`. Note: Newer icons may not yet be available in the current Home Assistant release. You can check when an icon was added to MaterialDesignIcons.com at [MDI History](https://materialdesignicons.com/history)." required: false type: string assumed_state: From 606cd39e8deebd1506fea09c8fff89b19913906f Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Fri, 7 Aug 2020 19:01:30 +0200 Subject: [PATCH 15/34] fix version --- source/hassio/installation.markdown | 34 ++++++++++++++--------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/source/hassio/installation.markdown b/source/hassio/installation.markdown index 1b7a8962d16..ffd768e4aad 100644 --- a/source/hassio/installation.markdown +++ b/source/hassio/installation.markdown @@ -107,23 +107,23 @@ If you would like to test next release before anyone else, you can install the b [balenaEtcher]: https://www.balena.io/etcher [hassos-network]: https://github.com/home-assistant/operating-system/blob/dev/Documentation/network.md -[pi0-w]: https://github.com/home-assistant/operating-system/releases/download/4.11/hassos_rpi0-w-4.11.img.gz -[pi1]: https://github.com/home-assistant/operating-system/releases/download/4.11/hassos_rpi-4.11.img.gz -[pi2]: https://github.com/home-assistant/operating-system/releases/download/4.11/hassos_rpi2-4.11.img.gz -[pi3-32]: https://github.com/home-assistant/operating-system/releases/download/4.11/hassos_rpi3-4.11.img.gz -[pi3-64]: https://github.com/home-assistant/operating-system/releases/download/4.11/hassos_rpi3-64-4.11.img.gz -[pi4-32]: https://github.com/home-assistant/operating-system/releases/download/4.11/hassos_rpi4-4.11.img.gz -[pi4-64]: https://github.com/home-assistant/operating-system/releases/download/4.11/hassos_rpi4-64-4.11.img.gz -[tinker]: https://github.com/home-assistant/operating-system/releases/download/4.11/hassos_tinker-4.11.img.gz -[odroid-c2]: https://github.com/home-assistant/operating-system/releases/download/4.11/hassos_odroid-c2-4.11.img.gz -[odroid-n2]: https://github.com/home-assistant/operating-system/releases/download/4.11/hassos_odroid-n2-4.11.img.gz -[odroid-xu4]: https://github.com/home-assistant/operating-system/releases/download/4.11/hassos_odroid-xu4-4.11.img.gz -[intel-nuc]: https://github.com/home-assistant/operating-system/releases/download/4.11/hassos_intel-nuc-4.11.img.gz -[vmdk]: https://github.com/home-assistant/operating-system/releases/download/4.11/hassos_ova-4.11.vmdk.gz -[vhdx]: https://github.com/home-assistant/operating-system/releases/download/4.11/hassos_ova-4.11.vhdx.gz -[vdi]: https://github.com/home-assistant/operating-system/releases/download/4.11/hassos_ova-4.11.vdi.gz -[qcow2]: https://github.com/home-assistant/operating-system/releases/download/4.11/hassos_ova-4.11.qcow2.gz -[Virtual Appliance]: https://github.com/home-assistant/operating-system/releases/download/4.11/hassos_ova-4.11.ova +[pi0-w]: https://github.com/home-assistant/operating-system/releases/download/4.12/hassos_rpi0-w-4.12.img.gz +[pi1]: https://github.com/home-assistant/operating-system/releases/download/4.12/hassos_rpi-4.12.img.gz +[pi2]: https://github.com/home-assistant/operating-system/releases/download/4.12/hassos_rpi2-4.12.img.gz +[pi3-32]: https://github.com/home-assistant/operating-system/releases/download/4.12/hassos_rpi3-4.12.img.gz +[pi3-64]: https://github.com/home-assistant/operating-system/releases/download/4.12/hassos_rpi3-64-4.12.img.gz +[pi4-32]: https://github.com/home-assistant/operating-system/releases/download/4.12/hassos_rpi4-4.12.img.gz +[pi4-64]: https://github.com/home-assistant/operating-system/releases/download/4.12/hassos_rpi4-64-4.12.img.gz +[tinker]: https://github.com/home-assistant/operating-system/releases/download/4.12/hassos_tinker-4.12.img.gz +[odroid-c2]: https://github.com/home-assistant/operating-system/releases/download/4.12/hassos_odroid-c2-4.12.img.gz +[odroid-n2]: https://github.com/home-assistant/operating-system/releases/download/4.12/hassos_odroid-n2-4.12.img.gz +[odroid-xu4]: https://github.com/home-assistant/operating-system/releases/download/4.12/hassos_odroid-xu4-4.12.img.gz +[intel-nuc]: https://github.com/home-assistant/operating-system/releases/download/4.12/hassos_intel-nuc-4.12.img.gz +[vmdk]: https://github.com/home-assistant/operating-system/releases/download/4.12/hassos_ova-4.12.vmdk.gz +[vhdx]: https://github.com/home-assistant/operating-system/releases/download/4.12/hassos_ova-4.12.vhdx.gz +[vdi]: https://github.com/home-assistant/operating-system/releases/download/4.12/hassos_ova-4.12.vdi.gz +[qcow2]: https://github.com/home-assistant/operating-system/releases/download/4.12/hassos_ova-4.12.qcow2.gz +[Virtual Appliance]: https://github.com/home-assistant/operating-system/releases/download/4.12/hassos_ova-4.12.ova [local]: http://homeassistant.local:8123 [samba]: /addons/samba/ [ssh]: /addons/ssh/ From 7e69b3e6d76384e5d7ae15586f24c216185b0d4a Mon Sep 17 00:00:00 2001 From: Matthew Date: Sat, 8 Aug 2020 22:07:25 +0930 Subject: [PATCH 16/34] Update bom.markdown (#14194) Correcting weather station ID/url as BOM changed the name. --- source/_integrations/bom.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_integrations/bom.markdown b/source/_integrations/bom.markdown index df4b3f431d7..7112a57e7ce 100644 --- a/source/_integrations/bom.markdown +++ b/source/_integrations/bom.markdown @@ -206,8 +206,8 @@ sensor: To get the station ID for any BOM station: - Find your station on these maps: [NSW](http://www.bom.gov.au/nsw/observations/map.shtml), [QLD](http://www.bom.gov.au/qld/observations/map.shtml), [VIC](http://www.bom.gov.au/vic/observations/map.shtml), [WA](http://www.bom.gov.au/wa/observations/map.shtml), [SA](http://www.bom.gov.au/sa/observations/map.shtml), [TAS](http://www.bom.gov.au/tas/observations/map.shtml), [ACT](http://www.bom.gov.au/act/observations/canberramap.shtml), [NT](http://www.bom.gov.au/nt/observations/map.shtml). - alternatively, from the [BOM website](http://www.bom.gov.au/), navigate to State -> Observations -> Latest Observations -> Choose the station. -- The URL will look like `http://www.bom.gov.au/products/IDx60801/[station].shtml` -- For Adelaide, the URL will look like `http://www.bom.gov.au/products/IDS60801/IDS60801.94675.shtml`; the station ID is `IDS60801.94675`. +- The URL will look like `http://www.bom.gov.au/products/IDx60901/[station].shtml` +- For Adelaide, the URL will look like `http://www.bom.gov.au/products/IDS60901/IDS60901.94648.shtml`; the station ID is `IDS60901.94648`. {% configuration %} station: From 1776faa2efee649391d5c51aa0a3e3b0442273a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Mart=C3=ADnez?= Date: Sat, 8 Aug 2020 14:38:30 +0200 Subject: [PATCH 17/34] Logitech Harmony integration (#14193) The Logitech Harmony remotes can control Hue hubs, but only can be connected using the desktop software instead of mobile applications --- source/_integrations/emulated_hue.markdown | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/_integrations/emulated_hue.markdown b/source/_integrations/emulated_hue.markdown index a033ff8f1e7..9f98251ed4d 100644 --- a/source/_integrations/emulated_hue.markdown +++ b/source/_integrations/emulated_hue.markdown @@ -41,6 +41,12 @@ If you added or upgraded to a newer Alexa device and devices are not found, you +

+ ### Configuration To enable the emulated Hue bridge, add one of the following configs to your `configuration.yaml` file: From 6f2fb6517374f657af873131855e9fdde0f3dd55 Mon Sep 17 00:00:00 2001 From: Eugene Prystupa Date: Sat, 8 Aug 2020 08:40:36 -0400 Subject: [PATCH 18/34] Update Bond documentation to specify minimum supported firmware (#14195) Co-authored-by: Fabian Affolter --- source/_integrations/bond.markdown | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/source/_integrations/bond.markdown b/source/_integrations/bond.markdown index c8f2b9b2322..5991bdf58a6 100644 --- a/source/_integrations/bond.markdown +++ b/source/_integrations/bond.markdown @@ -17,7 +17,7 @@ ha_config_flow: true The Bond integration allows you to control appliances through your [Bond Bridge](https://bondhome.io/). Duplicates your RF remote control. -Supported devices: +Supported devices (see Requirements section below): - Ceiling fans - Shades @@ -31,3 +31,9 @@ Menu: **Configuration** -> **Integrations**. Click on the `+` sign to add an integration and click on **Bond** (use typeahead if necessary). After completing the configuration flow, the Bond integration will be available. + +## Requirements + +This integration supports Bond bridges with firmware v2.10.x and up. +Bond bridges with firmware v2.9.x and lower will **not** work correctly. Please +upgrade your firmware from Bond app before adding this integration. From bd502b054a0d36d53de277ffcaf1bfa165514ad5 Mon Sep 17 00:00:00 2001 From: gozasc Date: Sat, 8 Aug 2020 09:02:54 -0400 Subject: [PATCH 19/34] Update index.html (#14175) First edit is to more accurately reflect the casing on the "Add-on store" tab; second edit (a > an) is for grammatical accuracy in the English language. --- source/addons/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/addons/index.html b/source/addons/index.html index e39ff8420fc..ea5b65dbc3f 100644 --- a/source/addons/index.html +++ b/source/addons/index.html @@ -22,9 +22,9 @@ regenerate: false

To install add-ons, navigate to the Supervisor panel in your Home Assistant - frontend, and click on the "ADD-ON STORE" tab. All add-ons, including their documentation, are available right from the store. + frontend, and click on the "Add-on store" tab. All add-ons, including their documentation, are available right from the store. Some advanced add-ons will only be visible after you opt-in to "Advanced Mode" which can be changed on your user profile page. - Click on a add-on you are interested in, to read the documentation or to install the add-on. + Click on an add-on you are interested in, to read the documentation or to install the add-on.

From ccbcfdd63cfeeb157de372f46099657ab018d1aa Mon Sep 17 00:00:00 2001 From: Kendell R Date: Sat, 8 Aug 2020 06:03:30 -0700 Subject: [PATCH 20/34] Update history screenshot (#14171) --- .../screenshots/component_history_24h.png | Bin 29944 -> 47235 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/source/images/screenshots/component_history_24h.png b/source/images/screenshots/component_history_24h.png index 41ba852da6962adf86c0933f38c0444e5221520f..a80a76c17e81ac9e496f1f13724d7ea9c6a69bf9 100644 GIT binary patch literal 47235 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

sgD@Ey$1l zV@;QK)knKpEczB%v1#O)$52X>4{Lk6OLW=ZmHlA6S5N~wxba=(MvZR@CUKlHJaW=*_m@+7ChYajZ1sjV@t)?3)^ z#ie-5oH(D~aHUTk39aY)BI@Van(-yMBgzOA)*|wfUw?XiI3f*`HfCwpYBoS)x=MUH zy6ckZzHu(v%Q*p$6_~$K4i$Qhv=$zc%Fr8$RSbtXSGn3#KhLKb%vOP@y=1fUOPYrot%^Sl+m_d-h`e6xzOzG!PTh-uZ!=jwhO|!q z`Qqdn=SZ!F;c%D1pFiI2+dEu*IlWn6@20%8WSJ>jiZ&9xmEd@{&+@vlx#f*+h0QQ@ z8nmfyka@4eC2KwgJ|9@@>_?_S3G*t4wr-<7NU^5brd2Nc&qIDDg~Hp5>{Q~S<;Yd<e%-S zxz_xuo0lKY*tk3i@qIP_@Zp#xOVvxyqj?Q5;*!d-8b$WJ-e+0oRtNQgRP!1Atv&kP zY#)9F4NL#(*`5(=yOlqTD2FQNv+H(}KHYm8ksIaUZ@_m7-qjep^;@=#tjmB#mP5Z{ z#D0yp!mZdr{Tl*0#%e_!l_y8v!Rc)GFR-zyM7qU!XgizZ>70bb^FxH)W!Eq8p29|< zj8Ck6!egyzvtT2OeVEsveD&8F4vaDNM*UZUUySEkR+$>ThW&l429w|< ziMs27O03y3a{4Hzi|@C8iZiVlACHj~GJ-D>*J@ zCwcS%>a|aswxN0eQ9}3G0o92+hlYubD6O}A&&(Dit7|~@HMg>nVJ1?1BgG9qVcB(~ z>zah#0&iC;<21-Vz)s{BSkiKzgj_7ZFN9qHp3*`q5V7tbr{A) zMz+q(@SY-(s}+-SB~91#ZHUS!u}YBt8f-}5f&|AhP>s(Oo20!z&`+V6_`1&nk_-1` z>3(ODmGROzh3Tku`~Y{m%C$++>bcYBo)@+j0P0FdZ>%EdM+nZ+%R{~fW<19wpJUKI z%tRp5O#T(s5c?68S|H;B8&;1z>ljrh-ahPr|032I9EiiD`-EwMiE{YliMVX<(mrev z^?5&N4-I^)_%OI3cZtux`0S?lo&t4-0BS)uZYh1L8hiWiw2x%j+s-+h?ALPreEYB_ z{);gt7^Sh<%QBPo0mE}oTq)kbf?*6(E&D+?x_h(>Ok*}$(r$9pAAq8%C~7KvmopFi Ef8xRjjQ{`u From 96aaba56849d772f428c5619b34ec539009d7746 Mon Sep 17 00:00:00 2001 From: Jonathan Haddock Date: Sun, 9 Aug 2020 09:22:39 +0100 Subject: [PATCH 21/34] Update http.markdown to include certificate location (#14199) Added details of where the certificate can be found when using the Let's Encrypt add-on, as this was not immediately clear and took me a reasonable amount of searching. --- source/_integrations/http.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_integrations/http.markdown b/source/_integrations/http.markdown index 58f6c46f56a..3554a2d6cef 100644 --- a/source/_integrations/http.markdown +++ b/source/_integrations/http.markdown @@ -43,7 +43,7 @@ server_port: type: integer default: 8123 ssl_certificate: - description: Path to your TLS/SSL certificate to serve Home Assistant over a secure connection. + description: Path to your TLS/SSL certificate to serve Home Assistant over a secure connection. If using the [Let's Encrypt add-on](https://github.com/home-assistant/hassio-addons/tree/master/letsencrypt) this will be at `/ssl/fullchain.pem`. required: false type: string ssl_peer_certificate: @@ -51,7 +51,7 @@ ssl_peer_certificate: required: false type: string ssl_key: - description: Path to your TLS/SSL key to serve Home Assistant over a secure connection. + description: Path to your TLS/SSL key to serve Home Assistant over a secure connection. If using the [Let's Encrypt add-on](https://github.com/home-assistant/hassio-addons/tree/master/letsencrypt) this will be at `/ssl/privkey.pem`. required: false type: string cors_allowed_origins: From 44ba0c7ec655aeab3c28e00d515762ae7290d4ad Mon Sep 17 00:00:00 2001 From: Justin Bassett Date: Mon, 10 Aug 2020 11:54:28 -0400 Subject: [PATCH 22/34] Prepare for Android link handling (#14217) Add the ability for the android application to handle links for https://home-assistant.io by default. --- source/.well-known/assetlinks.json | 38 ++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 source/.well-known/assetlinks.json diff --git a/source/.well-known/assetlinks.json b/source/.well-known/assetlinks.json new file mode 100644 index 00000000000..44248867212 --- /dev/null +++ b/source/.well-known/assetlinks.json @@ -0,0 +1,38 @@ +[ + { + "relation": ["delegate_permission/common.handle_all_urls"], + "target": { + "namespace": "android_app", + "package_name": "io.homeassistant.companion.android", + "sha256_cert_fingerprints": + ["11:19:4B:A8:09:B4:2D:DF:0E:1A:7D:EC:68:42:A5:9C:7F:F1:11:9C:54:82:E9:5F:EB:FF:D5:C6:01:4D:AA:5A"] + } + }, + { + "relation": ["delegate_permission/common.handle_all_urls"], + "target": { + "namespace": "android_app", + "package_name": "io.homeassistant.companion.android.debug", + "sha256_cert_fingerprints": + ["11:19:4B:A8:09:B4:2D:DF:0E:1A:7D:EC:68:42:A5:9C:7F:F1:11:9C:54:82:E9:5F:EB:FF:D5:C6:01:4D:AA:5A"] + } + }, + { + "relation": ["delegate_permission/common.handle_all_urls"], + "target": { + "namespace": "android_app", + "package_name": "io.homeassistant.companion.android.minimal", + "sha256_cert_fingerprints": + ["11:19:4B:A8:09:B4:2D:DF:0E:1A:7D:EC:68:42:A5:9C:7F:F1:11:9C:54:82:E9:5F:EB:FF:D5:C6:01:4D:AA:5A"] + } + }, + { + "relation": ["delegate_permission/common.handle_all_urls"], + "target": { + "namespace": "android_app", + "package_name": "io.homeassistant.companion.android.minimal.debug", + "sha256_cert_fingerprints": + ["11:19:4B:A8:09:B4:2D:DF:0E:1A:7D:EC:68:42:A5:9C:7F:F1:11:9C:54:82:E9:5F:EB:FF:D5:C6:01:4D:AA:5A"] + } + } +] From e1d5b76d95e61cb4db99ba04a40ea89f88951b80 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 10 Aug 2020 17:56:09 +0200 Subject: [PATCH 23/34] Update formatting (#14215) --- source/_integrations/person.markdown | 32 ++++++++++++++-------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/source/_integrations/person.markdown b/source/_integrations/person.markdown index f725b40350b..2a632f249be 100644 --- a/source/_integrations/person.markdown +++ b/source/_integrations/person.markdown @@ -8,23 +8,23 @@ ha_quality_scale: internal ha_domain: person --- -The person integration allows connecting [device tracker](/integrations/device_tracker/) entities to one or more person entities. The state updates of a connected device tracker will set the state of the person. When multiple device trackers are used, the state of person will be determined in this order: +The `person` integration allows connecting [device tracker](/integrations/device_tracker/) entities to one or more person entities. The state updates of a connected device tracker will set the state of the person. When multiple device trackers are used, the state of person will be determined in this order: -1. If there are stationary trackers (non-GPS trackers, i.e., a router or Bluetooth 'device_trackers') presenting the status 'home', the tracker most recently updated will be used. -2. If there are trackers of type 'gps', then the most recently updated tracker will be used. -3. Otherwise, the latest tracker with status 'not_home' will be used. +1. If there are stationary trackers (non-GPS trackers, e.g., a router or Bluetooth device tracker) presenting the status `home`, the tracker most recently updated will be used. +2. If there are trackers of type `gps`, then the most recently updated tracker will be used. +3. Otherwise, the latest tracker with status `not_home` will be used. -Let's say, for example, that you have 3 trackers: 'tracker_gps', 'tracker_router' and 'tracker_ble'. +Let's say, for example, that you have three trackers: `tracker_gps`, `tracker_router` and `tracker_ble`. -1. You're at home, all 3 devices show status 'home' - status of your Person entity will be 'home' with source 'tracker_router' or 'tracker_ble', whichever was most recently updated. -2. You just left home. 'tracker_gps' shows status 'not_home', but the other two trackers show status 'home' (they may not have yet updated due to their 'consider_home' setting see [device_tracker](/integrations/device_tracker/#configuring-a-device_tracker-platform)). Since the stationary trackers have priority, you are considered 'home'. -3. After some time, both stationary trackers show status 'not_home'. Now your Person entity has status 'not_home' with source 'tracker_gps'. -4. While you are away from home, your Home Assistant is restarted. Until 'tracker_gps' receives an update, your status will be determined by the stationary trackers, since they will have the most recent update after a restart. Obviously, the status will be 'not_home'. -5. Then you're going into a zone you have defined as 'zone1', 'tracker_gps' sends an update, and now your status is 'zone1' with source 'tracker_gps'. -6. You've returned home and your mobile device has connected to the router, but 'tracker_gps' hasn't updated yet. Your status will be 'home' with source 'tracker_router'. -7. After the 'tracker_gps' update occurs, your status will still be 'home' with source 'tracker_router' or 'tracker_ble', whichever has the most recent update. +1. You're at home, all three devices show status `home` - status of your Person entity will be `home` with source `tracker_router` or `tracker_ble`, whichever was most recently updated. +2. You just left home. `tracker_gps` shows status `not_home`, but the other two trackers show status `home` (they may not have yet updated due to their `consider_home` setting see [device_tracker](/integrations/device_tracker/#configuring-a-device_tracker-platform)). Since the stationary trackers have priority, you are considered `home`. +3. After some time, both stationary trackers show status `not_home`. Now your Person entity has status 'not_home' with source `tracker_gps`. +4. While you are away from home, your Home Assistant instance is restarted. Until the `tracker_gps` receives an update, your status will be determined by the stationary trackers, since they will have the most recent update after a restart. Obviously, the status will be `not_home`. +5. Then you're going into a zone you have defined as `zone1`, `tracker_gps` sends an update, and now your status is `zone1` with source `tracker_gps`. +6. You've returned home and your mobile device has connected to the router, but `tracker_gps` hasn't updated yet. Your status will be `home` with source `tracker_router`. +7. After the `tracker_gps` update occurs, your status will still be `home` with source `tracker_router` or `tracker_ble`, whichever has the most recent update. -TL;DR: When you're at home, your position is determined first by stationary trackers (if any) and then by GPS. When you're outside your home, your position is determined firstly by GPS and then by stationary trackers. +In short, when you're at home, your position is determined first by stationary trackers (if any) and then by GPS. When you're outside your home, your position is determined firstly by GPS and then by stationary trackers. **Hint**: When you use multiple device trackers together, especially stationary and GPS trackers, it's advisable to set `consider_home` for stationary trackers as low as possible see [device_tracker](/integrations/device_tracker/#configuring-a-device_tracker-platform)). @@ -40,7 +40,7 @@ person: ## Configuring the `person` integration via YAML -If you prefer YAML, you can also configure your persons via `configuration.yaml`: +If you prefer YAML, you can also configure your persons via the `configuration.yaml` file: ```yaml # Example configuration.yaml entry @@ -61,11 +61,11 @@ person: required: true type: string user_id: - description: The user id of the Home Assistant user account for the person. *`user_id` (aka `ID`) of users can be inspected in the "Users"/"Manage users" screen in the configuration panel.* + description: The user ID of the Home Assistant user account for the person. `user_id` (aka `ID`) of users can be inspected in the "Users"/"Manage users" screen in the configuration panel. required: false type: string device_trackers: - description: A list of device tracker entity ids to track. These will represent the state of the person. + description: A list of device tracker entity IDs to track. These will represent the state of the person. required: false type: [string, list] {% endconfiguration %} From 2f4896de0f458e70df2229f3bdf3484b268f2e7e Mon Sep 17 00:00:00 2001 From: Hedda Date: Mon, 10 Aug 2020 19:41:46 +0200 Subject: [PATCH 24/34] Update zha.markdown with all TI CC1352x and CC2652x (#14211) Update zha.markdown with additional supported CC1352x and CC2652x Zigbee chips from Texas Instruments. CC1352P, CC1352R, CC2652P, CC2652R, CC2652RB use the same firmware/API version and are all supported. --- source/_integrations/zha.markdown | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/source/_integrations/zha.markdown b/source/_integrations/zha.markdown index 690a515773a..4acea91d28a 100644 --- a/source/_integrations/zha.markdown +++ b/source/_integrations/zha.markdown @@ -71,11 +71,10 @@ ZHA integration uses a hardware independent Zigbee stack implementation with mod - Texas Instruments CC253x, CC26x2R, and CC13x2 based radios (via the [zigpy-cc](https://github.com/zigpy/zigpy-cc) library for zigpy) - [CC2531 USB stick hardware flashed with custom Z-Stack coordinator firmware from the Zigbee2mqtt project](https://www.zigbee2mqtt.io/getting_started/what_do_i_need.html) - - [CC2530 + CC2591 USB stick hardware flashed with custom Z-Stack coordinator firmware from the Zigbee2mqtt project](https://www.zigbee2mqtt.io/getting_started/what_do_i_need.html) - - [CC2530 + CC2592 dev board hardware flashed with custom Z-Stack coordinator firmware from the Zigbee2mqtt project](https://www.zigbee2mqtt.io/getting_started/what_do_i_need.html) - - [CC2652R dev board hardware flashed with custom Z-Stack coordinator firmware from the Zigbee2mqtt project](https://www.zigbee2mqtt.io/getting_started/what_do_i_need.html) - - [CC1352P-2 dev board hardware flashed with custom Z-Stack coordinator firmware from the Zigbee2mqtt project](https://www.zigbee2mqtt.io/getting_started/what_do_i_need.html) + - [CC2530 + CC2591/CC2592 USB stick hardware flashed with custom Z-Stack coordinator firmware from the Zigbee2mqtt project](https://www.zigbee2mqtt.io/getting_started/what_do_i_need.html) - [CC2538 + CC2592 dev board hardware flashed with custom Z-Stack coordinator firmware from the Zigbee2mqtt project](https://www.zigbee2mqtt.io/getting_started/what_do_i_need.html) + - [CC2652P/CC2652R/CC2652RB USB stick or dev board hardware flashed with custom Z-Stack coordinator firmware from the Zigbee2mqtt project](https://www.zigbee2mqtt.io/information/supported_adapters) + - [CC1352P/CC1352R USB stick or dev board hardware flashed with custom Z-Stack coordinator firmware from the Zigbee2mqtt project](https://www.zigbee2mqtt.io/information/supported_adapters) - ZiGate based radios (via the [zigpy-zigate](https://github.com/zigpy/zigpy-zigate) library for zigpy and require firmware 3.1a or later) - [ZiGate USB-TTL](https://zigate.fr/produit/zigate-ttl/) - [ZiGate USB-DIN](https://zigate.fr/produit/zigate-usb-din/) From 8a48c2f9d345b20536d51f8764ccf5d04c74b590 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Aug 2020 19:42:12 +0200 Subject: [PATCH 25/34] Bump concurrent-ruby from 1.1.6 to 1.1.7 (#14210) Bumps [concurrent-ruby](https://github.com/ruby-concurrency/concurrent-ruby) from 1.1.6 to 1.1.7. - [Release notes](https://github.com/ruby-concurrency/concurrent-ruby/releases) - [Changelog](https://github.com/ruby-concurrency/concurrent-ruby/blob/master/CHANGELOG.md) - [Commits](https://github.com/ruby-concurrency/concurrent-ruby/compare/v1.1.6...v1.1.7) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 97f57c177c5..dff00afe2d5 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -19,7 +19,7 @@ GEM sass (>= 3.3.0, < 3.5) compass-import-once (1.0.5) sass (>= 3.2, < 3.5) - concurrent-ruby (1.1.6) + concurrent-ruby (1.1.7) em-websocket (0.5.1) eventmachine (>= 0.12.9) http_parser.rb (~> 0.6.0) From 807e23217200277cde243fcf3e08bd578d62192e Mon Sep 17 00:00:00 2001 From: tomlut <10679300+tomlut@users.noreply.github.com> Date: Tue, 11 Aug 2020 03:48:07 +1000 Subject: [PATCH 26/34] Add quotes to the payload_template example. (#14206) The payload_template example was missing enclosing quotes. Confirmed that this is required. `payload_template: {{ states('sun.sun') }}` causes the service call to fail, ("value should be string for dictionary value"). `payload_template: "{{ states('sun.sun') }}"` publishes correctly --- source/_docs/mqtt/service.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_docs/mqtt/service.markdown b/source/_docs/mqtt/service.markdown index f848093a169..c5b78436cfb 100644 --- a/source/_docs/mqtt/service.markdown +++ b/source/_docs/mqtt/service.markdown @@ -28,7 +28,7 @@ payload: on {% raw %} ```yaml topic: home-assistant/light/1/state -payload_template: {{ states('device_tracker.paulus') }} +payload_template: "{{ states('device_tracker.paulus') }}" ``` {% endraw %} From 61365feb983e53e50993b9d5bc035e9ffd1c6415 Mon Sep 17 00:00:00 2001 From: gozasc Date: Mon, 10 Aug 2020 14:54:31 -0400 Subject: [PATCH 27/34] Update installation.markdown (#14177) --- source/hassio/installation.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/hassio/installation.markdown b/source/hassio/installation.markdown index ffd768e4aad..6f834635b63 100644 --- a/source/hassio/installation.markdown +++ b/source/hassio/installation.markdown @@ -33,10 +33,10 @@ The following will take you through the steps required to install Home Assistant - Flash the downloaded image to an SD card using [balenaEtcher][balenaEtcher]. If using a Pi, we recommend at least a 32 GB SD card to avoid running out of space. - Load the appliance image into your virtual machine software. (Note: You are free to assign as much resources as you wish to the VM, please assign enough based on your add-on needs) - - For VirtualBox create a new virtual machine, select "Other Linux (64Bit), assign it atleast 2 GB of memory and "Use an existing virtual hard disk file", select the VDI file from above, afterwards edit the "Settings" of the VM and go "System" then Motherboard and Enable EFI, then "Network" "Adapter 1" Bridged and your adapter - - For Hyper-V create a new virtual machine, select "Generation 2", assign it at least 2 GB of memory and select "Connection -> "Your Virtual Switch that is bridged", then "Use an existing virtual hard disk" and select the VHDX file from above, after creation go to "Settings" -> "Security" and deselect "Enable Secure Boot" + - For VirtualBox create a new virtual machine, select "Other Linux (64Bit), assign it at least 2 GB of memory and "Use an existing virtual hard disk file", select the VDI file from above, afterwards edit the "Settings" of the VM and go "System" then Motherboard and Enable EFI, then "Network" "Adapter 1" Bridged and your adapter. + - For Hyper-V create a new virtual machine, select "Generation 2", assign it at least 2 GB of memory and select "Connection -> "Your Virtual Switch that is bridged", then "Use an existing virtual hard disk" and select the VHDX file from above, after creation go to "Settings" -> "Security" and deselect "Enable Secure Boot". - For KVM create a new virtual machine in `virt-manager`, select "Import existing disk image", provide the path to the QCOW2 image above, choose "Generic Default" for the operating system, assign at least 2 GB memory and 1 vCPU, check the box for "Customize configuration before install" and select your bridge under "Network Selection", then under customization select "Overview" -> "Firmware" -> "UEFI x86_64: ...". - - For Vmware Workstation create a new virtual machine, select "Custom", make it compatible with the default of Workstation and ESX, Choose "I will install the operating system later", select "Linux" -> "Other Linux 5.x or later kernel 64-bit", give it atleast 2GB RAM and 1vCPU, select "Use Bridged Networking" then "Use an existing virtual disk" and select the VMDK file above, after creation of VM go to "Settings" and "Options" then "Advanced" and select "Firmware type" to "UEFI" + - For Vmware Workstation create a new virtual machine, select "Custom", make it compatible with the default of Workstation and ESX, Choose "I will install the operating system later", select "Linux" -> "Other Linux 5.x or later kernel 64-bit", give it at least 2 GB RAM and 1vCPU, select "Use Bridged Networking" then "Use an existing virtual disk" and select the VMDK file above, after creation of VM go to "Settings" and "Options" then "Advanced" and select "Firmware type" to "UEFI". 3. Optional - set up the Wi-Fi or a static IP address. There are two possible places for that: - on a blank USB stick with a FAT32 partition having partition label `CONFIG`, while in its root directory, create the `network/my-network` file, or From 4b6c8fd45b8e59c48fab7851a5a7945aae446c85 Mon Sep 17 00:00:00 2001 From: Zac West <74188+zacwest@users.noreply.github.com> Date: Mon, 10 Aug 2020 12:00:59 -0700 Subject: [PATCH 28/34] [iOS] Exclude /ios/beta from universal links (#14220) * Exclude /ios/beta from universal links * Update apple-app-site-association Add /ios/beta/* to exclusion --- source/.well-known/apple-app-site-association | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/source/.well-known/apple-app-site-association b/source/.well-known/apple-app-site-association index 018b69de773..494213bed58 100644 --- a/source/.well-known/apple-app-site-association +++ b/source/.well-known/apple-app-site-association @@ -6,6 +6,8 @@ "appID": "UTQFCBPQRF.io.robbie.HomeAssistant.dev", "paths": [ "/ios/*", + "NOT /ios/beta", + "NOT /ios/beta/*", "/tag/*" ] }, @@ -13,6 +15,8 @@ "appID": "UTQFCBPQRF.io.robbie.HomeAssistant.beta", "paths": [ "/ios/*", + "NOT /ios/beta", + "NOT /ios/beta/*", "/tag/*" ] }, @@ -20,6 +24,8 @@ "appID": "UTQFCBPQRF.io.robbie.HomeAssistant", "paths": [ "/ios/*", + "NOT /ios/beta", + "NOT /ios/beta/*", "/tag/*" ] }, @@ -27,6 +33,8 @@ "appID": "QMQYCKL255.io.robbie.HomeAssistant.dev", "paths": [ "/ios/*", + "NOT /ios/beta", + "NOT /ios/beta/*", "/tag/*" ] }, @@ -34,6 +42,8 @@ "appID": "QMQYCKL255.io.robbie.HomeAssistant.beta", "paths": [ "/ios/*", + "NOT /ios/beta", + "NOT /ios/beta/*", "/tag/*" ] }, @@ -41,6 +51,8 @@ "appID": "QMQYCKL255.io.robbie.HomeAssistant", "paths": [ "/ios/*", + "NOT /ios/beta", + "NOT /ios/beta/*", "/tag/*" ] } From 765bfbd9be60d804a6a7a32bd5879adc2382b308 Mon Sep 17 00:00:00 2001 From: Matthew Grimes <7375220+cybergrimes@users.noreply.github.com> Date: Tue, 11 Aug 2020 02:58:36 -0500 Subject: [PATCH 29/34] Update device-specific.markdown (#14224) Fix typos --- source/_docs/z-wave/device-specific.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_docs/z-wave/device-specific.markdown b/source/_docs/z-wave/device-specific.markdown index 45395b5a4fa..eb84c5a0636 100644 --- a/source/_docs/z-wave/device-specific.markdown +++ b/source/_docs/z-wave/device-specific.markdown @@ -1444,8 +1444,8 @@ The configuration parameters will have to be added to the `zwcfg` file. Replace - - Adjust motion sensitivity where 10 is the most sensative setting. + + Adjust motion sensitivity where 10 is the most sensitive setting. default: 10 From 0a83f02893b7bcdde43699d7a455a5c0ab658641 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 11 Aug 2020 12:47:25 +0200 Subject: [PATCH 30/34] Update credits (#14205) --- source/developers/credits.markdown | 9634 ++++++++++++++++++---------- 1 file changed, 6288 insertions(+), 3346 deletions(-) diff --git a/source/developers/credits.markdown b/source/developers/credits.markdown index 24c8b831c0b..00cf5239720 100644 --- a/source/developers/credits.markdown +++ b/source/developers/credits.markdown @@ -1,53 +1,55 @@ --- title: "Credits" description: "Credits for the developers who contributed to Home Assistant." -date: 2019-11-17, 13:17:30 +0000 +date: 2020-08-09, 14:52:02 +0000 --- This page contains a list of people who have contributed in one way or another to Home Assistant. Hover over a username to see their contributions. ### Author -- [Paulus Schoutsen (@balloob)](https://github.com/balloob "10899 total commits to the Home Assistant orga: -5707 commits to home-assistant -2135 commits to home-assistant.io -2016 commits to home-assistant-polymer +- [Paulus Schoutsen (@balloob)](https://github.com/balloob "12079 total commits to the Home Assistant orga: +6467 commits to core +2269 commits to home-assistant.io +2202 commits to frontend +270 commits to developers.home-assistant 237 commits to home-assistant-js -235 commits to developers.home-assistant -151 commits to home-assistant-js-websocket -136 commits to netdisco -50 commits to hass-release -31 commits to probot-home-assistant +179 commits to home-assistant-js-websocket +143 commits to netdisco +63 commits to hass-release +39 commits to probot-home-assistant +32 commits to alerts.home-assistant.io 26 commits to LabelBot -26 commits to alerts.home-assistant.io 20 commits to data.home-assistant -18 commits to hassio-wheels -16 commits to home-assistant-assets -11 commits to hassio -11 commits to example-custom-config +16 commits to assets +14 commits to example-custom-config +14 commits to supervisor +11 commits to architecture 9 commits to hbmqtt-auth-home-assistant 7 commits to micropython-home-assistant -7 commits to hassio-homeassistant 7 commits to custom-panel-starter-kit-react 6 commits to home-assistant-notebooks 6 commits to ui-schema -4 commits to hassio-addons -3 commits to architecture +5 commits to hassio-addons +4 commits to android +4 commits to github-issue-maker 3 commits to hassio-build -3 commits to hassio-cli -2 commits to home-assistant-iOS +3 commits to docker +3 commits to supervised-installer 2 commits to lambda-home-assistant-github +2 commits to iOS 2 commits to issue-bot -2 commits to hassio-addons-example -2 commits to issue-maker +2 commits to addons-example +2 commits to ci-azure +2 commits to ada 1 commit to warrant 1 commit to feedparser -1 commit to ci-azure -1 commit to hassio-opencv -1 commit to custom-components-wheels +1 commit to mobile-apps-fcm-push 1 commit to codeowners-mention -1 commit to ada +1 commit to wheels +1 commit to wheels-custom-integrations 1 commit to open-zwave +1 commit to brands ") ### Contributors @@ -61,23 +63,30 @@ This page contains a list of people who have contributed in one way or another t 7 commits to home-assistant.io 1 commit to developers.home-assistant ") -- [333ryan18 (@333ryan18)](https://github.com/333ryan18 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [1v0dev (@1v0dev)](https://github.com/1v0dev "1 total commits to the Home Assistant orga: +1 commit to core ") -- [4lloyd (@4lloyd)](https://github.com/4lloyd "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [333ryan18 (@333ryan18)](https://github.com/333ryan18 "1 total commits to the Home Assistant orga: +1 commit to core +") +- [4lloyd (@4lloyd)](https://github.com/4lloyd "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io ") - [5mauggy (@5mauggy)](https://github.com/5mauggy "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [7even (@hwikene)](https://github.com/hwikene "2 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend 1 commit to home-assistant.io ") - [9R (@9R)](https://github.com/9R "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") +- [A C\+\+ MaNong (@zhuqf)](https://github.com/zhuqf "1 total commits to the Home Assistant orga: +1 commit to core +") - [A Gomes (@ambgomes)](https://github.com/ambgomes "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -85,16 +94,16 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [a\-andre (@a-andre)](https://github.com/a-andre "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") -- [a\-r\-j\-a\-n (@a-r-j-a-n)](https://github.com/a-r-j-a-n "6 total commits to the Home Assistant orga: -6 commits to home-assistant.io +- [a\-r\-j\-a\-n (@a-r-j-a-n)](https://github.com/a-r-j-a-n "7 total commits to the Home Assistant orga: +7 commits to home-assistant.io ") - [aaamoeder (@aaamoeder)](https://github.com/aaamoeder "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Aalian Khan (@AalianKhan)](https://github.com/AalianKhan "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Aalian Khan (@AalianKhan)](https://github.com/AalianKhan "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [aapjeisbaas (@aapjeisbaas)](https://github.com/aapjeisbaas "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -105,115 +114,134 @@ This page contains a list of people who have contributed in one way or another t - [Aaron (@mcd1992)](https://github.com/mcd1992 "5 total commits to the Home Assistant orga: 5 commits to open-zwave ") -- [Aaron Bach (@bachya)](https://github.com/bachya "294 total commits to the Home Assistant orga: -237 commits to home-assistant -53 commits to home-assistant.io -2 commits to alerts.home-assistant.io +- [Aaron Bach (@bachya)](https://github.com/bachya "471 total commits to the Home Assistant orga: +385 commits to core +75 commits to home-assistant.io +5 commits to alerts.home-assistant.io +4 commits to brands 1 commit to architecture 1 commit to people ") -- [Aaron Godfrey (@boralyl)](https://github.com/boralyl "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Aaron David Schneider (@AaronDavidSchneider)](https://github.com/AaronDavidSchneider "5 total commits to the Home Assistant orga: +3 commits to core +1 commit to wheels-custom-integrations +1 commit to brands ") -- [Aaron Linville (@linville)](https://github.com/linville "3 total commits to the Home Assistant orga: -2 commits to appdaemon +- [Aaron Godfrey (@boralyl)](https://github.com/boralyl "9 total commits to the Home Assistant orga: +4 commits to core +2 commits to brands +2 commits to home-assistant.io +1 commit to wheels-custom-integrations +") +- [Aaron Linville (@linville)](https://github.com/linville "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Aaron Malone (@aaroncm)](https://github.com/aaroncm "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Aaron Morris (@Morrisai)](https://github.com/Morrisai "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Aaron Parecki (@aaronpk)](https://github.com/aaronpk "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") - [Aaron Polley (@xarnze)](https://github.com/xarnze "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Aaron Wolen (@aaronwolen)](https://github.com/aaronwolen "4 total commits to the Home Assistant orga: 3 commits to open-zwave 1 commit to home-assistant.io ") -- [AaronDavidSchneider (@AaronDavidSchneider)](https://github.com/AaronDavidSchneider "1 total commits to the Home Assistant orga: -1 commit to home-assistant -") - [aaronpace (@aaronpace)](https://github.com/aaronpace "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [aaska (@aaska)](https://github.com/aaska "6 total commits to the Home Assistant orga: +5 commits to home-assistant.io +1 commit to core +") +- [Abe Wiersma (@Snuggert)](https://github.com/Snuggert "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Abhishek Anand (@aa755)](https://github.com/aa755 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [abondoe (@abondoe)](https://github.com/abondoe "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [ABOTlegacy (@ABOTlegacy)](https://github.com/ABOTlegacy "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Abílio Costa (@abmantis)](https://github.com/abmantis "47 total commits to the Home Assistant orga: -29 commits to home-assistant -14 commits to home-assistant.io -2 commits to home-assistant-polymer -1 commit to netdisco +- [Abílio Costa (@abmantis)](https://github.com/abmantis "55 total commits to the Home Assistant orga: +36 commits to core +15 commits to home-assistant.io +2 commits to frontend 1 commit to home-assistant-js-websocket +1 commit to netdisco ") -- [Achilleas Pipinellis (@axilleas)](https://github.com/axilleas "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Achilleas Pipinellis (@axilleas)](https://github.com/axilleas "4 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io ") - [ActuallyRuben (@ActuallyRuben)](https://github.com/ActuallyRuben "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Adam (@SilvrrGIT)](https://github.com/SilvrrGIT "28 total commits to the Home Assistant orga: -26 commits to home-assistant.io -2 commits to home-assistant +- [Adam (@SilvrrGIT)](https://github.com/SilvrrGIT "32 total commits to the Home Assistant orga: +30 commits to home-assistant.io +2 commits to core ") - [Adam Allport (@AAllport)](https://github.com/AAllport "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Adam Baxter (@voltagex)](https://github.com/voltagex "2 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer -1 commit to home-assistant +1 commit to frontend +1 commit to core ") -- [Adam Belebczuk (@sqldiablo)](https://github.com/sqldiablo "19 total commits to the Home Assistant orga: -13 commits to home-assistant +- [Adam Belebczuk (@sqldiablo)](https://github.com/sqldiablo "22 total commits to the Home Assistant orga: +15 commits to core 6 commits to home-assistant.io +1 commit to docker ") - [Adam Brin (@abrin)](https://github.com/abrin "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") +- [Adam Cheng (@adamchengtkc)](https://github.com/adamchengtkc "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Adam Cooper (@GenericStudent)](https://github.com/GenericStudent "11 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 3 commits to home-assistant.io ") - [Adam Dullage (@Dullage)](https://github.com/Dullage "7 total commits to the Home Assistant orga: 4 commits to home-assistant.io -3 commits to home-assistant +3 commits to core ") - [Adam Garcia (@pancho-villa)](https://github.com/pancho-villa "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Adam Goodbar (@adamgoodbar)](https://github.com/adamgoodbar "1 total commits to the Home Assistant orga: 1 commit to hassio-addons ") -- [Adam Gough (@gough)](https://github.com/gough "1 total commits to the Home Assistant orga: -1 commit to 1password-teams-open-source +- [Adam Griffiths (@aogriffiths)](https://github.com/aogriffiths "1 total commits to the Home Assistant orga: +1 commit to operating-system ") - [Adam Knight (@ahknight)](https://github.com/ahknight "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [Adam Mills (@armills)](https://github.com/armills "369 total commits to the Home Assistant orga: -197 commits to home-assistant -97 commits to home-assistant-polymer -64 commits to home-assistant.io -3 commits to home-assistant-js -3 commits to developers.home-assistant -2 commits to python-openzwave -1 commit to homebridge-homeassistant -1 commit to people -1 commit to open-zwave +- [Adam Król (@adamkrol93)](https://github.com/adamkrol93 "2 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core +") +- [Adam Liddell (@aaliddell)](https://github.com/aaliddell "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Adam Michaleski (@prairieapps)](https://github.com/prairieapps "5 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io +1 commit to brands ") - [Adam Reznechek (@adreznec)](https://github.com/adreznec "1 total commits to the Home Assistant orga: 1 commit to open-zwave @@ -222,10 +250,16 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Adam Stone (@astone123)](https://github.com/astone123 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [adamgreg (@adamgreg)](https://github.com/adamgreg "1 total commits to the Home Assistant orga: -1 commit to hassio-addons +- [Adam Žurek (@adaamz)](https://github.com/adaamz "1 total commits to the Home Assistant orga: +1 commit to core +") +- [adamaze (@adamaze)](https://github.com/adamaze "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [adamgreg (@adamgreg)](https://github.com/adamgreg "2 total commits to the Home Assistant orga: +2 commits to hassio-addons ") - [adamomg (@adamomg)](https://github.com/adamomg "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -234,12 +268,15 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io ") - [Adde Lovein (@addelovein)](https://github.com/addelovein "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Addison Lynch (@addisonlynch)](https://github.com/addisonlynch "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Addo Solutions (@AddoSolutions)](https://github.com/AddoSolutions "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Adduq (@Adduq)](https://github.com/Adduq "1 total commits to the Home Assistant orga: +- [Adduq (@ifelsq)](https://github.com/ifelsq "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [adebeun (@adebeun)](https://github.com/adebeun "1 total commits to the Home Assistant orga: @@ -252,8 +289,7 @@ This page contains a list of people who have contributed in one way or another t 6 commits to hassio-addons 1 commit to home-assistant.io ") -- [adipose (@adipose)](https://github.com/adipose "3 total commits to the Home Assistant orga: -2 commits to appdaemon +- [adipose (@adipose)](https://github.com/adipose "1 total commits to the Home Assistant orga: 1 commit to hassio-addons ") - [AdithyanI (@AdithyanI)](https://github.com/AdithyanI "1 total commits to the Home Assistant orga: @@ -262,24 +298,33 @@ This page contains a list of people who have contributed in one way or another t - [Aditya Shevade (@adibis)](https://github.com/adibis "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Adriaan Peeters (@apeeters)](https://github.com/apeeters "5 total commits to the Home Assistant orga: +- [Adorem (@Adorem)](https://github.com/Adorem "2 total commits to the Home Assistant orga: +2 commits to operating-system +") +- [adr29truck (@adr29truck)](https://github.com/adr29truck "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Adriaan Peeters (@apeeters)](https://github.com/apeeters "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io -1 commit to home-assistant +1 commit to hassio-addons +1 commit to core +") +- [AdriaanIO (@AdriaanIO)](https://github.com/AdriaanIO "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Adrian Campos (@adriancampos)](https://github.com/adriancampos "2 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend 1 commit to home-assistant.io ") - [Adrian Goins (@oskapt)](https://github.com/oskapt "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Adrian Popa (@mad-ady)](https://github.com/mad-ady "6 total commits to the Home Assistant orga: -4 commits to appdaemon -1 commit to home-assistant-polymer +- [Adrian Popa (@mad-ady)](https://github.com/mad-ady "2 total commits to the Home Assistant orga: +1 commit to frontend 1 commit to home-assistant.io ") - [Adrian Schröter (@adrianschroeter)](https://github.com/adrianschroeter "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Adrian Scillato (@ascillato)](https://github.com/ascillato "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -287,18 +332,22 @@ This page contains a list of people who have contributed in one way or another t - [Adrian Yee (@brewt)](https://github.com/brewt "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [Adrien Ball (@adrienball)](https://github.com/adrienball "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [adrianmihalko (@adrianmihalko)](https://github.com/adrianmihalko "362 total commits to the Home Assistant orga: +239 commits to brands +123 commits to home-assistant.io ") - [Adrien Brault (@adrienbrault)](https://github.com/adrienbrault "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Adrien Foulon (@Tofandel)](https://github.com/Tofandel "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Adrián López (@adrianlzt)](https://github.com/adrianlzt "8 total commits to the Home Assistant orga: 6 commits to home-assistant.io -2 commits to home-assistant +2 commits to core +") +- [Adrián Moreno (@adrianmo)](https://github.com/adrianmo "1 total commits to the Home Assistant orga: +1 commit to brands ") - [aenea (@aenea)](https://github.com/aenea "2 total commits to the Home Assistant orga: 2 commits to open-zwave @@ -307,10 +356,16 @@ This page contains a list of people who have contributed in one way or another t 1 commit to 1password-teams-open-source ") - [Aephir (@Aephir)](https://github.com/Aephir "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [aetolus (@aetolus)](https://github.com/aetolus "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core +") +- [Agneev Mukherjee (@agneevX)](https://github.com/agneevX "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") +- [agrieco (@agrieco)](https://github.com/agrieco "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [AGSPhoenix (@AGSPhoenix)](https://github.com/AGSPhoenix "1 total commits to the Home Assistant orga: 1 commit to feedparser @@ -320,109 +375,148 @@ This page contains a list of people who have contributed in one way or another t ") - [ahertz (@ahertz)](https://github.com/ahertz "3 total commits to the Home Assistant orga: 2 commits to open-zwave -1 commit to home-assistant +1 commit to core +") +- [Ahmet BARIŞ (@barisahmet)](https://github.com/barisahmet "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [ahobsonsayers (@ahobsonsayers)](https://github.com/ahobsonsayers "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [aidbish (@aidbish)](https://github.com/aidbish "13 total commits to the Home Assistant orga: 11 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [aisbergde (@aisbergde)](https://github.com/aisbergde "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Aivaras Sevelevicius (@asev)](https://github.com/asev "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [AJ Schmidt (@ajschmidt8)](https://github.com/ajschmidt8 "9 total commits to the Home Assistant orga: +7 commits to core +2 commits to home-assistant.io +") - [ajayjohn (@ajayjohn)](https://github.com/ajayjohn "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [ajmarks (@ajmarks)](https://github.com/ajmarks "4 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +1 commit to core +1 commit to home-assistant.io +") - [ajobbins (@ajobbins)](https://github.com/ajobbins "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [AJStubbsy (@AJStubbsy)](https://github.com/AJStubbsy "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") - [akargl (@akargl)](https://github.com/akargl "2 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer 1 commit to developers.home-assistant +1 commit to frontend ") -- [akasma74 (@akasma74)](https://github.com/akasma74 "20 total commits to the Home Assistant orga: -18 commits to home-assistant.io -2 commits to home-assistant +- [akasma74 (@akasma74)](https://github.com/akasma74 "56 total commits to the Home Assistant orga: +48 commits to home-assistant.io +6 commits to core +2 commits to developers.home-assistant ") -- [akloeckner (@akloeckner)](https://github.com/akloeckner "15 total commits to the Home Assistant orga: -8 commits to home-assistant.io -7 commits to home-assistant +- [akloeckner (@akloeckner)](https://github.com/akloeckner "17 total commits to the Home Assistant orga: +9 commits to home-assistant.io +8 commits to core ") - [Akriti Chadda (@akriticg)](https://github.com/akriticg "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Akın Ömeroğlu (@akinomeroglu)](https://github.com/akinomeroglu "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Akın Ömeroğlu (@akinomeroglu)](https://github.com/akinomeroglu "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io ") - [Alain Tavan (@alain57)](https://github.com/alain57 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Alain Turbide (@Dilbert66)](https://github.com/Dilbert66 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Alain Turbide (@Dilbert66)](https://github.com/Dilbert66 "2 total commits to the Home Assistant orga: +2 commits to core ") - [Alan Bowman (@alanbowman)](https://github.com/alanbowman "5 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 1 commit to home-assistant.io ") - [Alan Fischer (@alanfischer)](https://github.com/alanfischer "21 total commits to the Home Assistant orga: -17 commits to home-assistant +17 commits to core 4 commits to home-assistant.io ") -- [Alan Tse (@alandtse)](https://github.com/alandtse "10 total commits to the Home Assistant orga: -6 commits to home-assistant -2 commits to home-assistant.io +- [Alan Murray (@atmurray)](https://github.com/atmurray "3 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core +1 commit to home-assistant.io +") +- [Alan Quinby (@Alan-K2)](https://github.com/Alan-K2 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Alan Tse (@alandtse)](https://github.com/alandtse "49 total commits to the Home Assistant orga: +36 commits to core +8 commits to home-assistant.io +3 commits to wheels-custom-integrations 1 commit to developers.home-assistant -1 commit to custom-components-wheels +1 commit to brands ") - [Alasdair Nicol (@alasdairnicol)](https://github.com/alasdairnicol "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Alastair D'Silva (@deece)](https://github.com/deece "5 total commits to the Home Assistant orga: -2 commits to hassos -1 commit to hassio -1 commit to hassio-homeassistant +2 commits to operating-system 1 commit to hassio-build -") -- [Alba Mendez (@jmendeth)](https://github.com/jmendeth "1 total commits to the Home Assistant orga: -1 commit to home-assistant-cli +1 commit to supervisor +1 commit to docker ") - [Albatross (@DyingAlbatross)](https://github.com/DyingAlbatross "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Albert Gouws (@KiLLeRRaT)](https://github.com/KiLLeRRaT "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Albert Lee (@trisk)](https://github.com/trisk "20 total commits to the Home Assistant orga: -12 commits to home-assistant +12 commits to core 8 commits to home-assistant.io ") - [Alberto Arias Maestro (@albertoarias)](https://github.com/albertoarias "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [AlCalzone (@AlCalzone)](https://github.com/AlCalzone "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [Alec Rust (@AlecRust)](https://github.com/AlecRust "21 total commits to the Home Assistant orga: -15 commits to home-assistant.io +- [Alec Holmes (@clockworkant)](https://github.com/clockworkant "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Alec Rust (@AlecRust)](https://github.com/AlecRust "25 total commits to the Home Assistant orga: +19 commits to home-assistant.io 2 commits to companion.home-assistant -1 commit to home-assistant-polymer 1 commit to hassio-addons 1 commit to developers.home-assistant +1 commit to frontend 1 commit to alerts.home-assistant.io ") -- [Aleix Murtra (@alemuro)](https://github.com/alemuro "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Aleix Murtra (@alemuro)](https://github.com/alemuro "5 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io +1 commit to brands +") +- [Alejandro Rivera (@AlejandroRivera)](https://github.com/AlejandroRivera "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Aleks (@IrealiTY)](https://github.com/IrealiTY "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Aleksandar Todorović \(r3bl\) (@aleksandar-todorovic)](https://github.com/aleksandar-todorovic "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Aleksandr Smirnov (@jaxer)](https://github.com/jaxer "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Aleksey Gureiev (@alg)](https://github.com/alg "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -433,61 +527,70 @@ This page contains a list of people who have contributed in one way or another t - [alekslyse (@alekslyse)](https://github.com/alekslyse "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Alessandro Di Felice (@difelice)](https://github.com/difelice "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Alessandro Mogavero (@alexmogavero)](https://github.com/alexmogavero "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [Alessandro Staniscia (@Odyno)](https://github.com/Odyno "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [Alessio Margelli (@alex9446)](https://github.com/alex9446 "2 total commits to the Home Assistant orga: 1 commit to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Alex (@shr00mie)](https://github.com/shr00mie "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") - [Alex (@asbach)](https://github.com/asbach "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Alex (@MungoRae)](https://github.com/MungoRae "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Alex (@alexrockt)](https://github.com/alexrockt "1 total commits to the Home Assistant orga: -1 commit to home-assistant -") -- [Alex (@nnmalex)](https://github.com/nnmalex "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Alex (@r-xela)](https://github.com/r-xela "1 total commits to the Home Assistant orga: +1 commit to core ") - [Alex (@alexanderVonBergner)](https://github.com/alexanderVonBergner "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Alex (@nnmalex)](https://github.com/nnmalex "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Alex Bahm (@techfreek)](https://github.com/techfreek "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Alex Barcelo (@alexbarcelo)](https://github.com/alexbarcelo "8 total commits to the Home Assistant orga: 4 commits to home-assistant.io 3 commits to hassio-addons -1 commit to home-assistant +1 commit to core ") - [Alex Calderon (@AlexCalderon02)](https://github.com/AlexCalderon02 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Alex Cragg (@epicalex)](https://github.com/epicalex "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Alex Fung (@paraselene)](https://github.com/paraselene "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Alex Harvey (@infamy)](https://github.com/infamy "29 total commits to the Home Assistant orga: -14 commits to home-assistant +14 commits to core 11 commits to home-assistant.io -4 commits to hassos +4 commits to operating-system +") +- [Alex Kretzschmar (@IronicBadger)](https://github.com/IronicBadger "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Alex Lauerman (@alexlauerman)](https://github.com/alexlauerman "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Alex Mekkering (@AlexMekkering)](https://github.com/AlexMekkering "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Alex MF (@adsmf)](https://github.com/adsmf "1 total commits to the Home Assistant orga: 1 commit to hassio-addons @@ -499,32 +602,42 @@ This page contains a list of people who have contributed in one way or another t 1 commit to gu-who ") - [Alex Osadchyy (@aosadchyy)](https://github.com/aosadchyy "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Alex Popoutsis (@apop880)](https://github.com/apop880 "4 total commits to the Home Assistant orga: 2 commits to developers.home-assistant 2 commits to home-assistant.io ") - [Alex S (@asleeis)](https://github.com/asleeis "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Alex S\. Glomsaas (@xlexi)](https://github.com/xlexi "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Alex Solomaha (@CyanoFresh)](https://github.com/CyanoFresh "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Alex Tzonkov (@attzonko)](https://github.com/attzonko "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Alex X (@AlexxIT)](https://github.com/AlexxIT "1 total commits to the Home Assistant orga: +- [Alex van den Hoogen (@alex3305)](https://github.com/alex3305 "5 total commits to the Home Assistant orga: +3 commits to home-assistant.io +2 commits to core +") +- [Alex X (@AlexxIT)](https://github.com/AlexxIT "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations 1 commit to home-assistant.io ") - [Alex1234 (@Alex1234)](https://github.com/Alex1234 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Alexander (@ualex73)](https://github.com/ualex73 "164 total commits to the Home Assistant orga: +- [Alexander (@ualex73)](https://github.com/ualex73 "168 total commits to the Home Assistant orga: 162 commits to open-zwave -1 commit to home-assistant -1 commit to home-assistant.io +2 commits to home-assistant.io +2 commits to core +1 commit to wheels-custom-integrations +1 commit to brands ") - [Alexander (@vtochq)](https://github.com/vtochq "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -535,125 +648,186 @@ This page contains a list of people who have contributed in one way or another t - [Alexander Eisele (@derEisele)](https://github.com/derEisele "1 total commits to the Home Assistant orga: 1 commit to python-openzwave ") +- [Alexander Foxleigh (@foxleigh81)](https://github.com/foxleigh81 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Alexander Goldstone (@alexgoldstone)](https://github.com/alexgoldstone "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Alexander Groß (@agross)](https://github.com/agross "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Alexander Hardwicke (@alexhardwicke)](https://github.com/alexhardwicke "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Alexander Hardwicke (@alexhardwicke)](https://github.com/alexhardwicke "3 total commits to the Home Assistant orga: +2 commits to core 1 commit to home-assistant.io ") - [Alexander Hradetzky (@blitzkneisser)](https://github.com/blitzkneisser "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") - [Alexander Kratzer (@hexxter)](https://github.com/hexxter "8 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core ") - [Alexander Lyon (@arlyon)](https://github.com/arlyon "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Alexander Rust (@binarybucks)](https://github.com/binarybucks "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Alexander Petrov (@meanmail)](https://github.com/meanmail "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Alexander Ryazanov (@alryaz)](https://github.com/alryaz "7 total commits to the Home Assistant orga: +4 commits to brands +3 commits to wheels-custom-integrations +") +- [Alexander Schneider (@alexschneider)](https://github.com/alexschneider "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Alexander Slansky (@aslansky)](https://github.com/aslansky "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Alexandre Perrin (@kAworu)](https://github.com/kAworu "4 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [Alexandre Leites (@xalexslx)](https://github.com/xalexslx "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Alexandre Perrin (@kAworu)](https://github.com/kAworu "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Alexandre Prates Dias (@pratesbh)](https://github.com/pratesbh "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Alexei Chetroi (@Adminiuga)](https://github.com/Adminiuga "72 total commits to the Home Assistant orga: -70 commits to home-assistant -1 commit to home-assistant-polymer +- [Alexei Chetroi (@Adminiuga)](https://github.com/Adminiuga "198 total commits to the Home Assistant orga: +186 commits to core +8 commits to home-assistant.io +3 commits to frontend 1 commit to people ") +- [Alexey (@Spirit-X)](https://github.com/Spirit-X "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Alexey Kardashevskiy (@aik)](https://github.com/aik "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Alexey Kustov (@papajojo)](https://github.com/papajojo "3 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core +1 commit to home-assistant.io +") - [Alexey Pristavkin (@Pristavkin)](https://github.com/Pristavkin "1 total commits to the Home Assistant orga: -1 commit to hassos +1 commit to operating-system ") - [Alexey Savin (@savin-alexey)](https://github.com/savin-alexey "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Alexis Iglauer (@ax42)](https://github.com/ax42 "4 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [Alexis Iglauer (@ax42)](https://github.com/ax42 "5 total commits to the Home Assistant orga: +5 commits to home-assistant.io +") +- [AlexSchmitz222 (@AlexSchmitz222)](https://github.com/AlexSchmitz222 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [AlexVPopov (@AlexVPopov)](https://github.com/AlexVPopov "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Alexxander0 (@Alexxander0)](https://github.com/Alexxander0 "3 total commits to the Home Assistant orga: +- [Alexxander0 (@Alexxander0)](https://github.com/Alexxander0 "4 total commits to the Home Assistant orga: +2 commits to core 2 commits to home-assistant.io -1 commit to home-assistant ") - [Alfie Day (@Azelphur)](https://github.com/Azelphur "12 total commits to the Home Assistant orga: -12 commits to home-assistant +12 commits to core ") -- [Aliaksandr (@minchik)](https://github.com/minchik "7 total commits to the Home Assistant orga: +- [Algirdas Č\. (@algirdasc)](https://github.com/algirdasc "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Aliaksandr (@minchik)](https://github.com/minchik "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io -2 commits to appdaemon -2 commits to home-assistant +2 commits to core ") -- [Alistair Galbraith (@alistairg)](https://github.com/alistairg "4 total commits to the Home Assistant orga: -3 commits to home-assistant -1 commit to home-assistant.io +- [Alistair Galbraith (@alistairg)](https://github.com/alistairg "9 total commits to the Home Assistant orga: +6 commits to core +2 commits to home-assistant.io +1 commit to brands +") +- [Allan Clark (@chickenandpork)](https://github.com/chickenandpork "1 total commits to the Home Assistant orga: +1 commit to hassio-addons ") - [Allan Glen (@allanglen)](https://github.com/allanglen "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Allan Klein (@allanak)](https://github.com/allanak "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Allan Klein (@allanak)](https://github.com/allanak "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") -- [Allan Persson (@allanpersson)](https://github.com/allanpersson "9 total commits to the Home Assistant orga: -9 commits to home-assistant.io +- [Allan Persson (@allanpersson)](https://github.com/allanpersson "16 total commits to the Home Assistant orga: +14 commits to home-assistant.io +2 commits to hassio-addons +") +- [Allison (@Leapo)](https://github.com/Leapo "1 total commits to the Home Assistant orga: +1 commit to core ") - [allserv (@allserv)](https://github.com/allserv "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Almog Moyal (@almogmoyal)](https://github.com/almogmoyal "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Almost Engineer (@almostengr)](https://github.com/almostengr "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [almostserious (@almostserious)](https://github.com/almostserious "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") -- [Alok Saboo (@arsaboo)](https://github.com/arsaboo "185 total commits to the Home Assistant orga: -101 commits to home-assistant.io -70 commits to home-assistant -7 commits to home-assistant-polymer +- [Alok Saboo (@arsaboo)](https://github.com/arsaboo "190 total commits to the Home Assistant orga: +104 commits to home-assistant.io +72 commits to core +7 commits to frontend 3 commits to developers.home-assistant 1 commit to hassbian-scripts 1 commit to pi-gen 1 commit to hassio-addons 1 commit to people ") +- [Alpha Chen (@kejadlen)](https://github.com/kejadlen "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Alpha Tango (@alphatangoalpha)](https://github.com/alphatangoalpha "2 total commits to the Home Assistant orga: 1 commit to hassio-addons 1 commit to home-assistant.io ") +- [AlucardZero (@chennin)](https://github.com/chennin "15 total commits to the Home Assistant orga: +11 commits to home-assistant.io +4 commits to core +") - [Alvi Mahadi (@alvi2496)](https://github.com/alvi2496 "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") +- [alxrdn (@alxrdn)](https://github.com/alxrdn "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [ambarkhuizen (@ambarkhuizen)](https://github.com/ambarkhuizen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [amigian74 (@amigian74)](https://github.com/amigian74 "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Amir Hanan (@Amir974)](https://github.com/Amir974 "9 total commits to the Home Assistant orga: 9 commits to home-assistant.io ") +- [Amir hossein Hossein Zadeh Karimi (@AmirHosseinKarimi)](https://github.com/AmirHosseinKarimi "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Amol Katdare (@amolkatdare)](https://github.com/amolkatdare "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [amorsillo (@AndrewMorsillo)](https://github.com/AndrewMorsillo "2 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +- [ams123ios (@ams123ios)](https://github.com/ams123ios "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Ana Paula Gomes (@anapaulagomes)](https://github.com/anapaulagomes "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Anastasia A (@Sacret)](https://github.com/Sacret "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Anatoly (@dontbug)](https://github.com/dontbug "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Anders Einar Hilden (@Kagee)](https://github.com/Kagee "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -666,37 +840,44 @@ This page contains a list of people who have contributed in one way or another t - [Anders Ljusberg (@andlju)](https://github.com/andlju "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Anders Melchiorsen (@amelchio)](https://github.com/amelchio "410 total commits to the Home Assistant orga: -331 commits to home-assistant -65 commits to home-assistant.io +- [Anders Melchiorsen (@amelchio)](https://github.com/amelchio "432 total commits to the Home Assistant orga: +352 commits to core +66 commits to home-assistant.io 6 commits to pyharmony -3 commits to home-assistant-polymer -2 commits to home-assistant-iOS +3 commits to frontend +2 commits to iOS 2 commits to developers.home-assistant 1 commit to people ") - [Anders Norås (@anoras)](https://github.com/anoras "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Andi (@h4de5)](https://github.com/h4de5 "3 total commits to the Home Assistant orga: +3 commits to core +") - [andig (@andig)](https://github.com/andig "2 total commits to the Home Assistant orga: 2 commits to pi-gen ") -- [Andre Lengwenus (@alengwenus)](https://github.com/alengwenus "33 total commits to the Home Assistant orga: -20 commits to home-assistant -13 commits to home-assistant.io -") -- [Andre Richter (@andre-richter)](https://github.com/andre-richter "6 total commits to the Home Assistant orga: -5 commits to home-assistant +- [Andre (@andre68723)](https://github.com/andre68723 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Andrea (@BubiDevs)](https://github.com/BubiDevs "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Andre Lengwenus (@alengwenus)](https://github.com/alengwenus "41 total commits to the Home Assistant orga: +26 commits to core +14 commits to home-assistant.io +1 commit to brands +") +- [Andre Richter (@andre-richter)](https://github.com/andre-richter "7 total commits to the Home Assistant orga: +6 commits to core +1 commit to home-assistant.io +") +- [Andrea (@BubiDevs)](https://github.com/BubiDevs "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [Andrea Campi (@andreacampi)](https://github.com/andreacampi "8 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 2 commits to home-assistant.io ") -- [Andrea Cioccarelli (@AndreaCioccarelli)](https://github.com/AndreaCioccarelli "2 total commits to the Home Assistant orga: +- [Andrea Cioccarelli (@cioccarellia)](https://github.com/cioccarellia "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") - [Andrea Donno (@adonno)](https://github.com/adonno "6 total commits to the Home Assistant orga: @@ -707,47 +888,53 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Andrea Tosatto (@andtos90)](https://github.com/andtos90 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Andreas Björshammar (@abjorshammar)](https://github.com/abjorshammar "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Andreas Cambitsis (@acambitsis)](https://github.com/acambitsis "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Andreas Ehn (@ehn)](https://github.com/ehn "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Andreas Franz (@andreasfranz)](https://github.com/andreasfranz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Andreas Hartl (@nd-net)](https://github.com/nd-net "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Andreas Jacobsen (@andreasjacobsen93)](https://github.com/andreasjacobsen93 "9 total commits to the Home Assistant orga: 6 commits to home-assistant.io 2 commits to hassio-addons -1 commit to home-assistant +1 commit to core ") -- [Andreas Oberritter (@mtdcr)](https://github.com/mtdcr "7 total commits to the Home Assistant orga: -4 commits to home-assistant -3 commits to home-assistant.io +- [Andreas Oberritter (@mtdcr)](https://github.com/mtdcr "12 total commits to the Home Assistant orga: +7 commits to core +5 commits to home-assistant.io ") - [Andreas Rammhold (@andir)](https://github.com/andir "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [Andreas Renberg \(IQAndreas\) (@IQAndreas)](https://github.com/IQAndreas "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Andreas Riddering (@Dunstkreis)](https://github.com/Dunstkreis "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Andreas Rydbrink (@easink)](https://github.com/easink "7 total commits to the Home Assistant orga: 6 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") -- [Andreas Setterlind (@Gamester17)](https://github.com/Gamester17 "6 total commits to the Home Assistant orga: -6 commits to home-assistant.io +- [Andreas Setterlind (@Gamester17)](https://github.com/Gamester17 "8 total commits to the Home Assistant orga: +8 commits to home-assistant.io ") - [Andreas Wolter (@a-wolter)](https://github.com/a-wolter "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [andreasfelder (@andreasfelder)](https://github.com/andreasfelder "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -759,11 +946,11 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io ") - [Andrei (@gipnokote)](https://github.com/gipnokote "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Andrei Pop (@andreipop2005)](https://github.com/andreipop2005 "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Andrei Popovici (@andreipopovici)](https://github.com/andreipopovici "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -775,58 +962,68 @@ This page contains a list of people who have contributed in one way or another t - [Andrejs (@tlpbu)](https://github.com/tlpbu "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Andrew (@aneisch)](https://github.com/aneisch "6 total commits to the Home Assistant orga: -5 commits to home-assistant.io -1 commit to home-assistant +- [Andrew (@aneisch)](https://github.com/aneisch "10 total commits to the Home Assistant orga: +7 commits to home-assistant.io +3 commits to core ") - [Andrew (@aoakeson)](https://github.com/aoakeson "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Andrew (@adpriebe)](https://github.com/adpriebe "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Andrew (@a005)](https://github.com/a005 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Andrew Ash (@ash211)](https://github.com/ash211 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Andrew Beveridge (@beveradb)](https://github.com/beveradb "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") - [Andrew Chatham (@achatham)](https://github.com/achatham "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") -- [Andrew Cockburn (@acockburn)](https://github.com/acockburn "1533 total commits to the Home Assistant orga: -1394 commits to appdaemon +- [Andrew Cockburn (@acockburn)](https://github.com/acockburn "139 total commits to the Home Assistant orga: 88 commits to hadashboard 29 commits to scenegen 22 commits to home-assistant.io ") -- [Andrew Fahrenholtz (@PlasmaEye)](https://github.com/PlasmaEye "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Andrew Fahrenholtz (@PlasmaEye)](https://github.com/PlasmaEye "5 total commits to the Home Assistant orga: +3 commits to home-assistant.io +1 commit to developers.home-assistant +1 commit to core ") -- [Andrew Garrett (@werdnum)](https://github.com/werdnum "2 total commits to the Home Assistant orga: -1 commit to appdaemon +- [Andrew Garrett (@werdnum)](https://github.com/werdnum "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Andrew Hall (@FattusMannus)](https://github.com/FattusMannus "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Andrew Hayworth (@ahayworth)](https://github.com/ahayworth "13 total commits to the Home Assistant orga: -10 commits to home-assistant -3 commits to home-assistant.io +- [Andrew Hayworth (@ahayworth)](https://github.com/ahayworth "15 total commits to the Home Assistant orga: +11 commits to core +4 commits to home-assistant.io +") +- [Andrew Jackson (@andrew-codechimp)](https://github.com/andrew-codechimp "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Andrew LeCody (@aceat64)](https://github.com/aceat64 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Andrew Loe (@loe)](https://github.com/loe "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") -- [Andrew Onyshchuk (@oandrew)](https://github.com/oandrew "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Andrew McRae (@aamcrae)](https://github.com/aamcrae "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Andrew Onyshchuk (@oandrew)](https://github.com/oandrew "4 total commits to the Home Assistant orga: +4 commits to core ") - [Andrew Patton (@acusti)](https://github.com/acusti "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -835,11 +1032,11 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Andrew Rowson (@growse)](https://github.com/growse "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") -- [Andrew Sayre (@andrewsayre)](https://github.com/andrewsayre "127 total commits to the Home Assistant orga: -91 commits to home-assistant -31 commits to home-assistant.io +- [Andrew Sayre (@andrewsayre)](https://github.com/andrewsayre "136 total commits to the Home Assistant orga: +99 commits to core +32 commits to home-assistant.io 3 commits to developers.home-assistant 1 commit to netdisco 1 commit to people @@ -857,10 +1054,10 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Andrew Stock (@watchforstock)](https://github.com/watchforstock "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Andrew Thigpen (@andythigpen)](https://github.com/andythigpen "33 total commits to the Home Assistant orga: -32 commits to home-assistant +32 commits to core 1 commit to home-assistant-js ") - [Andrew Wedgbury (@sconemad)](https://github.com/sconemad "1 total commits to the Home Assistant orga: @@ -868,7 +1065,7 @@ This page contains a list of people who have contributed in one way or another t ") - [Andrew Williams (@nikdoof)](https://github.com/nikdoof "5 total commits to the Home Assistant orga: 4 commits to scenegen -1 commit to home-assistant +1 commit to core ") - [Andrew Wong (@featherbear)](https://github.com/featherbear "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -880,64 +1077,85 @@ This page contains a list of people who have contributed in one way or another t 8 commits to home-assistant.io ") - [andrewdolphin (@andrewdolphin)](https://github.com/andrewdolphin "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [andrewfoster (@andrewfoster)](https://github.com/andrewfoster "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Andrey (@andrey-git)](https://github.com/andrey-git "330 total commits to the Home Assistant orga: -148 commits to home-assistant -139 commits to home-assistant-polymer +148 commits to core +139 commits to frontend 37 commits to home-assistant.io 4 commits to open-zwave 1 commit to home-assistant-js-websocket 1 commit to people ") +- [Andrey (@divanikus)](https://github.com/divanikus "1 total commits to the Home Assistant orga: +1 commit to core +") - [Andrey "Limych" Khrolenok (@Limych)](https://github.com/Limych "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") -- [Andrey Kupreychik (@foxel)](https://github.com/foxel "24 total commits to the Home Assistant orga: -17 commits to home-assistant -7 commits to home-assistant.io +- [Andrey Kupreychik (@foxel)](https://github.com/foxel "30 total commits to the Home Assistant orga: +19 commits to core +9 commits to home-assistant.io +1 commit to frontend +1 commit to brands ") - [Andrey Mikhaylov \(lolmaus\) (@lolmaus)](https://github.com/lolmaus "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Andrey Petrov (@anpetrov)](https://github.com/anpetrov "2 total commits to the Home Assistant orga: 1 commit to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Andrey Ulanov (@aulanov)](https://github.com/aulanov "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") +- [androidemil (@androidemil)](https://github.com/androidemil "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Andrzej (@andriej)](https://github.com/andriej "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") -- [András Rutkai (@rutkai)](https://github.com/rutkai "4 total commits to the Home Assistant orga: -2 commits to home-assistant +- [András Rutkai (@rutkai)](https://github.com/rutkai "5 total commits to the Home Assistant orga: +3 commits to core 2 commits to home-assistant.io ") - [André Hahn (@ahahn94)](https://github.com/ahahn94 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [André Lobo (@andrewolfy)](https://github.com/andrewolfy "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Andréas Lundgren (@adevade)](https://github.com/adevade "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Andy Castille (@Klikini)](https://github.com/Klikini "22 total commits to the Home Assistant orga: -13 commits to home-assistant +13 commits to core 9 commits to home-assistant.io ") - [Andy Cordill (@acordill)](https://github.com/acordill "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Andy Grunwald (@andygrunwald)](https://github.com/andygrunwald "1 total commits to the Home Assistant orga: +1 commit to core +") - [Andy Kittner (@andkit)](https://github.com/andkit "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Andy Lindeman (@alindeman)](https://github.com/alindeman "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Andy Loughran (@andylockran)](https://github.com/andylockran "6 total commits to the Home Assistant orga: +3 commits to core +3 commits to home-assistant.io +") +- [Andy Piper (@andypiper)](https://github.com/andypiper "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Andy Shilton (@andyshilton)](https://github.com/andyshilton "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -948,24 +1166,20 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [andyat (@andyat)](https://github.com/andyat "2 total commits to the Home Assistant orga: -2 commits to home-assistant -") -- [andylockran (@andylockran)](https://github.com/andylockran "4 total commits to the Home Assistant orga: -2 commits to home-assistant -2 commits to home-assistant.io +2 commits to core ") - [angel12 (@angel12)](https://github.com/angel12 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Angie1313 (@Angie1313)](https://github.com/Angie1313 "2 total commits to the Home Assistant orga: 2 commits to developers.home-assistant ") - [Anglac (@Anglac)](https://github.com/Anglac "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Anna Prosvetova (@aprosvetova)](https://github.com/aprosvetova "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Anna Shipman (@annashipman)](https://github.com/annashipman "1 total commits to the Home Assistant orga: 1 commit to gu-who @@ -974,10 +1188,13 @@ This page contains a list of people who have contributed in one way or another t 1 commit to hassio-addons ") - [anrudolph (@anrudolph)](https://github.com/anrudolph "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Ansgar Mertens (@ansgarm)](https://github.com/ansgarm "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Anthony Arnaud (@aarnaud)](https://github.com/aarnaud "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Anthony Carbone (@ant-car)](https://github.com/ant-car "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -985,27 +1202,30 @@ This page contains a list of people who have contributed in one way or another t - [Anthony Hughes (@tony2nite)](https://github.com/tony2nite "15 total commits to the Home Assistant orga: 12 commits to pyharmony 1 commit to netdisco -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [antihate8 (@antihate8)](https://github.com/antihate8 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Antoine (@Twanislas)](https://github.com/Twanislas "3 total commits to the Home Assistant orga: +3 commits to frontend +") - [Antoine Bertin (@Diaoul)](https://github.com/Diaoul "7 total commits to the Home Assistant orga: 3 commits to home-assistant.io -2 commits to home-assistant -1 commit to home-assistant-polymer +2 commits to core 1 commit to hassio-addons +1 commit to frontend ") - [Antoine GRÉA (@grea09)](https://github.com/grea09 "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [Antoine Meillet (@inetAnt)](https://github.com/inetAnt "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Antoine Rahier (@Twanislas)](https://github.com/Twanislas "3 total commits to the Home Assistant orga: -3 commits to home-assistant-polymer +- [Anton Averkiev (@wowgamr)](https://github.com/wowgamr "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Anton Babenko (@antonbabenko)](https://github.com/antonbabenko "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source @@ -1017,39 +1237,52 @@ This page contains a list of people who have contributed in one way or another t 1 commit to libcoap ") - [Anton Johansson (@anton-johansson)](https://github.com/anton-johansson "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Anton Kurnitzky (@plantoschka)](https://github.com/plantoschka "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Anton Lundin (@glance-)](https://github.com/glance- "8 total commits to the Home Assistant orga: -7 commits to home-assistant +7 commits to core 1 commit to netdisco ") - [Anton Sarukhanov (@antsar)](https://github.com/antsar "8 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 3 commits to home-assistant.io -1 commit to home-assistant-polymer +1 commit to frontend ") -- [Anton\-Juul\-Naber (@antonjuulnaber)](https://github.com/antonjuulnaber "1 total commits to the Home Assistant orga: +- [Anton Tolchanov (@knyar)](https://github.com/knyar "3 total commits to the Home Assistant orga: +3 commits to core +") +- [Anton Verburg (@antonverburg)](https://github.com/antonverburg "3 total commits to the Home Assistant orga: +2 commits to core 1 commit to home-assistant.io ") -- [Antoni K (@antoni-k)](https://github.com/antoni-k "14 total commits to the Home Assistant orga: -13 commits to home-assistant.io +- [Anton\-Juul\-Naber (@atjn)](https://github.com/atjn "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Antongiacomo Polimeno (@antongiacomo)](https://github.com/antongiacomo "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Antoni K (@antoni-k)](https://github.com/antoni-k "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io 1 commit to hassbian-scripts ") - [Antonio Larrosa (@antlarr)](https://github.com/antlarr "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Antonio Párraga Navarro (@aparraga)](https://github.com/aparraga "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Antonio Pérez (@skarcha)](https://github.com/skarcha "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Antony Messerli (@antonym)](https://github.com/antonym "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Anubhaw Arya (@aarya123)](https://github.com/aarya123 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Anurag El Dorado (@aedorado)](https://github.com/aedorado "1 total commits to the Home Assistant orga: @@ -1059,51 +1292,61 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [apetrycki (@apetrycki)](https://github.com/apetrycki "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [apo\-mak (@apo-mak)](https://github.com/apo-mak "2 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend 1 commit to home-assistant.io ") - [aquarium (@theaquarium)](https://github.com/theaquarium "6 total commits to the Home Assistant orga: -3 commits to home-assistant-polymer +3 commits to frontend 3 commits to home-assistant.io ") - [AR (@aleiphoenix)](https://github.com/aleiphoenix "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [arcsur (@arcsur)](https://github.com/arcsur "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [Ardetus (@Ardetus)](https://github.com/Ardetus "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [Ardi Mehist (@omgapuppy)](https://github.com/omgapuppy "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [arg0nik (@arg0nik)](https://github.com/arg0nik "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Ari (@arigit)](https://github.com/arigit "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Ari Lotter (@arilotter)](https://github.com/arilotter "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [aribarreto (@aribarreto)](https://github.com/aribarreto "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ariel Voskov (@Voskov)](https://github.com/Voskov "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [arigilder (@arigilder)](https://github.com/arigilder "8 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 2 commits to home-assistant.io ") +- [Arjan van Balken (@vanbalken)](https://github.com/vanbalken "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") - [arjenfvellinga (@arjenfvellinga)](https://github.com/arjenfvellinga "6 total commits to the Home Assistant orga: 5 commits to home-assistant.io -1 commit to home-assistant +1 commit to core +") +- [arjenvrh (@arjenvrh)](https://github.com/arjenvrh "1 total commits to the Home Assistant orga: +1 commit to brands ") - [Arno (@aetjansen)](https://github.com/aetjansen "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io @@ -1111,19 +1354,24 @@ This page contains a list of people who have contributed in one way or another t - [ArnoGit (@ArnoGit)](https://github.com/ArnoGit "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Aron Hafner (@alonalon)](https://github.com/alonalon "1 total commits to the Home Assistant orga: +- [Aron Hafner (@hafffe)](https://github.com/hafffe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [ArrayLabs (@arraylabs)](https://github.com/arraylabs "8 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 2 commits to home-assistant.io ") -- [Art M\. Gallagher (@artmg)](https://github.com/artmg "1 total commits to the Home Assistant orga: +- [Art M\. Gallagher (@artmg)](https://github.com/artmg "3 total commits to the Home Assistant orga: 1 commit to scenegen +1 commit to developers.home-assistant +1 commit to home-assistant.io ") - [arteck (@arteck)](https://github.com/arteck "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [Artekus (@Artekus)](https://github.com/Artekus "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Artem (@ArtHome12)](https://github.com/ArtHome12 "3 total commits to the Home Assistant orga: 2 commits to developers.home-assistant 1 commit to home-assistant.io @@ -1132,10 +1380,10 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Artem Tokarev (@RealArtemiy)](https://github.com/RealArtemiy "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Arthur Leonard Andersen (@leoc)](https://github.com/leoc "9 total commits to the Home Assistant orga: -9 commits to home-assistant +9 commits to core ") - [Arthur Lutz (@arthurlutz)](https://github.com/arthurlutz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -1143,14 +1391,17 @@ This page contains a list of people who have contributed in one way or another t - [Arttu mahlakaarto (@amahlaka)](https://github.com/amahlaka "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") +- [Artur 'Wodor' Wielogorski (@wodor)](https://github.com/wodor "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Artuto (@Artuto)](https://github.com/Artuto "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [Arvind Prasanna (@aprasanna)](https://github.com/aprasanna "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [aschamberger (@aschamberger)](https://github.com/aschamberger "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [ash7777 (@ash7777)](https://github.com/ash7777 "1 total commits to the Home Assistant orga: @@ -1163,12 +1414,15 @@ This page contains a list of people who have contributed in one way or another t 5 commits to home-assistant.io ") - [Askarov Rishat (@rishatik92)](https://github.com/rishatik92 "6 total commits to the Home Assistant orga: -3 commits to home-assistant 3 commits to home-assistant.io +3 commits to core +") +- [asowlnowl (@asowlnowl)](https://github.com/asowlnowl "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Assaf Inbal (@shmuelzon)](https://github.com/shmuelzon "12 total commits to the Home Assistant orga: 9 commits to homebridge-homeassistant -3 commits to home-assistant +3 commits to core ") - [atorralba (@atorralba)](https://github.com/atorralba "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -1184,44 +1438,49 @@ This page contains a list of people who have contributed in one way or another t ") - [Audric Schiltknecht (@chemicalstorm)](https://github.com/chemicalstorm "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Audun Ytterdal (@auduny)](https://github.com/auduny "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [aufano (@aufano)](https://github.com/aufano "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [auhlie (@auhlie)](https://github.com/auhlie "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [Austin (@trainman419)](https://github.com/trainman419 "9 total commits to the Home Assistant orga: -9 commits to home-assistant +9 commits to core ") -- [Austin Drummond (@adrum)](https://github.com/adrum "20 total commits to the Home Assistant orga: +- [Austin Drummond (@adrum)](https://github.com/adrum "23 total commits to the Home Assistant orga: +13 commits to core 10 commits to home-assistant.io -10 commits to home-assistant ") -- [Austin Mroczek (@austinmroczek)](https://github.com/austinmroczek "11 total commits to the Home Assistant orga: -5 commits to home-assistant.io -4 commits to home-assistant +- [Austin Mroczek (@austinmroczek)](https://github.com/austinmroczek "31 total commits to the Home Assistant orga: +17 commits to core +10 commits to home-assistant.io 2 commits to open-zwave +1 commit to developers.home-assistant +1 commit to brands ") - [austinlg96 (@austinlg96)](https://github.com/austinlg96 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Avi Schwab (@froboy)](https://github.com/froboy "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") +- [avocadio (@avocadio)](https://github.com/avocadio "1 total commits to the Home Assistant orga: +1 commit to core +") - [Avraham David Gelbfish (@adgelbfish)](https://github.com/adgelbfish "3 total commits to the Home Assistant orga: 1 commit to hadashboard 1 commit to pi-gen 1 commit to home-assistant.io ") -- [awkwardDuck (@awkwardDuck)](https://github.com/awkwardDuck "3 total commits to the Home Assistant orga: -2 commits to home-assistant +- [awkwardDuck (@awkwardDuck)](https://github.com/awkwardDuck "4 total commits to the Home Assistant orga: +3 commits to core 1 commit to home-assistant.io ") - [Axel (@axel8viii)](https://github.com/axel8viii "2 total commits to the Home Assistant orga: @@ -1230,12 +1489,11 @@ This page contains a list of people who have contributed in one way or another t - [ayatoy (@ayatoy)](https://github.com/ayatoy "1 total commits to the Home Assistant orga: 1 commit to feedparser ") -- [azeroth12 (@azeroth12)](https://github.com/azeroth12 "2 total commits to the Home Assistant orga: -1 commit to appdaemon +- [azeroth12 (@azeroth12)](https://github.com/azeroth12 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Azimoth (@Azimoth)](https://github.com/Azimoth "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Azimoth (@Azimoth)](https://github.com/Azimoth "6 total commits to the Home Assistant orga: +6 commits to home-assistant.io ") - [b1g1an (@b1g1an)](https://github.com/b1g1an "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -1245,60 +1503,74 @@ This page contains a list of people who have contributed in one way or another t ") - [b3nj1 (@b3nj1)](https://github.com/b3nj1 "3 total commits to the Home Assistant orga: 2 commits to python-openzwave -1 commit to home-assistant +1 commit to core +") +- [backcountrymountains (@backcountrymountains)](https://github.com/backcountrymountains "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [BackSlasher (@BackSlasher)](https://github.com/BackSlasher "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [badele (@badele)](https://github.com/badele "24 total commits to the Home Assistant orga: -22 commits to home-assistant +22 commits to core 2 commits to home-assistant.io ") - [bailz (@bailz)](https://github.com/bailz "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [Bakkoda (@Bakkoda)](https://github.com/Bakkoda "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Balazs Keresztury (@belidzs)](https://github.com/belidzs "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Balazs Keresztury (@belidzs)](https://github.com/belidzs "6 total commits to the Home Assistant orga: +3 commits to home-assistant.io +2 commits to core +1 commit to brands ") -- [Balazs Sandor (@sanyatuning)](https://github.com/sanyatuning "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Balazs Sandor (@sanyatuning)](https://github.com/sanyatuning "9 total commits to the Home Assistant orga: +8 commits to core +1 commit to home-assistant.io ") - [Balázs Suhajda (@suhajdab)](https://github.com/suhajdab "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Baptiste Candellier (@outadoc)](https://github.com/outadoc "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io +- [bangom (@bangom)](https://github.com/bangom "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Baptiste Candellier (@outadoc)](https://github.com/outadoc "5 total commits to the Home Assistant orga: +2 commits to home-assistant.io +2 commits to core +1 commit to brands ") - [Baptiste Lecocq (@tiste)](https://github.com/tiste "4 total commits to the Home Assistant orga: -2 commits to home-assistant 2 commits to home-assistant.io +2 commits to core ") - [Baptiste Poirriez (@bpoirriez)](https://github.com/bpoirriez "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Baran Kaynak (@barankaynak)](https://github.com/barankaynak "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") -- [Barry Williams (@bazwilliams)](https://github.com/bazwilliams "11 total commits to the Home Assistant orga: -6 commits to home-assistant -3 commits to netdisco +- [BarrettLowe (@BarrettLowe)](https://github.com/BarrettLowe "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io +1 commit to core +") +- [Barry Williams (@bazwilliams)](https://github.com/bazwilliams "17 total commits to the Home Assistant orga: +11 commits to core +3 commits to netdisco +3 commits to home-assistant.io ") - [Barrysv (@Barrysv)](https://github.com/Barrysv "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Bart S (@zBart)](https://github.com/zBart "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Bart274 (@Bart274)](https://github.com/Bart274 "26 total commits to the Home Assistant orga: -17 commits to home-assistant +17 commits to core 8 commits to home-assistant.io -1 commit to home-assistant-polymer +1 commit to frontend ") - [Bartek Celary (@bcelary)](https://github.com/bcelary "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -1310,16 +1582,21 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Bas (@basbl)](https://github.com/basbl "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Bas Nijholt (@basnijholt)](https://github.com/basnijholt "4 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Bas Delfos (@basdelfos)](https://github.com/basdelfos "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Bas Nijholt (@basnijholt)](https://github.com/basnijholt "192 total commits to the Home Assistant orga: +178 commits to core +12 commits to home-assistant.io 1 commit to developers.home-assistant -1 commit to home-assistant +1 commit to frontend ") - [Bas Schipper (@basschipper)](https://github.com/basschipper "10 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 2 commits to home-assistant.io ") - [Bas Stottelaar (@basilfx)](https://github.com/basilfx "1 total commits to the Home Assistant orga: @@ -1335,21 +1612,24 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [bastshoes (@bastshoes)](https://github.com/bastshoes "6 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io -1 commit to home-assistant-polymer +1 commit to frontend ") - [Batári Balázs László (@bayi)](https://github.com/bayi "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [baurandr (@baurandr)](https://github.com/baurandr "1 total commits to the Home Assistant orga: +1 commit to core +") - [bcl1713 (@bcl1713)](https://github.com/bcl1713 "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Beat (@bdurrer)](https://github.com/bdurrer "18 total commits to the Home Assistant orga: 12 commits to home-assistant.io -5 commits to home-assistant -1 commit to home-assistant-polymer +5 commits to core +1 commit to frontend ") - [Beau Breeden (@BeauBreeden)](https://github.com/BeauBreeden "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -1358,17 +1638,23 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [beavis9k (@beavis9k)](https://github.com/beavis9k "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Beddie (@Beddie)](https://github.com/Beddie "5 total commits to the Home Assistant orga: 5 commits to open-zwave ") - [beepmill (@beepmill)](https://github.com/beepmill "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [beestree (@beestree)](https://github.com/beestree "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ben (@benleb)](https://github.com/benleb "18 total commits to the Home Assistant orga: +8 commits to home-assistant.io +8 commits to core +1 commit to home-assistant-notebooks +1 commit to developers.home-assistant +") - [Ben (@benj-n)](https://github.com/benj-n "6 total commits to the Home Assistant orga: 6 commits to open-zwave ") @@ -1376,7 +1662,7 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io ") - [Ben Bangert (@bbangert)](https://github.com/bbangert "7 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 2 commits to home-assistant.io 1 commit to people ") @@ -1387,7 +1673,7 @@ This page contains a list of people who have contributed in one way or another t 1 commit to 1password-teams-open-source ") - [Ben Dews (@bendews)](https://github.com/bendews "5 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 1 commit to home-assistant.io ") - [Ben Doerr (@bendoerr)](https://github.com/bendoerr "3 total commits to the Home Assistant orga: @@ -1396,14 +1682,6 @@ This page contains a list of people who have contributed in one way or another t - [Ben Krajancic (@fantasmos)](https://github.com/fantasmos "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Ben Lebherz (@benleb)](https://github.com/benleb "23 total commits to the Home Assistant orga: -11 commits to appdaemon -5 commits to home-assistant -4 commits to home-assistant.io -1 commit to home-assistant-cli -1 commit to home-assistant-notebooks -1 commit to developers.home-assistant -") - [Ben Menchaca (@bmenchaca)](https://github.com/bmenchaca "5 total commits to the Home Assistant orga: 5 commits to open-zwave ") @@ -1414,38 +1692,42 @@ This page contains a list of people who have contributed in one way or another t 1 commit to pi-gen ") - [Ben Origas (@borigas)](https://github.com/borigas "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [Ben Pirt (@bjpirt)](https://github.com/bjpirt "2 total commits to the Home Assistant orga: 2 commits to pi-gen ") - [Ben Randall (@veleek)](https://github.com/veleek "7 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 1 commit to home-assistant.io ") - [Ben Schattinger (@lights0123)](https://github.com/lights0123 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Ben Spoon (@spoonben)](https://github.com/spoonben "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Ben Thomas (@wazoo)](https://github.com/wazoo "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [Ben Van Mechelen (@benvm)](https://github.com/benvm "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [ben423423n32j14e (@ben423423n32j14e)](https://github.com/ben423423n32j14e "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [Bendik Brenne (@bendikrb)](https://github.com/bendikrb "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [BenDaMAN303 (@BenDaMAN303)](https://github.com/BenDaMAN303 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Bendik Brenne (@bendikrb)](https://github.com/bendikrb "6 total commits to the Home Assistant orga: +3 commits to core +2 commits to home-assistant.io +1 commit to brands +") - [Benedict Aas (@Shou)](https://github.com/Shou "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [Benedikt Böhm (@hollow)](https://github.com/hollow "1 total commits to the Home Assistant orga: 1 commit to open-zwave @@ -1453,6 +1735,9 @@ This page contains a list of people who have contributed in one way or another t - [Benjamin Bryan (@ahnooie)](https://github.com/ahnooie "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Benjamin Granzow (@Dysman)](https://github.com/Dysman "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Benjamin Parzella (@bparzella)](https://github.com/bparzella "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") @@ -1469,18 +1754,24 @@ This page contains a list of people who have contributed in one way or another t 8 commits to pyharmony ") - [Benny de Leeuw (@leeuwte)](https://github.com/leeuwte "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Benoit BESSET (@bbesset)](https://github.com/bbesset "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Benoit Louy (@benoitlouy)](https://github.com/benoitlouy "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Benoit Louy (@benoitlouy)](https://github.com/benoitlouy "3 total commits to the Home Assistant orga: +2 commits to core 1 commit to home-assistant.io ") +- [bepsoccer (@bepsoccer)](https://github.com/bepsoccer "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io +") - [bergemalm (@bergemalm)](https://github.com/bergemalm "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core +") +- [berichta (@berichta)](https://github.com/berichta "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [berightback\-dev (@berightback-dev)](https://github.com/berightback-dev "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -1488,19 +1779,29 @@ This page contains a list of people who have contributed in one way or another t - [Bernardus Jansen (@bajansen)](https://github.com/bajansen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Bernd Schlapsi (@brot)](https://github.com/brot "5 total commits to the Home Assistant orga: +5 commits to feedparser +") +- [Bernhard B (@bbernhard)](https://github.com/bbernhard "7 total commits to the Home Assistant orga: +4 commits to home-assistant.io +3 commits to core +") - [Bertbert (@bertbert72)](https://github.com/bertbert72 "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Bertie Blackman (@covertbert)](https://github.com/covertbert "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [bestlibre (@bestlibre)](https://github.com/bestlibre "16 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 5 commits to home-assistant.io -1 commit to hassio 1 commit to hassio-build -1 commit to home-assistant-polymer +1 commit to supervisor +1 commit to frontend +") +- [bevosangryghost (@bevosangryghost)](https://github.com/bevosangryghost "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [bforbird (@bforbird)](https://github.com/bforbird "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -1508,11 +1809,13 @@ This page contains a list of people who have contributed in one way or another t - [Bhaaf (@Bhaaf)](https://github.com/Bhaaf "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [bigbadblunt (@bigbadblunt)](https://github.com/bigbadblunt "1 total commits to the Home Assistant orga: +- [bigbadblunt (@bigbadblunt)](https://github.com/bigbadblunt "3 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands 1 commit to home-assistant.io ") - [biggms (@biggms)](https://github.com/biggms "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [BigMoby (@bigmoby)](https://github.com/bigmoby "2 total commits to the Home Assistant orga: @@ -1520,7 +1823,7 @@ This page contains a list of people who have contributed in one way or another t ") - [bigwoof (@bigwoof)](https://github.com/bigwoof "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Bike Dude (@hackacad)](https://github.com/hackacad "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -1528,20 +1831,34 @@ This page contains a list of people who have contributed in one way or another t - [Bill Church (@billchurch)](https://github.com/billchurch "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Bill Durr (@billyburly)](https://github.com/billyburly "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") - [Bill Nelson (@xhostplus)](https://github.com/xhostplus "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [binli71 (@binli71)](https://github.com/binli71 "4 total commits to the Home Assistant orga: 4 commits to open-zwave ") +- [binsentsu (@binsentsu)](https://github.com/binsentsu "1 total commits to the Home Assistant orga: +1 commit to brands +") - [BioSehnsucht (@BioSehnsucht)](https://github.com/BioSehnsucht "14 total commits to the Home Assistant orga: 8 commits to home-assistant.io -4 commits to home-assistant -2 commits to home-assistant-polymer +4 commits to core +2 commits to frontend +") +- [biver0 (@biver0)](https://github.com/biver0 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Bjarne Riis (@briis)](https://github.com/briis "7 total commits to the Home Assistant orga: +5 commits to brands +2 commits to wheels-custom-integrations ") - [Bjarni Ivarsson (@bjarniivarsson)](https://github.com/bjarniivarsson "8 total commits to the Home Assistant orga: -5 commits to home-assistant -3 commits to home-assistant-polymer +5 commits to core +3 commits to frontend ") - [bjohnson8949 (@bjohnson8949)](https://github.com/bjohnson8949 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -1552,33 +1869,45 @@ This page contains a list of people who have contributed in one way or another t - [Björn Lindahl (@blindahl)](https://github.com/blindahl "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Björn Orri (@bjornorri)](https://github.com/bjornorri "1 total commits to the Home Assistant orga: -1 commit to home-assistant-iOS +- [Björn Orri (@bjornorri)](https://github.com/bjornorri "5 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to iOS +1 commit to brands +1 commit to core ") -- [bkcberry (@bkcberry)](https://github.com/bkcberry "1 total commits to the Home Assistant orga: +- [Björn Victor (@bictorv)](https://github.com/bictorv "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [bkcberry (@bkcberry)](https://github.com/bkcberry "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [bl8rnr (@bl8rnr)](https://github.com/bl8rnr "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [blackdog70 (@blackdog70)](https://github.com/blackdog70 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [blackmesataiwan (@blackmesataiwan)](https://github.com/blackmesataiwan "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [blackray12 (@blackray12)](https://github.com/blackray12 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [blacktirion (@blacktirion)](https://github.com/blacktirion "1 total commits to the Home Assistant orga: +1 commit to hassio-addons ") - [blackwind (@blackwind)](https://github.com/blackwind "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") -- [blakadder (@blakadder)](https://github.com/blakadder "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [blakadder (@blakadder)](https://github.com/blakadder "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") +- [Blake (@sreknob)](https://github.com/sreknob "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Blake Blackshear (@blakeblackshear)](https://github.com/blakeblackshear "9 total commits to the Home Assistant orga: 7 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [Blanyal D'Souza (@blanyal)](https://github.com/blanyal "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -1587,34 +1916,32 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Blender3D (@Blender3D)](https://github.com/Blender3D "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [bluestripe (@bluestripe)](https://github.com/bluestripe "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Bo (@bohmandan)](https://github.com/bohmandan "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Bob Anderson (@rwa)](https://github.com/rwa "12 total commits to the Home Assistant orga: -7 commits to home-assistant +- [Bob Anderson (@rwa)](https://github.com/rwa "11 total commits to the Home Assistant orga: +7 commits to core 4 commits to home-assistant.io -1 commit to appdaemon ") -- [Bob Clough (@thinkl33t)](https://github.com/thinkl33t "7 total commits to the Home Assistant orga: -4 commits to home-assistant +- [Bob Clough (@thinkl33t)](https://github.com/thinkl33t "6 total commits to the Home Assistant orga: +4 commits to core 2 commits to home-assistant.io -1 commit to appdaemon ") - [Bob Igo (@Human)](https://github.com/Human "5 total commits to the Home Assistant orga: 4 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Bob van Oijen (@bobvanoijen)](https://github.com/bobvanoijen "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") - [bobnwk (@bobnwk)](https://github.com/bobnwk "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Boced66 (@boced66)](https://github.com/boced66 "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io @@ -1622,13 +1949,13 @@ This page contains a list of people who have contributed in one way or another t - [Bogdan Alexe (@bogdanalexe90)](https://github.com/bogdanalexe90 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Bogdan Vlaicu (@bvlaicu)](https://github.com/bvlaicu "3 total commits to the Home Assistant orga: +- [Bogdan Vlaicu (@bvlaicu)](https://github.com/bvlaicu "4 total commits to the Home Assistant orga: +2 commits to core 1 commit to developers.home-assistant -1 commit to home-assistant 1 commit to home-assistant.io ") - [boltgolt (@boltgolt)](https://github.com/boltgolt "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [bonterra (@bonterra)](https://github.com/bonterra "1 total commits to the Home Assistant orga: @@ -1636,71 +1963,99 @@ This page contains a list of people who have contributed in one way or another t ") - [boojew (@boojew)](https://github.com/boojew "10 total commits to the Home Assistant orga: 8 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [boolangery (@boolangery)](https://github.com/boolangery "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") -- [Boris K (@bokub)](https://github.com/bokub "12 total commits to the Home Assistant orga: -6 commits to home-assistant.io -6 commits to home-assistant +- [boradwell (@boradwell)](https://github.com/boradwell "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Boris K (@bokub)](https://github.com/bokub "14 total commits to the Home Assistant orga: +7 commits to home-assistant.io +6 commits to core +1 commit to brands +") +- [Boris Kaplounovsky (@bskaplou)](https://github.com/bskaplou "4 total commits to the Home Assistant orga: +3 commits to core +1 commit to home-assistant.io ") - [bottomquark (@bottomquark)](https://github.com/bottomquark "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [bouni (@Bouni)](https://github.com/Bouni "86 total commits to the Home Assistant orga: -81 commits to home-assistant +81 commits to core 5 commits to home-assistant.io ") -- [Bouwe Westerdijk (@bouwew)](https://github.com/bouwew "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io +- [Bouwe Westerdijk (@bouwew)](https://github.com/bouwew "8 total commits to the Home Assistant orga: +6 commits to core +2 commits to home-assistant.io ") - [Boyi C (@fanthos)](https://github.com/fanthos "25 total commits to the Home Assistant orga: -17 commits to home-assistant-polymer -6 commits to home-assistant +17 commits to frontend +6 commits to core 2 commits to home-assistant.io ") +- [bqstony (@bqstony)](https://github.com/bqstony "1 total commits to the Home Assistant orga: +1 commit to core +") - [br0nd (@br0nd)](https://github.com/br0nd "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Br4veSt4rr (@Br4veSt4rr)](https://github.com/Br4veSt4rr "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Brad (@BradleyFord)](https://github.com/BradleyFord "1 total commits to the Home Assistant orga: +- [braam (@braam)](https://github.com/braam "3 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core 1 commit to home-assistant.io ") +- [Brad (@BradleyFord)](https://github.com/BradleyFord "33 total commits to the Home Assistant orga: +23 commits to brands +10 commits to home-assistant.io +") - [brad (@oakbrad)](https://github.com/oakbrad "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Brad Buran (@bburan)](https://github.com/bburan "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Brad Choate (@bradchoate)](https://github.com/bradchoate "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") - [Brad Dixon (@rbdixon)](https://github.com/rbdixon "5 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io ") - [Brad Fitzpatrick (@bradfitz)](https://github.com/bradfitz "2 total commits to the Home Assistant orga: 2 commits to developers.home-assistant ") -- [Brad Johnson (@bradsk88)](https://github.com/bradsk88 "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Brad Johnson (@bradsk88)](https://github.com/bradsk88 "4 total commits to the Home Assistant orga: +2 commits to core +1 commit to developers.home-assistant +1 commit to home-assistant.io +") +- [Brad Keifer (@bradkeifer)](https://github.com/bradkeifer "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io ") - [Brad Sanders (@thebradleysanders)](https://github.com/thebradleysanders "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Brad Simmons (@easyas314)](https://github.com/easyas314 "1 total commits to the Home Assistant orga: +1 commit to operating-system +") - [bradarndt (@digdugg)](https://github.com/digdugg "2 total commits to the Home Assistant orga: 2 commits to python-openzwave ") - [braddparker (@braddparker)](https://github.com/braddparker "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Bradley Nelson (@BCNelson)](https://github.com/BCNelson "1 total commits to the Home Assistant orga: -1 commit to home-assistant-android +- [Bradley Nelson (@BCNelson)](https://github.com/BCNelson "4 total commits to the Home Assistant orga: +2 commits to android +1 commit to brands +1 commit to home-assistant.io ") - [Bradley Wehmeier (@bradleywehmeier)](https://github.com/bradleywehmeier "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -1714,24 +2069,33 @@ 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 orga: 8 commits to home-assistant.io ") -- [Bram Goolaerts (@bollewolle)](https://github.com/bollewolle "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Bram Goolaerts (@bollewolle)](https://github.com/bollewolle "3 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core 1 commit to home-assistant.io ") -- [Bram Kragten (@bramkragten)](https://github.com/bramkragten "353 total commits to the Home Assistant orga: -262 commits to home-assistant-polymer -68 commits to home-assistant -14 commits to home-assistant.io -4 commits to custom-components-wheels +- [Bram Kragten (@bramkragten)](https://github.com/bramkragten "1238 total commits to the Home Assistant orga: +926 commits to frontend +238 commits to core +35 commits to home-assistant.io +8 commits to home-assistant-js-websocket +8 commits to supervisor +7 commits to developers.home-assistant +4 commits to wheels-custom-integrations +3 commits to android +2 commits to hassio-addons +2 commits to operating-system +2 commits to probot-home-assistant 1 commit to home-assistant-notebooks 1 commit to people -1 commit to developers.home-assistant -1 commit to probot-home-assistant 1 commit to alerts.home-assistant.io ") - [Bram Mittendorff (@brammittendorff)](https://github.com/brammittendorff "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Brandon (@bgulla)](https://github.com/bgulla "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Brandon Chothia (@chothia)](https://github.com/chothia "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -1739,24 +2103,37 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Brandon Davidson (@brandond)](https://github.com/brandond "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to netdisco ") - [Brandon Mathis (@imathis)](https://github.com/imathis "484 total commits to the Home Assistant orga: 484 commits to home-assistant.io ") - [Brandon Weeks (@brandonweeks)](https://github.com/brandonweeks "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core +") +- [bransjr (@bransjr)](https://github.com/bransjr "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Brant Knudson (@brantlk)](https://github.com/brantlk "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [brburns (@brburns)](https://github.com/brburns "2 total commits to the Home Assistant orga: 2 commits to netdisco ") +- [brefra (@brefra)](https://github.com/brefra "16 total commits to the Home Assistant orga: +9 commits to core +4 commits to home-assistant.io +2 commits to brands +1 commit to wheels-custom-integrations +") - [bremor (@bremor)](https://github.com/bremor "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core +") +- [Brenda Wallace (@Br3nda)](https://github.com/Br3nda "6 total commits to the Home Assistant orga: +5 commits to home-assistant.io +1 commit to developers.home-assistant ") - [Brendan Berg (@captainnapalm)](https://github.com/captainnapalm "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -1764,16 +2141,19 @@ This page contains a list of people who have contributed in one way or another t - [Brendan Tobolaski (@btobolaski)](https://github.com/btobolaski "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Brendon Baumgartner (@bbrendon)](https://github.com/bbrendon "23 total commits to the Home Assistant orga: -15 commits to home-assistant.io -4 commits to home-assistant -3 commits to appdaemon +- [Brendan Ward (@brendanpward)](https://github.com/brendanpward "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Brenden Crowie (@bcrowie)](https://github.com/bcrowie "1 total commits to the Home Assistant orga: +1 commit to frontend +") +- [Brendon Baumgartner (@bbrendon)](https://github.com/bbrendon "22 total commits to the Home Assistant orga: +16 commits to home-assistant.io +5 commits to core 1 commit to data.home-assistant ") -- [Brent Hughes (@bah2830)](https://github.com/bah2830 "28 total commits to the Home Assistant orga: -18 commits to home-assistant -9 commits to home-assistant.io -1 commit to netdisco +- [Brendon Go (@brendongo)](https://github.com/brendongo "2 total commits to the Home Assistant orga: +2 commits to core ") - [Brent Kerlin (@bkerlin)](https://github.com/bkerlin "1 total commits to the Home Assistant orga: 1 commit to hassio-build @@ -1782,28 +2162,34 @@ This page contains a list of people who have contributed in one way or another t 9 commits to home-assistant.io ") - [Brenton (@rbrenton)](https://github.com/rbrenton "1 total commits to the Home Assistant orga: -1 commit to hassos +1 commit to operating-system ") - [Brenton Zillins (@bzillins)](https://github.com/bzillins "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Brett T\. Warden (@bwarden)](https://github.com/bwarden "3 total commits to the Home Assistant orga: -3 commits to home-assistant +- [Brett (@Bre77)](https://github.com/Bre77 "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Brett T\. Warden (@bwarden)](https://github.com/bwarden "6 total commits to the Home Assistant orga: +6 commits to core ") - [Brian Cribbs (@cribbstechnologies)](https://github.com/cribbstechnologies "44 total commits to the Home Assistant orga: -27 commits to home-assistant +27 commits to core 15 commits to home-assistant.io -2 commits to home-assistant-polymer +2 commits to frontend +") +- [Brian Dunlay (@bdunlay)](https://github.com/bdunlay "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Brian Fitzgerald (@Brianfit)](https://github.com/Brianfit "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Brian Gehrich (@bgehrich)](https://github.com/bgehrich "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Brian Gianforcaro (@bgianfo)](https://github.com/bgianfo "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Brian Hanifin (@brianhanifin)](https://github.com/brianhanifin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -1813,7 +2199,7 @@ This page contains a list of people who have contributed in one way or another t ") - [Brian Hopkins (@btotharye)](https://github.com/btotharye "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [Brian J King (@brianjking)](https://github.com/brianjking "20 total commits to the Home Assistant orga: 19 commits to home-assistant.io @@ -1823,22 +2209,27 @@ This page contains a list of people who have contributed in one way or another t 159 commits to warrant ") - [Brian Karani Ndwiga (@rayrayndwiga)](https://github.com/rayrayndwiga "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Brian Low (@brianlow)](https://github.com/brianlow "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Brian Orpin (@borpin)](https://github.com/borpin "1 total commits to the Home Assistant orga: -1 commit to hassos +- [Brian Orpin (@borpin)](https://github.com/borpin "2 total commits to the Home Assistant orga: +1 commit to operating-system +1 commit to home-assistant.io +") +- [Brian Rogers (@brg468)](https://github.com/brg468 "11 total commits to the Home Assistant orga: +8 commits to core +3 commits to home-assistant.io ") - [Brian Torres\-Gil (@btorresgil)](https://github.com/btorresgil "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Brian Towles (@wonderslug)](https://github.com/wonderslug "4 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core ") - [Brig Lamoreaux (@briglx)](https://github.com/briglx "7 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 1 commit to home-assistant.io ") - [Brigham Brown (@brigham)](https://github.com/brigham "1 total commits to the Home Assistant orga: @@ -1853,13 +2244,17 @@ This page contains a list of people who have contributed in one way or another t - [Brock Allen (@brockallen)](https://github.com/brockallen "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [brode (@brode)](https://github.com/brode "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Brooke Hedrick (@hedrickbt)](https://github.com/hedrickbt "1 total commits to the Home Assistant orga: 1 commit to python-openzwave ") - [brouwer (@brouwer)](https://github.com/brouwer "3 total commits to the Home Assistant orga: 3 commits to open-zwave ") -- [brubaked (@brubaked)](https://github.com/brubaked "1 total commits to the Home Assistant orga: +- [brubaked (@brubaked)](https://github.com/brubaked "3 total commits to the Home Assistant orga: +2 commits to core 1 commit to home-assistant.io ") - [Bruce (@trux66)](https://github.com/trux66 "1 total commits to the Home Assistant orga: @@ -1872,26 +2267,53 @@ This page contains a list of people who have contributed in one way or another t - [Bruno Binet (@bbinet)](https://github.com/bbinet "1 total commits to the Home Assistant orga: 1 commit to hassio-build ") -- [bruxy70 (@bruxy70)](https://github.com/bruxy70 "1 total commits to the Home Assistant orga: +- [Bruno Filipe (@clapbr)](https://github.com/clapbr "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Bruno Furtado (@bmfurtado)](https://github.com/bmfurtado "1 total commits to the Home Assistant orga: +1 commit to core +") +- [bruxy70 (@bruxy70)](https://github.com/bruxy70 "4 total commits to the Home Assistant orga: +2 commits to brands +1 commit to wheels-custom-integrations 1 commit to home-assistant.io ") - [Bryan Berg (@berg)](https://github.com/berg "1 total commits to the Home Assistant orga: -1 commit to hassos +1 commit to operating-system ") - [Bryan Van de Ven (@bryevdv)](https://github.com/bryevdv "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [Bryan York (@bryanyork)](https://github.com/bryanyork "5 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core ") - [BryanJacobs (@BryanJacobs)](https://github.com/BryanJacobs "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Bryant Lee (@bryantlee)](https://github.com/bryantlee "1 total commits to the Home Assistant orga: +1 commit to core ") - [Bryce Edwards (@hoopty)](https://github.com/hoopty "6 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io 1 commit to python-openzwave ") +- [Brynley McDonald (@ZephireNZ)](https://github.com/ZephireNZ "9 total commits to the Home Assistant orga: +5 commits to home-assistant.io +3 commits to core +1 commit to brands +") +- [bsmappee (@bsmappee)](https://github.com/bsmappee "14 total commits to the Home Assistant orga: +11 commits to core +2 commits to home-assistant.io +1 commit to brands +") +- [Burningstone91 (@Burningstone91)](https://github.com/Burningstone91 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [butako (@butako)](https://github.com/butako "1 total commits to the Home Assistant orga: +1 commit to core +") - [BUUT\! (@buut-vrij)](https://github.com/buut-vrij "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -1900,7 +2322,7 @@ This page contains a list of people who have contributed in one way or another t 1 commit to hassio-build ") - [bw3 (@bw3)](https://github.com/bw3 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [byte\-bender (@byte-bender)](https://github.com/byte-bender "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -1909,51 +2331,57 @@ This page contains a list of people who have contributed in one way or another t 3 commits to pi-gen ") - [c727 (@c727)](https://github.com/c727 "244 total commits to the Home Assistant orga: -157 commits to home-assistant-polymer +157 commits to frontend 54 commits to home-assistant.io 11 commits to ui-schema 10 commits to developers.home-assistant -9 commits to home-assistant -3 commits to hassio +9 commits to core +3 commits to supervisor ") - [c\-soft (@c-soft)](https://github.com/c-soft "7 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 3 commits to home-assistant.io ") - [cadwal (@cadwal)](https://github.com/cadwal "1 total commits to the Home Assistant orga: -1 commit to hassio +1 commit to supervisor +") +- [caiosweet (@caiosweet)](https://github.com/caiosweet "1 total commits to the Home Assistant orga: +1 commit to brands ") - [caius (@caiuspb)](https://github.com/caiuspb "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [Caleb (@finish06)](https://github.com/finish06 "9 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 1 commit to home-assistant.io ") - [Caleb Mah (@calebmah)](https://github.com/calebmah "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") - [callifo (@callifo)](https://github.com/callifo "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [Cameron Bulock (@cbulock)](https://github.com/cbulock "5 total commits to the Home Assistant orga: -2 commits to home-assistant 2 commits to home-assistant.io +2 commits to core 1 commit to netdisco ") - [Cameron Llewellyn (@camrun91)](https://github.com/camrun91 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") +- [Cameron McEfee (@cameronmcefee)](https://github.com/cameronmcefee "2 total commits to the Home Assistant orga: +2 commits to brands +") - [Cameron Morris (@cameronrmorris)](https://github.com/cameronrmorris "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [capstan1 (@capstan1)](https://github.com/capstan1 "3 total commits to the Home Assistant orga: -2 commits to hassos +2 commits to operating-system 1 commit to home-assistant.io ") - [Carl Chan (@carlchan)](https://github.com/carlchan "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Carl Johnson (@carlivar)](https://github.com/carlivar "1 total commits to the Home Assistant orga: @@ -1961,7 +2389,7 @@ This page contains a list of people who have contributed in one way or another t ") - [Carlo Costanzo (@CCOSTAN)](https://github.com/CCOSTAN "102 total commits to the Home Assistant orga: 94 commits to home-assistant.io -5 commits to home-assistant +5 commits to core 1 commit to fabric-home-assistant 1 commit to hassbian-scripts 1 commit to homebridge-homeassistant @@ -1969,35 +2397,43 @@ This page contains a list of people who have contributed in one way or another t - [Carlos Duarte Do Nascimento \(Chester\) (@chesterbr)](https://github.com/chesterbr "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Carlos Gustavo Sarmiento (@carlos-sarmiento)](https://github.com/carlos-sarmiento "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Carlos Giraldo (@cgiraldo)](https://github.com/cgiraldo "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Carlos Gustavo Sarmiento (@carlos-sarmiento)](https://github.com/carlos-sarmiento "5 total commits to the Home Assistant orga: +3 commits to core +1 commit to frontend 1 commit to home-assistant.io ") -- [Carlos Rodríguez (@crguez)](https://github.com/crguez "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Carlos Rodríguez (@crguez)](https://github.com/crguez "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [carlosmgr (@carlosmgr)](https://github.com/carlosmgr "6 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core ") - [carstenschroeder (@carstenschroeder)](https://github.com/carstenschroeder "17 total commits to the Home Assistant orga: -14 commits to home-assistant -1 commit to hassio +14 commits to core +1 commit to supervisor 1 commit to developers.home-assistant 1 commit to home-assistant.io ") - [Carter (@BluGeni)](https://github.com/BluGeni "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [casey (@csjo)](https://github.com/csjo "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Casper (@casperklein)](https://github.com/casperklein "2 total commits to the Home Assistant orga: -1 commit to hassio +- [Casper (@casperklein)](https://github.com/casperklein "3 total commits to the Home Assistant orga: +1 commit to supervisor +1 commit to core 1 commit to home-assistant.io ") +- [Casper Smits (@cmitz)](https://github.com/cmitz "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Casper Weiss Bang (@C0DK)](https://github.com/C0DK "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Caswell1000 (@Caswell1000)](https://github.com/Caswell1000 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -2006,50 +2442,58 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [cburgess (@cburgess)](https://github.com/cburgess "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [cby016 (@cby016)](https://github.com/cby016 "2 total commits to the Home Assistant orga: 1 commit to open-zwave 1 commit to home-assistant.io ") -- [cdce8p (@cdce8p)](https://github.com/cdce8p "213 total commits to the Home Assistant orga: -136 commits to home-assistant -51 commits to home-assistant.io -14 commits to home-assistant-polymer +- [cdce8p (@cdce8p)](https://github.com/cdce8p "215 total commits to the Home Assistant orga: +136 commits to core +52 commits to home-assistant.io +15 commits to frontend 6 commits to developers.home-assistant 5 commits to hass-release 1 commit to people ") - [cdheiser (@cdheiser)](https://github.com/cdheiser "5 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 1 commit to home-assistant.io ") -- [Cecron (@Cecron)](https://github.com/Cecron "1 total commits to the Home Assistant orga: -1 commit to appdaemon -") - [Cedric Gatay (@CedricGatay)](https://github.com/CedricGatay "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Cedric Van Goethem (@Zepheus)](https://github.com/Zepheus "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") -- [Cedrick Flocon (@CedrickFlocon)](https://github.com/CedrickFlocon "7 total commits to the Home Assistant orga: -7 commits to home-assistant-android +- [Cedrick Flocon (@CedrickFlocon)](https://github.com/CedrickFlocon "21 total commits to the Home Assistant orga: +21 commits to android ") -- [ceejii (@ceejii)](https://github.com/ceejii "2 total commits to the Home Assistant orga: +- [ceejii (@ceejii)](https://github.com/ceejii "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io +1 commit to hassio-addons +") +- [Celedhrim (@Celedhrim)](https://github.com/Celedhrim "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [celeroll (@celeroll)](https://github.com/celeroll "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [celestinjr (@celestinjr)](https://github.com/celestinjr "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io ") - [Cello Spring (@cellerich)](https://github.com/cellerich "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Cem Sinan Kaynar (@cskaynar)](https://github.com/cskaynar "1 total commits to the Home Assistant orga: +1 commit to Iconic +") - [Cenk Gündoğan (@cgundogan)](https://github.com/cgundogan "1 total commits to the Home Assistant orga: 1 commit to libcoap ") - [Cezar Sá Espinola (@cezarsa)](https://github.com/cezarsa "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Chad Parry (@chadparry)](https://github.com/chadparry "10 total commits to the Home Assistant orga: 10 commits to open-zwave @@ -2057,43 +2501,56 @@ This page contains a list of people who have contributed in one way or another t - [ChadCurvin (@Curvin777)](https://github.com/Curvin777 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Chaly Flavour (@ChalyFlavour)](https://github.com/ChalyFlavour "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Chandan Rai (@bhageena)](https://github.com/bhageena "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [chanders (@chanders)](https://github.com/chanders "2 total commits to the Home Assistant orga: 2 commits to hadashboard ") - [Chao (@chaoranxie)](https://github.com/chaoranxie "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [CHAPELLE Quentin (@quentinchap)](https://github.com/quentinchap "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Charles Blonde (@CharlesBlonde)](https://github.com/CharlesBlonde "19 total commits to the Home Assistant orga: -12 commits to home-assistant +12 commits to core 7 commits to home-assistant.io ") -- [Charles Garwood (@cgarwood)](https://github.com/cgarwood "73 total commits to the Home Assistant orga: -32 commits to home-assistant +- [Charles Garwood (@cgarwood)](https://github.com/cgarwood "81 total commits to the Home Assistant orga: +36 commits to core +21 commits to frontend 21 commits to home-assistant.io -19 commits to home-assistant-polymer +2 commits to hassio-addons 1 commit to people ") - [Charles Spirakis (@srcLurker)](https://github.com/srcLurker "8 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core 3 commits to home-assistant.io ") - [ChaYoung You (@yous)](https://github.com/yous "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [CHAZICLE (@CHAZICLE)](https://github.com/CHAZICLE "1 total commits to the Home Assistant orga: +1 commit to core +") - [Chema García (@sch3m4)](https://github.com/sch3m4 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Cheong Yip (@wingy3181)](https://github.com/wingy3181 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [chewbh (@chewbh)](https://github.com/chewbh "1 total commits to the Home Assistant orga: +1 commit to core ") - [Chia\-liang Kao (@clkao)](https://github.com/clkao "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core +") +- [chiefdragon (@chiefdragon)](https://github.com/chiefdragon "1 total commits to the Home Assistant orga: +1 commit to core ") - [chierichetto (@chierichetto)](https://github.com/chierichetto "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -2101,47 +2558,47 @@ This page contains a list of people who have contributed in one way or another t - [chknetsc (@chknetsc)](https://github.com/chknetsc "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [chmielowiec (@chmielowiec)](https://github.com/chmielowiec "3 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to home-assistant.io -") - [chocomega (@chocomega)](https://github.com/chocomega "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [choss (@choss)](https://github.com/choss "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") -- [Chris (@chennin)](https://github.com/chennin "15 total commits to the Home Assistant orga: -11 commits to home-assistant.io -4 commits to home-assistant +- [Chris (@firstof9)](https://github.com/firstof9 "15 total commits to the Home Assistant orga: +9 commits to core +4 commits to home-assistant.io +1 commit to wheels-custom-integrations +1 commit to brands ") -- [Chris (@firstof9)](https://github.com/firstof9 "1 total commits to the Home Assistant orga: -1 commit to home-assistant -") -- [Chris (@darthsebulba04)](https://github.com/darthsebulba04 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Chris (@darthsebulba04)](https://github.com/darthsebulba04 "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Chris Adams (@mrchrisadams)](https://github.com/mrchrisadams "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Chris Aljoudi (@chrisaljoudi)](https://github.com/chrisaljoudi "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Chris Aloi (@ctaloi)](https://github.com/ctaloi "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Chris Baumgartner (@mchrisb03)](https://github.com/mchrisb03 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Chris Caron (@caronc)](https://github.com/caronc "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Chris Caron (@caronc)](https://github.com/caronc "7 total commits to the Home Assistant orga: +5 commits to core +1 commit to brands 1 commit to home-assistant.io ") - [Chris Colohan (@colohan)](https://github.com/colohan "3 total commits to the Home Assistant orga: 1 commit to developers.home-assistant -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Chris Cowart (@cpcowart)](https://github.com/cpcowart "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Chris Crowe (@chriscrowe)](https://github.com/chriscrowe "3 total commits to the Home Assistant orga: @@ -2150,11 +2607,17 @@ This page contains a list of people who have contributed in one way or another t - [Chris Feist (@chris-feist)](https://github.com/chris-feist "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Chris Halls (@challs)](https://github.com/challs "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Chris Hasenpflug (@chrishas35)](https://github.com/chrishas35 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Chris Heath (@Nedlinin)](https://github.com/Nedlinin "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [Chris Helming (@cwhits)](https://github.com/cwhits "12 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 4 commits to home-assistant.io ") - [Chris Huegle (@chuegle)](https://github.com/chuegle "1 total commits to the Home Assistant orga: @@ -2162,14 +2625,14 @@ This page contains a list of people who have contributed in one way or another t ") - [Chris Johnston (@Chris-Johnston)](https://github.com/Chris-Johnston "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Chris Jones (@fezfox)](https://github.com/fezfox "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Chris Kacerguis (@chriskacerguis)](https://github.com/chriskacerguis "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Chris LaRose (@cjlarose)](https://github.com/cjlarose "1 total commits to the Home Assistant orga: @@ -2178,6 +2641,10 @@ This page contains a list of people who have contributed in one way or another t - [Chris LeBlanc (@spacesuitdiver)](https://github.com/spacesuitdiver "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Chris Mandich (@ChrisMandich)](https://github.com/ChrisMandich "5 total commits to the Home Assistant orga: +4 commits to core +1 commit to home-assistant.io +") - [Chris Miller (@mysteriouspants)](https://github.com/mysteriouspants "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -2185,30 +2652,38 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io ") - [Chris Mulder (@chrisvis)](https://github.com/chrisvis "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Chris Nesbitt\-Smith (@chrisns)](https://github.com/chrisns "3 total commits to the Home Assistant orga: 3 commits to open-zwave ") -- [Chris R (@ChrisRomp)](https://github.com/ChrisRomp "2 total commits to the Home Assistant orga: +- [Chris Romp (@ChrisRomp)](https://github.com/ChrisRomp "4 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to companion.home-assistant 1 commit to open-zwave -1 commit to home-assistant.io ") - [Chris Sims (@jcsims)](https://github.com/jcsims "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Chris Smolen (@smolz)](https://github.com/smolz "10 total commits to the Home Assistant orga: +- [Chris Smolen (@smolz)](https://github.com/smolz "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io -4 commits to appdaemon ") - [Chris Soyars (@ctso)](https://github.com/ctso "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Chris Talkington (@ctalkington)](https://github.com/ctalkington "122 total commits to the Home Assistant orga: +106 commits to core +10 commits to home-assistant.io +3 commits to brands +1 commit to architecture +1 commit to developers.home-assistant +1 commit to frontend ") - [Chris Thorn (@chris-thorn)](https://github.com/chris-thorn "7 total commits to the Home Assistant orga: 7 commits to home-assistant.io ") - [Chris Thornton (@cj-thornton)](https://github.com/cj-thornton "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Chris Van Humbeeck (@humbeecc)](https://github.com/humbeecc "1 total commits to the Home Assistant orga: @@ -2220,13 +2695,20 @@ This page contains a list of people who have contributed in one way or another t - [Chris Vick (@cvick)](https://github.com/cvick "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [chris669 (@chris669)](https://github.com/chris669 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [chriscla (@chriscla)](https://github.com/chriscla "11 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 5 commits to home-assistant.io ") - [chrismcneil (@chrismcneil)](https://github.com/chrismcneil "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [chriss158 (@chriss158)](https://github.com/chriss158 "10 total commits to the Home Assistant orga: +7 commits to android +3 commits to mobile-apps-fcm-push +") - [ChrisS85 (@ChrisS85)](https://github.com/ChrisS85 "1 total commits to the Home Assistant orga: 1 commit to hassio-build ") @@ -2236,25 +2718,33 @@ This page contains a list of people who have contributed in one way or another t - [christerr (@christerr)](https://github.com/christerr "3 total commits to the Home Assistant orga: 3 commits to open-zwave ") -- [Christiaan Blom (@Deinara)](https://github.com/Deinara "8 total commits to the Home Assistant orga: -7 commits to home-assistant +- [Christiaan Blom (@Deinara)](https://github.com/Deinara "14 total commits to the Home Assistant orga: +7 commits to core +4 commits to brands +3 commits to home-assistant.io +") +- [Christiaan Schriel (@cschriel)](https://github.com/cschriel "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Christian (@cschroeter)](https://github.com/cschroeter "2 total commits to the Home Assistant orga: -2 commits to hassio +- [Christian (@cwildt)](https://github.com/cwildt "1 total commits to the Home Assistant orga: +1 commit to core ") - [Christian Biamont (@chrillux)](https://github.com/chrillux "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Christian Brædstrup (@LinuxChristian)](https://github.com/LinuxChristian "9 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 1 commit to home-assistant.io ") -- [Christian Clauss (@cclauss)](https://github.com/cclauss "2 total commits to the Home Assistant orga: -1 commit to appdaemon +- [Christian Clauss (@cclauss)](https://github.com/cclauss "3 total commits to the Home Assistant orga: +2 commits to core 1 commit to python-openzwave ") +- [Christian Ferbar (@ferbar)](https://github.com/ferbar "4 total commits to the Home Assistant orga: +2 commits to home-assistant.io +2 commits to core +") - [Christian Kuhn (@lolli42)](https://github.com/lolli42 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -2273,6 +2763,9 @@ This page contains a list of people who have contributed in one way or another t - [Christian Müller (@chphmu)](https://github.com/chphmu "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Christian Schröter (@cschroeter)](https://github.com/cschroeter "2 total commits to the Home Assistant orga: +2 commits to supervisor +") - [Christian Stigen Larsen (@cslarsen)](https://github.com/cslarsen "9 total commits to the Home Assistant orga: 7 commits to python-openzwave 2 commits to open-zwave @@ -2282,7 +2775,7 @@ This page contains a list of people who have contributed in one way or another t 3 commits to developers.home-assistant ") - [ChristianKuehnel (@ChristianKuehnel)](https://github.com/ChristianKuehnel "42 total commits to the Home Assistant orga: -25 commits to home-assistant +25 commits to core 16 commits to home-assistant.io 1 commit to open-zwave ") @@ -2297,45 +2790,58 @@ This page contains a list of people who have contributed in one way or another t ") - [Christoph Gerneth (@c7h)](https://github.com/c7h "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io -2 commits to home-assistant -") -- [Christoph Roeder (@brightdroid)](https://github.com/brightdroid "2 total commits to the Home Assistant orga: -2 commits to appdaemon +2 commits to core ") - [Christoph Wagner (@Christoph-Wagner)](https://github.com/Christoph-Wagner "5 total commits to the Home Assistant orga: 4 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Christophe Coevoet (@stof)](https://github.com/stof "1 total commits to the Home Assistant orga: 1 commit to gu-who ") +- [Christophe Fergeau (@cfergeau)](https://github.com/cfergeau "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") - [Christophe Vu\-Brugier (@cvubrugier)](https://github.com/cvubrugier "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") - [christopheBfr (@christopheBfr)](https://github.com/christopheBfr "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Christopher Cavey (@cicavey)](https://github.com/cicavey "4 total commits to the Home Assistant orga: 3 commits to open-zwave 1 commit to home-assistant.io ") +- [Christopher Masto (@masto)](https://github.com/masto "2 total commits to the Home Assistant orga: +2 commits to frontend +") +- [Christopher Nethercott (@chriscn)](https://github.com/chriscn "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Christopher Rosset (@chrisrosset)](https://github.com/chrisrosset "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Christopher Vella (@chrisvella)](https://github.com/chrisvella "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Christopher Viel (@Chris-V)](https://github.com/Chris-V "7 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 2 commits to home-assistant.io 1 commit to open-zwave ") - [chrom3 (@chrom3)](https://github.com/chrom3 "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [chrysn (@chrysn)](https://github.com/chrysn "65 total commits to the Home Assistant orga: 65 commits to libcoap ") +- [Chsldz (@Chsldz)](https://github.com/Chsldz "2 total commits to the Home Assistant orga: +2 commits to brands +") - [Chuang Zheng (@frogkind)](https://github.com/frogkind "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Chun\-wei Kuo (@Domon)](https://github.com/Domon "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -2350,23 +2856,41 @@ This page contains a list of people who have contributed in one way or another t 4 commits to home-assistant.io ") - [citruz (@citruz)](https://github.com/citruz "5 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 1 commit to home-assistant.io ") -- [clach04 (@clach04)](https://github.com/clach04 "6 total commits to the Home Assistant orga: -3 commits to home-assistant.io -2 commits to home-assistant +- [ckesc (@ckesc)](https://github.com/ckesc "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") +- [cklagenberg (@cklagenberg)](https://github.com/cklagenberg "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [clach04 (@clach04)](https://github.com/clach04 "7 total commits to the Home Assistant orga: +4 commits to home-assistant.io +2 commits to core 1 commit to hassbian-scripts ") +- [Claes Hallström (@claha)](https://github.com/claha "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [clamel77 (@clamel77)](https://github.com/clamel77 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [clarkewd (@clarkewd)](https://github.com/clarkewd "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Claudio Barca (@clabnet)](https://github.com/clabnet "1 total commits to the Home Assistant orga: +- [Claudio Barca (@clabnet)](https://github.com/clabnet "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Claudio Heckler (@heckler)](https://github.com/heckler "3 total commits to the Home Assistant orga: +1 commit to frontend +1 commit to core 1 commit to home-assistant.io ") -- [Claudio Heckler (@heckler)](https://github.com/heckler "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +- [Claudiu Bucur (@clau-bucur)](https://github.com/clau-bucur "1 total commits to the Home Assistant orga: +1 commit to core ") - [Claudiu Farcas (@farcasclaudiu)](https://github.com/farcasclaudiu "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -2378,31 +2902,35 @@ This page contains a list of people who have contributed in one way or another t 5 commits to pi-gen ") - [clayton craft (@craftyguy)](https://github.com/craftyguy "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [Clayton Nummer (@claytonjn)](https://github.com/claytonjn "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Clemens Wolff (@c-w)](https://github.com/c-w "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Clement Wong (@clementhk)](https://github.com/clementhk "3 total commits to the Home Assistant orga: 2 commits to open-zwave -1 commit to home-assistant +1 commit to core ") -- [Clifford W\. Hansen (@cliffordwhansen)](https://github.com/cliffordwhansen "10 total commits to the Home Assistant orga: -4 commits to home-assistant +- [Clifford W\. Hansen (@cliffordwhansen)](https://github.com/cliffordwhansen "8 total commits to the Home Assistant orga: +4 commits to core 3 commits to home-assistant.io -2 commits to appdaemon 1 commit to developers.home-assistant ") -- [clyra (@clyra)](https://github.com/clyra "3 total commits to the Home Assistant orga: -3 commits to appdaemon +- [clssn (@clssn)](https://github.com/clssn "4 total commits to the Home Assistant orga: +2 commits to core +1 commit to brands +1 commit to home-assistant.io ") - [Cláudio Ribeiro (@DailyMatters)](https://github.com/DailyMatters "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [coco (@k0rventen)](https://github.com/k0rventen "1 total commits to the Home Assistant orga: +1 commit to pi-gen +") - [codeavenger07 (@codeavenger07)](https://github.com/codeavenger07 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -2412,38 +2940,49 @@ This page contains a list of people who have contributed in one way or another t - [Codepadawan (@Codepadawan)](https://github.com/Codepadawan "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [cogneato (@cogneato)](https://github.com/cogneato "56 total commits to the Home Assistant orga: -47 commits to home-assistant.io +- [cogneato (@cogneato)](https://github.com/cogneato "206 total commits to the Home Assistant orga: +100 commits to home-assistant.io +93 commits to brands +5 commits to operating-system 4 commits to developers.home-assistant -3 commits to hassos +2 commits to hassio-addons 1 commit to people -1 commit to hassio-installer +1 commit to supervised-installer ") - [Colby Rome (@cisasteelersfan)](https://github.com/cisasteelersfan "7 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 3 commits to home-assistant.io ") - [colemamd (@colemamd)](https://github.com/colemamd "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Colin Cachia (@colincachia)](https://github.com/colincachia "2 total commits to the Home Assistant orga: +2 commits to android +") - [Colin Dunn (@colindunn)](https://github.com/colindunn "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") -- [Colin Frei (@colinfrei)](https://github.com/colinfrei "8 total commits to the Home Assistant orga: -4 commits to home-assistant.io -2 commits to home-assistant -1 commit to hassio-addons -1 commit to developers.home-assistant +- [Colin Frei (@colinfrei)](https://github.com/colinfrei "13 total commits to the Home Assistant orga: +5 commits to home-assistant.io +3 commits to core +2 commits to hassio-addons +2 commits to developers.home-assistant +1 commit to frontend ") -- [Colin Harrington (@ColinHarrington)](https://github.com/ColinHarrington "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io +- [Colin Harrington (@ColinHarrington)](https://github.com/ColinHarrington "6 total commits to the Home Assistant orga: +3 commits to core +2 commits to home-assistant.io +1 commit to brands ") -- [Colin O'Dell (@colinodell)](https://github.com/colinodell "34 total commits to the Home Assistant orga: -18 commits to home-assistant +- [Colin O'Dell (@colinodell)](https://github.com/colinodell "36 total commits to the Home Assistant orga: +20 commits to core 15 commits to home-assistant.io 1 commit to python-openzwave ") +- [Colin Robbins (@ColinRobbins)](https://github.com/ColinRobbins "4 total commits to the Home Assistant orga: +2 commits to home-assistant.io +2 commits to core +") - [Colin Teubner (@netopiax)](https://github.com/netopiax "6 total commits to the Home Assistant orga: 3 commits to open-zwave 3 commits to home-assistant.io @@ -2451,61 +2990,58 @@ This page contains a list of people who have contributed in one way or another t - [Comic Chang (@comicchang)](https://github.com/comicchang "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [ComputerCandy (@HexF)](https://github.com/HexF "2 total commits to the Home Assistant orga: +1 commit to home-assistant.io +1 commit to core +") - [Conrad Juhl Andersen (@cnrd)](https://github.com/cnrd "19 total commits to the Home Assistant orga: -10 commits to home-assistant +10 commits to core 6 commits to home-assistant.io -2 commits to home-assistant-polymer +2 commits to frontend 1 commit to developers.home-assistant ") - [Constantine Grantcharov (@conz27)](https://github.com/conz27 "1 total commits to the Home Assistant orga: 1 commit to libcoap ") -- [Constantine Poltyrev (@shprota)](https://github.com/shprota "1 total commits to the Home Assistant orga: -1 commit to appdaemon -") - [coolguymatt (@coolguymatt)](https://github.com/coolguymatt "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Cooper Dale (@Cooper-Dale)](https://github.com/Cooper-Dale "7 total commits to the Home Assistant orga: -7 commits to home-assistant.io +- [Cooper Dale (@Cooper-Dale)](https://github.com/Cooper-Dale "11 total commits to the Home Assistant orga: +10 commits to home-assistant.io +1 commit to core ") - [Corban Mailloux (@corbanmailloux)](https://github.com/corbanmailloux "19 total commits to the Home Assistant orga: 18 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [coreGreenberet (@coreGreenberet)](https://github.com/coreGreenberet "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") -- [corentin (@k0rventen)](https://github.com/k0rventen "1 total commits to the Home Assistant orga: -1 commit to pi-gen -") -- [Corey Edwards (@heytensai)](https://github.com/heytensai "3 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to home-assistant.io +- [Corey Edwards (@heytensai)](https://github.com/heytensai "4 total commits to the Home Assistant orga: +2 commits to home-assistant.io +2 commits to core ") - [Corey Pauley (@devspacenine)](https://github.com/devspacenine "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") -- [corneels (@corneels)](https://github.com/corneels "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Corneels de Waard (@corneels)](https://github.com/corneels "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Cornelius Mund (@cornim)](https://github.com/cornim "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") - [corneyl (@corneyl)](https://github.com/corneyl "5 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 1 commit to home-assistant.io ") -- [CornierKhan1 (@caution3)](https://github.com/caution3 "1 total commits to the Home Assistant orga: -1 commit to 1password-teams-open-source -") - [Costas (@costastf)](https://github.com/costastf "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Courtenay (@hdsheena)](https://github.com/hdsheena "4 total commits to the Home Assistant orga: +- [Courtenay (@hdsheena)](https://github.com/hdsheena "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io +2 commits to core ") - [Courtney Strachan (@cstrachan88)](https://github.com/cstrachan88 "1 total commits to the Home Assistant orga: 1 commit to open-zwave @@ -2514,14 +3050,20 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [cpopp (@cpopp)](https://github.com/cpopp "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [cpw (@cpw)](https://github.com/cpw "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [CQoute (@CQoute)](https://github.com/CQoute "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [CQoute (@Sian-Lee-SA)](https://github.com/Sian-Lee-SA "2 total commits to the Home Assistant orga: +2 commits to core +") +- [CraftyKoala (@CraftyKoala)](https://github.com/CraftyKoala "1 total commits to the Home Assistant orga: +1 commit to android +") +- [Craig Barratt (@craigbarratt)](https://github.com/craigbarratt "1 total commits to the Home Assistant orga: +1 commit to brands ") - [Craig Hills (@chills42)](https://github.com/chills42 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -2530,15 +3072,22 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Craig J\. Midwinter (@craigjmidwinter)](https://github.com/craigjmidwinter "29 total commits to the Home Assistant orga: -22 commits to home-assistant +22 commits to core 7 commits to home-assistant.io ") +- [craiggenner (@craiggenner)](https://github.com/craiggenner "1 total commits to the Home Assistant orga: +1 commit to core +") +- [crallian (@crallian)](https://github.com/crallian "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [CrazYoshi (@CrazYoshi)](https://github.com/CrazYoshi "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [croghostrider (@croghostrider)](https://github.com/croghostrider "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [cryptelli (@cryptelli)](https://github.com/cryptelli "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -2548,42 +3097,48 @@ This page contains a list of people who have contributed in one way or another t ") - [ctborg (@ctborg)](https://github.com/ctborg "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [CTLS (@CTLS)](https://github.com/CTLS "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [CupricReki (@CupricReki)](https://github.com/CupricReki "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Curtis Gibby (@curtisgibby)](https://github.com/curtisgibby "1 total commits to the Home Assistant orga: -1 commit to hassio +1 commit to supervisor ") - [CV (@dagobert)](https://github.com/dagobert "17 total commits to the Home Assistant orga: 13 commits to home-assistant.io -4 commits to home-assistant +4 commits to core ") - [cvwillegen (@cvwillegen)](https://github.com/cvwillegen "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [cweakland (@cweakland)](https://github.com/cweakland "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") - [cxlwill (@cxlwill)](https://github.com/cxlwill "4 total commits to the Home Assistant orga: -2 commits to home-assistant-polymer 2 commits to hassbian-scripts +2 commits to frontend +") +- [CyberDave17 (@CyberDave17)](https://github.com/CyberDave17 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Cyro (@cyrosy)](https://github.com/cyrosy "4 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core +") +- [da\-anda (@da-anda)](https://github.com/da-anda "1 total commits to the Home Assistant orga: +1 commit to core ") - [DaCoD (@dacod)](https://github.com/dacod "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Dale Higgs (@dale3h)](https://github.com/dale3h "45 total commits to the Home Assistant orga: -32 commits to home-assistant.io -11 commits to home-assistant +- [Dale Higgs (@dale3h)](https://github.com/dale3h "46 total commits to the Home Assistant orga: +33 commits to home-assistant.io +11 commits to core 1 commit to hassbot 1 commit to homebridge-homeassistant ") @@ -2591,13 +3146,16 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [damarco (@damarco)](https://github.com/damarco "26 total commits to the Home Assistant orga: -26 commits to home-assistant +26 commits to core ") - [Damian Nowak (@Nowaker)](https://github.com/Nowaker "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Damien Levin (@damienlevin)](https://github.com/damienlevin "1 total commits to the Home Assistant orga: +1 commit to core +") - [Dan (@danieljkemp)](https://github.com/danieljkemp "23 total commits to the Home Assistant orga: -16 commits to home-assistant +16 commits to core 7 commits to home-assistant.io ") - [Dan Burke (@danburke)](https://github.com/danburke "1 total commits to the Home Assistant orga: @@ -2607,26 +3165,39 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Dan Chen (@djchen)](https://github.com/djchen "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Dan Cinnamon (@Cinntax)](https://github.com/Cinntax "25 total commits to the Home Assistant orga: -20 commits to home-assistant +20 commits to core 5 commits to home-assistant.io ") - [Dan Faulknor (@danielfaulknor)](https://github.com/danielfaulknor "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Dan Ferrante (@dferrante)](https://github.com/dferrante "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Dan Ford (@dpford)](https://github.com/dpford "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Dan Klaffenbach (@klada)](https://github.com/klada "8 total commits to the Home Assistant orga: -6 commits to home-assistant +- [Dan Jackson (@e28eta)](https://github.com/e28eta "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Dan Jenkins (@danjenkins)](https://github.com/danjenkins "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Dan Jones (@djj211)](https://github.com/djj211 "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Dan Klaffenbach (@klada)](https://github.com/klada "9 total commits to the Home Assistant orga: +6 commits to core +3 commits to home-assistant.io +") +- [Dan Lehman (@DanTLehman)](https://github.com/DanTLehman "2 total commits to the Home Assistant orga: +2 commits to core +") - [Dan Loewenherz (@dlo)](https://github.com/dlo "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -2634,143 +3205,177 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Dan Nixon (@DanNixon)](https://github.com/DanNixon "25 total commits to the Home Assistant orga: -19 commits to home-assistant +19 commits to core 6 commits to home-assistant.io ") - [Dan Olson (@danielolson13)](https://github.com/danielolson13 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Dan Ponte (@amigan)](https://github.com/amigan "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Dan Ponte (@amigan)](https://github.com/amigan "2 total commits to the Home Assistant orga: +1 commit to open-zwave +1 commit to core ") - [Dan Ports (@drkp)](https://github.com/drkp "15 total commits to the Home Assistant orga: 10 commits to open-zwave -4 commits to home-assistant +4 commits to core 1 commit to home-assistant.io ") - [Dan Sarginson (@dansarginson)](https://github.com/dansarginson "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Dan Smith (@kk7ds)](https://github.com/kk7ds "84 total commits to the Home Assistant orga: -68 commits to home-assistant +68 commits to core 14 commits to home-assistant.io -2 commits to home-assistant-polymer +2 commits to frontend ") - [Dan Sullivan (@dansullivan86)](https://github.com/dansullivan86 "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Dan Trevino (@dantrevino)](https://github.com/dantrevino "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [danbishop (@danbishop)](https://github.com/danbishop "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") - [Dane (@Xiol)](https://github.com/Xiol "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +1 commit to home-assistant.io +") +- [Dane Berryman (@daneberryman)](https://github.com/daneberryman "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Dane Peterson (@peterson-dane)](https://github.com/peterson-dane "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [dangyuluo (@left4taco)](https://github.com/left4taco "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Dani (@danichispa)](https://github.com/danichispa "9 total commits to the Home Assistant orga: 9 commits to home-assistant.io ") +- [Daniel (@azrael783)](https://github.com/azrael783 "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") - [Daniel (@delneet)](https://github.com/delneet "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Daniel (@azrarel783)](https://github.com/azrarel783 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Daniel (@sMauldaeschle)](https://github.com/sMauldaeschle "1 total commits to the Home Assistant orga: +1 commit to core ") - [Daniel (@danimtb)](https://github.com/danimtb "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Daniel (@danielkihlgren)](https://github.com/danielkihlgren "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Daniel Anner (@danner26)](https://github.com/danner26 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Daniel Bowman (@vrih)](https://github.com/vrih "5 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 1 commit to netdisco ") - [Daniel Chesterton (@dchesterton)](https://github.com/dchesterton "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Daniel Claes (@daenny)](https://github.com/daenny "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Daniel Correa Lobato (@dclobato)](https://github.com/dclobato "1 total commits to the Home Assistant orga: +1 commit to core ") - [Daniel Escoz (@Darkhogg)](https://github.com/Darkhogg "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Daniel Høyer Iversen (@Danielhiversen)](https://github.com/Danielhiversen "480 total commits to the Home Assistant orga: -345 commits to home-assistant -131 commits to home-assistant.io -3 commits to home-assistant-polymer +- [Daniel García (@dani-garcia)](https://github.com/dani-garcia "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Daniel Hjelseth Høyer (@Danielhiversen)](https://github.com/Danielhiversen "521 total commits to the Home Assistant orga: +381 commits to core +135 commits to home-assistant.io +3 commits to frontend 1 commit to people +1 commit to brands ") - [Daniel Kalmar (@kalimaul)](https://github.com/kalimaul "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Daniel Kucera (@danielkucera)](https://github.com/danielkucera "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Daniel Lando (@robertsLando)](https://github.com/robertsLando "15 total commits to the Home Assistant orga: 14 commits to open-zwave 1 commit to home-assistant.io ") -- [Daniel Lashua (@dlashua)](https://github.com/dlashua "125 total commits to the Home Assistant orga: -122 commits to appdaemon +- [Daniel Lashua (@dlashua)](https://github.com/dlashua "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +2 commits to core ") - [Daniel Matuschek (@usul27)](https://github.com/usul27 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Daniel Perna (@danielperna84)](https://github.com/danielperna84 "135 total commits to the Home Assistant orga: -74 commits to home-assistant +- [Daniel Perna (@danielperna84)](https://github.com/danielperna84 "152 total commits to the Home Assistant orga: +87 commits to core 48 commits to home-assistant.io -12 commits to hassio-addons +15 commits to hassio-addons 1 commit to people +1 commit to brands +") +- [Daniel Pervan (@danielpervan)](https://github.com/danielpervan "1 total commits to the Home Assistant orga: +1 commit to core ") - [Daniel Peukert (@dpeukert)](https://github.com/dpeukert "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant-polymer +1 commit to frontend +") +- [Daniel Powell (@danpowell88)](https://github.com/danpowell88 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Daniel Reimer (@dreimer1986)](https://github.com/dreimer1986 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Daniel Schaal (@schaal)](https://github.com/schaal "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") -- [Daniel Shokouhi (@dshokouhi)](https://github.com/dshokouhi "81 total commits to the Home Assistant orga: -42 commits to home-assistant -39 commits to home-assistant.io +- [Daniel Shokouhi (@dshokouhi)](https://github.com/dshokouhi "163 total commits to the Home Assistant orga: +55 commits to companion.home-assistant +52 commits to core +49 commits to home-assistant.io +6 commits to android +1 commit to developers.home-assistant ") -- [Daniel Stockhausen (@daniel-stockhausen)](https://github.com/daniel-stockhausen "1 total commits to the Home Assistant orga: +- [Daniel Stockhausen (@finerdly)](https://github.com/finerdly "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Daniel Stone (@daniel-stoneuk)](https://github.com/daniel-stoneuk "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Daniel Trnka (@trnila)](https://github.com/trnila "2 total commits to the Home Assistant orga: -2 commits to appdaemon +- [Daniel Sörlöv (@DSorlov)](https://github.com/DSorlov "6 total commits to the Home Assistant orga: +3 commits to wheels-custom-integrations +3 commits to brands ") - [Daniel Watkins (@OddBloke)](https://github.com/OddBloke "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [Daniel Welch (@danielwelch)](https://github.com/danielwelch "7 total commits to the Home Assistant orga: 3 commits to home-assistant.io 2 commits to homebridge-homeassistant 1 commit to hassio-addons -1 commit to home-assistant +1 commit to core ") - [Daniel Wiberg (@dannew)](https://github.com/dannew "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Daniel Winks (@DanielWinks)](https://github.com/DanielWinks "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +1 commit to home-assistant.io +") +- [danielpodwysocki (@danielpodwysocki)](https://github.com/danielpodwysocki "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [DanielXYZ2000 (@DanielXYZ2000)](https://github.com/DanielXYZ2000 "3 total commits to the Home Assistant orga: @@ -2778,16 +3383,19 @@ This page contains a list of people who have contributed in one way or another t 1 commit to hassio-addons ") - [Danijel Stojnic (@danijelst)](https://github.com/danijelst "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Daniyar Yeralin (@yeralin)](https://github.com/yeralin "6 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io 1 commit to homebridge-homeassistant ") - [Daniël van de Giessen (@DvdGiessen)](https://github.com/DvdGiessen "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") +- [Danny Fullerton (@northox)](https://github.com/northox "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Danny Gershman (@radius314)](https://github.com/radius314 "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") @@ -2797,6 +3405,12 @@ This page contains a list of people who have contributed in one way or another t - [DannyHg (@DannyHg)](https://github.com/DannyHg "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [DanPatten (@DanPatten)](https://github.com/DanPatten "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [DanskerUS (@DanskerUS)](https://github.com/DanskerUS "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [danu5 (@danu5)](https://github.com/danu5 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -2807,7 +3421,7 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [dapowers87 (@dapowers87)](https://github.com/dapowers87 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Dara Adib (@daradib)](https://github.com/daradib "2 total commits to the Home Assistant orga: @@ -2815,10 +3429,10 @@ This page contains a list of people who have contributed in one way or another t ") - [Dario Iacampo (@JackNova)](https://github.com/JackNova "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Darren Foo (@stonith)](https://github.com/stonith "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Darren Reynolds (@reynos)](https://github.com/reynos "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -2836,35 +3450,37 @@ This page contains a list of people who have contributed in one way or another t 1 commit to hassbian-scripts ") - [dasos (@dasos)](https://github.com/dasos "11 total commits to the Home Assistant orga: -7 commits to home-assistant +7 commits to core 3 commits to home-assistant.io 1 commit to netdisco ") -- [datafx (@datafx)](https://github.com/datafx "7 total commits to the Home Assistant orga: -7 commits to home-assistant.io +- [datafx (@datafx)](https://github.com/datafx "8 total commits to the Home Assistant orga: +8 commits to home-assistant.io ") - [Dav0815 (@Dav0815)](https://github.com/Dav0815 "7 total commits to the Home Assistant orga: 5 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [dav76df (@dav76df)](https://github.com/dav76df "5 total commits to the Home Assistant orga: 5 commits to open-zwave ") - [Dave (@davidrhunt)](https://github.com/davidrhunt "1 total commits to the Home Assistant orga: -1 commit to hassos +1 commit to operating-system ") - [Dave (@d4v3d)](https://github.com/d4v3d "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Dave Banks (@djbanks)](https://github.com/djbanks "3 total commits to the Home Assistant orga: -2 commits to appdaemon -1 commit to home-assistant +- [Dave Banks (@djbanks)](https://github.com/djbanks "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Dave Clarke (@clarkd)](https://github.com/clarkd "1 total commits to the Home Assistant orga: +1 commit to core ") - [Dave Eddy (@bahamas10)](https://github.com/bahamas10 "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [Dave Finlay (@dfinlay)](https://github.com/dfinlay "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Dave Hylands (@dhylands)](https://github.com/dhylands "1 total commits to the Home Assistant orga: @@ -2873,21 +3489,28 @@ This page contains a list of people who have contributed in one way or another t - [Dave J (@kxtcd950)](https://github.com/kxtcd950 "3 total commits to the Home Assistant orga: 3 commits to hassbian-scripts ") -- [Dave T (@davet2001)](https://github.com/davet2001 "4 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Dave Pearce (@UrbanDave)](https://github.com/UrbanDave "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Dave T (@davet2001)](https://github.com/davet2001 "10 total commits to the Home Assistant orga: +6 commits to core +2 commits to developers.home-assistant 2 commits to home-assistant.io ") - [DAVe3283 (@DAVe3283)](https://github.com/DAVe3283 "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [DaveSergeant (@dethpickle)](https://github.com/dethpickle "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") +- [davesmeghead (@davesmeghead)](https://github.com/davesmeghead "1 total commits to the Home Assistant orga: +1 commit to brands +") - [David (@fanaticDavid)](https://github.com/fanaticDavid "16 total commits to the Home Assistant orga: 12 commits to home-assistant.io -3 commits to home-assistant -1 commit to home-assistant-polymer +3 commits to core +1 commit to frontend ") - [David (@dschoorisse)](https://github.com/dschoorisse "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -2899,57 +3522,63 @@ This page contains a list of people who have contributed in one way or another t 50 commits to open-zwave ") - [David Barrera (@davidbb)](https://github.com/davidbb "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [David Baumann (@daBONDi)](https://github.com/daBONDi "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [David Beitey (@davidjb)](https://github.com/davidjb "10 total commits to the Home Assistant orga: -6 commits to home-assistant.io -2 commits to developers.home-assistant +- [David Beitey (@davidjb)](https://github.com/davidjb "14 total commits to the Home Assistant orga: +8 commits to home-assistant.io +3 commits to developers.home-assistant 1 commit to example-custom-config 1 commit to .github +1 commit to core ") - [David Bilay (@dYalib)](https://github.com/dYalib "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [David Bonnes (@zxdavb)](https://github.com/zxdavb "96 total commits to the Home Assistant orga: -71 commits to home-assistant -25 commits to home-assistant.io +- [David Bonnes (@zxdavb)](https://github.com/zxdavb "114 total commits to the Home Assistant orga: +85 commits to core +29 commits to home-assistant.io ") - [David Broadfoot (@dlbroadfoot)](https://github.com/dlbroadfoot "6 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core 1 commit to home-assistant.io ") - [David Byrne (@David-Byrne)](https://github.com/David-Byrne "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [David Conley (@conleydg)](https://github.com/conleydg "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core +") +- [David Cramer (@dcramer)](https://github.com/dcramer "3 total commits to the Home Assistant orga: +1 commit to frontend +1 commit to core +1 commit to home-assistant.io ") - [David De Sloovere (@DavidDeSloovere)](https://github.com/DavidDeSloovere "20 total commits to the Home Assistant orga: 18 commits to home-assistant.io 1 commit to developers.home-assistant -1 commit to home-assistant +1 commit to core ") - [David Edmondson (@dme)](https://github.com/dme "1 total commits to the Home Assistant orga: 1 commit to feedparser ") - [David Edmundson (@davidedmundson)](https://github.com/davidedmundson "7 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 3 commits to home-assistant.io ") -- [David F\. Mulcahey (@dmulcahey)](https://github.com/dmulcahey "172 total commits to the Home Assistant orga: -150 commits to home-assistant -20 commits to home-assistant-polymer +- [David F\. Mulcahey (@dmulcahey)](https://github.com/dmulcahey "257 total commits to the Home Assistant orga: +210 commits to core +45 commits to frontend 1 commit to people 1 commit to home-assistant.io ") - [David Fiel (@dfiel)](https://github.com/dfiel "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [David Gibbons (@davidgibbons)](https://github.com/davidgibbons "1 total commits to the Home Assistant orga: @@ -2957,44 +3586,51 @@ This page contains a list of people who have contributed in one way or another t ") - [David Grant (@davegravy)](https://github.com/davegravy "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [David Jackson (@David-Jackson)](https://github.com/David-Jackson "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [David K (@neffs)](https://github.com/neffs "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [David K (@neffs)](https://github.com/neffs "5 total commits to the Home Assistant orga: +5 commits to core ") - [David Lie (@davidlie)](https://github.com/davidlie "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [David Lloyd (@davlloyd)](https://github.com/davlloyd "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +1 commit to home-assistant.io +") +- [David Martínez (@vaites)](https://github.com/vaites "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [David McNett (@nugget)](https://github.com/nugget "14 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 5 commits to home-assistant.io -1 commit to hassio +1 commit to supervisor +") +- [David Nielsen (@dcnielsen90)](https://github.com/dcnielsen90 "10 total commits to the Home Assistant orga: +9 commits to core +1 commit to home-assistant.io ") - [David Ohayon (@ohayon)](https://github.com/ohayon "3 total commits to the Home Assistant orga: 3 commits to issue-bot ") - [David Peterson (@dippysan)](https://github.com/dippysan "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [David Radcliffe (@dwradcliffe)](https://github.com/dwradcliffe "3 total commits to the Home Assistant orga: +- [David Radcliffe (@dwradcliffe)](https://github.com/dwradcliffe "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io +1 commit to core +") +- [David Roberts (@drobtravels)](https://github.com/drobtravels "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") -- [David Roberts (@drobtravels)](https://github.com/drobtravels "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io -") -- [David Ryan (@ptcryan)](https://github.com/ptcryan "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io +- [David Ryan (@ptcryan)](https://github.com/ptcryan "4 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io ") - [David Shanske (@dshanske)](https://github.com/dshanske "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -3002,9 +3638,9 @@ This page contains a list of people who have contributed in one way or another t - [David Steele (@davesteele)](https://github.com/davesteele "4 total commits to the Home Assistant orga: 4 commits to pi-gen ") -- [David Straub (@DavidMStraub)](https://github.com/DavidMStraub "10 total commits to the Home Assistant orga: -6 commits to home-assistant -4 commits to home-assistant.io +- [David Straub (@DavidMStraub)](https://github.com/DavidMStraub "14 total commits to the Home Assistant orga: +8 commits to core +6 commits to home-assistant.io ") - [David Tchepak (@dtchepak)](https://github.com/dtchepak "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -3013,7 +3649,7 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [David Thulke (@dthulke)](https://github.com/dthulke "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [David VINET (@DavZero)](https://github.com/DavZero "4 total commits to the Home Assistant orga: @@ -3023,27 +3659,33 @@ This page contains a list of people who have contributed in one way or another t 2 commits to pi-gen ") - [David Winn (@qypea)](https://github.com/qypea "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [David Woodhouse (@dwmw2)](https://github.com/dwmw2 "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") - [David Worsham (@arbreng)](https://github.com/arbreng "3 total commits to the Home Assistant orga: 2 commits to hassio-build -1 commit to home-assistant +1 commit to core +") +- [David Zhu (@PotatoDrug)](https://github.com/PotatoDrug "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io ") - [david81 (@david81)](https://github.com/david81 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [David\-Leon Pohl (@DavidLP)](https://github.com/DavidLP "15 total commits to the Home Assistant orga: -13 commits to home-assistant +13 commits to core 2 commits to home-assistant.io ") - [Davide Setti (@vad)](https://github.com/vad "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Davide Varricchio (@bannhead)](https://github.com/bannhead "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Davide Varricchio (@bannhead)](https://github.com/bannhead "6 total commits to the Home Assistant orga: +4 commits to core +1 commit to frontend +1 commit to home-assistant.io ") - [DavidFW1960 (@DavidFW1960)](https://github.com/DavidFW1960 "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io @@ -3051,6 +3693,9 @@ This page contains a list of people who have contributed in one way or another t - [davidm84 (@davidm84)](https://github.com/davidm84 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [davoloko (@davoloko)](https://github.com/davoloko "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Dawid Wróbel (@wrobelda)](https://github.com/wrobelda "6 total commits to the Home Assistant orga: 5 commits to home-assistant.io 1 commit to open-zwave @@ -3059,28 +3704,32 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io ") - [DBCL (@DB-CL)](https://github.com/DB-CL "2 total commits to the Home Assistant orga: -2 commits to home-assistant-polymer +2 commits to frontend ") - [dbrowndan (@dbrowndan)](https://github.com/dbrowndan "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [dcrusader (@dcrusader)](https://github.com/dcrusader "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Dean (@FreekingDean)](https://github.com/FreekingDean "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Dean Camera (@abcminiuser)](https://github.com/abcminiuser "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") -- [definitio (@definitio)](https://github.com/definitio "9 total commits to the Home Assistant orga: -5 commits to home-assistant +- [definitio (@definitio)](https://github.com/definitio "13 total commits to the Home Assistant orga: +8 commits to core 4 commits to home-assistant.io +1 commit to brands ") - [deisi (@deisi)](https://github.com/deisi "12 total commits to the Home Assistant orga: -10 commits to home-assistant +10 commits to core 2 commits to home-assistant.io ") - [Dejan Dakić (@dejx)](https://github.com/dejx "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Delio Castillo (@jangeador)](https://github.com/jangeador "3 total commits to the Home Assistant orga: 2 commits to hassio-addons @@ -3089,6 +3738,9 @@ This page contains a list of people who have contributed in one way or another t - [Delper (@Delper)](https://github.com/Delper "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [DelusionalAI (@DelusionalAI)](https://github.com/DelusionalAI "1 total commits to the Home Assistant orga: +1 commit to core +") - [Demkes (@r2xud)](https://github.com/r2xud "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -3098,23 +3750,26 @@ This page contains a list of people who have contributed in one way or another t - [Denis Generalov (@giantlock)](https://github.com/giantlock "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Denix (@denics)](https://github.com/denics "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Denix (@denics)](https://github.com/denics "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io ") -- [Dennis (@CookieMonster87)](https://github.com/CookieMonster87 "10 total commits to the Home Assistant orga: -10 commits to open-zwave +- [Dennis (@MuppetOwl)](https://github.com/MuppetOwl "13 total commits to the Home Assistant orga: +13 commits to open-zwave ") - [Dennis de Greef (@dennisdegreef)](https://github.com/dennisdegreef "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core +") +- [Dennis Ham (@denniswham)](https://github.com/denniswham "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Dennis Karpienski (@TheRealLink)](https://github.com/TheRealLink "24 total commits to the Home Assistant orga: -15 commits to home-assistant-polymer -6 commits to home-assistant +15 commits to frontend +6 commits to core 2 commits to home-assistant.io 1 commit to netdisco ") - [Dennis Keitzel (@cybe)](https://github.com/cybe "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Dennis Modig (@techdude200)](https://github.com/techdude200 "2 total commits to the Home Assistant orga: 2 commits to open-zwave @@ -3134,45 +3789,39 @@ This page contains a list of people who have contributed in one way or another t - [Department G33k (@department-g33k)](https://github.com/department-g33k "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [dependabot\-preview\[bot\] (@dependabot-preview[bot])](https://github.com/dependabot-preview[bot] "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io -") -- [dependabot\[bot\] (@dependabot[bot])](https://github.com/dependabot[bot] "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io -") - [derandiunddasbo (@derandiunddasbo)](https://github.com/derandiunddasbo "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Derek (@itchaboy)](https://github.com/itchaboy "6 total commits to the Home Assistant orga: -5 commits to home-assistant.io -1 commit to home-assistant -") - [Derek (@KrunchMuffin)](https://github.com/KrunchMuffin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Derek Brooks (@broox)](https://github.com/broox "40 total commits to the Home Assistant orga: -30 commits to home-assistant +30 commits to core 9 commits to home-assistant.io 1 commit to open-zwave ") -- [dersger (@dersger)](https://github.com/dersger "4 total commits to the Home Assistant orga: -3 commits to home-assistant -1 commit to home-assistant-polymer +- [Dermot Duffy (@dermotduffy)](https://github.com/dermotduffy "1 total commits to the Home Assistant orga: +1 commit to core ") -- [Destix (@Destix)](https://github.com/Destix "6 total commits to the Home Assistant orga: -6 commits to home-assistant.io +- [dersger (@dersger)](https://github.com/dersger "4 total commits to the Home Assistant orga: +3 commits to core +1 commit to frontend +") +- [Desausoi Laurent (@MiniLau)](https://github.com/MiniLau "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Destix (@Destix)](https://github.com/Destix "7 total commits to the Home Assistant orga: +7 commits to home-assistant.io ") - [DetroitEE (@DetroitEE)](https://github.com/DetroitEE "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [devdelay (@devdelay)](https://github.com/devdelay "16 total commits to the Home Assistant orga: 7 commits to home-assistant.io -5 commits to home-assistant +5 commits to core 4 commits to homebridge-homeassistant ") -- [Developer Jaimyn (@jabelone)](https://github.com/jabelone "1 total commits to the Home Assistant orga: -1 commit to hassbian-scripts -") - [DeviantEng (@DeviantEng)](https://github.com/DeviantEng "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") @@ -3188,8 +3837,11 @@ This page contains a list of people who have contributed in one way or another t - [dewi\-ny\-je (@dewi-ny-je)](https://github.com/dewi-ny-je "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [dfournie (@dfournie)](https://github.com/dfournie "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [dfournie (@dfournie)](https://github.com/dfournie "2 total commits to the Home Assistant orga: +2 commits to core +") +- [dgtal1 (@dgtal1)](https://github.com/dgtal1 "1 total commits to the Home Assistant orga: +1 commit to brands ") - [dhaas (@dhaas)](https://github.com/dhaas "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -3197,17 +3849,25 @@ This page contains a list of people who have contributed in one way or another t - [dhzl84 (@dhzl84)](https://github.com/dhzl84 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [dickesW (@dickesW)](https://github.com/dickesW "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Dick Swart (@DickSwart)](https://github.com/DickSwart "1 total commits to the Home Assistant orga: +1 commit to brands ") -- [Diefferson Koderer Môro (@djpremier)](https://github.com/djpremier "79 total commits to the Home Assistant orga: -79 commits to home-assistant +- [dickesW (@dickesW)](https://github.com/dickesW "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Diefferson Koderer Môro (@djpremier)](https://github.com/djpremier "90 total commits to the Home Assistant orga: +81 commits to core +5 commits to brands +4 commits to home-assistant.io +") +- [Diego Ambrosanio (@snakuzzo)](https://github.com/snakuzzo "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [dieselrabbit (@dieselrabbit)](https://github.com/dieselrabbit "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [digiblur (@digiblur)](https://github.com/digiblur "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Dilepa (@Dilepa)](https://github.com/Dilepa "8 total commits to the Home Assistant orga: @@ -3215,17 +3875,17 @@ This page contains a list of people who have contributed in one way or another t ") - [dilruacs (@dilruacs)](https://github.com/dilruacs "8 total commits to the Home Assistant orga: 6 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [Dima Zavin (@thecynic)](https://github.com/thecynic "7 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 1 commit to home-assistant.io ") - [Dimitri Pribysh (@dmand)](https://github.com/dmand "1 total commits to the Home Assistant orga: -1 commit to hassos +1 commit to operating-system ") -- [dimitripb (@dimitripb)](https://github.com/dimitripb "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [dimitripb (@dimitripb)](https://github.com/dimitripb "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [dinoaus (@dinoaus)](https://github.com/dinoaus "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -3233,30 +3893,39 @@ 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 orga: 2 commits to open-zwave ") -- [Diogo Gomes (@dgomes)](https://github.com/dgomes "126 total commits to the Home Assistant orga: -89 commits to home-assistant -33 commits to home-assistant.io +- [Diogo Gomes (@dgomes)](https://github.com/dgomes "147 total commits to the Home Assistant orga: +98 commits to core +34 commits to home-assistant.io +7 commits to brands +3 commits to assets 2 commits to developers.home-assistant -1 commit to home-assistant-polymer 1 commit to people +1 commit to frontend +1 commit to wheels-custom-integrations ") - [Diogo Soares (@diogos88)](https://github.com/diogos88 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [diplix (@diplix)](https://github.com/diplix "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core +") +- [djaydev (@djaydev)](https://github.com/djaydev "1 total commits to the Home Assistant orga: +1 commit to docker ") - [djm300 (@djm300)](https://github.com/djm300 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") +- [DjMoren (@DjMoren)](https://github.com/DjMoren "1 total commits to the Home Assistant orga: +1 commit to core +") - [djschaap (@djschaap)](https://github.com/djschaap "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [DK (@poldim)](https://github.com/poldim "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [DK (@poldim)](https://github.com/poldim "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [DKAutomater (@DKAutomater)](https://github.com/DKAutomater "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -3268,9 +3937,15 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Dmitry Avramenko (@B1tMaster)](https://github.com/B1tMaster "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") +- [Dmitry Krasnoukhov (@krasnoukhov)](https://github.com/krasnoukhov "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Dmitry Tretyakov (@dtretyakov)](https://github.com/dtretyakov "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [dmschlab (@dmschlab)](https://github.com/dmschlab "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -3280,8 +3955,8 @@ This page contains a list of people who have contributed in one way or another t - [dnaphreak (@dnaphreak)](https://github.com/dnaphreak "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [dnguyen800 (@dnguyen800)](https://github.com/dnguyen800 "12 total commits to the Home Assistant orga: -10 commits to home-assistant.io +- [dnguyen800 (@dnguyen800)](https://github.com/dnguyen800 "15 total commits to the Home Assistant orga: +13 commits to home-assistant.io 2 commits to hassio-addons ") - [DoctorIOT (@DoctorIOT)](https://github.com/DoctorIOT "1 total commits to the Home Assistant orga: @@ -3289,18 +3964,26 @@ This page contains a list of people who have contributed in one way or another t ") - [DoloresHA (@DoloresHA)](https://github.com/DoloresHA "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Dom (@domwillcode)](https://github.com/domwillcode "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [Domantas Mauruča (@Dohxis)](https://github.com/Dohxis "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [domier (@domier)](https://github.com/domier "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Dominik Bruhn (@theomega)](https://github.com/theomega "2 total commits to the Home Assistant orga: +1 commit to iOS +1 commit to home-assistant.io +") +- [Dominik Moritz (@domoritz)](https://github.com/domoritz "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io +1 commit to supervised-installer +") - [Dominik Palo (@DominikPalo)](https://github.com/DominikPalo "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") @@ -3310,40 +3993,57 @@ This page contains a list of people who have contributed in one way or another t - [DonHugo (@DonHugo)](https://github.com/DonHugo "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Donnie (@donkawechico)](https://github.com/donkawechico "3 total commits to the Home Assistant orga: +3 commits to core +") - [doogstar (@doogstar)](https://github.com/doogstar "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") - [Doug (@douglasbeck)](https://github.com/douglasbeck "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [Dougal Matthews (@d0ugal)](https://github.com/d0ugal "10 total commits to the Home Assistant orga: -5 commits to home-assistant +- [Doug Ollerenshaw (@dougollerenshaw)](https://github.com/dougollerenshaw "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Dougal Matthews (@d0ugal)](https://github.com/d0ugal "12 total commits to the Home Assistant orga: +8 commits to core 3 commits to home-assistant.io -1 commit to appdaemon 1 commit to hassio-addons ") -- [Douglas Paz (@douglasppaz)](https://github.com/douglasppaz "2 total commits to the Home Assistant orga: +- [Douglas Paz (@dougppaz)](https://github.com/dougppaz "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [dozminic (@dozminic)](https://github.com/dozminic "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [dpressle (@dpressle)](https://github.com/dpressle "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [dpryor (@dpryor)](https://github.com/dpryor "3 total commits to the Home Assistant orga: 3 commits to open-zwave ") +- [Dr John Tunnicliffe (@DrJohnT)](https://github.com/DrJohnT "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Drake Loud (@drakeloud)](https://github.com/drakeloud "2 total commits to the Home Assistant orga: -2 commits to home-assistant-polymer +2 commits to frontend ") - [dramamoose (@dramamoose)](https://github.com/dramamoose "7 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 3 commits to home-assistant.io ") +- [DrBlokmeister (@DrBlokmeister)](https://github.com/DrBlokmeister "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [dreed47 (@dreed47)](https://github.com/dreed47 "9 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 1 commit to developers.home-assistant ") - [dreizehnelf (@dreizehnelf)](https://github.com/dreizehnelf "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [drentsemoi (@drentsemoi)](https://github.com/drentsemoi "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Drew Budwin (@dbudwin)](https://github.com/dbudwin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -3355,24 +4055,21 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Dries De Peuter (@NoUseFreak)](https://github.com/NoUseFreak "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [drjared88 (@drjared88)](https://github.com/drjared88 "5 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 1 commit to home-assistant.io ") -- [DrJeff (@DrJeff)](https://github.com/DrJeff "2 total commits to the Home Assistant orga: -2 commits to home-assistant-cli -") - [drogfild (@drogfild)](https://github.com/drogfild "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [droopanu (@droopanu)](https://github.com/droopanu "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [drop table USERS; \-\- (@hudashot)](https://github.com/hudashot "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [DrZzs (@Snipercaine)](https://github.com/Snipercaine "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -3380,14 +4077,13 @@ This page contains a list of people who have contributed in one way or another t - [dtorner (@dtorner)](https://github.com/dtorner "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [DubhAd (@DubhAd)](https://github.com/DubhAd "630 total commits to the Home Assistant orga: -621 commits to home-assistant.io +- [Dubh Ad (@DubhAd)](https://github.com/DubhAd "652 total commits to the Home Assistant orga: +640 commits to home-assistant.io 3 commits to developers.home-assistant -2 commits to hassos -1 commit to appdaemon +3 commits to alerts.home-assistant.io +3 commits to core +2 commits to operating-system 1 commit to people -1 commit to alerts.home-assistant.io -1 commit to home-assistant ") - [Duncan Leo (@duncanleo)](https://github.com/duncanleo "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source @@ -3397,10 +4093,14 @@ This page contains a list of people who have contributed in one way or another t ") - [Duoxilian (@Duoxilian)](https://github.com/Duoxilian "11 total commits to the Home Assistant orga: 6 commits to home-assistant.io -5 commits to home-assistant +5 commits to core +") +- [dupondje (@dupondje)](https://github.com/dupondje "4 total commits to the Home Assistant orga: +3 commits to core +1 commit to home-assistant.io ") - [Dustin Essington (@aetaric)](https://github.com/aetaric "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [Dustin Rue (@dustinrue)](https://github.com/dustinrue "2 total commits to the Home Assistant orga: @@ -3408,11 +4108,12 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Dustin S (@texnofobix)](https://github.com/texnofobix "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Dustin Wyatt (@dmwyatt)](https://github.com/dmwyatt "2 total commits to the Home Assistant orga: +- [Dustin Wyatt (@dmwyatt)](https://github.com/dmwyatt "3 total commits to the Home Assistant orga: 1 commit to feedparser 1 commit to open-zwave +1 commit to core ") - [Dwight Holman (@anonfunc)](https://github.com/anonfunc "6 total commits to the Home Assistant orga: 6 commits to pyharmony @@ -3426,20 +4127,20 @@ This page contains a list of people who have contributed in one way or another t - [Dylan Barlett (@dbarlett)](https://github.com/dbarlett "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [dynasticorpheus (@dynasticorpheus)](https://github.com/dynasticorpheus "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Eamonn O'Connell (@halfbaked)](https://github.com/halfbaked "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [earaya (@earaya)](https://github.com/earaya "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [eBoon123 (@eBoon123)](https://github.com/eBoon123 "6 total commits to the Home Assistant orga: -6 commits to appdaemon -") - [ebpetway (@ebpetway)](https://github.com/ebpetway "55 total commits to the Home Assistant orga: 55 commits to warrant ") - [ecksun (@ecksun)](https://github.com/ecksun "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Ed Boal (@edwork)](https://github.com/edwork "3 total commits to the Home Assistant orga: @@ -3447,71 +4148,89 @@ This page contains a list of people who have contributed in one way or another t ") - [Ed Marshall (@logic)](https://github.com/logic "2 total commits to the Home Assistant orga: 1 commit to open-zwave -1 commit to home-assistant +1 commit to core +") +- [Eddie Chiang (@eddie-chiang)](https://github.com/eddie-chiang "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Edgardo Ramírez (@SoldierCorp)](https://github.com/SoldierCorp "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [edgimar (@edgimar)](https://github.com/edgimar "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [edif30 (@edif30)](https://github.com/edif30 "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [Edu\_Coder (@jptrsn)](https://github.com/jptrsn "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Eduard van Valkenburg (@eavanvalkenburg)](https://github.com/eavanvalkenburg "11 total commits to the Home Assistant orga: -5 commits to home-assistant -5 commits to home-assistant.io +- [Eduard van Valkenburg (@eavanvalkenburg)](https://github.com/eavanvalkenburg "16 total commits to the Home Assistant orga: +7 commits to core +6 commits to home-assistant.io 1 commit to developers.home-assistant +1 commit to wheels-custom-integrations +1 commit to brands ") - [Eduardo Fonseca (@ebfio)](https://github.com/ebfio "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Edward Loveall (@edwardloveall)](https://github.com/edwardloveall "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [Edward Romano (@oudeismetis)](https://github.com/oudeismetis "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Edward Thomson (@ethomson)](https://github.com/ethomson "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [Edwin Smulders (@Dutchy-)](https://github.com/Dutchy- "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") +- [eelcohn (@eelcohn)](https://github.com/eelcohn "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Eerovil (@Eerovil)](https://github.com/Eerovil "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [efirestone (@efirestone)](https://github.com/efirestone "1 total commits to the Home Assistant orga: +1 commit to iOS +") - [efp1 (@efp1)](https://github.com/efp1 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [EgonMarmol (@EgonMarmol)](https://github.com/EgonMarmol "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") +- [Egor Romanko (@egor-romanko)](https://github.com/egor-romanko "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Egor Tsinko (@etsinko)](https://github.com/etsinko "12 total commits to the Home Assistant orga: -9 commits to home-assistant +9 commits to core 3 commits to home-assistant.io ") -- [ehendrix23 (@ehendrix23)](https://github.com/ehendrix23 "46 total commits to the Home Assistant orga: -39 commits to home-assistant +- [ehendrix23 (@ehendrix23)](https://github.com/ehendrix23 "51 total commits to the Home Assistant orga: +44 commits to core 5 commits to home-assistant.io 1 commit to pyharmony -1 commit to home-assistant-polymer +1 commit to frontend ") - [eieste (@eieste)](https://github.com/eieste "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Eirik H (@eithe)](https://github.com/eithe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Eirik Z (@atxbyea)](https://github.com/atxbyea "11 total commits to the Home Assistant orga: -11 commits to home-assistant.io +- [Eirik Z (@atxbyea)](https://github.com/atxbyea "16 total commits to the Home Assistant orga: +16 commits to home-assistant.io ") - [Eiríkur Haraldsson (@eiki25)](https://github.com/eiki25 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Eitan Mosenkis (@emosenkis)](https://github.com/emosenkis "6 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io 1 commit to netdisco ") @@ -3519,47 +4238,72 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [ejaviga (@ejaviga)](https://github.com/ejaviga "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [elad\-bar (@elad-bar)](https://github.com/elad-bar "4 total commits to the Home Assistant orga: +3 commits to brands +1 commit to wheels-custom-integrations +") +- [Elahd Bar\-Shai (@elahd)](https://github.com/elahd "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io ") - [eldanb (@eldanb)](https://github.com/eldanb "1 total commits to the Home Assistant orga: 1 commit to homebridge-homeassistant ") -- [Eleftherios Chamakiotis (@lexam79)](https://github.com/lexam79 "4 total commits to the Home Assistant orga: -2 commits to home-assistant -2 commits to home-assistant.io +- [Eleftherios Chamakiotis (@lexam79)](https://github.com/lexam79 "6 total commits to the Home Assistant orga: +3 commits to home-assistant.io +3 commits to core ") - [Elelabs\-maintainer (@Elelabs-maintainer)](https://github.com/Elelabs-maintainer "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Elias Hunt (@raetha)](https://github.com/raetha "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Elias Karakoulakis (@ekarak)](https://github.com/ekarak "8 total commits to the Home Assistant orga: 8 commits to open-zwave ") - [Eliran Turgeman (@VirtualL)](https://github.com/VirtualL "7 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core 2 commits to home-assistant.io ") - [Eliseo Martelli (@eliseomartelli)](https://github.com/eliseomartelli "30 total commits to the Home Assistant orga: -22 commits to home-assistant +22 commits to core 8 commits to home-assistant.io ") - [Ellis Percival (@flyte)](https://github.com/flyte "31 total commits to the Home Assistant orga: -25 commits to home-assistant +25 commits to core 6 commits to home-assistant.io ") +- [elmurato (@elmurato)](https://github.com/elmurato "5 total commits to the Home Assistant orga: +4 commits to core +1 commit to home-assistant.io +") - [eltoro81 (@mvjt)](https://github.com/mvjt "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Elvis (@mu3)](https://github.com/mu3 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [elwing00 (@elwing00)](https://github.com/elwing00 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [elyesa (@ssl)](https://github.com/ssl "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [Em (@esciara)](https://github.com/esciara "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") -- [Emacee (@Emacee)](https://github.com/Emacee "3 total commits to the Home Assistant orga: +- [Emacee (@Emacee)](https://github.com/Emacee "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io +1 commit to core +") +- [Emanuel Winblad (@ManneW)](https://github.com/ManneW "5 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to hassio-addons +1 commit to hassio-builder +1 commit to core ") - [Emanuele (@ema987)](https://github.com/ema987 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -3570,19 +4314,24 @@ This page contains a list of people who have contributed in one way or another t - [emartec\-ca (@emartec-ca)](https://github.com/emartec-ca "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Emeric (@Mryck)](https://github.com/Mryck "30 total commits to the Home Assistant orga: -30 commits to home-assistant.io +- [Emeric (@Mryck)](https://github.com/Mryck "32 total commits to the Home Assistant orga: +31 commits to home-assistant.io +1 commit to core ") - [Emil Horpen Hetty (@emilhetty)](https://github.com/emilhetty "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core +") +- [Emil Hørlyck (@eHorlyck)](https://github.com/eHorlyck "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Emil Nilsson (@voxic)](https://github.com/voxic "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") -- [Emil Stjerneman (@bratanon)](https://github.com/bratanon "3 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to home-assistant-polymer +- [Emil Stjerneman (@bratanon)](https://github.com/bratanon "6 total commits to the Home Assistant orga: +3 commits to core +2 commits to home-assistant.io +1 commit to frontend ") - [emil\-e (@emil-e)](https://github.com/emil-e "1 total commits to the Home Assistant orga: 1 commit to python-openzwave @@ -3590,22 +4339,34 @@ This page contains a list of people who have contributed in one way or another t - [emilgil (@emilgil)](https://github.com/emilgil "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Emilv2 (@Emilv2)](https://github.com/Emilv2 "4 total commits to the Home Assistant orga: -3 commits to home-assistant -1 commit to home-assistant.io +- [Emilv2 (@Emilv2)](https://github.com/Emilv2 "10 total commits to the Home Assistant orga: +8 commits to core +2 commits to home-assistant.io ") - [Emily Cassandra Meeker (@ecmeeker)](https://github.com/ecmeeker "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Emily Mills (@emlove)](https://github.com/emlove "374 total commits to the Home Assistant orga: +199 commits to core +97 commits to frontend +65 commits to home-assistant.io +4 commits to developers.home-assistant +3 commits to home-assistant-js +2 commits to python-openzwave +1 commit to homebridge-homeassistant +1 commit to people +1 commit to brands +1 commit to open-zwave +") - [EmitKiwi (@EmitKiwi)](https://github.com/EmitKiwi "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [emkay82 (@emkay82)](https://github.com/emkay82 "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [emlt (@emlt)](https://github.com/emlt "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Emmanuel Krebs (@e-krebs)](https://github.com/e-krebs "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -3619,37 +4380,41 @@ This page contains a list of people who have contributed in one way or another t - [Emre Saglam (@emresaglam)](https://github.com/emresaglam "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [endor (@endor-force)](https://github.com/endor-force "19 total commits to the Home Assistant orga: -9 commits to home-assistant.io +- [endor (@endor-force)](https://github.com/endor-force "22 total commits to the Home Assistant orga: +10 commits to home-assistant.io 5 commits to hassio-addons -4 commits to home-assistant +5 commits to core 1 commit to hassio-build +1 commit to brands ") - [Enrico Battistella (@battistaar)](https://github.com/battistaar "1 total commits to the Home Assistant orga: 1 commit to homebridge-homeassistant ") - [Enrico Berndt (@treehoof)](https://github.com/treehoof "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Enrique Gonzalez (@enriquegh)](https://github.com/enriquegh "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Enu Rist (@enurist)](https://github.com/enurist "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [eracknaphobia (@eracknaphobia)](https://github.com/eracknaphobia "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [eracknaphobia (@eracknaphobia)](https://github.com/eracknaphobia "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [eresonance (@eresonance)](https://github.com/eresonance "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [erffrfez (@erffrfez)](https://github.com/erffrfez "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Eric Clymer (@ericwclymer)](https://github.com/ericwclymer "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Eric Hagan (@ehagan)](https://github.com/ehagan "5 total commits to the Home Assistant orga: -3 commits to home-assistant -1 commit to home-assistant-polymer +3 commits to core +1 commit to frontend 1 commit to home-assistant.io ") - [Eric Harris (@ericmharris)](https://github.com/ericmharris "1 total commits to the Home Assistant orga: @@ -3665,56 +4430,78 @@ This page contains a list of people who have contributed in one way or another t 1 commit to 1password-teams-open-source ") - [Eric Jansen (@ej81)](https://github.com/ej81 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Eric Miller (@ericmiller777)](https://github.com/ericmiller777 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Eric Matte (@ericmatte)](https://github.com/ericmatte "3 total commits to the Home Assistant orga: +3 commits to hassio-addons ") -- [Eric Nagley (@marchingphoenix)](https://github.com/marchingphoenix "18 total commits to the Home Assistant orga: -15 commits to home-assistant -3 commits to home-assistant.io +- [Eric Miller (@ericmiller777)](https://github.com/ericmiller777 "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Eric Nagley (@marchingphoenix)](https://github.com/marchingphoenix "19 total commits to the Home Assistant orga: +15 commits to core +4 commits to home-assistant.io ") - [Eric Oosting (@eoosting)](https://github.com/eoosting "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [Eric Pignet (@ericpignet)](https://github.com/ericpignet "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Eric Rolf (@xrolfex)](https://github.com/xrolfex "13 total commits to the Home Assistant orga: -13 commits to home-assistant +13 commits to core +") +- [Eric Severance (@esev)](https://github.com/esev "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Eric Thomas (@et)](https://github.com/et "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant ") - [Eric Thompson (@er0ck)](https://github.com/er0ck "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [ericgingras (@e850205)](https://github.com/e850205 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [ericvb (@ericvb)](https://github.com/ericvb "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Erik A (@erikarenhill)](https://github.com/erikarenhill "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Erik Bent (@erikbent)](https://github.com/erikbent "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Erik Eriksson (@molobrakos)](https://github.com/molobrakos "126 total commits to the Home Assistant orga: -109 commits to home-assistant +109 commits to core 14 commits to home-assistant.io 3 commits to netdisco ") - [Erik Gustavsson (@cyr123)](https://github.com/cyr123 "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [Erik Montnemery (@emontnemery)](https://github.com/emontnemery "312 total commits to the Home Assistant orga: -243 commits to home-assistant -55 commits to home-assistant.io -12 commits to home-assistant-polymer +- [Erik Kastelec (@erikkastelec)](https://github.com/erikkastelec "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Erik Montnemery (@emontnemery)](https://github.com/emontnemery "467 total commits to the Home Assistant orga: +349 commits to core +87 commits to home-assistant.io +21 commits to frontend +9 commits to developers.home-assistant 1 commit to people -1 commit to developers.home-assistant +") +- [Erik Seglem (@eseglem)](https://github.com/eseglem "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Erik van Paassen (@evpaassen)](https://github.com/evpaassen "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Erik\-jan Riemers (@riemers)](https://github.com/riemers "17 total commits to the Home Assistant orga: 16 commits to home-assistant.io 1 commit to hassbian-scripts ") -- [ErikS (@dmonizer)](https://github.com/dmonizer "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io -") - [erizhang (@erizhang)](https://github.com/erizhang "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -3727,58 +4514,76 @@ This page contains a list of people who have contributed in one way or another t - [Ernest W\. Durbin III (@ewdurbin)](https://github.com/ewdurbin "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") -- [Ernst Klamer (@Ernst79)](https://github.com/Ernst79 "5 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Ernst Klamer (@Ernst79)](https://github.com/Ernst79 "11 total commits to the Home Assistant orga: +5 commits to core +4 commits to home-assistant.io 1 commit to developers.home-assistant -1 commit to home-assistant +1 commit to brands ") - [ErnstEeldert (@ErnstEeldert)](https://github.com/ErnstEeldert "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [ERovirosa (@ERovirosa)](https://github.com/ERovirosa "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Esben Damgaard (@Ebbe)](https://github.com/Ebbe "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") -- [escoand (@escoand)](https://github.com/escoand "23 total commits to the Home Assistant orga: -16 commits to home-assistant -4 commits to home-assistant.io +- [escoand (@escoand)](https://github.com/escoand "49 total commits to the Home Assistant orga: +37 commits to core +7 commits to home-assistant.io 3 commits to netdisco +1 commit to hassio-builder +1 commit to brands +") +- [Esouder (@Esouder)](https://github.com/Esouder "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [EspenT (@EspenT)](https://github.com/EspenT "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [etheralm (@etheralm)](https://github.com/etheralm "5 total commits to the Home Assistant orga: -3 commits to home-assistant -2 commits to home-assistant.io +- [etheralm (@etheralm)](https://github.com/etheralm "11 total commits to the Home Assistant orga: +7 commits to core +4 commits to home-assistant.io ") - [Ettienne Gous (@ettiennegous)](https://github.com/ettiennegous "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [ettisan (@ettisan)](https://github.com/ettisan "8 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core +") +- [Etzion Bar\-Noy (@ezaton)](https://github.com/ezaton "1 total commits to the Home Assistant orga: +1 commit to operating-system ") - [Eu (@covrig)](https://github.com/covrig "5 total commits to the Home Assistant orga: -2 commits to home-assistant-polymer -2 commits to home-assistant +2 commits to frontend +2 commits to core 1 commit to home-assistant.io ") - [Eugene Kuzin (@kuzin2006)](https://github.com/kuzin2006 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Eugene Pirogov (@gmile)](https://github.com/gmile "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Eugene Prystupa (@prystupa)](https://github.com/prystupa "47 total commits to the Home Assistant orga: +42 commits to core +4 commits to home-assistant.io +1 commit to brands +") - [eugeneniemand (@eugeneniemand)](https://github.com/eugeneniemand "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Eugenio Panadero (@azogue)](https://github.com/azogue "78 total commits to the Home Assistant orga: -46 commits to home-assistant -25 commits to home-assistant.io -3 commits to home-assistant-polymer +- [Eugenio Panadero (@azogue)](https://github.com/azogue "100 total commits to the Home Assistant orga: +63 commits to core +27 commits to home-assistant.io 3 commits to homebridge-homeassistant +3 commits to frontend +3 commits to brands 1 commit to people ") - [Evan Bruhn (@evanjd)](https://github.com/evanjd "11 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 3 commits to home-assistant.io ") - [Evan Morse (@RowdyDog12)](https://github.com/RowdyDog12 "5 total commits to the Home Assistant orga: @@ -3786,123 +4591,163 @@ This page contains a list of people who have contributed in one way or another t ") - [everix1992 (@everix1992)](https://github.com/everix1992 "4 total commits to the Home Assistant orga: 2 commits to pyharmony -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Evert Van den Bruel (@Evertvandenbruel)](https://github.com/Evertvandenbruel "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Evgeni Kunev (@kunev)](https://github.com/kunev "1 total commits to the Home Assistant orga: -1 commit to appdaemon -") - [Evgeniy (@evgeniy-khatko)](https://github.com/evgeniy-khatko "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") +- [Evgeny (@freekode)](https://github.com/freekode "4 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io +") +- [evoblicec (@evoblicec)](https://github.com/evoblicec "1 total commits to the Home Assistant orga: +1 commit to core +") - [ewgast (@ewgast)](https://github.com/ewgast "6 total commits to the Home Assistant orga: 6 commits to open-zwave ") +- [ews99 (@ews99)](https://github.com/ews99 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [eXtgmA (@eXtgmA)](https://github.com/eXtgmA "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [eyager1 (@eyager1)](https://github.com/eyager1 "7 total commits to the Home Assistant orga: -3 commits to home-assistant +- [eyager1 (@eyager1)](https://github.com/eyager1 "8 total commits to the Home Assistant orga: +4 commits to core 3 commits to home-assistant.io -1 commit to home-assistant-polymer +1 commit to frontend ") -- [Ezra Bowden (@bn0)](https://github.com/bn0 "2 total commits to the Home Assistant orga: -2 commits to warrant +- [Eyal (@smhgit)](https://github.com/smhgit "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands ") -- [Fabian Affolter (@fabaff)](https://github.com/fabaff "5728 total commits to the Home Assistant orga: -3340 commits to home-assistant.io -2003 commits to home-assistant -163 commits to home-assistant-cli -53 commits to developers.home-assistant +- [Fabian Affolter (@fabaff)](https://github.com/fabaff "5692 total commits to the Home Assistant orga: +3370 commits to home-assistant.io +2074 commits to core +63 commits to developers.home-assistant 39 commits to home-assistant-notebooks -33 commits to home-assistant-assets +33 commits to assets 18 commits to organization-internal +14 commits to operating-system +14 commits to data.home-assistant 12 commits to hassio-build -12 commits to data.home-assistant -11 commits to home-assistant-polymer 11 commits to netdisco +11 commits to frontend 7 commits to hass-release -7 commits to hassos -6 commits to hassio -6 commits to hassio-addons -2 commits to home-assistant-iOS +7 commits to hassio-addons +6 commits to supervisor +3 commits to example-custom-config +2 commits to iOS +2 commits to cli +2 commits to alerts.home-assistant.io 1 commit to home-assistant-js-websocket -1 commit to appdaemon 1 commit to ui-schema -1 commit to example-custom-config -1 commit to home-assistant-android +1 commit to android +1 commit to supervised-installer ") - [Fabian Fischer (@nodomain)](https://github.com/nodomain "1 total commits to the Home Assistant orga: 1 commit to hassio-addons ") - [Fabian Heredia Montiel (@fabianhjr)](https://github.com/fabianhjr "4 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core ") -- [Fabian Hirschmann (@fhirschmann)](https://github.com/fhirschmann "1 total commits to the Home Assistant orga: -1 commit to appdaemon +- [Fabian Peter Hammerle (@fphammerle)](https://github.com/fphammerle "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io ") - [Fabian Rodriguez (@MagicFab)](https://github.com/MagicFab "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Fabien Piuzzi (@reefab)](https://github.com/reefab "13 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 4 commits to home-assistant.io -1 commit to home-assistant-polymer +1 commit to frontend ") - [Fabio Fantoni (@Fantu)](https://github.com/Fantu "1 total commits to the Home Assistant orga: -1 commit to hassos +1 commit to operating-system +") +- [fabiocastagnino (@fabiocastagnino)](https://github.com/fabiocastagnino "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Fabrice Fontaine (@ffontaine)](https://github.com/ffontaine "7 total commits to the Home Assistant orga: +7 commits to open-zwave ") - [Fabrizio Furnari (@fabfurnari)](https://github.com/fabfurnari "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [fabtesta (@fabtesta)](https://github.com/fabtesta "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [fakezeta (@fakezeta)](https://github.com/fakezeta "8 total commits to the Home Assistant orga: -7 commits to home-assistant +7 commits to core +1 commit to home-assistant.io +") +- [fanvyr (@fanvyr)](https://github.com/fanvyr "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Fares Rihani (@anchepiece)](https://github.com/anchepiece "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Farid (@ooii)](https://github.com/ooii "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Farzad Noorian (@fnoorian)](https://github.com/fnoorian "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Faucogney Anthony (@afaucogney)](https://github.com/afaucogney "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Fazli Sapuan (@fuzzie360)](https://github.com/fuzzie360 "2 total commits to the Home Assistant orga: +2 commits to core +") +- [fb22 (@fb22)](https://github.com/fb22 "5 total commits to the Home Assistant orga: +3 commits to core +1 commit to brands +1 commit to home-assistant.io +") - [Federico Ariel Castagnini (@facastagnini)](https://github.com/facastagnini "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Federico Leoni (@effelle)](https://github.com/effelle "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Federico Granata (@Edo78)](https://github.com/Edo78 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Federico Leoni (@effelle)](https://github.com/effelle "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io ") - [Federico Zivolo (@FezVrasta)](https://github.com/FezVrasta "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") -- [fedor1210 (@augustdipierro)](https://github.com/augustdipierro "3 total commits to the Home Assistant orga: +- [fedor1210 (@adipierro)](https://github.com/adipierro "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [Felipe Cypriano (@fcy)](https://github.com/fcy "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Felipe Martins Diel (@felipediel)](https://github.com/felipediel "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Felipe Martins Diel (@felipediel)](https://github.com/felipediel "12 total commits to the Home Assistant orga: +9 commits to core +3 commits to home-assistant.io +") +- [Felix Barbalet (@xlfe)](https://github.com/xlfe "1 total commits to the Home Assistant orga: +1 commit to core ") - [Felix Breidenstein (@fleaz)](https://github.com/fleaz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Felix Eckhofer (@tribut)](https://github.com/tribut "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io +- [Felix Eckhofer (@tribut)](https://github.com/tribut "4 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to developers.home-assistant +1 commit to core ") - [Felix Fischer (@felixfischer)](https://github.com/felixfischer "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -3925,43 +4770,61 @@ This page contains a list of people who have contributed in one way or another t - [Fergus (@fergus)](https://github.com/fergus "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [Fermulator (@fermulator)](https://github.com/fermulator "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Fermulator (@fermulator)](https://github.com/fermulator "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [Fernando (@ferazambuja)](https://github.com/ferazambuja "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") -- [Ferry van Zeelst (@StaticCube)](https://github.com/StaticCube "6 total commits to the Home Assistant orga: +- [Ferry van Zeelst (@ProtoThis)](https://github.com/ProtoThis "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io -2 commits to home-assistant +2 commits to core +") +- [fhoekstra (@fhoekstra)](https://github.com/fhoekstra "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [fignew (@fignew)](https://github.com/fignew "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [figurcoe (@figurcoe)](https://github.com/figurcoe "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Filip Bednárik (@drndos)](https://github.com/drndos "5 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io ") +- [Filip Pytloun (@fpytloun)](https://github.com/fpytloun "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Filip van Hoeckel (@filip-van-hoeckel)](https://github.com/filip-van-hoeckel "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Finbarr Brady (@fbradyirl)](https://github.com/fbradyirl "46 total commits to the Home Assistant orga: -30 commits to home-assistant +- [Finbarr Brady (@fbradyirl)](https://github.com/fbradyirl "47 total commits to the Home Assistant orga: +31 commits to core 12 commits to home-assistant.io 3 commits to netdisco 1 commit to people ") -- [finity69x2 (@finity69x2)](https://github.com/finity69x2 "2 total commits to the Home Assistant orga: +- [finity69x2 (@finity69x2)](https://github.com/finity69x2 "4 total commits to the Home Assistant orga: +2 commits to brands 2 commits to home-assistant.io ") +- [finnysamuel (@finnysamuel)](https://github.com/finnysamuel "1 total commits to the Home Assistant orga: +1 commit to core +") - [firstmentoring (@firstmentoring)](https://github.com/firstmentoring "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [FL550 (@FL550)](https://github.com/FL550 "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [flashoftheblades (@TheSwert)](https://github.com/TheSwert "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Flavien Charlon (@Flavien)](https://github.com/Flavien "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Flavien Norindr (@Plumillon)](https://github.com/Plumillon "1 total commits to the Home Assistant orga: @@ -3971,41 +4834,55 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io ") - [Flavio Castelli (@flavio)](https://github.com/flavio "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core +1 commit to home-assistant.io +") +- [FlavorFx (@FlavorFx)](https://github.com/FlavorFx "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") - [flebourse (@flebourse)](https://github.com/flebourse "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [FletcherAU (@FletcherAU)](https://github.com/FletcherAU "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [flinkebernt (@flinkebernt)](https://github.com/flinkebernt "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") - [Flip Hess (@fliphess)](https://github.com/fliphess "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Flo (@Flo6651)](https://github.com/Flo6651 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [floatiepen (@floatiepen)](https://github.com/floatiepen "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Flop2006 (@Flop2006)](https://github.com/Flop2006 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [flopp999 (@flopp999)](https://github.com/flopp999 "7 total commits to the Home Assistant orga: 7 commits to open-zwave ") -- [Florent Thoumie (@flz)](https://github.com/flz "15 total commits to the Home Assistant orga: -11 commits to home-assistant +- [Florent Thoumie (@flz)](https://github.com/flz "20 total commits to the Home Assistant orga: +16 commits to core 4 commits to home-assistant.io ") - [Florian Bachmann (@baflo)](https://github.com/baflo "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [Florian Bernd (@flobernd)](https://github.com/flobernd "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Florian Gareis (@TheZoker)](https://github.com/TheZoker "3 total commits to the Home Assistant orga: +- [Florian Chauveau (@fchauveau)](https://github.com/fchauveau "1 total commits to the Home Assistant orga: +1 commit to android +") +- [Florian Gareis (@TheZoker)](https://github.com/TheZoker "4 total commits to the Home Assistant orga: +1 commit to android 1 commit to developers.home-assistant -1 commit to home-assistant-android +1 commit to frontend 1 commit to home-assistant.io ") - [Florian Harr (@caffeineflo)](https://github.com/caffeineflo "1 total commits to the Home Assistant orga: @@ -4014,35 +4891,41 @@ This page contains a list of people who have contributed in one way or another t - [Florian Harwoeck (@harwoeck)](https://github.com/harwoeck "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Florian Holzapfel (@florianholzapfel)](https://github.com/florianholzapfel "12 total commits to the Home Assistant orga: -5 commits to home-assistant.io -4 commits to home-assistant +- [Florian Holzapfel (@florianholzapfel)](https://github.com/florianholzapfel "9 total commits to the Home Assistant orga: +4 commits to home-assistant.io 3 commits to netdisco +2 commits to core ") -- [Florian Klien (@flowolf)](https://github.com/flowolf "34 total commits to the Home Assistant orga: -20 commits to home-assistant.io -12 commits to home-assistant -2 commits to home-assistant-assets +- [Florian Klien (@flowolf)](https://github.com/flowolf "40 total commits to the Home Assistant orga: +21 commits to home-assistant.io +13 commits to core +4 commits to brands +2 commits to assets ") -- [Florian Ludwig (@FlorianLudwig)](https://github.com/FlorianLudwig "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Florian Ludwig (@FlorianLudwig)](https://github.com/FlorianLudwig "4 total commits to the Home Assistant orga: +2 commits to core +1 commit to developers.home-assistant +1 commit to home-assistant.io ") -- [Florian Werner (@flo-wer)](https://github.com/flo-wer "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Florian Werner (@flo-wer)](https://github.com/flo-wer "3 total commits to the Home Assistant orga: +2 commits to core 1 commit to home-assistant.io ") - [florianj1 (@florianj1)](https://github.com/florianj1 "3 total commits to the Home Assistant orga: -1 commit to hassio -1 commit to home-assistant +1 commit to supervisor +1 commit to core +1 commit to home-assistant.io +") +- [Florijan Hamzic (@cinatic)](https://github.com/cinatic "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [florincosta (@florincosta)](https://github.com/florincosta "6 total commits to the Home Assistant orga: -3 commits to home-assistant 3 commits to home-assistant.io +3 commits to core ") -- [Floris Van der krieken (@florisvdk)](https://github.com/florisvdk "3 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to home-assistant.io +- [Floris Van der krieken (@florisvdk)](https://github.com/florisvdk "4 total commits to the Home Assistant orga: +2 commits to home-assistant.io +2 commits to core ") - [Floyd Pink (@floydpink)](https://github.com/floydpink "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -4051,31 +4934,35 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [fmartens (@fmartens)](https://github.com/fmartens "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Fonta (@Fonta)](https://github.com/Fonta "4 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [fodi666 (@fodi666)](https://github.com/fodi666 "1 total commits to the Home Assistant orga: +1 commit to open-zwave ") -- [foreign\-sub (@foreign-sub)](https://github.com/foreign-sub "4 total commits to the Home Assistant orga: -4 commits to home-assistant -") -- [Forte (@fortepc)](https://github.com/fortepc "5 total commits to the Home Assistant orga: +- [Fonta (@Fonta)](https://github.com/Fonta "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") +- [foreign\-sub (@foreign-sub)](https://github.com/foreign-sub "4 total commits to the Home Assistant orga: +4 commits to core +") +- [Forte (@fortepc)](https://github.com/fortepc "8 total commits to the Home Assistant orga: +8 commits to home-assistant.io +") - [fotoetienne (@fotoetienne)](https://github.com/fotoetienne "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [fotvoren (@fotvoren)](https://github.com/fotvoren "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [foxy82 (@foxy82)](https://github.com/foxy82 "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io +- [foxy82 (@foxy82)](https://github.com/foxy82 "7 total commits to the Home Assistant orga: +4 commits to core +2 commits to home-assistant.io +1 commit to hassio-addons ") - [Fran (@franfos)](https://github.com/franfos "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [fran1987 (@fran1987)](https://github.com/fran1987 "1 total commits to the Home Assistant orga: @@ -4084,44 +4971,76 @@ This page contains a list of people who have contributed in one way or another t - [Frances Coronel (@fvcproductions)](https://github.com/fvcproductions "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Franck Nijhof (@frenck)](https://github.com/frenck "473 total commits to the Home Assistant orga: -244 commits to home-assistant.io -97 commits to home-assistant -38 commits to hassio-cli -31 commits to hassio-addons -22 commits to hassio -14 commits to developers.home-assistant -5 commits to home-assistant-polymer +- [Franck Nijhof (@frenck)](https://github.com/frenck "1693 total commits to the Home Assistant orga: +655 commits to home-assistant.io +588 commits to core +122 commits to hassio-addons +79 commits to brands +56 commits to cli +49 commits to supervisor +42 commits to developers.home-assistant +21 commits to frontend +13 commits to alerts.home-assistant.io +9 commits to architecture +9 commits to docker-base +8 commits to plugin-cli +7 commits to operating-system 4 commits to hass-release -3 commits to hassos -3 commits to hassos-cli -2 commits to hassio-base -2 commits to data.home-assistant -2 commits to alerts.home-assistant.io -1 commit to home-assistant-assets -1 commit to appdaemon -1 commit to hassio-homeassistant -1 commit to hassio-addons-development -1 commit to architecture +4 commits to assets +4 commits to data.home-assistant +3 commits to iOS +3 commits to wheels-custom-integrations +2 commits to home-assistant-js-websocket +2 commits to supervised-installer +2 commits to companion.home-assistant +1 commit to organization-internal +1 commit to hubot-home-assistant 1 commit to hassio-build +1 commit to hassio-addons-development +1 commit to docker +1 commit to custom-panel-starter-kit-react +1 commit to hassio-version +1 commit to actions +1 commit to android +1 commit to ci-azure +1 commit to plugin-audio ") - [Frank (@syphernl)](https://github.com/syphernl "3 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer -1 commit to home-assistant +1 commit to frontend +1 commit to core +1 commit to home-assistant.io +") +- [Frank Niesten (@Frankniesten)](https://github.com/Frankniesten "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Frank van Ierland (@fierland)](https://github.com/fierland "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") - [Frank Wickström (@frwickst)](https://github.com/frwickst "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Frankster\-NL (@Frankster-NL)](https://github.com/Frankster-NL "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Frankwin Hooglander (@Frankwin)](https://github.com/Frankwin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Frantz (@rofrantz)](https://github.com/rofrantz "17 total commits to the Home Assistant orga: -9 commits to home-assistant +9 commits to core 4 commits to home-assistant.io 3 commits to netdisco 1 commit to home-assistant-js-websocket ") +- [François (@mockersf)](https://github.com/mockersf "1 total commits to the Home Assistant orga: +1 commit to core +") +- [François LASSERRE (@ChoiZ)](https://github.com/ChoiZ "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [frasskungin (@frasskungin)](https://github.com/frasskungin "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Fred Smith (@fredsmith)](https://github.com/fredsmith "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -4131,110 +5050,148 @@ This page contains a list of people who have contributed in one way or another t - [Frederic Hemberger (@fhemberger)](https://github.com/fhemberger "93 total commits to the Home Assistant orga: 93 commits to home-assistant.io ") -- [fredericvl (@fredericvl)](https://github.com/fredericvl "9 total commits to the Home Assistant orga: -6 commits to home-assistant +- [fredericks1982 (@fredericks1982)](https://github.com/fredericks1982 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [FredericMa (@FredericMa)](https://github.com/FredericMa "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") +- [fredericvl (@fredericvl)](https://github.com/fredericvl "12 total commits to the Home Assistant orga: +9 commits to core 3 commits to home-assistant.io ") - [Frederik Bolding (@FrederikBolding)](https://github.com/FrederikBolding "7 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core 2 commits to home-assistant.io ") -- [Frederik Gladhorn (@gladhorn)](https://github.com/gladhorn "2 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer -1 commit to developers.home-assistant +- [Frederik Gladhorn (@gladhorn)](https://github.com/gladhorn "9 total commits to the Home Assistant orga: +6 commits to core +2 commits to developers.home-assistant +1 commit to frontend ") - [fredespi (@fredespi)](https://github.com/fredespi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Fredrik (@fohlsso2)](https://github.com/fohlsso2 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Fredrik (@fohlsso2)](https://github.com/fohlsso2 "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Fredrik Baberg (@fredrikbaberg)](https://github.com/fredrikbaberg "8 total commits to the Home Assistant orga: 5 commits to home-assistant.io 2 commits to developers.home-assistant -1 commit to home-assistant +1 commit to core ") -- [Fredrik Erlandsson (@fredrike)](https://github.com/fredrike "92 total commits to the Home Assistant orga: -70 commits to home-assistant -19 commits to home-assistant.io +- [Fredrik Erlandsson (@fredrike)](https://github.com/fredrike "135 total commits to the Home Assistant orga: +102 commits to core +28 commits to home-assistant.io 2 commits to developers.home-assistant -1 commit to hassio +2 commits to brands +1 commit to supervisor ") - [Fredrik Fjeld (@fredrikfjeld)](https://github.com/fredrikfjeld "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Fredrik Haglund (@PetitCircuitLab)](https://github.com/PetitCircuitLab "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Fredrik Lindqvist (@Landrash)](https://github.com/Landrash "327 total commits to the Home Assistant orga: -199 commits to hassbian-scripts -75 commits to home-assistant.io -48 commits to pi-gen -4 commits to home-assistant -1 commit to home-assistant-polymer +- [Fredrik Rambris (@fredrik-rambris)](https://github.com/fredrik-rambris "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Fredrik Wendt (@FredrikWendt)](https://github.com/FredrikWendt "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant ") - [FredrikFornstad (@FredrikFornstad)](https://github.com/FredrikFornstad "4 total commits to the Home Assistant orga: 4 commits to open-zwave ") - [freol35241 (@freol35241)](https://github.com/freol35241 "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [frittes (@frittes)](https://github.com/frittes "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Fritz Mueller (@fritzm)](https://github.com/fritzm "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [froz (@froz)](https://github.com/froz "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Fréderic Kinnaer (@Censored3)](https://github.com/Censored3 "9 total commits to the Home Assistant orga: 5 commits to hassio-addons 2 commits to home-assistant.io 1 commit to developers.home-assistant -1 commit to home-assistant +1 commit to core +") +- [Frédéric Sagnes (@ndfred)](https://github.com/ndfred "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [fuga2136 (@fuga2136)](https://github.com/fuga2136 "13 total commits to the Home Assistant orga: 13 commits to home-assistant.io ") -- [fwestenberg (@fwestenberg)](https://github.com/fwestenberg "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Fuzzy (@FuzzyMistborn)](https://github.com/FuzzyMistborn "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [fwestenberg (@fwestenberg)](https://github.com/fwestenberg "4 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io +") +- [fxxer (@fxxer)](https://github.com/fxxer "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [G Johansson (@gjohansson-ST)](https://github.com/gjohansson-ST "1 total commits to the Home Assistant orga: +1 commit to brands +") - [G\. Hussain Chinoy (@ghchinoy)](https://github.com/ghchinoy "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [Gabe (@gives1976)](https://github.com/gives1976 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Gabor SZOLLOSI (@szogi)](https://github.com/szogi "4 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to appdaemon +- [Gabor SZOLLOSI (@szogi)](https://github.com/szogi "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") +- [Gabriel Barceló Soteras (@gabrielgbs97)](https://github.com/gabrielgbs97 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Gabriel Oliveira (@gabrielboliveira)](https://github.com/gabrielboliveira "4 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer -1 commit to hassos 1 commit to hassio-addons +1 commit to operating-system +1 commit to frontend 1 commit to home-assistant.io ") +- [gadgetmobile (@gadgetmobile)](https://github.com/gadgetmobile "17 total commits to the Home Assistant orga: +10 commits to core +6 commits to home-assistant.io +1 commit to brands +") - [GadgetReactor (@GadgetReactor)](https://github.com/GadgetReactor "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Gaetan Semet (@gsemet)](https://github.com/gsemet "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Gage Benne (@gagebenne)](https://github.com/gagebenne "3 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core +1 commit to home-assistant.io +") - [galsom (@galsom)](https://github.com/galsom "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") - [Galtwise (@Galtwise)](https://github.com/Galtwise "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Ganesh Hegde (@xgt001)](https://github.com/xgt001 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Garen Torikian (@gjtorikian)](https://github.com/gjtorikian "1 total commits to the Home Assistant orga: 1 commit to gu-who ") +- [Gareth Cooper (@gaco79)](https://github.com/gaco79 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Garret Heaton (@powdahound)](https://github.com/powdahound "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -4244,9 +5201,9 @@ This page contains a list of people who have contributed in one way or another t - [Gary Barclay (@Bodge-IT)](https://github.com/Bodge-IT "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [GaryOkie (@GaryOkie)](https://github.com/GaryOkie "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io +- [GaryOkie (@GaryOkie)](https://github.com/GaryOkie "5 total commits to the Home Assistant orga: +3 commits to home-assistant.io +2 commits to core ") - [Gaston Dombiak (@gdombiak)](https://github.com/gdombiak "4 total commits to the Home Assistant orga: 4 commits to open-zwave @@ -4259,7 +5216,7 @@ This page contains a list of people who have contributed in one way or another t ") - [Gavin Mogan (@halkeye)](https://github.com/halkeye "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [gazoscalvertos (@gazoscalvertos)](https://github.com/gazoscalvertos "1 total commits to the Home Assistant orga: 1 commit to open-zwave @@ -4267,29 +5224,39 @@ This page contains a list of people who have contributed in one way or another t - [Gedde (@raygoat)](https://github.com/raygoat "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") +- [geduxas (@geduxas)](https://github.com/geduxas "1 total commits to the Home Assistant orga: +1 commit to open-zwave +") - [geekman2 (@geekman2)](https://github.com/geekman2 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [geekofweek (@geekofweek)](https://github.com/geekofweek "5 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core ") -- [Geert (@ge2rt)](https://github.com/ge2rt "1 total commits to the Home Assistant orga: +- [Geert (@ge2rt)](https://github.com/ge2rt "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io 1 commit to alerts.home-assistant.io ") - [Geert van Horrik (@GeertvanHorrik)](https://github.com/GeertvanHorrik "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [geirra (@geirra)](https://github.com/geirra "2 total commits to the Home Assistant orga: 1 commit to open-zwave 1 commit to home-assistant.io ") +- [Geoff Davis (@geoffdavis)](https://github.com/geoffdavis "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Geoff Norton (@kangaroo)](https://github.com/kangaroo "14 total commits to the Home Assistant orga: -14 commits to home-assistant +14 commits to core +") +- [Geoff Pursell (@geoffp)](https://github.com/geoffp "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [GeoffAtHome (@GeoffAtHome)](https://github.com/GeoffAtHome "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [Geoffrey Westhoff (@GeoffreyWesthoff)](https://github.com/GeoffreyWesthoff "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -4297,19 +5264,23 @@ This page contains a list of people who have contributed in one way or another t - [George Marshall (@georgemarshall)](https://github.com/georgemarshall "4 total commits to the Home Assistant orga: 2 commits to open-zwave 1 commit to hassio-addons -1 commit to home-assistant +1 commit to core ") - [George Vedamanickam (@intractve)](https://github.com/intractve "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [George\.M (@nodinosaur)](https://github.com/nodinosaur "8 total commits to the Home Assistant orga: 6 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") -- [Georgi Kirichkov (@kirichkov)](https://github.com/kirichkov "24 total commits to the Home Assistant orga: -14 commits to home-assistant.io -7 commits to home-assistant -1 commit to appdaemon +- [Georgi Gardev (@GeorgeSG)](https://github.com/GeorgeSG "3 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +1 commit to core +") +- [Georgi Kirichkov (@kirichkov)](https://github.com/kirichkov "25 total commits to the Home Assistant orga: +16 commits to home-assistant.io +7 commits to core 1 commit to developers.home-assistant 1 commit to open-zwave ") @@ -4318,7 +5289,7 @@ This page contains a list of people who have contributed in one way or another t ") - [Georgi Yanev (@jumpalottahigh)](https://github.com/jumpalottahigh "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io -2 commits to home-assistant-polymer +2 commits to frontend ") - [Georgii Staroselskii (@staroselskii)](https://github.com/staroselskii "1 total commits to the Home Assistant orga: 1 commit to pi-gen @@ -4326,20 +5297,29 @@ This page contains a list of people who have contributed in one way or another t - [georgroehl (@georgroehl)](https://github.com/georgroehl "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Gerard (@gerard33)](https://github.com/gerard33 "38 total commits to the Home Assistant orga: -23 commits to home-assistant.io -13 commits to home-assistant +- [Gerald Hansen (@geraldhansen)](https://github.com/geraldhansen "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Gerard (@gerard33)](https://github.com/gerard33 "50 total commits to the Home Assistant orga: +26 commits to home-assistant.io +19 commits to core 2 commits to hassio-addons +2 commits to developers.home-assistant +1 commit to wheels-custom-integrations ") - [Gerardo Castillo (@altersis)](https://github.com/altersis "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Gerben Meijer (@infernix)](https://github.com/infernix "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +1 commit to home-assistant.io +") +- [Gerben ten Hove (@gurbyz)](https://github.com/gurbyz "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") - [Gergely Imreh (@imrehg)](https://github.com/imrehg "16 total commits to the Home Assistant orga: -11 commits to home-assistant +11 commits to core 5 commits to home-assistant.io ") - [Gergely Peidl (@geripgeri)](https://github.com/geripgeri "1 total commits to the Home Assistant orga: @@ -4348,65 +5328,84 @@ This page contains a list of people who have contributed in one way or another t - [gerliczky (@gerliczky)](https://github.com/gerliczky "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Gert (@Gerto)](https://github.com/Gerto "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Geronimo2015 (@Geronimo2015)](https://github.com/Geronimo2015 "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") +- [Gert (@Gerto)](https://github.com/Gerto "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to core +") - [Gert Jansen van Rensburg (@gertjvr)](https://github.com/gertjvr "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Gert\-Jan van de Streek (@keerts)](https://github.com/keerts "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [gertdb (@gertdb)](https://github.com/gertdb "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [giangvo (@giangvo)](https://github.com/giangvo "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [Gianluca Barbaro (@MrMep)](https://github.com/MrMep "24 total commits to the Home Assistant orga: -16 commits to home-assistant +16 commits to core 8 commits to home-assistant.io ") - [Giannie (@Giannie)](https://github.com/Giannie "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +1 commit to home-assistant.io +") +- [Giannuz (@Giannuz)](https://github.com/Giannuz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Gianpaolo Macario (@gmacario)](https://github.com/gmacario "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [gibman (@gibman)](https://github.com/gibman "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Gianpiero (@jumping2000)](https://github.com/jumping2000 "1 total commits to the Home Assistant orga: +1 commit to hassio-addons ") -- [Gido (@GidoHakvoort)](https://github.com/GidoHakvoort "9 total commits to the Home Assistant orga: +- [gibman (@gibman)](https://github.com/gibman "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Gido (@GidoHakvoort)](https://github.com/GidoHakvoort "10 total commits to the Home Assistant orga: 5 commits to home-assistant.io -4 commits to home-assistant +5 commits to core ") - [giefca (@giefca)](https://github.com/giefca "4 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core ") -- [Giel Janssens (@gieljnssns)](https://github.com/gieljnssns "7 total commits to the Home Assistant orga: -5 commits to home-assistant -2 commits to home-assistant.io +- [Giel Janssens (@gieljnssns)](https://github.com/gieljnssns "9 total commits to the Home Assistant orga: +6 commits to core +3 commits to home-assistant.io ") - [Gijs Reichert (@GGeezes)](https://github.com/GGeezes "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") -- [Gil Peeters (@grillp)](https://github.com/grillp "17 total commits to the Home Assistant orga: +- [Gil Peeters (@grillp)](https://github.com/grillp "18 total commits to the Home Assistant orga: 9 commits to home-assistant.io -8 commits to home-assistant +9 commits to core ") - [Gilad Peleg (@pgilad)](https://github.com/pgilad "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Gilles Margerie (@Gilles95)](https://github.com/Gilles95 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Gilson Marquato Júnior (@gilsonmandalogo)](https://github.com/gilsonmandalogo "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Giorgio Aresu (@GiorgioAresu)](https://github.com/GiorgioAresu "1 total commits to the Home Assistant orga: +1 commit to brands ") - [Giorgos Logiotatidis (@glogiotatidis)](https://github.com/glogiotatidis "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core +") +- [Giovanni Campagna (@gcampax)](https://github.com/gcampax "2 total commits to the Home Assistant orga: +2 commits to hassio-addons ") - [GitBook Bot (@gitbook-bot)](https://github.com/gitbook-bot "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant @@ -4416,34 +5415,48 @@ This page contains a list of people who have contributed in one way or another t ") - [gitmopp (@gitmopp)](https://github.com/gitmopp "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io -1 commit to home-assistant +1 commit to core +") +- [gitolicious (@gitolicious)](https://github.com/gitolicious "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") +- [gitwazza (@gitwazza)](https://github.com/gitwazza "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Giuseppe (@glpatcern)](https://github.com/glpatcern "8 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 2 commits to home-assistant.io ") - [gizmocuz (@gizmocuz)](https://github.com/gizmocuz "21 total commits to the Home Assistant orga: 21 commits to open-zwave ") -- [gjbadros (@gjbadros)](https://github.com/gjbadros "3 total commits to the Home Assistant orga: -2 commits to home-assistant.io -1 commit to home-assistant +- [gjbadros (@gjbadros)](https://github.com/gjbadros "8 total commits to the Home Assistant orga: +4 commits to home-assistant.io +4 commits to core +") +- [Gleb Sinyavskiy (@zhulik)](https://github.com/zhulik "4 total commits to the Home Assistant orga: +3 commits to core +1 commit to home-assistant.io +") +- [Glen Buktenica (@gbuktenica)](https://github.com/gbuktenica "2 total commits to the Home Assistant orga: +2 commits to open-zwave ") - [Glen Takahashi (@glentakahashi)](https://github.com/glentakahashi "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [Glenn Morrison (@atomicpapa)](https://github.com/atomicpapa "10 total commits to the Home Assistant orga: 10 commits to home-assistant.io ") -- [Glenn Waters (@gwww)](https://github.com/gwww "19 total commits to the Home Assistant orga: -11 commits to home-assistant -6 commits to home-assistant.io -1 commit to home-assistant-polymer +- [Glenn Waters (@gwww)](https://github.com/gwww "30 total commits to the Home Assistant orga: +17 commits to core +10 commits to home-assistant.io +1 commit to frontend 1 commit to developers.home-assistant +1 commit to brands ") - [glenn20 (@glenn20)](https://github.com/glenn20 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Gluek (@mrgluek)](https://github.com/mrgluek "1 total commits to the Home Assistant orga: @@ -4452,6 +5465,9 @@ This page contains a list of people who have contributed in one way or another t - [Glyn Hudson (@glynhudson)](https://github.com/glynhudson "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [glynaunac (@glynaunac)](https://github.com/glynaunac "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Glyph (@glyph)](https://github.com/glyph "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") @@ -4459,80 +5475,95 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io ") - [gngj (@gngj)](https://github.com/gngj "7 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core 2 commits to home-assistant.io ") - [Goir (@goir)](https://github.com/goir "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [goldminenine (@goldminenine)](https://github.com/goldminenine "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [GoNzCiD (@GoNzCiD)](https://github.com/GoNzCiD "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") -- [Gopal Kildoliya (@gopalkildoliya)](https://github.com/gopalkildoliya "6 total commits to the Home Assistant orga: -4 commits to home-assistant +- [Gopal (@gopalkildoliya)](https://github.com/gopalkildoliya "6 total commits to the Home Assistant orga: +4 commits to core 2 commits to home-assistant.io ") -- [GoSpursGoNL (@GoSpursGoNL)](https://github.com/GoSpursGoNL "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [GoSpursGoNL (@GoSpursGoNL)](https://github.com/GoSpursGoNL "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io ") - [goto100 (@goto100)](https://github.com/goto100 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") +- [gozasc (@gozasc)](https://github.com/gozasc "5 total commits to the Home Assistant orga: +4 commits to home-assistant.io +1 commit to companion.home-assistant +") - [GP8x (@GP8x)](https://github.com/GP8x "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") +- [gpgmailencrypt (@gpgmailencrypt)](https://github.com/gpgmailencrypt "1 total commits to the Home Assistant orga: +1 commit to open-zwave +") +- [gppanayotov (@gppanayotov)](https://github.com/gppanayotov "1 total commits to the Home Assistant orga: +1 commit to core +") - [Graeme Smith (@Instagraeme)](https://github.com/Instagraeme "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Graham Christensen (@grahamc)](https://github.com/grahamc "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Grant McConnaughey (@grantmcconnaughey)](https://github.com/grantmcconnaughey "8 total commits to the Home Assistant orga: -8 commits to warrant +- [Graham Wetzler (@grahamwetzler)](https://github.com/grahamwetzler "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Grant Russell (@ukgrant)](https://github.com/ukgrant "3 total commits to the Home Assistant orga: -3 commits to home-assistant-iOS +3 commits to iOS ") - [Green Lightning (@GreenLightning)](https://github.com/GreenLightning "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [GreenTurtwig (@GreenTurtwig)](https://github.com/GreenTurtwig "83 total commits to the Home Assistant orga: 75 commits to home-assistant.io -8 commits to home-assistant +8 commits to core ") -- [Greg (@gtdiehl)](https://github.com/gtdiehl "3 total commits to the Home Assistant orga: -2 commits to home-assistant.io -1 commit to home-assistant +- [Greg (@gtdiehl)](https://github.com/gtdiehl "10 total commits to the Home Assistant orga: +6 commits to core +3 commits to home-assistant.io +1 commit to brands ") - [Greg (@theCMack)](https://github.com/theCMack "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Greg Dowling (@pavoni)](https://github.com/pavoni "213 total commits to the Home Assistant orga: -186 commits to home-assistant +- [Greg Dowling (@pavoni)](https://github.com/pavoni "217 total commits to the Home Assistant orga: +189 commits to core 25 commits to home-assistant.io 1 commit to netdisco 1 commit to people +1 commit to companion.home-assistant ") - [Greg Johnson (@notgwj)](https://github.com/notgwj "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Greg Laabs (@OverloadUT)](https://github.com/OverloadUT "33 total commits to the Home Assistant orga: -27 commits to home-assistant +27 commits to core 5 commits to home-assistant.io 1 commit to people ") - [Greg MacLellan (@gregmac)](https://github.com/gregmac "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") +- [Greg Martin (@gregorymartin)](https://github.com/gregorymartin "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Greg Rapp (@gdrapp)](https://github.com/gdrapp "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Greg Schwartz (@gregschwartz)](https://github.com/gregschwartz "1 total commits to the Home Assistant orga: @@ -4541,24 +5572,31 @@ This page contains a list of people who have contributed in one way or another t - [Greg Stevenson (@gstevenson)](https://github.com/gstevenson "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") +- [Greg Thornton (@xdissent)](https://github.com/xdissent "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Greg Troxel (@gdt)](https://github.com/gdt "1 total commits to the Home Assistant orga: +1 commit to python-openzwave +") - [Greg\. A (@gautric)](https://github.com/gautric "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [gregod (@gregod)](https://github.com/gregod "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [Gregor Gruener (@ggruner)](https://github.com/ggruner "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Gregory Benner (@Klathmon)](https://github.com/Klathmon "6 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io 1 commit to open-zwave ") - [Gregory Dosh (@GregoryDosh)](https://github.com/GregoryDosh "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Gregory Knox (@Knoxie)](https://github.com/Knoxie "1 total commits to the Home Assistant orga: @@ -4571,21 +5609,23 @@ This page contains a list of people who have contributed in one way or another t 5 commits to home-assistant.io ") - [Grodesh (@Grodesh)](https://github.com/Grodesh "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [groth\-its (@groth-its)](https://github.com/groth-its "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core +") +- [Grzegorz Matyszczak (@gmatyszczak)](https://github.com/gmatyszczak "1 total commits to the Home Assistant orga: +1 commit to android ") - [Grégoire M\. (@M-Gregoire)](https://github.com/M-Gregoire "1 total commits to the Home Assistant orga: -1 commit to hassio-installer +1 commit to supervised-installer ") - [gstorer (@gstorer)](https://github.com/gstorer "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") -- [GTH (@gunnarhelgason)](https://github.com/gunnarhelgason "6 total commits to the Home Assistant orga: -2 commits to appdaemon -2 commits to home-assistant +- [GTH (@gunnarhelgason)](https://github.com/gunnarhelgason "4 total commits to the Home Assistant orga: +2 commits to core 2 commits to home-assistant.io ") - [gth (@gth)](https://github.com/gth "1 total commits to the Home Assistant orga: @@ -4594,111 +5634,149 @@ This page contains a list of people who have contributed in one way or another t - [gudata (@gudata)](https://github.com/gudata "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") +- [Guido Schmitz (@Shutgun)](https://github.com/Shutgun "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to brands +") - [Guilherme Conti Teixeira (@guiconti)](https://github.com/guiconti "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Guillaume DELVIT (@guiguid)](https://github.com/guiguid "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Guillaume Rischard (@grischard)](https://github.com/grischard "3 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer -1 commit to home-assistant +1 commit to frontend +1 commit to core 1 commit to home-assistant.io ") - [Guillaume SABBE (@gsabbe)](https://github.com/gsabbe "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Guillaume Zin (@guillaumezin)](https://github.com/guillaumezin "6 total commits to the Home Assistant orga: 6 commits to open-zwave ") - [guillaume1410 (@guillaume1410)](https://github.com/guillaume1410 "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") -- [guillempages (@guillempages)](https://github.com/guillempages "3 total commits to the Home Assistant orga: -3 commits to home-assistant +- [guillempages (@guillempages)](https://github.com/guillempages "24 total commits to the Home Assistant orga: +13 commits to core +9 commits to home-assistant.io +1 commit to frontend +1 commit to brands +") +- [Guillermo Ruffino (@glmnet)](https://github.com/glmnet "1 total commits to the Home Assistant orga: +1 commit to core +") +- [GuitarSkater (@GuitarSkater)](https://github.com/GuitarSkater "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Gummientchen (@Gummientchen)](https://github.com/Gummientchen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Gustav Ahlberg (@Gyran)](https://github.com/Gyran "20 total commits to the Home Assistant orga: -20 commits to home-assistant +20 commits to core ") -- [Guy Khmelnitsky (@GuyKh)](https://github.com/GuyKh "9 total commits to the Home Assistant orga: -7 commits to home-assistant.io -2 commits to home-assistant +- [Guy Khmelnitsky (@GuyKh)](https://github.com/GuyKh "10 total commits to the Home Assistant orga: +8 commits to home-assistant.io +2 commits to core ") - [Guy Parisi (@Guyanthalas)](https://github.com/Guyanthalas "7 total commits to the Home Assistant orga: 7 commits to home-assistant.io ") +- [Guy Sie (@GuySie)](https://github.com/GuySie "1 total commits to the Home Assistant orga: +1 commit to brands +") - [guygma (@guygma)](https://github.com/guygma "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Guyohms (@Guyohms)](https://github.com/Guyohms "1 total commits to the Home Assistant orga: +1 commit to companion.home-assistant +") - [gwendalg (@gwendalg)](https://github.com/gwendalg "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") -- [gwhiteCL (@gwhiteCL)](https://github.com/gwhiteCL "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io +- [gwhiteCL (@gwhiteCL)](https://github.com/gwhiteCL "5 total commits to the Home Assistant orga: +4 commits to home-assistant.io +1 commit to core ") - [gwmullin (@gwmullin)](https://github.com/gwmullin "24 total commits to the Home Assistant orga: 24 commits to open-zwave ") +- [Gábor Frank (@frankyhun)](https://github.com/frankyhun "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [h3ndrik (@h3ndrik)](https://github.com/h3ndrik "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [h4ckNinja (@h4ckninja)](https://github.com/h4ckninja "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [haakon storm heen (@haakonstorm)](https://github.com/haakonstorm "2 total commits to the Home Assistant orga: -1 commit to home-assistant-cli +- [ha14937 (@ha14937)](https://github.com/ha14937 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [haakon storm heen (@haakonstorm)](https://github.com/haakonstorm "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Hackashaq666 (@Hackashaq666)](https://github.com/Hackashaq666 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Hadi Victorya (@hadipsy27)](https://github.com/hadipsy27 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Haim Gelfenbeyn (@haimgel)](https://github.com/haimgel "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Haemish Kyd (@haemishkyd)](https://github.com/haemishkyd "6 total commits to the Home Assistant orga: +4 commits to core +1 commit to brands 1 commit to home-assistant.io ") +- [hagenuck1 (@hagenuck1)](https://github.com/hagenuck1 "1 total commits to the Home Assistant orga: +1 commit to companion.home-assistant +") +- [Haim Gelfenbeyn (@haimgel)](https://github.com/haimgel "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [hakana (@hakana)](https://github.com/hakana "1 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +") +- [Halász Dávid (@skateman)](https://github.com/skateman "1 total commits to the Home Assistant orga: +1 commit to ada +") - [Hamid Elaosta (@hamid-elaosta)](https://github.com/hamid-elaosta "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Hans Bakker (@hansmbakker)](https://github.com/hansmbakker "5 total commits to the Home Assistant orga: -5 commits to home-assistant -") - [Hans Knöchel (@hansemannn)](https://github.com/hansemannn "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") -- [Hans Oischinger (@oischinger)](https://github.com/oischinger "5 total commits to the Home Assistant orga: -4 commits to home-assistant -1 commit to home-assistant.io +- [Hans Kröner (@hanskroner)](https://github.com/hanskroner "1 total commits to the Home Assistant orga: +1 commit to open-zwave +") +- [Hans Oischinger (@oischinger)](https://github.com/oischinger "10 total commits to the Home Assistant orga: +8 commits to core +2 commits to home-assistant.io ") - [Hans Svedåker (@svedaker)](https://github.com/svedaker "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [hanzoh (@hanzoh)](https://github.com/hanzoh "6 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core 1 commit to home-assistant.io ") - [hanzukun (@hanzukun)](https://github.com/hanzukun "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [happyleavesaoc (@happyleavesaoc)](https://github.com/happyleavesaoc "115 total commits to the Home Assistant orga: -90 commits to home-assistant +90 commits to core 23 commits to home-assistant.io 1 commit to people -1 commit to home-assistant-polymer +1 commit to frontend ") - [Harald Klein (@haklein)](https://github.com/haklein "98 total commits to the Home Assistant orga: 98 commits to open-zwave ") -- [Harald Nagel (@haraldnagel)](https://github.com/haraldnagel "8 total commits to the Home Assistant orga: -6 commits to home-assistant -2 commits to home-assistant.io -") - [Harm\-Jan Roskam (@harmjanr)](https://github.com/harmjanr "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -4706,39 +5784,42 @@ This page contains a list of people who have contributed in one way or another t 3 commits to Iconic ") - [Harris Borawski (@hborawski)](https://github.com/hborawski "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Harrison Pace (@thehaxxa)](https://github.com/thehaxxa "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Harry Kantas (@harrykantas)](https://github.com/harrykantas "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Harryjholmes (@Harryjholmes)](https://github.com/Harryjholmes "1 total commits to the Home Assistant orga: +1 commit to core ") - [Harvtronix (@Harvtronix)](https://github.com/Harvtronix "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [hasscasts (@hasscasts)](https://github.com/hasscasts "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Hate\-Usernames (@Hate-Usernames)](https://github.com/Hate-Usernames "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [hawk259 (@hawk259)](https://github.com/hawk259 "14 total commits to the Home Assistant orga: -7 commits to home-assistant +7 commits to core 5 commits to home-assistant.io -1 commit to home-assistant-polymer 1 commit to open-zwave +1 commit to frontend ") - [haXs (@haXs)](https://github.com/haXs "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Hayley McIldoon (@shmooey)](https://github.com/shmooey "4 total commits to the Home Assistant orga: -2 commits to home-assistant-polymer -2 commits to home-assistant +2 commits to frontend +2 commits to core ") - [HBDK (@HBDK)](https://github.com/HBDK "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [hblaschka (@hblaschka)](https://github.com/hblaschka "1 total commits to the Home Assistant orga: @@ -4747,42 +5828,46 @@ This page contains a list of people who have contributed in one way or another t - [hcooper (@hcooper)](https://github.com/hcooper "9 total commits to the Home Assistant orga: 6 commits to home-assistant.io 2 commits to open-zwave -1 commit to home-assistant +1 commit to core ") - [Heath Paddock (@heathbar)](https://github.com/heathbar "6 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core ") -- [Hedda (@Hedda)](https://github.com/Hedda "4 total commits to the Home Assistant orga: -3 commits to home-assistant.io -1 commit to home-assistant +- [Hedda (@Hedda)](https://github.com/Hedda "11 total commits to the Home Assistant orga: +9 commits to home-assistant.io +2 commits to core ") -- [Heiko Rothe (@mKeRix)](https://github.com/mKeRix "21 total commits to the Home Assistant orga: -15 commits to home-assistant -6 commits to home-assistant.io +- [Hedgehog57 (@Hedgehog57)](https://github.com/Hedgehog57 "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Heiko Rothe (@mKeRix)](https://github.com/mKeRix "24 total commits to the Home Assistant orga: +17 commits to core +7 commits to home-assistant.io ") - [Heiko Thiery (@hthiery)](https://github.com/hthiery "11 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 5 commits to home-assistant.io ") -- [Heine Furubotten (@hfurubotten)](https://github.com/hfurubotten "14 total commits to the Home Assistant orga: -7 commits to home-assistant -6 commits to home-assistant.io +- [Heine Furubotten (@hfurubotten)](https://github.com/hfurubotten "22 total commits to the Home Assistant orga: +10 commits to core +7 commits to home-assistant.io +4 commits to brands 1 commit to developers.home-assistant ") - [Heinrich Dahms (@htdahms)](https://github.com/htdahms "1 total commits to the Home Assistant orga: -1 commit to home-assistant-iOS +1 commit to iOS ") -- [Hellowlol (@Hellowlol)](https://github.com/Hellowlol "6 total commits to the Home Assistant orga: +- [Hellowlol (@Hellowlol)](https://github.com/Hellowlol "5 total commits to the Home Assistant orga: 3 commits to netdisco -1 commit to appdaemon -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Helmut Januschka (@hjanuschka)](https://github.com/hjanuschka "3 total commits to the Home Assistant orga: 3 commits to issue-bot ") - [Henning Dickten (@hensing)](https://github.com/hensing "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Henrik Aronsson (@heennkkee)](https://github.com/heennkkee "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -4791,49 +5876,58 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Henrik Nicolaisen (@hmn)](https://github.com/hmn "10 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 2 commits to home-assistant.io ") - [Henry Ou (@henryouly)](https://github.com/henryouly "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [henryk (@henryk)](https://github.com/henryk "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Heriberto Madrigal (@magic-madrigal)](https://github.com/magic-madrigal "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Hermann Kraus (@herm)](https://github.com/herm "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Hernán (@hmronline)](https://github.com/hmronline "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core +") +- [Hessel Bierma (@hesje)](https://github.com/hesje "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [heyajohnny (@heyajohnny)](https://github.com/heyajohnny "1 total commits to the Home Assistant orga: +1 commit to brands ") - [heydonms (@heydonms)](https://github.com/heydonms "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [heymoe (@heymoe)](https://github.com/heymoe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [heytcass (@heytcass)](https://github.com/heytcass "11 total commits to the Home Assistant orga: -9 commits to home-assistant.io +- [heytcass (@heytcass)](https://github.com/heytcass "13 total commits to the Home Assistant orga: +11 commits to home-assistant.io 1 commit to developers.home-assistant -1 commit to home-assistant +1 commit to core ") -- [HFeenstra (@HFeenstra)](https://github.com/HFeenstra "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [HFeenstra (@HFeenstra)](https://github.com/HFeenstra "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Hillary Fraley (@hillaryfraley)](https://github.com/hillaryfraley "12 total commits to the Home Assistant orga: 12 commits to home-assistant.io ") +- [hioctane61 (@hioctane61)](https://github.com/hioctane61 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [hitokiri8x (@hitokiri8x)](https://github.com/hitokiri8x "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Hmmbob (@hmmbob)](https://github.com/hmmbob "35 total commits to the Home Assistant orga: -27 commits to home-assistant.io -7 commits to home-assistant -1 commit to home-assistant-polymer +- [Hmmbob (@hmmbob)](https://github.com/hmmbob "44 total commits to the Home Assistant orga: +35 commits to home-assistant.io +8 commits to core +1 commit to frontend ") - [hokagegano (@hokagegano)](https://github.com/hokagegano "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -4844,30 +5938,44 @@ This page contains a list of people who have contributed in one way or another t - [holelattanuttin (@holelattanuttin)](https://github.com/holelattanuttin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Home Assistant Bot (@homeassistant)](https://github.com/homeassistant "65 total commits to the Home Assistant orga: -63 commits to home-assistant -1 commit to developers.home-assistant +- [Home Assistant Bot (@homeassistant)](https://github.com/homeassistant "489 total commits to the Home Assistant orga: +285 commits to core +197 commits to frontend +5 commits to android 1 commit to companion.home-assistant +1 commit to developers.home-assistant ") - [honcheng (@honcheng)](https://github.com/honcheng "3 total commits to the Home Assistant orga: 2 commits to homebridge-homeassistant 1 commit to home-assistant.io ") -- [Honza Slesinger (@slesinger)](https://github.com/slesinger "1 total commits to the Home Assistant orga: +- [Honza Slesinger (@slesinger)](https://github.com/slesinger "3 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands 1 commit to home-assistant.io ") - [Hoobie7 (@Hoobie7)](https://github.com/Hoobie7 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [hoopsta1423 (@hoopsta1423)](https://github.com/hoopsta1423 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [HoppingMonk (@HoppingMonk)](https://github.com/HoppingMonk "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") - [horga83 (@horga83)](https://github.com/horga83 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +1 commit to home-assistant.io +") +- [hotswapster (@hotswapster)](https://github.com/hotswapster "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Hovo \(Luke\) (@lhovo)](https://github.com/lhovo "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +1 commit to home-assistant.io +") +- [Hoytron (@Hoytron)](https://github.com/Hoytron "2 total commits to the Home Assistant orga: +1 commit to frontend 1 commit to home-assistant.io ") - [hSATAC (@hSATAC)](https://github.com/hSATAC "1 total commits to the Home Assistant orga: @@ -4880,71 +5988,71 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [huangyupeng (@huangyupeng)](https://github.com/huangyupeng "15 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 7 commits to home-assistant.io ") - [hubertbanas (@hubertbanas)](https://github.com/hubertbanas "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") - [Hugh Eaves (@hugheaves)](https://github.com/hugheaves "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Hugo Dupras (@jabesq)](https://github.com/jabesq "29 total commits to the Home Assistant orga: -21 commits to home-assistant +21 commits to core 8 commits to home-assistant.io ") - [Hugo Gresse (@HugoGresse)](https://github.com/HugoGresse "8 total commits to the Home Assistant orga: 8 commits to home-assistant.io ") - [Hugo Herter (@hoh)](https://github.com/hoh "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Hugo Hromic (@hhromic)](https://github.com/hhromic "9 total commits to the Home Assistant orga: 9 commits to pi-gen ") -- [hulkhaugen (@hulkhaugen)](https://github.com/hulkhaugen "2 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer -1 commit to home-assistant.io +- [Hugues Granger (@Wohlraj)](https://github.com/Wohlraj "2 total commits to the Home Assistant orga: +2 commits to core ") -- [Humberto Rodríguez A\. (@rhumbertgz)](https://github.com/rhumbertgz "203 total commits to the Home Assistant orga: -203 commits to appdaemon +- [hulkhaugen (@hulkhaugen)](https://github.com/hulkhaugen "2 total commits to the Home Assistant orga: +1 commit to frontend +1 commit to home-assistant.io ") - [Hung Le (@hungle)](https://github.com/hungle "1 total commits to the Home Assistant orga: 1 commit to libcoap ") - [Hunter Horsman (@kariudo)](https://github.com/kariudo "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Huon Wilson (@huonw)](https://github.com/huonw "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [husky\-koglhof (@husky-koglhof)](https://github.com/husky-koglhof "4 total commits to the Home Assistant orga: 4 commits to open-zwave ") -- [Huw Davies (@beardedgeek)](https://github.com/beardedgeek "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Huw Davies (@beardedgeek)](https://github.com/beardedgeek "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [HWL1968 (@HWL1968)](https://github.com/HWL1968 "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [hwmland (@hwmland)](https://github.com/hwmland "1 total commits to the Home Assistant orga: -1 commit to appdaemon -") - [hybridparadigm (@hybridparadigm)](https://github.com/hybridparadigm "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Hydreliox (@HydrelioxGitHub)](https://github.com/HydrelioxGitHub "46 total commits to the Home Assistant orga: -34 commits to home-assistant +34 commits to core 12 commits to home-assistant.io ") - [Håvard Elnan (@havardelnan)](https://github.com/havardelnan "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [I Shults (@ishults)](https://github.com/ishults "12 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 5 commits to home-assistant.io -1 commit to home-assistant-polymer +1 commit to frontend ") - [i\-am\-shodan (@i-am-shodan)](https://github.com/i-am-shodan "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Iain Matchett (@matchett808)](https://github.com/matchett808 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -4955,15 +6063,19 @@ This page contains a list of people who have contributed in one way or another t - [iainsmacleod (@iainsmacleod)](https://github.com/iainsmacleod "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Ian (@ViViDboarder)](https://github.com/ViViDboarder "4 total commits to the Home Assistant orga: -3 commits to home-assistant +- [Ian (@ViViDboarder)](https://github.com/ViViDboarder "5 total commits to the Home Assistant orga: +4 commits to core 1 commit to home-assistant.io ") - [Ian (@Apocrathia)](https://github.com/Apocrathia "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Ian (@ianperrin)](https://github.com/ianperrin "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Ian Copp (@icopp)](https://github.com/icopp "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [Ian Darwin (@IanDarwin)](https://github.com/IanDarwin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -4971,29 +6083,43 @@ This page contains a list of people who have contributed in one way or another t - [Ian Day (@iandday)](https://github.com/iandday "16 total commits to the Home Assistant orga: 16 commits to pyharmony ") -- [Ian Richardson (@iantrich)](https://github.com/iantrich "313 total commits to the Home Assistant orga: -234 commits to home-assistant-polymer -67 commits to home-assistant.io -7 commits to home-assistant +- [Ian Duffy (@imduffy15)](https://github.com/imduffy15 "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Ian Harcombe (@MrHarcombe)](https://github.com/MrHarcombe "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Ian Richardson (@iantrich)](https://github.com/iantrich "384 total commits to the Home Assistant orga: +282 commits to frontend +89 commits to home-assistant.io +7 commits to core 2 commits to ui-schema 2 commits to developers.home-assistant 1 commit to people +1 commit to brands ") - [Ian Slinger (@ianjs)](https://github.com/ianjs "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [iangregory (@iangregory)](https://github.com/iangregory "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") - [ianj001 (@ianj001)](https://github.com/ianj001 "7 total commits to the Home Assistant orga: 7 commits to home-assistant.io ") - [ic3cool (@ic3cool)](https://github.com/ic3cool "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") +- [IceEyz (@IceEyz)](https://github.com/IceEyz "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") - [IceOnly (@IceOnly)](https://github.com/IceOnly "1 total commits to the Home Assistant orga: 1 commit to hassio-addons ") - [icovada (@icovada)](https://github.com/icovada "6 total commits to the Home Assistant orga: -3 commits to home-assistant 3 commits to home-assistant.io +3 commits to core ") - [idfxken (@idfxken)](https://github.com/idfxken "5 total commits to the Home Assistant orga: 4 commits to open-zwave @@ -5002,20 +6128,26 @@ This page contains a list of people who have contributed in one way or another t - [iDVB (@iDVB)](https://github.com/iDVB "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Igor (@IATkachenko)](https://github.com/IATkachenko "1 total commits to the Home Assistant orga: +1 commit to core +") - [Igor Bernstein (@igorbernstein2)](https://github.com/igorbernstein2 "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") +- [Igor Gocalinski (@grogi)](https://github.com/grogi "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Igor Magès (@igormages)](https://github.com/igormages "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Igor Motov (@imotov)](https://github.com/imotov "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [IIIdefconIII (@IIIdefconIII)](https://github.com/IIIdefconIII "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") -- [ikifar2012 (@ikifar2012)](https://github.com/ikifar2012 "4 total commits to the Home Assistant orga: -4 commits to home-assistant.io -") - [ikonixx (@ikonixx)](https://github.com/ikonixx "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -5023,65 +6155,87 @@ This page contains a list of people who have contributed in one way or another t 1 commit to open-zwave ") - [ikucuze (@ikucuze)](https://github.com/ikucuze "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [iliketoprogram14 (@iliketoprogram14)](https://github.com/iliketoprogram14 "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Illia Grybkov (@igrybkov)](https://github.com/igrybkov "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [indykoning (@indykoning)](https://github.com/indykoning "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io +- [Indu Prakash (@InduPrakash)](https://github.com/InduPrakash "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to core +") +- [indykoning (@indykoning)](https://github.com/indykoning "5 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io +1 commit to brands ") - [Ing\. Jaroslav Šafka (@jedi7)](https://github.com/jedi7 "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Ingmar Stein (@IngmarStein)](https://github.com/IngmarStein "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [Ingo Theiss (@itn3rd77)](https://github.com/itn3rd77 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [InovelliUSA (@InovelliUSA)](https://github.com/InovelliUSA "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [inputd (@inputd)](https://github.com/inputd "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [inputd (@inputd)](https://github.com/inputd "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io +1 commit to core ") - [insajd (@insajd)](https://github.com/insajd "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Ioan Loosley (@ioangogo)](https://github.com/ioangogo "21 total commits to the Home Assistant orga: 17 commits to home-assistant.io -4 commits to home-assistant +4 commits to core ") - [ionred (@ionred)](https://github.com/ionred "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ionut Popovici (@intelroman)](https://github.com/intelroman "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [IoTmessenger (@IoTmessenger)](https://github.com/IoTmessenger "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [ipreston (@ipreston)](https://github.com/ipreston "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [Irad Aharoni (@irad100)](https://github.com/irad100 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Irfaq Syed (@irazasyed)](https://github.com/irazasyed "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [irvingwa (@irvingwa)](https://github.com/irvingwa "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Isabella Gross Alström (@isabellaalstrom)](https://github.com/isabellaalstrom "12 total commits to the Home Assistant orga: -9 commits to home-assistant.io -3 commits to home-assistant +- [Isabella Gross Alström (@isabellaalstrom)](https://github.com/isabellaalstrom "15 total commits to the Home Assistant orga: +10 commits to home-assistant.io +3 commits to core +1 commit to wheels-custom-integrations +1 commit to brands ") -- [Issac (@issacg)](https://github.com/issacg "1 total commits to the Home Assistant orga: -1 commit to developers.home-assistant +- [isk0001y (@isk0001y)](https://github.com/isk0001y "4 total commits to the Home Assistant orga: +4 commits to core +") +- [Issac (@issacg)](https://github.com/issacg "13 total commits to the Home Assistant orga: +7 commits to developers.home-assistant +2 commits to hassio-addons +1 commit to supervisor +1 commit to hassio-builder +1 commit to core +1 commit to home-assistant.io ") - [Issac Kelly (@issackelly)](https://github.com/issackelly "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [Itamar Dori (@doriitamar)](https://github.com/doriitamar "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -5089,12 +6243,30 @@ This page contains a list of people who have contributed in one way or another t - [itineric (@itineric)](https://github.com/itineric "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Ivo (@ivotje50)](https://github.com/ivotje50 "1 total commits to the Home Assistant orga: +- [Iulian Onofrei (@revolter)](https://github.com/revolter "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io +1 commit to frontend +") +- [Iulius (@tuxbox)](https://github.com/tuxbox "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") +- [Ivan Belokobylskiy (@devbis)](https://github.com/devbis "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Ivan Bessarabov (@bessarabov)](https://github.com/bessarabov "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io +") +- [Ivan Dyedov (@idyedov)](https://github.com/idyedov "2 total commits to the Home Assistant orga: +1 commit to open-zwave +1 commit to core +") - [Ivo Wever (@Confusion)](https://github.com/Confusion "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ivo\-tje (@Ivo-tje)](https://github.com/Ivo-tje "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [j james (@wakeuplaughing)](https://github.com/wakeuplaughing "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -5102,7 +6274,7 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [J4nsen (@J4nsen)](https://github.com/J4nsen "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [J\-CMartin (@J-CMartin)](https://github.com/J-CMartin "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -5110,46 +6282,56 @@ This page contains a list of people who have contributed in one way or another t - [J\. B\. Rainsberger (@jbrains)](https://github.com/jbrains "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [J\. Nick Koston (@bdraco)](https://github.com/bdraco "601 total commits to the Home Assistant orga: +494 commits to core +71 commits to home-assistant.io +22 commits to brands +8 commits to frontend +3 commits to developers.home-assistant +2 commits to data.home-assistant +1 commit to netdisco +") - [J\.A\.P\. Klessens (@JKlessens)](https://github.com/JKlessens "40 total commits to the Home Assistant orga: 40 commits to open-zwave ") -- [J\.P\. Hutchins (@JPHutchins)](https://github.com/JPHutchins "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [J\.P\. Hutchins (@JPHutchins)](https://github.com/JPHutchins "4 total commits to the Home Assistant orga: +2 commits to core +1 commit to brands 1 commit to home-assistant.io ") - [Jaak Laineste (@jaakla)](https://github.com/jaakla "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") -- [jaburges (@jaburges)](https://github.com/jaburges "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io +- [jaburges (@jaburges)](https://github.com/jaburges "5 total commits to the Home Assistant orga: +4 commits to home-assistant.io +1 commit to core ") - [Jacen (@jacen92)](https://github.com/jacen92 "2 total commits to the Home Assistant orga: 2 commits to pi-gen ") -- [Jack (@jackjohnsonuk)](https://github.com/jackjohnsonuk "6 total commits to the Home Assistant orga: -6 commits to home-assistant.io +- [Jack (@jackjohnsonuk)](https://github.com/jackjohnsonuk "7 total commits to the Home Assistant orga: +7 commits to home-assistant.io ") - [jack (@jackmakesthings)](https://github.com/jackmakesthings "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [Jack (@iamjackg)](https://github.com/iamjackg "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Jack Chapple (@jchapple)](https://github.com/jchapple "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Jack Fan (@JackWindows)](https://github.com/JackWindows "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Jack Minardi (@jminardi)](https://github.com/jminardi "9 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 1 commit to home-assistant.io ") - [Jack Wilsdon (@jackwilsdon)](https://github.com/jackwilsdon "6 total commits to the Home Assistant orga: -3 commits to home-assistant -2 commits to home-assistant-polymer +3 commits to core +2 commits to frontend 1 commit to home-assistant.io ") - [Jack Yin (@jkyin)](https://github.com/jkyin "6 total commits to the Home Assistant orga: @@ -5158,25 +6340,32 @@ This page contains a list of people who have contributed in one way or another t - [jack1142 (@jack1142)](https://github.com/jack1142 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jackie Yang (@valkjsaaa)](https://github.com/valkjsaaa "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Jackie Yang (@valkjsaaa)](https://github.com/valkjsaaa "2 total commits to the Home Assistant orga: +2 commits to core ") - [Jacob Mansfield (@cyberjacob)](https://github.com/cyberjacob "9 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core 4 commits to home-assistant.io ") +- [Jacob McSwain (@USA-RedDragon)](https://github.com/USA-RedDragon "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Jacob Minnis (@jminn)](https://github.com/jminn "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core +") +- [Jacob Penderworth (@Penderworth)](https://github.com/Penderworth "17 total commits to the Home Assistant orga: +17 commits to 1password-teams-open-source ") - [Jacob Siverskog (@jsiverskog)](https://github.com/jsiverskog "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") - [Jacob Tomlinson (@jacobtomlinson)](https://github.com/jacobtomlinson "9 total commits to the Home Assistant orga: 7 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") -- [Jacob Wilson (@Penderworth)](https://github.com/Penderworth "17 total commits to the Home Assistant orga: -17 commits to 1password-teams-open-source +- [Jacob Weisz (@ocdtrekkie)](https://github.com/ocdtrekkie "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Jacques\-D\. Piguet (@jdpiguet)](https://github.com/jdpiguet "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -5184,6 +6373,9 @@ This page contains a list of people who have contributed in one way or another t - [jagjordi (@jagjordi)](https://github.com/jagjordi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jaimyn (@jabelone)](https://github.com/jabelone "1 total commits to the Home Assistant orga: +1 commit to hassbian-scripts +") - [Jake McCrary (@jakemcc)](https://github.com/jakemcc "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -5193,11 +6385,26 @@ This page contains a list of people who have contributed in one way or another t - [Jakob Reiter (@jakommo)](https://github.com/jakommo "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jakob Ruhe (@jakeru)](https://github.com/jakeru "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Jakob Schlyter (@jschlyter)](https://github.com/jschlyter "4 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +1 commit to core +1 commit to home-assistant.io +") - [Jakub (@lenisko)](https://github.com/lenisko "1 total commits to the Home Assistant orga: -1 commit to hassio +1 commit to supervisor +") +- [Jakub Bednář (@bednar)](https://github.com/bednar "1 total commits to the Home Assistant orga: +1 commit to core ") - [Jakub Bittner (@rexcze)](https://github.com/rexcze "2 total commits to the Home Assistant orga: -2 commits to home-assistant-polymer +2 commits to frontend +") +- [Jakub Schmidtke (@sjakub)](https://github.com/sjakub "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Jakub Wilk (@jwilk)](https://github.com/jwilk "1 total commits to the Home Assistant orga: 1 commit to feedparser @@ -5208,11 +6415,14 @@ This page contains a list of people who have contributed in one way or another t - [James (@jimbob1001)](https://github.com/jimbob1001 "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") +- [James Callaghan (@jcallaghan)](https://github.com/jcallaghan "1 total commits to the Home Assistant orga: +1 commit to core +") - [James Clancey (@Clancey)](https://github.com/Clancey "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") - [James Cole (@jamespcole)](https://github.com/jamespcole "94 total commits to the Home Assistant orga: -93 commits to home-assistant +93 commits to core 1 commit to home-assistant-js ") - [James Crook (@cooljimy84)](https://github.com/cooljimy84 "2 total commits to the Home Assistant orga: @@ -5221,69 +6431,103 @@ This page contains a list of people who have contributed in one way or another t - [James Goodhouse (@jamesgoodhouse)](https://github.com/jamesgoodhouse "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [James Hilliard (@jameshilliard)](https://github.com/jameshilliard "3 total commits to the Home Assistant orga: -2 commits to home-assistant +- [James Hilliard (@jameshilliard)](https://github.com/jameshilliard "7 total commits to the Home Assistant orga: +5 commits to core +1 commit to brands 1 commit to home-assistant.io ") - [James Marsh (@doctorjames)](https://github.com/doctorjames "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [James Milligan (@nightowlengineer)](https://github.com/nightowlengineer "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [James Nimmo (@jnimmo)](https://github.com/jnimmo "11 total commits to the Home Assistant orga: +8 commits to core +3 commits to home-assistant.io +") - [James Ruan (@jamesruan)](https://github.com/jamesruan "2 total commits to the Home Assistant orga: 2 commits to pi-gen ") +- [James Sun (@sun16)](https://github.com/sun16 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [James Yox (@yoxjames)](https://github.com/yoxjames "1 total commits to the Home Assistant orga: +1 commit to android +") - [james\-fry (@james-fry)](https://github.com/james-fry "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [jamesking420 (@jamesking420)](https://github.com/jamesking420 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [JamesMcClelland (@JamesMcClelland)](https://github.com/JamesMcClelland "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") - [jamesthomas128 (@jamesthomas128)](https://github.com/jamesthomas128 "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [JamesWong9 (@JamesWong9)](https://github.com/JamesWong9 "1 total commits to the Home Assistant orga: +1 commit to android +") - [Jamie Shaw (@jamieshaw)](https://github.com/jamieshaw "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Jamie van Dyke (@fearoffish)](https://github.com/fearoffish "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant-iOS +1 commit to iOS 1 commit to people ") -- [jaminh (@jaminh)](https://github.com/jaminh "2 total commits to the Home Assistant orga: -1 commit to open-zwave -1 commit to home-assistant +- [jaminh (@jaminh)](https://github.com/jaminh "3 total commits to the Home Assistant orga: +2 commits to open-zwave +1 commit to core ") - [Jan (@jevermeister)](https://github.com/jevermeister "1 total commits to the Home Assistant orga: -1 commit to hassos +1 commit to operating-system +") +- [Jan (@js94x)](https://github.com/js94x "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Jan Almeroth (@jalmeroth)](https://github.com/jalmeroth "8 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core 2 commits to home-assistant.io -1 commit to home-assistant-polymer +1 commit to frontend ") - [Jan Castermans (@pprazzi)](https://github.com/pprazzi "2 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend 1 commit to home-assistant.io ") - [Jan Collijs (@visibilityspots)](https://github.com/visibilityspots "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Jan De Luyck (@jdeluyck)](https://github.com/jdeluyck "4 total commits to the Home Assistant orga: +4 commits to core ") - [Jan Harkes (@jaharkes)](https://github.com/jaharkes "112 total commits to the Home Assistant orga: -100 commits to home-assistant +100 commits to core 10 commits to netdisco 1 commit to people 1 commit to home-assistant.io ") +- [jan iversen (@janiversen)](https://github.com/janiversen "22 total commits to the Home Assistant orga: +20 commits to core +2 commits to home-assistant.io +") +- [Jan Keith Darunday (@jkcdarunday)](https://github.com/jkcdarunday "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Jan Losinski (@janLo)](https://github.com/janLo "22 total commits to the Home Assistant orga: -16 commits to home-assistant +16 commits to core 6 commits to home-assistant.io ") -- [Jan Olbrecht (@olbjan)](https://github.com/olbjan "7 total commits to the Home Assistant orga: -4 commits to companion.home-assistant -3 commits to home-assistant.io +- [Jan Nylund (@jannylund)](https://github.com/jannylund "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Jan Olbrecht (@olbjan)](https://github.com/olbjan "29 total commits to the Home Assistant orga: +24 commits to companion.home-assistant +4 commits to home-assistant.io +1 commit to iOS ") - [Jan Peer Stöcklmair (@JPeer264)](https://github.com/JPeer264 "3 total commits to the Home Assistant orga: 3 commits to 1password-teams-open-source @@ -5295,105 +6539,156 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Jan van Helvoort (@janvanhelvoort)](https://github.com/janvanhelvoort "4 total commits to the Home Assistant orga: -2 commits to home-assistant 2 commits to home-assistant.io +2 commits to core ") - [Jan Willhaus (@janw)](https://github.com/janw "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") - [Jan\-Preben Mossin (@jpmossin)](https://github.com/jpmossin "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Janis Jansons (@Janhouse)](https://github.com/Janhouse "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Janitha Karunaratne (@janitha)](https://github.com/janitha "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io ") - [Janne Grunau (@jannau)](https://github.com/jannau "6 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 2 commits to home-assistant.io ") +- [Jannik Beyerstedt (@jbeyerstedt)](https://github.com/jbeyerstedt "1 total commits to the Home Assistant orga: +1 commit to core +") - [Janos Racz (@rczjns)](https://github.com/rczjns "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jardi Martinez (@jardiamj)](https://github.com/jardiamj "9 total commits to the Home Assistant orga: -7 commits to home-assistant.io -2 commits to home-assistant +- [Jardi Martinez (@jardiamj)](https://github.com/jardiamj "11 total commits to the Home Assistant orga: +8 commits to home-assistant.io +3 commits to core +") +- [Jared Agee (@jagee23)](https://github.com/jagee23 "3 total commits to the Home Assistant orga: +2 commits to cli +1 commit to home-assistant.io ") - [Jared Beckham (@jtbeckha)](https://github.com/jtbeckha "4 total commits to the Home Assistant orga: -2 commits to home-assistant 2 commits to home-assistant.io +2 commits to core ") - [Jared J (@jjensn)](https://github.com/jjensn "2 total commits to the Home Assistant orga: 1 commit to netdisco -1 commit to home-assistant +1 commit to core ") - [Jared Quinn (@jaredquinn)](https://github.com/jaredquinn "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Jari Ylimäinen (@JariInc)](https://github.com/JariInc "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Jarle B\. Hjortand (@jarlebh)](https://github.com/jarlebh "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Jarmo van Lenthe (@jarmovanlenthe)](https://github.com/jarmovanlenthe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jaroslav Hanslík (@kukulich)](https://github.com/kukulich "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [Jarosław Salwa (@armata007)](https://github.com/armata007 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jaryl Chng (@jarylc)](https://github.com/jarylc "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Jason (@zachowj)](https://github.com/zachowj "2 total commits to the Home Assistant orga: +2 commits to home-assistant-js-websocket +") - [Jason Albert (@thejta)](https://github.com/thejta "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Jason Antman (@jantman)](https://github.com/jantman "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Jason Carter (@JasonCarter80)](https://github.com/JasonCarter80 "7 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 3 commits to home-assistant.io ") -- [Jason Hite (@jasonmhite)](https://github.com/jasonmhite "6 total commits to the Home Assistant orga: -6 commits to appdaemon +- [Jason Cheatham (@jason0x43)](https://github.com/jason0x43 "2 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core +") +- [Jason Hines (@jasonehines)](https://github.com/jasonehines "1 total commits to the Home Assistant orga: +1 commit to operating-system ") - [Jason Hu (@awarecan)](https://github.com/awarecan "291 total commits to the Home Assistant orga: -200 commits to home-assistant +200 commits to core 41 commits to home-assistant.io -34 commits to home-assistant-polymer +34 commits to frontend 10 commits to developers.home-assistant -2 commits to home-assistant-android +2 commits to android 1 commit to LabelBot -1 commit to netdisco 1 commit to home-assistant-js-websocket +1 commit to netdisco 1 commit to people ") -- [Jason Hunter (@hunterjm)](https://github.com/hunterjm "51 total commits to the Home Assistant orga: -33 commits to home-assistant -12 commits to home-assistant.io -3 commits to home-assistant-polymer +- [Jason Hunter (@hunterjm)](https://github.com/hunterjm "84 total commits to the Home Assistant orga: +64 commits to core +14 commits to home-assistant.io +3 commits to frontend +1 commit to actions 1 commit to people 1 commit to developers.home-assistant -1 commit to actions ") - [Jason Kingsbury (@relvacode)](https://github.com/relvacode "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +1 commit to home-assistant.io +") +- [Jason Knott (@jayknott)](https://github.com/jayknott "2 total commits to the Home Assistant orga: +1 commit to frontend 1 commit to home-assistant.io ") - [Jason Kölker (@jkoelker)](https://github.com/jkoelker "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Jason Lachowsky (@dajo)](https://github.com/dajo "1 total commits to the Home Assistant orga: +- [Jason Lachowsky (@dajo)](https://github.com/dajo "5 total commits to the Home Assistant orga: +2 commits to core +1 commit to iOS +1 commit to frontend 1 commit to home-assistant.io ") -- [Jason Lawrence (@jjlawren)](https://github.com/jjlawren "88 total commits to the Home Assistant orga: -55 commits to home-assistant -26 commits to home-assistant.io -7 commits to home-assistant-iOS +- [Jason Lawrence (@jjlawren)](https://github.com/jjlawren "195 total commits to the Home Assistant orga: +152 commits to core +35 commits to home-assistant.io +7 commits to iOS +1 commit to developers.home-assistant +") +- [Jason Pelzer (@jpelzer)](https://github.com/jpelzer "2 total commits to the Home Assistant orga: +1 commit to brands +1 commit to home-assistant.io +") +- [Jason Ross (@csfreak)](https://github.com/csfreak "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Jason Rumney (@make-all)](https://github.com/make-all "1 total commits to the Home Assistant orga: +1 commit to brands ") - [Jason Schollenberger (@jschollenberger)](https://github.com/jschollenberger "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jason Scurtu (@jscurtu)](https://github.com/jscurtu "1 total commits to the Home Assistant orga: +- [Jason Scurtu (@xarbit)](https://github.com/xarbit "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jason Swails (@swails)](https://github.com/swails "9 total commits to the Home Assistant orga: +7 commits to core +2 commits to home-assistant.io +") - [Jason Wells (@singularitycoder)](https://github.com/singularitycoder "3 total commits to the Home Assistant orga: 3 commits to open-zwave ") @@ -5401,64 +6696,82 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Jason Woodford (@jwood55812)](https://github.com/jwood55812 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Jason Woodward (@woodwardjd)](https://github.com/woodwardjd "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jason\-nz (@Jason-nz)](https://github.com/Jason-nz "2 total commits to the Home Assistant orga: +1 commit to companion.home-assistant +1 commit to developers.home-assistant +") - [jasonbuechler (@jasonbuechler)](https://github.com/jasonbuechler "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [jasondefuria (@jasondefuria)](https://github.com/jasondefuria "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Jasper van der Neut \- Stulen (@jvanderneutstulen)](https://github.com/jvanderneutstulen "12 total commits to the Home Assistant orga: -8 commits to hassos -3 commits to home-assistant +8 commits to operating-system +3 commits to core 1 commit to people ") +- [jasperro (@jasperro)](https://github.com/jasperro "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [javicalle (@javicalle)](https://github.com/javicalle "25 total commits to the Home Assistant orga: 13 commits to home-assistant.io -12 commits to home-assistant +12 commits to core ") - [Javier Gonel (@graffic)](https://github.com/graffic "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Javier González Calleja (@gonzalezcalleja)](https://github.com/gonzalezcalleja "6 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 2 commits to home-assistant.io ") +- [Javier Lopez (@muniter)](https://github.com/muniter "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Javier Martínez (@JavierMartinz)](https://github.com/JavierMartinz "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Jaxom Nutt (@JaxomCS)](https://github.com/JaxomCS "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") -- [Jay (@Tediore)](https://github.com/Tediore "13 total commits to the Home Assistant orga: -13 commits to home-assistant.io -") - [Jay (@jshridha)](https://github.com/jshridha "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Jay Love (@jslove)](https://github.com/jslove "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +1 commit to home-assistant.io +") +- [Jay Newstrom (@JayNewstrom)](https://github.com/JayNewstrom "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") - [Jay Stevens (@Jay2645)](https://github.com/Jay2645 "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") -- [Jaydev Shiroya (@jaydev1997)](https://github.com/jaydev1997 "1 total commits to the Home Assistant orga: +- [Jayden Litolff (@JayBigGuy10)](https://github.com/JayBigGuy10 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Jaydev Shiroya (@jaydevs)](https://github.com/jaydevs "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [JAYMAN\-ATX (@JAYMAN-ATX)](https://github.com/JAYMAN-ATX "2 total commits to the Home Assistant orga: 2 commits to homebridge-homeassistant ") - [jazzaj (@jazzaj)](https://github.com/jazzaj "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [jbcodemonkey (@jbcodemonkey)](https://github.com/jbcodemonkey "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [JBelinchon (@JBelinchon)](https://github.com/JBelinchon "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -5468,33 +6781,33 @@ This page contains a list of people who have contributed in one way or another t ") - [JC Connell (@jcconnell)](https://github.com/jcconnell "13 total commits to the Home Assistant orga: 7 commits to home-assistant.io -6 commits to home-assistant +6 commits to core ") -- [Jc2k (@Jc2k)](https://github.com/Jc2k "67 total commits to the Home Assistant orga: -64 commits to home-assistant -2 commits to home-assistant.io -1 commit to home-assistant-polymer +- [Jc2k (@Jc2k)](https://github.com/Jc2k "122 total commits to the Home Assistant orga: +112 commits to core +8 commits to home-assistant.io +2 commits to frontend ") - [jchasey (@jchasey)](https://github.com/jchasey "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") +- [jcoetsie (@jcoetsie)](https://github.com/jcoetsie "2 total commits to the Home Assistant orga: +2 commits to brands +") - [jcrowegitHu8 (@jcrowegitHu8)](https://github.com/jcrowegitHu8 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [jcullen86 (@jcullen86)](https://github.com/jcullen86 "1 total commits to the Home Assistant orga: -1 commit to developers.home-assistant -") -- [jdegraef (@jdegraef)](https://github.com/jdegraef "1 total commits to the Home Assistant orga: +- [jduquennoy (@jduquennoy)](https://github.com/jduquennoy "3 total commits to the Home Assistant orga: +1 commit to open-zwave +1 commit to core 1 commit to home-assistant.io ") -- [jduquennoy (@jduquennoy)](https://github.com/jduquennoy "1 total commits to the Home Assistant orga: -1 commit to open-zwave -") -- [Jean Gauthier (@SupremeSports)](https://github.com/SupremeSports "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Jean Gauthier (@SupremeSports)](https://github.com/SupremeSports "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io ") - [Jean Regisser (@jeanregisser)](https://github.com/jeanregisser "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Jean\-François Auger (@nechry)](https://github.com/nechry "980 total commits to the Home Assistant orga: 974 commits to open-zwave @@ -5504,28 +6817,36 @@ This page contains a list of people who have contributed in one way or another t 1 commit to libcoap ") - [Jean\-Michel Ruiz (@coolcow)](https://github.com/coolcow "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Jean\-Paul van Ravensberg (@DevSecNinja)](https://github.com/DevSecNinja "7 total commits to the Home Assistant orga: +5 commits to home-assistant.io +1 commit to hassio-addons +1 commit to core ") - [Jean\-Philippe Bouillot (@Jypy)](https://github.com/Jypy "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Jean\-Philippe Jodoin (@jpjodoin)](https://github.com/jpjodoin "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") +- [Jean\-Yves Avenard (@jyavenard)](https://github.com/jyavenard "2 total commits to the Home Assistant orga: +2 commits to core +") - [Jed Lippold (@jlippold)](https://github.com/jlippold "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Jedmeng (@jedmeng)](https://github.com/jedmeng "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Jeena Paradies (@jeena)](https://github.com/jeena "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Jef D (@danielsjf)](https://github.com/danielsjf "5 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io ") - [Jeff Boothe (@jboothe)](https://github.com/jboothe "1 total commits to the Home Assistant orga: @@ -5534,23 +6855,27 @@ This page contains a list of people who have contributed in one way or another t - [Jeff Cutsinger (@jeffcutsinger)](https://github.com/jeffcutsinger "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jeff Grieger (@jgrieger1)](https://github.com/jgrieger1 "2 total commits to the Home Assistant orga: -2 commits to appdaemon -") -- [Jeff Irion (@JeffLIrion)](https://github.com/JeffLIrion "74 total commits to the Home Assistant orga: -49 commits to home-assistant -24 commits to home-assistant.io +- [Jeff Irion (@JeffLIrion)](https://github.com/JeffLIrion "111 total commits to the Home Assistant orga: +76 commits to core +34 commits to home-assistant.io 1 commit to developers.home-assistant ") - [Jeff Lewis (@Jeff-Lewis)](https://github.com/Jeff-Lewis "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jeff McGehee (@jlmcgehee21)](https://github.com/jlmcgehee21 "3 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Jeff McGehee (@jlmcgehee21)](https://github.com/jlmcgehee21 "5 total commits to the Home Assistant orga: +4 commits to core 1 commit to home-assistant.io ") +- [Jeff Rescignano (@JeffResc)](https://github.com/JeffResc "40 total commits to the Home Assistant orga: +19 commits to home-assistant.io +14 commits to developers.home-assistant +4 commits to companion.home-assistant +2 commits to data.home-assistant +1 commit to frontend +") - [Jeff Schroeder (@SEJeff)](https://github.com/SEJeff "18 total commits to the Home Assistant orga: -17 commits to home-assistant +17 commits to core 1 commit to home-assistant.io ") - [jeff tapia (@jtmoderate876)](https://github.com/jtmoderate876 "1 total commits to the Home Assistant orga: @@ -5560,26 +6885,42 @@ This page contains a list of people who have contributed in one way or another t 6 commits to pyharmony ") - [Jeff Wilson (@jawilson)](https://github.com/jawilson "28 total commits to the Home Assistant orga: -20 commits to home-assistant +20 commits to core 6 commits to home-assistant.io 2 commits to pyharmony ") - [jeff\-h (@jeff-h)](https://github.com/jeff-h "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Jeffery To (@jefferyto)](https://github.com/jefferyto "1 total commits to the Home Assistant orga: +1 commit to core +") - [jeffh0821 (@jeffh0821)](https://github.com/jeffh0821 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Jeffrey Lin (@linjef)](https://github.com/linjef "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") +- [jeffsanicola (@jeffsanicola)](https://github.com/jeffsanicola "4 total commits to the Home Assistant orga: +4 commits to open-zwave +") +- [Jelle Raaijmakers (@GMTA)](https://github.com/GMTA "2 total commits to the Home Assistant orga: +1 commit to frontend +1 commit to core +") - [Jelmer Tiete (@JelmerT)](https://github.com/JelmerT "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jens (@jensihnow)](https://github.com/jensihnow "10 total commits to the Home Assistant orga: +- [Jenny (@pinkywafer)](https://github.com/pinkywafer "5 total commits to the Home Assistant orga: +2 commits to core +1 commit to wheels-custom-integrations +1 commit to brands +1 commit to home-assistant.io +") +- [Jens (@jensihnow)](https://github.com/jensihnow "11 total commits to the Home Assistant orga: 5 commits to home-assistant.io -4 commits to home-assistant +5 commits to core 1 commit to hassio-addons ") - [Jens (@jhoepken)](https://github.com/jhoepken "3 total commits to the Home Assistant orga: @@ -5588,14 +6929,20 @@ This page contains a list of people who have contributed in one way or another t - [Jens Kohl (@jk)](https://github.com/jk "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jens Nistler (@lociii)](https://github.com/lociii "1 total commits to the Home Assistant orga: +- [Jens Mazzanti\-Myretyr (@jm-73)](https://github.com/jm-73 "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Jens Nistler (@lociii)](https://github.com/lociii "6 total commits to the Home Assistant orga: +2 commits to brands +2 commits to core 1 commit to netdisco +1 commit to wheels-custom-integrations ") - [Jens Vanhooydonck (@JensVanhooydonck)](https://github.com/JensVanhooydonck "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") -- [Jens Østergaard Nielsen (@dingusdk)](https://github.com/dingusdk "8 total commits to the Home Assistant orga: -4 commits to home-assistant +- [Jens Østergaard Nielsen (@dingusdk)](https://github.com/dingusdk "11 total commits to the Home Assistant orga: +7 commits to core 4 commits to home-assistant.io ") - [jensjakob (@jensjakob)](https://github.com/jensjakob "1 total commits to the Home Assistant orga: @@ -5604,12 +6951,12 @@ This page contains a list of people who have contributed in one way or another t - [Jenya Y (@jenyayel)](https://github.com/jenyayel "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jeppe Ladefoged (@ladefoged81)](https://github.com/ladefoged81 "11 total commits to the Home Assistant orga: +- [Jeppe Ladefoged (@jladefoged)](https://github.com/jladefoged "11 total commits to the Home Assistant orga: 11 commits to home-assistant.io ") - [Jerad Meisner (@jeradM)](https://github.com/jeradM "63 total commits to the Home Assistant orga: -37 commits to home-assistant-polymer -13 commits to home-assistant +37 commits to frontend +13 commits to core 12 commits to home-assistant.io 1 commit to people ") @@ -5633,7 +6980,7 @@ This page contains a list of people who have contributed in one way or another t ") - [Jeremy Klein (@jeremydk)](https://github.com/jeremydk "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [Jeremy Roe (@jeremyroe)](https://github.com/jeremyroe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -5643,24 +6990,33 @@ This page contains a list of people who have contributed in one way or another t ") - [Jeremy Volkman (@jvolkman)](https://github.com/jvolkman "2 total commits to the Home Assistant orga: 1 commit to open-zwave -1 commit to home-assistant +1 commit to core ") - [Jeremy Williams (@jwillaz)](https://github.com/jwillaz "6 total commits to the Home Assistant orga: 5 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [jeremysv (@jeremysv)](https://github.com/jeremysv "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [jeremywillans (@jeremywillans)](https://github.com/jeremywillans "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Jerod Santo (@jerodsanto)](https://github.com/jerodsanto "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jeroen (@jeroenst)](https://github.com/jeroenst "1 total commits to the Home Assistant orga: -1 commit to open-zwave +- [Jeroen Seegers (@jeroenseegers)](https://github.com/jeroenseegers "3 total commits to the Home Assistant orga: +1 commit to android +1 commit to companion.home-assistant +1 commit to home-assistant.io ") -- [Jeroen ter Heerdt (@jeroenterheerdt)](https://github.com/jeroenterheerdt "40 total commits to the Home Assistant orga: -21 commits to home-assistant +- [Jeroen ter Heerdt (@jeroenterheerdt)](https://github.com/jeroenterheerdt "43 total commits to the Home Assistant orga: +21 commits to core 19 commits to home-assistant.io +3 commits to brands +") +- [Jeroen Van den Keybus (@vdkeybus)](https://github.com/vdkeybus "2 total commits to the Home Assistant orga: +2 commits to core ") - [Jerold Albertson (@jeroldalbertson-wf)](https://github.com/jeroldalbertson-wf "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io @@ -5669,58 +7025,76 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Jerry Chong (@zanglang)](https://github.com/zanglang "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Jerry Workman (@JerryWorkman)](https://github.com/JerryWorkman "9 total commits to the Home Assistant orga: 9 commits to home-assistant.io ") - [Jess (@castaway)](https://github.com/castaway "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Jesse Hills (@jesserockz)](https://github.com/jesserockz "15 total commits to the Home Assistant orga: -11 commits to home-assistant +- [Jesse Hills (@jesserockz)](https://github.com/jesserockz "19 total commits to the Home Assistant orga: +13 commits to core 4 commits to home-assistant.io +2 commits to brands ") -- [Jesse Newland (@jnewland)](https://github.com/jnewland "17 total commits to the Home Assistant orga: -13 commits to home-assistant -3 commits to hubot-home-assistant -1 commit to home-assistant.io +- [Jesse Newland (@jnewland)](https://github.com/jnewland "2 total commits to the Home Assistant orga: +2 commits to core ") - [Jesse O'Connor (@jessexoc)](https://github.com/jessexoc "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Jesse Osiecki (@stratosmacker)](https://github.com/stratosmacker "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Jesse Rizzo (@jesserizzo)](https://github.com/jesserizzo "11 total commits to the Home Assistant orga: -7 commits to home-assistant +7 commits to core 4 commits to home-assistant.io ") - [Jesse Ruiter (@jesseruiter)](https://github.com/jesseruiter "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Jesse Zoldak (@jzoldak)](https://github.com/jzoldak "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [JessePrater (@JessePrater)](https://github.com/JessePrater "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [JesseWebDotCom (@JesseWebDotCom)](https://github.com/JesseWebDotCom "16 total commits to the Home Assistant orga: -8 commits to home-assistant 8 commits to home-assistant.io +8 commits to core ") - [jessyjones (@jessyjones)](https://github.com/jessyjones "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [jgriff2 (@jgriff2)](https://github.com/jgriff2 "10 total commits to the Home Assistant orga: -7 commits to home-assistant.io -3 commits to home-assistant -") -- [jhemzal (@jhemzal)](https://github.com/jhemzal "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Jevgeni Kiski (@yozik04)](https://github.com/yozik04 "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") -- [jiafengwang (@jiafengwang)](https://github.com/jiafengwang "1 total commits to the Home Assistant orga: -1 commit to appdaemon +- [jey burrows (@jeyrb)](https://github.com/jeyrb "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [jezcooke (@jezcooke)](https://github.com/jezcooke "4 total commits to the Home Assistant orga: +3 commits to core +1 commit to home-assistant.io +") +- [jfearon (@jfearon)](https://github.com/jfearon "4 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io +") +- [jfette (@jfette)](https://github.com/jfette "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") +- [jgriff2 (@jgriff2)](https://github.com/jgriff2 "10 total commits to the Home Assistant orga: +7 commits to home-assistant.io +3 commits to core +") +- [jhemzal (@jhemzal)](https://github.com/jhemzal "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io ") - [Jim Rollenhagen (@jimrollenhagen)](https://github.com/jimrollenhagen "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -5728,6 +7102,10 @@ This page contains a list of people who have contributed in one way or another t - [jimboca (@jimboca)](https://github.com/jimboca "3 total commits to the Home Assistant orga: 3 commits to pyharmony ") +- [Jimmy Everling (@sockless-coding)](https://github.com/sockless-coding "3 total commits to the Home Assistant orga: +2 commits to brands +1 commit to wheels-custom-integrations +") - [Jimmy Tang (@jcftang)](https://github.com/jcftang "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -5735,59 +7113,68 @@ This page contains a list of people who have contributed in one way or another t 13 commits to open-zwave ") - [jlrgraham (@jlrgraham)](https://github.com/jlrgraham "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [jma89 (@jma89)](https://github.com/jma89 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [jmgarciamari (@jmgarciamari)](https://github.com/jmgarciamari "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io -") - [jmtatsch (@jmtatsch)](https://github.com/jmtatsch "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [jmvermeulen (@jmvermeulen)](https://github.com/jmvermeulen "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") -- [jnimmo (@jnimmo)](https://github.com/jnimmo "3 total commits to the Home Assistant orga: -2 commits to home-assistant.io -1 commit to home-assistant -") - [Jo Liss (@joliss)](https://github.com/joliss "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jo Verbeeck (@joverbee)](https://github.com/joverbee "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [jo89lin (@jo89lin)](https://github.com/jo89lin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Joakim af Sandeberg (@jotunacorn)](https://github.com/jotunacorn "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Joakim Lindbom (@JoakimLindbom)](https://github.com/JoakimLindbom "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Joakim Plate (@elupus)](https://github.com/elupus "61 total commits to the Home Assistant orga: -40 commits to home-assistant -9 commits to home-assistant-polymer -9 commits to home-assistant.io +- [Joakim Plate (@elupus)](https://github.com/elupus "116 total commits to the Home Assistant orga: +89 commits to core +15 commits to home-assistant.io +9 commits to frontend 2 commits to developers.home-assistant 1 commit to people ") -- [Joakim Sørensen (@ludeeus)](https://github.com/ludeeus "384 total commits to the Home Assistant orga: +- [Joakim Sørensen (@ludeeus)](https://github.com/ludeeus "501 total commits to the Home Assistant orga: 262 commits to hassbian-scripts -55 commits to home-assistant -48 commits to home-assistant.io -8 commits to home-assistant-polymer -3 commits to developers.home-assistant -3 commits to custom-components-wheels +69 commits to core +66 commits to frontend +50 commits to home-assistant.io +12 commits to hassio-addons +11 commits to probot-home-assistant +8 commits to wheels-custom-integrations +6 commits to supervisor +5 commits to actions +5 commits to developers.home-assistant 3 commits to alerts.home-assistant.io +1 commit to docker +1 commit to hassio-version 1 commit to people -1 commit to hassio-installer +1 commit to supervised-installer +") +- [Joao Carreira (@jfmcarreira)](https://github.com/jfmcarreira "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io ") - [Joaquín (@joaqtor)](https://github.com/joaqtor "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [jobhh (@jobhh)](https://github.com/jobhh "1 total commits to the Home Assistant orga: +1 commit to android ") - [Jochen Martin Eppler (@jougs)](https://github.com/jougs "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -5797,7 +7184,7 @@ This page contains a list of people who have contributed in one way or another t ") - [jodur (@jodur)](https://github.com/jodur "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Joe Francis (@lostapathy)](https://github.com/lostapathy "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -5805,39 +7192,39 @@ This page contains a list of people who have contributed in one way or another t - [Joe Garcia\, CISSP (@infamousjoeg)](https://github.com/infamousjoeg "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Joe Gross (@joegross)](https://github.com/joegross "1 total commits to the Home Assistant orga: +- [Joe Gross (@joegross)](https://github.com/joegross "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") - [Joe Lee (@xnoodle)](https://github.com/xnoodle "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Joe Lu (@snjoetw)](https://github.com/snjoetw "25 total commits to the Home Assistant orga: -19 commits to home-assistant +- [Joe Lu (@snjoetw)](https://github.com/snjoetw "24 total commits to the Home Assistant orga: +19 commits to core 5 commits to home-assistant.io -1 commit to appdaemon ") - [Joe McMonagle (@joemcmonagle)](https://github.com/joemcmonagle "13 total commits to the Home Assistant orga: 13 commits to home-assistant.io ") - [Joe Rocklin (@joerocklin)](https://github.com/joerocklin "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Joe Trabulsy (@webdjoe)](https://github.com/webdjoe "4 total commits to the Home Assistant orga: -2 commits to home-assistant 2 commits to home-assistant.io +2 commits to core ") - [joe248 (@joe248)](https://github.com/joe248 "5 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 1 commit to home-assistant.io ") - [Joeboyc2 (@Joeboyc2)](https://github.com/Joeboyc2 "17 total commits to the Home Assistant orga: 15 commits to home-assistant.io -1 commit to hassos -1 commit to home-assistant +1 commit to operating-system +1 commit to core ") - [Joel Asher Friedman (@joelash)](https://github.com/joelash "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Joel Brun (@jobr97)](https://github.com/jobr97 "1 total commits to the Home Assistant orga: 1 commit to hassbian-scripts @@ -5852,12 +7239,12 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Johan Bloemberg (@aequitas)](https://github.com/aequitas "46 total commits to the Home Assistant orga: -37 commits to home-assistant +37 commits to core 8 commits to home-assistant.io 1 commit to netdisco ") - [Johan Carlquist (@theseal)](https://github.com/theseal "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Johan Eliasson (@jeliasson)](https://github.com/jeliasson "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -5865,9 +7252,12 @@ This page contains a list of people who have contributed in one way or another t - [Johan Elmerfjord (@JohanElmis)](https://github.com/JohanElmis "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Johan Haals (@jhaals)](https://github.com/jhaals "3 total commits to the Home Assistant orga: +- [Johan Haals (@jhaals)](https://github.com/jhaals "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to appdaemon +") +- [Johan Henkens (@jhenkens)](https://github.com/jhenkens "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io ") - [Johan Klintberg (@moogblob)](https://github.com/moogblob "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -5875,8 +7265,9 @@ This page contains a list of people who have contributed in one way or another t - [Johan Lindström (@bhaap)](https://github.com/bhaap "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Johan Nenzén (@JohNan)](https://github.com/JohNan "3 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Johan Nenzén (@JohNan)](https://github.com/JohNan "4 total commits to the Home Assistant orga: +2 commits to core +1 commit to brands 1 commit to home-assistant.io ") - [Johan Ström (@stromnet)](https://github.com/stromnet "13 total commits to the Home Assistant orga: @@ -5885,82 +7276,78 @@ This page contains a list of people who have contributed in one way or another t - [Johan Svensson (@jsvensson)](https://github.com/jsvensson "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Johan van der Kuijl (@Rubyan)](https://github.com/Rubyan "4 total commits to the Home Assistant orga: +- [Johan van der Kuijl (@Rubyan)](https://github.com/Rubyan "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io -1 commit to appdaemon ") - [Johann Bauer (@bauerj)](https://github.com/bauerj "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Johann Kellerman (@kellerza)](https://github.com/kellerza "213 total commits to the Home Assistant orga: -173 commits to home-assistant -38 commits to home-assistant.io +- [Johann Kellerman (@kellerza)](https://github.com/kellerza "217 total commits to the Home Assistant orga: +175 commits to core +39 commits to home-assistant.io 1 commit to people 1 commit to developers.home-assistant -") -- [Johann Schmitz (@ercpe)](https://github.com/ercpe "1 total commits to the Home Assistant orga: -1 commit to appdaemon +1 commit to brands ") - [Johannes Innerbichler (@jinnerbichler)](https://github.com/jinnerbichler "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Johannes K\. (@roadrash2108)](https://github.com/roadrash2108 "4 total commits to the Home Assistant orga: +- [Johannes K (@roadrash2108)](https://github.com/roadrash2108 "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") - [Johannes Truschnigg (@jtru)](https://github.com/jtru "4 total commits to the Home Assistant orga: -4 commits to hassos +4 commits to operating-system ") - [John (@J-C-B)](https://github.com/J-C-B "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") - [John Allen (@jra3)](https://github.com/jra3 "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") -- [John Arild Berentsen (@turbokongen)](https://github.com/turbokongen "228 total commits to the Home Assistant orga: -156 commits to home-assistant +- [John Arild Berentsen (@turbokongen)](https://github.com/turbokongen "229 total commits to the Home Assistant orga: +157 commits to core 46 commits to home-assistant.io -25 commits to home-assistant-polymer +25 commits to frontend 1 commit to people ") - [John Boiles (@johnboiles)](https://github.com/johnboiles "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [John Coggeshall (@coogle)](https://github.com/coogle "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [John Dyer (@johntdyer)](https://github.com/johntdyer "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") -- [John Evans (@GrandadEvans)](https://github.com/GrandadEvans "3 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [John Evans (@GrandadEvans)](https://github.com/GrandadEvans "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io 1 commit to developers.home-assistant ") +- [John Hollowell (@jhollowe)](https://github.com/jhollowe "10 total commits to the Home Assistant orga: +6 commits to home-assistant.io +4 commits to core +") - [John K\. Luebs (@jkl1337)](https://github.com/jkl1337 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [John L (@jplafonta)](https://github.com/jplafonta "24 total commits to the Home Assistant orga: 24 commits to open-zwave ") -- [John Lindley (@jwl17330536)](https://github.com/jwl17330536 "1 total commits to the Home Assistant orga: -1 commit to appdaemon +- [John Luetke (@johnluetke)](https://github.com/johnluetke "13 total commits to the Home Assistant orga: +6 commits to home-assistant.io +6 commits to core +1 commit to brands ") -- [John Luetke (@johnluetke)](https://github.com/johnluetke "10 total commits to the Home Assistant orga: -5 commits to home-assistant.io -5 commits to home-assistant +- [John Males (@johnmales)](https://github.com/johnmales "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [John McLaughlin (@loghound)](https://github.com/loghound "2 total commits to the Home Assistant orga: -2 commits to home-assistant -") -- [John Mihalic (@mezz64)](https://github.com/mezz64 "61 total commits to the Home Assistant orga: -47 commits to home-assistant -12 commits to home-assistant.io -1 commit to hadashboard -1 commit to home-assistant-polymer +2 commits to core ") - [John Raahauge (@AZDane)](https://github.com/AZDane "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [John Shahawy (@JohnShahawy)](https://github.com/JohnShahawy "2 total commits to the Home Assistant orga: @@ -5969,8 +7356,11 @@ This page contains a list of people who have contributed in one way or another t - [John W\. Long (@jlong)](https://github.com/jlong "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [John Warne (@johnwarne)](https://github.com/johnwarne "2 total commits to the Home Assistant orga: +2 commits to brands +") - [John Williams (@Jaidan)](https://github.com/Jaidan "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [JohnClay (@JohnClay)](https://github.com/JohnClay "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source @@ -5980,16 +7370,19 @@ This page contains a list of people who have contributed in one way or another t ") - [Johnny Chadda (@joch)](https://github.com/joch "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant-polymer +1 commit to frontend ") -- [Johnny Moore (@xt16johnny)](https://github.com/xt16johnny "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Johnny Moore (@JXGA)](https://github.com/JXGA "1 total commits to the Home Assistant orga: +1 commit to core ") - [JohnnyCAPSLOCK (@JohnnyCAPSLOCK)](https://github.com/JohnnyCAPSLOCK "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [johnnychicago (@johnnychicago)](https://github.com/johnnychicago "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [johnnyletrois (@johnnyletrois)](https://github.com/johnnyletrois "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Jon (@JonMurphy)](https://github.com/JonMurphy "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io @@ -5997,6 +7390,9 @@ This page contains a list of people who have contributed in one way or another t - [Jon (@VdkaShaker)](https://github.com/VdkaShaker "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Jon (@jon-riches)](https://github.com/jon-riches "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Jon Banafato (@jonafato)](https://github.com/jonafato "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") @@ -6004,11 +7400,11 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Jon Caruana (@joncar)](https://github.com/joncar "7 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 3 commits to home-assistant.io ") - [Jon Evans (@craftyjon)](https://github.com/craftyjon "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Jon Evans (@evansj)](https://github.com/evansj "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -6016,19 +7412,19 @@ This page contains a list of people who have contributed in one way or another t - [Jon Gerdes (@gerdesj)](https://github.com/gerdesj "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [Jon Gilmore (@JonGilmore)](https://github.com/JonGilmore "7 total commits to the Home Assistant orga: -4 commits to home-assistant -3 commits to home-assistant.io +- [Jon Gilmore (@JonGilmore)](https://github.com/JonGilmore "22 total commits to the Home Assistant orga: +11 commits to home-assistant.io +7 commits to brands +4 commits to core ") - [Jon Gilmore (@jon102034050)](https://github.com/jon102034050 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jon Griffith (@arretx)](https://github.com/arretx "17 total commits to the Home Assistant orga: +- [Jon Griffith (@arretx)](https://github.com/arretx "16 total commits to the Home Assistant orga: 16 commits to home-assistant.io -1 commit to appdaemon ") - [Jon Maddox (@maddox)](https://github.com/maddox "108 total commits to the Home Assistant orga: -82 commits to home-assistant +82 commits to core 16 commits to homebridge-homeassistant 9 commits to home-assistant.io 1 commit to people @@ -6039,33 +7435,44 @@ This page contains a list of people who have contributed in one way or another t - [Jon Travis (@trav)](https://github.com/trav "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jonas (@K4ds3)](https://github.com/K4ds3 "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Jonas Janz (@PixelJonas)](https://github.com/PixelJonas "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to hassio-build 1 commit to home-assistant.io ") +- [Jonas Kohlbrenner (@cepresso)](https://github.com/cepresso "1 total commits to the Home Assistant orga: +1 commit to core +") - [Jonas Pedersen (@JonasPed)](https://github.com/JonasPed "10 total commits to the Home Assistant orga: -4 commits to home-assistant -4 commits to home-assistant.io -1 commit to appdaemon +5 commits to home-assistant.io +4 commits to core 1 commit to developers.home-assistant ") - [Jonas Skoogh (@hAmpzter)](https://github.com/hAmpzter "7 total commits to the Home Assistant orga: 6 commits to home-assistant.io -1 commit to home-assistant +1 commit to core +") +- [Jonas Thuresson (@jthure)](https://github.com/jthure "6 total commits to the Home Assistant orga: +4 commits to home-assistant.io +2 commits to core ") - [Jonatan Castro (@jcastro)](https://github.com/jcastro "7 total commits to the Home Assistant orga: 7 commits to home-assistant.io ") - [Jonathan (@jmw6773)](https://github.com/jmw6773 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Jonathan (@jlauwers)](https://github.com/jlauwers "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jonathan Adams (@jonathanadams)](https://github.com/jonathanadams "3 total commits to the Home Assistant orga: +- [Jonathan Adams (@jonathanadams)](https://github.com/jonathanadams "4 total commits to the Home Assistant orga: 1 commit to hassio-addons 1 commit to developers.home-assistant +1 commit to brands 1 commit to home-assistant.io ") - [Jonathan Batchelor (@jmb)](https://github.com/jmb "1 total commits to the Home Assistant orga: @@ -6074,29 +7481,40 @@ This page contains a list of people who have contributed in one way or another t - [Jonathan DEKHTIAR (@DEKHTIARJonathan)](https://github.com/DEKHTIARJonathan "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Jonathan Haddock (@joncojonathan)](https://github.com/joncojonathan "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Jonathan Herlin (@Jonher937)](https://github.com/Jonher937 "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [Jonathan Jefferies (@jjok)](https://github.com/jjok "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jonathan Keljo (@jkeljo)](https://github.com/jkeljo "17 total commits to the Home Assistant orga: -11 commits to home-assistant -6 commits to home-assistant.io +- [Jonathan Keljo (@jkeljo)](https://github.com/jkeljo "23 total commits to the Home Assistant orga: +16 commits to core +7 commits to home-assistant.io ") -- [Jonathan Martens (@jmartens)](https://github.com/jmartens "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Jonathan Martens (@jmartens)](https://github.com/jmartens "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to developers.home-assistant ") - [Jonathan McDowell (@u1f35c)](https://github.com/u1f35c "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") +- [Jonathan Tran (@jonathanmtran)](https://github.com/jonathanmtran "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Jonathan Weinberg (@jonathanweinberg)](https://github.com/jonathanweinberg "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") - [Jonathan Wukitsch (@insleep)](https://github.com/insleep "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jonathan Østrup (@TechnicallyJoe)](https://github.com/TechnicallyJoe "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [jonne013 (@jonne013)](https://github.com/jonne013 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -6104,13 +7522,13 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [jonudewux (@jonudewux)](https://github.com/jonudewux "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") -- [jonwaland (@jonwaland)](https://github.com/jonwaland "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [jonwaland (@jonwaland)](https://github.com/jonwaland "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [joopster (@joopert)](https://github.com/joopert "7 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 1 commit to home-assistant.io ") - [Joost Boomkamp (@increddibelly)](https://github.com/increddibelly "2 total commits to the Home Assistant orga: @@ -6123,11 +7541,16 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Jordan Keith (@zeddD1abl0)](https://github.com/zeddD1abl0 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Jordan Speicher (@uSpike)](https://github.com/uSpike "4 total commits to the Home Assistant orga: -3 commits to home-assistant +- [Jordan Speicher (@uSpike)](https://github.com/uSpike "7 total commits to the Home Assistant orga: +3 commits to core +2 commits to hassio-addons +1 commit to hassio-builder +1 commit to home-assistant.io +") +- [jordaosoft (@jordaosoft)](https://github.com/jordaosoft "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Jordi (@hokus15)](https://github.com/hokus15 "5 total commits to the Home Assistant orga: @@ -6135,21 +7558,28 @@ This page contains a list of people who have contributed in one way or another t 1 commit to alerts.home-assistant.io ") - [Jordy (@jbarrancos)](https://github.com/jbarrancos "43 total commits to the Home Assistant orga: -40 commits to home-assistant +40 commits to core 3 commits to home-assistant.io ") +- [Jorge Cruz\-Lambert (@jscruz)](https://github.com/jscruz "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [Jorge Martínez López (@jorgeml)](https://github.com/jorgeml "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jorim Tielemans (@tjorim)](https://github.com/tjorim "97 total commits to the Home Assistant orga: +- [Jorim Tielemans (@tjorim)](https://github.com/tjorim "98 total commits to the Home Assistant orga: 81 commits to home-assistant.io -6 commits to home-assistant +6 commits to core +3 commits to hassio-addons 3 commits to developers.home-assistant -2 commits to hassio -2 commits to hassio-addons -2 commits to hassio-cli +2 commits to supervisor +2 commits to cli 1 commit to hassio-build ") +- [joris1989 (@joris1989)](https://github.com/joris1989 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [jorisc90 (@jorisc90)](https://github.com/jorisc90 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -6157,19 +7587,23 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Jose Juan Montes (@jjmontesl)](https://github.com/jjmontesl "9 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 3 commits to home-assistant.io ") - [Jose Motta Lopes (@josemotta)](https://github.com/josemotta "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Josef Schlehofer (@BKPepe)](https://github.com/BKPepe "15 total commits to the Home Assistant orga: -15 commits to home-assistant +- [Josef Schlehofer (@BKPepe)](https://github.com/BKPepe "35 total commits to the Home Assistant orga: +35 commits to core ") - [Josep del Rio (@joseprio)](https://github.com/joseprio "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Joseph Albert (@jcalbert)](https://github.com/jcalbert "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Joseph Amalfitano (@CanDoAnything)](https://github.com/CanDoAnything "1 total commits to the Home Assistant orga: 1 commit to hassio-addons ") @@ -6182,47 +7616,50 @@ This page contains a list of people who have contributed in one way or another t - [Joseph Perera (@jpere039)](https://github.com/jpere039 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Joseph Piron (@eagleamon)](https://github.com/eagleamon "3 total commits to the Home Assistant orga: -3 commits to home-assistant +- [Joseph Piron (@wookiesh)](https://github.com/wookiesh "3 total commits to the Home Assistant orga: +3 commits to core ") - [Josh (@karlw00t)](https://github.com/karlw00t "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Josh (@space-pope)](https://github.com/space-pope "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Josh (@Joshfindit)](https://github.com/Joshfindit "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Josh Anderson (@andersonshatch)](https://github.com/andersonshatch "17 total commits to the Home Assistant orga: -12 commits to home-assistant +- [Josh Anderson (@andersonshatch)](https://github.com/andersonshatch "21 total commits to the Home Assistant orga: +15 commits to core 3 commits to homebridge-homeassistant +2 commits to home-assistant.io 1 commit to developers.home-assistant -1 commit to home-assistant.io ") -- [Josh Bendavid (@bendavid)](https://github.com/bendavid "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io +- [Josh Bendavid (@bendavid)](https://github.com/bendavid "25 total commits to the Home Assistant orga: +21 commits to core +4 commits to home-assistant.io ") - [Josh Cooper (@cooperj)](https://github.com/cooperj "6 total commits to the Home Assistant orga: 5 commits to home-assistant.io -1 commit to hassos +1 commit to operating-system +") +- [Josh Laseter (@JoshLaseter)](https://github.com/JoshLaseter "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Josh McCarty (@joshmcrty)](https://github.com/joshmcrty "9 total commits to the Home Assistant orga: -7 commits to home-assistant-polymer +7 commits to frontend 2 commits to home-assistant.io ") - [Josh Nichols (@technicalpickles)](https://github.com/technicalpickles "28 total commits to the Home Assistant orga: -15 commits to home-assistant +15 commits to core 13 commits to home-assistant.io ") - [Josh Shoemaker (@shoejosh)](https://github.com/shoejosh "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [Josh Wright (@JshWright)](https://github.com/JshWright "30 total commits to the Home Assistant orga: -21 commits to home-assistant +21 commits to core 8 commits to home-assistant.io 1 commit to python-openzwave ") @@ -6230,7 +7667,7 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Joshi (@Joshi425)](https://github.com/Joshi425 "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Joshua (@JoshuaGarrison27)](https://github.com/JoshuaGarrison27 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -6244,20 +7681,36 @@ This page contains a list of people who have contributed in one way or another t - [José A\. Jiménez (@jcampoy)](https://github.com/jcampoy "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") +- [joth76 (@joth76)](https://github.com/joth76 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [jowieweb (@jowieweb)](https://github.com/jowieweb "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [João Gabriel (@joogps)](https://github.com/joogps "10 total commits to the Home Assistant orga: +4 commits to core +3 commits to home-assistant.io +1 commit to companion.home-assistant +1 commit to developers.home-assistant +1 commit to brands +") - [jpcomtois (@jpcomtois)](https://github.com/jpcomtois "1 total commits to the Home Assistant orga: 1 commit to libcoap ") - [Jpsy (@Jpsy)](https://github.com/Jpsy "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [jrester (@jrester)](https://github.com/jrester "10 total commits to the Home Assistant orga: +10 commits to core +") +- [JRK (@jr-k)](https://github.com/jr-k "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [jschwalbe (@jschwalbe)](https://github.com/jschwalbe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [jshore1296 (@jshore1296)](https://github.com/jshore1296 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [JSprengard (@JSprengard)](https://github.com/JSprengard "1 total commits to the Home Assistant orga: @@ -6270,17 +7723,18 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [jtscott (@jtscott)](https://github.com/jtscott "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [ju (@delphiki)](https://github.com/delphiki "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Juan (@JuanMTech)](https://github.com/JuanMTech "1 total commits to the Home Assistant orga: +- [Juan (@JuanMTech)](https://github.com/JuanMTech "4 total commits to the Home Assistant orga: +2 commits to hassio-addons +2 commits to home-assistant.io +") +- [Juan Manuel Rey (@bulju)](https://github.com/bulju "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Juan Manuel Combetto (@omniwired)](https://github.com/omniwired "1 total commits to the Home Assistant orga: -1 commit to appdaemon -") - [Juan Martin (@tinchox5)](https://github.com/tinchox5 "1 total commits to the Home Assistant orga: 1 commit to home-assistant-js-websocket ") @@ -6291,57 +7745,64 @@ This page contains a list of people who have contributed in one way or another t 12 commits to home-assistant.io 8 commits to open-zwave 1 commit to python-openzwave -1 commit to home-assistant +1 commit to core ") - [Juggels (@Juggels)](https://github.com/Juggels "11 total commits to the Home Assistant orga: -7 commits to home-assistant +7 commits to core 4 commits to home-assistant.io ") - [juggie (@juggie)](https://github.com/juggie "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Juha Niemi (@juhaniemi)](https://github.com/juhaniemi "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [julesverhaeren (@julesverhaeren)](https://github.com/julesverhaeren "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Julian (@thejacko12354)](https://github.com/thejacko12354 "2 total commits to the Home Assistant orga: +1 commit to home-assistant.io +1 commit to core +") - [Julian Kaffke (@jaykay)](https://github.com/jaykay "1 total commits to the Home Assistant orga: 1 commit to hassio-addons ") - [Julian Kahnert (@JulianKahnert)](https://github.com/JulianKahnert "7 total commits to the Home Assistant orga: 4 commits to home-assistant.io -3 commits to home-assistant +3 commits to core ") - [Julian Knauer (@jaypikay)](https://github.com/jaypikay "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Julian Schiavo (@julianschiavo)](https://github.com/julianschiavo "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Julien Brochet (@aerialls)](https://github.com/aerialls "10 total commits to the Home Assistant orga: -8 commits to home-assistant +- [Julian Waller (@Julusian)](https://github.com/Julusian "1 total commits to the Home Assistant orga: +1 commit to home-assistant-js-websocket +") +- [Julien Brochet (@aerialls)](https://github.com/aerialls "11 total commits to the Home Assistant orga: +9 commits to core 2 commits to home-assistant.io ") - [Julien Danjou (@jd)](https://github.com/jd "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Julien Debaru (@Debaru)](https://github.com/Debaru "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Julien Roy (@royto)](https://github.com/royto "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Julien Wajsberg (@julienw)](https://github.com/julienw "8 total commits to the Home Assistant orga: 8 commits to open-zwave ") -- [Julius Mittenzwei (@Julius2342)](https://github.com/Julius2342 "40 total commits to the Home Assistant orga: -32 commits to home-assistant +- [Julius Mittenzwei (@Julius2342)](https://github.com/Julius2342 "42 total commits to the Home Assistant orga: +34 commits to core 8 commits to home-assistant.io ") - [jumpkick (@deftdawg)](https://github.com/deftdawg "18 total commits to the Home Assistant orga: -14 commits to home-assistant +14 commits to core 4 commits to home-assistant.io ") - [Junian Triajianto (@junian)](https://github.com/junian "1 total commits to the Home Assistant orga: @@ -6351,54 +7812,64 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io ") - [Jurriaan Pruis (@jurriaan)](https://github.com/jurriaan "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Jussi Vatjus\-Anttila (@jupe)](https://github.com/jupe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Justin Bassett (@JBassett)](https://github.com/JBassett "6 total commits to the Home Assistant orga: -2 commits to home-assistant.io -1 commit to home-assistant-polymer -1 commit to developers.home-assistant -1 commit to home-assistant-android -1 commit to home-assistant +- [Justin (@KC1KAD)](https://github.com/KC1KAD "1 total commits to the Home Assistant orga: +1 commit to 1password-teams-open-source ") -- [Justin Dray (@justin8)](https://github.com/justin8 "9 total commits to the Home Assistant orga: -7 commits to home-assistant.io -2 commits to home-assistant +- [Justin Bassett (@JBassett)](https://github.com/JBassett "135 total commits to the Home Assistant orga: +109 commits to android +19 commits to mobile-apps-fcm-push +3 commits to core +2 commits to home-assistant.io +1 commit to frontend +1 commit to developers.home-assistant +") +- [Justin Berstler (@jberstler)](https://github.com/jberstler "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Justin Dray (@justin8)](https://github.com/justin8 "10 total commits to the Home Assistant orga: +8 commits to home-assistant.io +2 commits to core ") - [Justin Good (@justingood)](https://github.com/justingood "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Justin Hammond (@Fishwaldo)](https://github.com/Fishwaldo "1219 total commits to the Home Assistant orga: -1219 commits to open-zwave +- [Justin Hammond (@Fishwaldo)](https://github.com/Fishwaldo "1220 total commits to the Home Assistant orga: +1220 commits to open-zwave ") -- [Justin Harper (@KC1KAD)](https://github.com/KC1KAD "1 total commits to the Home Assistant orga: -1 commit to 1password-teams-open-source -") -- [Justin Hayes (@GussyH)](https://github.com/GussyH "8 total commits to the Home Assistant orga: +- [Justin Hayes (@GussyH)](https://github.com/GussyH "7 total commits to the Home Assistant orga: 7 commits to hadashboard -1 commit to appdaemon ") - [Justin Huff (@jjhuff)](https://github.com/jjhuff "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [Justin Loutsenhizer (@jloutsenhizer)](https://github.com/jloutsenhizer "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Justin Otherguy (@justinotherguy)](https://github.com/justinotherguy "1 total commits to the Home Assistant orga: -1 commit to hassos +1 commit to operating-system ") -- [Justin Vanderhooft (@vanstinator)](https://github.com/vanstinator "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Justin Paupore (@blueshiftlabs)](https://github.com/blueshiftlabs "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Justin Vallelonga (@jlvallelonga)](https://github.com/jlvallelonga "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Justin Vanderhooft (@vanstinator)](https://github.com/vanstinator "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to wheels-custom-integrations ") - [Justin Weberg (@justweb1)](https://github.com/justweb1 "28 total commits to the Home Assistant orga: -13 commits to home-assistant-polymer +13 commits to frontend 7 commits to hassbot -4 commits to home-assistant +4 commits to core 2 commits to home-assistant.io 1 commit to home-assistant-js -1 commit to hassio +1 commit to supervisor ") - [JustinDwy (@JustinDwy)](https://github.com/JustinDwy "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -6407,11 +7878,11 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Justyn Shull (@justyns)](https://github.com/justyns "7 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 1 commit to home-assistant.io ") -- [jvannoyx4 (@jvannoyx4)](https://github.com/jvannoyx4 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [jvannoyx4 (@jvannoyx4)](https://github.com/jvannoyx4 "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [jvimont (@jvimont)](https://github.com/jvimont "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -6421,45 +7892,63 @@ This page contains a list of people who have contributed in one way or another t ") - [jwater7 (@jwater7)](https://github.com/jwater7 "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core +") +- [jwin32 (@jwin32)](https://github.com/jwin32 "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant ") - [jxwolstenholme (@jxwolstenholme)](https://github.com/jxwolstenholme "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [jyrki69 (@jyrki69)](https://github.com/jyrki69 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jérémie Klein (@grm)](https://github.com/grm "1 total commits to the Home Assistant orga: -1 commit to appdaemon +- [Jérémie Klein (@grm)](https://github.com/grm "3 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +1 commit to brands +") +- [Jérémy Lemaire (@jeremy-lemaire)](https://github.com/jeremy-lemaire "1 total commits to the Home Assistant orga: +1 commit to companion.home-assistant ") - [Jérôme W (@RomRider)](https://github.com/RomRider "4 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to home-assistant-polymer +2 commits to core +1 commit to frontend 1 commit to home-assistant.io ") -- [Jürgen Haas (@jurgenhaas)](https://github.com/jurgenhaas "1 total commits to the Home Assistant orga: +- [Jörg Thalheim (@Mic92)](https://github.com/Mic92 "4 total commits to the Home Assistant orga: +3 commits to core +1 commit to android +") +- [Jürgen Haas (@jurgenhaas)](https://github.com/jurgenhaas "3 total commits to the Home Assistant orga: +2 commits to core 1 commit to home-assistant.io ") - [Jürgen W (@jurgenweber)](https://github.com/jurgenweber "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [k2v1n58 (@k2v1n58)](https://github.com/k2v1n58 "1 total commits to the Home Assistant orga: +1 commit to core +") - [Ka (@KaSt)](https://github.com/KaSt "4 total commits to the Home Assistant orga: 4 commits to open-zwave ") - [Kacper Krupa (@pagenoare)](https://github.com/pagenoare "2 total commits to the Home Assistant orga: 1 commit to developers.home-assistant -1 commit to home-assistant +1 commit to core ") - [Kaelig Deloumeau\-Prigent (@kaelig)](https://github.com/kaelig "1 total commits to the Home Assistant orga: 1 commit to gu-who ") - [Kai (@luxus)](https://github.com/luxus "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") -- [KaiboshOz (@KaiboshOz)](https://github.com/KaiboshOz "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Kai Willadsen (@kaiw)](https://github.com/kaiw "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") +- [KaiboshOz (@KaiboshOz)](https://github.com/KaiboshOz "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io ") - [kaiomatico (@kaiomatico)](https://github.com/kaiomatico "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -6479,88 +7968,114 @@ This page contains a list of people who have contributed in one way or another t - [Kame (@tobiasgraf)](https://github.com/tobiasgraf "14 total commits to the Home Assistant orga: 14 commits to open-zwave ") -- [Kamil Warguła (@quamilek)](https://github.com/quamilek "25 total commits to the Home Assistant orga: -24 commits to home-assistant-cli -1 commit to home-assistant +- [Kamil Warguła (@quamilek)](https://github.com/quamilek "1 total commits to the Home Assistant orga: +1 commit to core ") -- [Kanga\-Who (@Kanga-Who)](https://github.com/Kanga-Who "1 total commits to the Home Assistant orga: +- [Kanga\-Who (@Kanga-Who)](https://github.com/Kanga-Who "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io +") +- [Kanishka Samarasinghe (@Kanishkaz)](https://github.com/Kanishkaz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Kareem Straker (@KptnKMan)](https://github.com/KptnKMan "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Kareem Sultan (@kareem613)](https://github.com/kareem613 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Karen Goode (@kfgoode)](https://github.com/kfgoode "5 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 1 commit to home-assistant.io ") - [Karim Geiger (@KarimGeiger)](https://github.com/KarimGeiger "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Karim Roukoz (@kkr16)](https://github.com/kkr16 "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core +") +- [Karl (@KarlKl)](https://github.com/KarlKl "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to brands ") - [Karl Kihlström (@kalkih)](https://github.com/kalkih "6 total commits to the Home Assistant orga: -4 commits to home-assistant-polymer +4 commits to frontend 2 commits to home-assistant.io ") - [karlkar (@karlkar)](https://github.com/karlkar "18 total commits to the Home Assistant orga: -13 commits to home-assistant +13 commits to core 5 commits to home-assistant.io ") +- [Karol Babioch (@kbabioch)](https://github.com/kbabioch "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Karsten Nerdinger (@Piratonym)](https://github.com/Piratonym "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core +") +- [Karthikeyan Singaravelan (@tirkarthi)](https://github.com/tirkarthi "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Kasper Kirkegaard (@KasperLK)](https://github.com/KasperLK "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io ") - [kaustubhphatak (@kaustubhphatak)](https://github.com/kaustubhphatak "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") -- [kbickar (@kbickar)](https://github.com/kbickar "17 total commits to the Home Assistant orga: -12 commits to home-assistant -5 commits to home-assistant.io +- [kbickar (@kbickar)](https://github.com/kbickar "18 total commits to the Home Assistant orga: +12 commits to core +6 commits to home-assistant.io ") - [KD4SIR (@scotthibbs)](https://github.com/scotthibbs "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Kdemontf (@Kdemontf)](https://github.com/Kdemontf "1 total commits to the Home Assistant orga: +- [Kdemontf (@Kdemontf)](https://github.com/Kdemontf "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") +- [kdhoermann (@kdhoermann)](https://github.com/kdhoermann "1 total commits to the Home Assistant orga: +1 commit to operating-system +") - [kdvlr (@kdvlr)](https://github.com/kdvlr "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Keaton Taylor (@keatontaylor)](https://github.com/keatontaylor "7 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 3 commits to home-assistant.io ") +- [keeperofdakeys (@keeperofdakeys)](https://github.com/keeperofdakeys "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Kees Schollaart (@keesschollaart81)](https://github.com/keesschollaart81 "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [keesak (@cdkonecny)](https://github.com/cdkonecny "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Keiran S (@keirans)](https://github.com/keirans "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Keith (@seedzero)](https://github.com/seedzero "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [keith (@afex)](https://github.com/afex "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Keith Lamprecht (@Nixon506E)](https://github.com/Nixon506E "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Keith Bentrup (@keithbentrup)](https://github.com/keithbentrup "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") -- [Keith Pine (@kpine)](https://github.com/kpine "8 total commits to the Home Assistant orga: +- [Keith Lamprecht (@Nixon506E)](https://github.com/Nixon506E "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Keith Pine (@kpine)](https://github.com/kpine "10 total commits to the Home Assistant orga: 5 commits to home-assistant.io +3 commits to open-zwave 1 commit to developers.home-assistant -1 commit to open-zwave -1 commit to home-assistant +1 commit to core ") - [Kelly Burke (@klyburke)](https://github.com/klyburke "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source @@ -6572,18 +8087,23 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Ken Davidson (@kwdavidson)](https://github.com/kwdavidson "15 total commits to the Home Assistant orga: -13 commits to home-assistant.io -2 commits to appdaemon +15 commits to home-assistant.io ") -- [kennedyshead (@kennedyshead)](https://github.com/kennedyshead "54 total commits to the Home Assistant orga: -49 commits to home-assistant -5 commits to home-assistant.io +- [Kendell R (@KTibow)](https://github.com/KTibow "10 total commits to the Home Assistant orga: +8 commits to home-assistant.io +1 commit to developers.home-assistant +1 commit to core +") +- [kennedyshead (@kennedyshead)](https://github.com/kennedyshead "60 total commits to the Home Assistant orga: +53 commits to core +6 commits to home-assistant.io +1 commit to brands ") - [Kenneth Lavrsen (@KennethLavrsen)](https://github.com/KennethLavrsen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Kenny Millington (@kmdm)](https://github.com/kmdm "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Kent Fenwick (@kent)](https://github.com/kent "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -6591,22 +8111,28 @@ This page contains a list of people who have contributed in one way or another t - [Kent Hua (@kenthua)](https://github.com/kenthua "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [kentloving (@kentloving)](https://github.com/kentloving "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [kernehed (@kernehed)](https://github.com/kernehed "11 total commits to the Home Assistant orga: 7 commits to home-assistant.io -4 commits to home-assistant-polymer +4 commits to frontend ") - [Kerwin Bryant (@ileler)](https://github.com/ileler "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") +- [Kerwood (@Kerwood)](https://github.com/Kerwood "1 total commits to the Home Assistant orga: +1 commit to core +") - [Ketil Moland Olsen (@ketilmo)](https://github.com/ketilmo "11 total commits to the Home Assistant orga: 11 commits to home-assistant.io ") - [kevank (@kevank)](https://github.com/kevank "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Kevin (@Mister-Espria)](https://github.com/Mister-Espria "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Kevin (@roofuskit)](https://github.com/roofuskit "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -6620,83 +8146,96 @@ This page contains a list of people who have contributed in one way or another t - [Kevin Duong (@kevinduong)](https://github.com/kevinduong "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Kevin Eifinger (@eifinger)](https://github.com/eifinger "10 total commits to the Home Assistant orga: -6 commits to home-assistant -2 commits to home-assistant.io -1 commit to appdaemon -1 commit to custom-components-wheels +- [Kevin Eifinger (@eifinger)](https://github.com/eifinger "22 total commits to the Home Assistant orga: +12 commits to core +5 commits to home-assistant.io +2 commits to developers.home-assistant +2 commits to wheels-custom-integrations +1 commit to brands ") - [Kevin Fowlks (@kfowlks)](https://github.com/kfowlks "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Kevin Fronczak (@fronzbot)](https://github.com/fronzbot "47 total commits to the Home Assistant orga: -31 commits to home-assistant -16 commits to home-assistant.io +- [Kevin Fronczak (@fronzbot)](https://github.com/fronzbot "60 total commits to the Home Assistant orga: +41 commits to core +19 commits to home-assistant.io ") - [Kevin Gisi (@gisikw)](https://github.com/gisikw "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") - [Kevin Goff (@kevindgoff)](https://github.com/kevindgoff "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Kevin Gottsman (@gottsman)](https://github.com/gottsman "9 total commits to the Home Assistant orga: 8 commits to home-assistant.io -1 commit to home-assistant +1 commit to core +") +- [Kevin Haffner (@khaffner)](https://github.com/khaffner "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Kevin Köck (@kevinkk525)](https://github.com/kevinkk525 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Kevin Lee (@kevineriklee)](https://github.com/kevineriklee "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Kevin McCormack (@HarlemSquirrel)](https://github.com/HarlemSquirrel "6 total commits to the Home Assistant orga: -4 commits to home-assistant -2 commits to home-assistant.io +- [Kevin McCormack (@HarlemSquirrel)](https://github.com/HarlemSquirrel "11 total commits to the Home Assistant orga: +6 commits to core +4 commits to home-assistant.io +1 commit to brands ") -- [Kevin Raddatz (@kraddatz)](https://github.com/kraddatz "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Kevin Raddatz (@kevinraddatz)](https://github.com/kevinraddatz "2 total commits to the Home Assistant orga: +2 commits to core ") - [Kevin Schlosser (@kdschlosser)](https://github.com/kdschlosser "8 total commits to the Home Assistant orga: 8 commits to python-openzwave ") - [Kevin Siml (@appzer)](https://github.com/appzer "7 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 3 commits to home-assistant.io ") +- [Kevin T\. Berstene (@KBerstene)](https://github.com/KBerstene "8 total commits to the Home Assistant orga: +8 commits to android +") - [Kevin Tawaststjerna (@ktawaststjerna)](https://github.com/ktawaststjerna "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Kevin Tuhumury (@kevintuhumury)](https://github.com/kevintuhumury "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [kevinpanaro (@kevinpanaro)](https://github.com/kevinpanaro "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [kevjs1982 (@kevjs1982)](https://github.com/kevjs1982 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Kevyn Bruyere (@kevynb)](https://github.com/kevynb "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") - [Keyasha Brothern (@KMBrothern)](https://github.com/KMBrothern "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") - [kfcook (@kfcook)](https://github.com/kfcook "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [kgalilio (@kgalilio)](https://github.com/kgalilio "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Khalid (@GotoCode)](https://github.com/GotoCode "5 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 1 commit to home-assistant.io ") -- [Khole (@KJonline)](https://github.com/KJonline "13 total commits to the Home Assistant orga: -8 commits to home-assistant +- [Khole (@KJonline)](https://github.com/KJonline "14 total commits to the Home Assistant orga: +8 commits to core 5 commits to home-assistant.io +1 commit to wheels-custom-integrations ") -- [Kim Frellsen (@kimfrellsen)](https://github.com/kimfrellsen "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Kim Frellsen (@kimfrellsen)](https://github.com/kimfrellsen "3 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core 1 commit to home-assistant.io ") - [kimvonmullen (@kimvonmullen)](https://github.com/kimvonmullen "2 total commits to the Home Assistant orga: @@ -6711,11 +8250,13 @@ This page contains a list of people who have contributed in one way or another t - [kireyeu (@kireyeu)](https://github.com/kireyeu "4 total commits to the Home Assistant orga: 4 commits to home-assistant-notebooks ") -- [Kit Klein (@kit-klein)](https://github.com/kit-klein "1 total commits to the Home Assistant orga: +- [Kit Klein (@kit-klein)](https://github.com/kit-klein "20 total commits to the Home Assistant orga: +14 commits to core +5 commits to home-assistant.io 1 commit to developers.home-assistant ") - [kitcorey (@kitcorey)](https://github.com/kitcorey "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Kitti L (@Kiaaz)](https://github.com/Kiaaz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -6724,83 +8265,112 @@ 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 orga: -5 commits to home-assistant 5 commits to home-assistant.io -2 commits to home-assistant-polymer +5 commits to core +2 commits to frontend ") -- [Klaas Schoute (@klaasnicolaas)](https://github.com/klaasnicolaas "553 total commits to the Home Assistant orga: -543 commits to home-assistant.io +- [Klaas Schoute (@klaasnicolaas)](https://github.com/klaasnicolaas "561 total commits to the Home Assistant orga: +549 commits to home-assistant.io 3 commits to developers.home-assistant 2 commits to hassio-addons -2 commits to home-assistant +2 commits to alerts.home-assistant.io +2 commits to core +1 commit to android 1 commit to people 1 commit to probot-home-assistant -1 commit to alerts.home-assistant.io ") -- [Klaudiusz Staniek (@kstaniek)](https://github.com/kstaniek "7 total commits to the Home Assistant orga: -5 commits to home-assistant +- [Klaudiusz Staniek (@kstaniek)](https://github.com/kstaniek "8 total commits to the Home Assistant orga: +5 commits to core 2 commits to home-assistant.io -") -- [Klaus (@k-laus)](https://github.com/k-laus "1 total commits to the Home Assistant orga: -1 commit to appdaemon +1 commit to supervisor ") - [kllngtme (@kllngtme)](https://github.com/kllngtme "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [kloggy (@kloggy)](https://github.com/kloggy "4 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [kloggy (@kloggy)](https://github.com/kloggy "5 total commits to the Home Assistant orga: +5 commits to home-assistant.io +") +- [Knapoc (@Knapoc)](https://github.com/Knapoc "5 total commits to the Home Assistant orga: +5 commits to core ") - [knottyau75 (@knottyau75)](https://github.com/knottyau75 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Kocsen Chung (@kocsenc)](https://github.com/kocsenc "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Koen Ekelschot (@peckham)](https://github.com/peckham "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Koen Kanters (@Koenkk)](https://github.com/Koenkk "1 total commits to the Home Assistant orga: +- [Koen Kanters (@Koenkk)](https://github.com/Koenkk "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [koen01 (@01koen)](https://github.com/01koen "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Kolja Windeler (@KoljaWindeler)](https://github.com/KoljaWindeler "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Konpon96 (@Konpon96)](https://github.com/Konpon96 "1 total commits to the Home Assistant orga: +1 commit to operating-system +") +- [Konstantin (@konstantib)](https://github.com/konstantib "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [koen01 (@koen01)](https://github.com/koen01 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Konstantin Antselovich (@kantselovich)](https://github.com/kantselovich "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io ") - [Konstantin Belyalov (@belyalov)](https://github.com/belyalov "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +1 commit to home-assistant.io +") +- [Konsts (@Konsts)](https://github.com/Konsts "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") - [koolsb (@koolsb)](https://github.com/koolsb "6 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 2 commits to home-assistant.io ") - [koomik (@koomik)](https://github.com/koomik "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [kophinos (@kophinos)](https://github.com/kophinos "1 total commits to the Home Assistant orga: +- [kophinos (@kphs)](https://github.com/kphs "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [koreth (@koreth)](https://github.com/koreth "6 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core 1 commit to home-assistant.io ") - [Kory Prince (@korylprince)](https://github.com/korylprince "4 total commits to the Home Assistant orga: -4 commits to home-assistant-polymer +4 commits to frontend ") - [Krasimir Chariyski (@Chariyski)](https://github.com/Chariyski "5 total commits to the Home Assistant orga: 4 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Krasimir Zhelev (@zhelev)](https://github.com/zhelev "5 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to netdisco 1 commit to home-assistant.io ") - [kreegahbundolo (@kreegahbundolo)](https://github.com/kreegahbundolo "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +1 commit to home-assistant.io +") +- [Kris Bennett (@i00)](https://github.com/i00 "6 total commits to the Home Assistant orga: +5 commits to core 1 commit to home-assistant.io ") - [Kris Molendyke (@krismolendyke)](https://github.com/krismolendyke "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") +- [Krisjanis Lejejs (@klejejs)](https://github.com/klejejs "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [Krisjanis Rijnieks (@kr15h)](https://github.com/kr15h "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") @@ -6818,44 +8388,57 @@ This page contains a list of people who have contributed in one way or another t 1 commit to hassio-addons ") - [krygal (@krygal)](https://github.com/krygal "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [ktnrg45 (@ktnrg45)](https://github.com/ktnrg45 "28 total commits to the Home Assistant orga: -22 commits to home-assistant -4 commits to home-assistant.io -1 commit to home-assistant-polymer +- [ktnrg45 (@ktnrg45)](https://github.com/ktnrg45 "36 total commits to the Home Assistant orga: +28 commits to core +6 commits to home-assistant.io 1 commit to developers.home-assistant +1 commit to frontend +") +- [kuchel77 (@kuchel77)](https://github.com/kuchel77 "4 total commits to the Home Assistant orga: +2 commits to home-assistant.io +2 commits to core +") +- [Kumar Gala (@galak)](https://github.com/galak "1 total commits to the Home Assistant orga: +1 commit to core ") - [Kumar Gaurav Pandey (@gaurav1911)](https://github.com/gaurav1911 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [kunago (@kunago)](https://github.com/kunago "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [kurniawan77 (@kurniawan77)](https://github.com/kurniawan77 "1 total commits to the Home Assistant orga: +1 commit to core ") - [Kurt McKee (@kurtmckee)](https://github.com/kurtmckee "260 total commits to the Home Assistant orga: 260 commits to feedparser ") - [kvanhoorn (@kvanhoorn)](https://github.com/kvanhoorn "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Kyle Gill (@gillkyle)](https://github.com/gillkyle "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") -- [Kyle Gordon (@kylegordon)](https://github.com/kylegordon "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Kyle Gordon (@kylegordon)](https://github.com/kylegordon "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io ") -- [Kyle Hendricks (@kylehendricks)](https://github.com/kylehendricks "8 total commits to the Home Assistant orga: -6 commits to home-assistant +- [Kyle Hendricks (@kylehendricks)](https://github.com/kylehendricks "10 total commits to the Home Assistant orga: +8 commits to core 1 commit to open-zwave 1 commit to home-assistant.io ") +- [Kyle McNally (@Sparticuz)](https://github.com/Sparticuz "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Kyle Niewiada (@aav7fl)](https://github.com/aav7fl "6 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 2 commits to home-assistant.io ") - [Kyle Pinette (@sowelie)](https://github.com/sowelie "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Kyle R (@qcryptic)](https://github.com/qcryptic "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -6866,39 +8449,53 @@ This page contains a list of people who have contributed in one way or another t - [kylerw (@kylerw)](https://github.com/kylerw "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [L (@lance36)](https://github.com/lance36 "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io -") -- [labrunning (@labrunning)](https://github.com/labrunning "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [labrunning (@labrunning)](https://github.com/labrunning "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [Lado Kumsiashvili (@herrlado)](https://github.com/herrlado "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [lamiskin (@lamiskin)](https://github.com/lamiskin "6 total commits to the Home Assistant orga: -4 commits to home-assistant.io -2 commits to home-assistant +- [lambtho (@lambtho12)](https://github.com/lambtho12 "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") +- [lamiskin (@lamiskin)](https://github.com/lamiskin "7 total commits to the Home Assistant orga: +5 commits to home-assistant.io +2 commits to core ") - [Lance Haynie (@lancehaynie)](https://github.com/lancehaynie "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Lance McCarthy (@LanceMcCarthy)](https://github.com/LanceMcCarthy "4 total commits to the Home Assistant orga: +3 commits to brands +1 commit to home-assistant.io +") - [Lance Moss (@mossyhub)](https://github.com/mossyhub "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [lance36 (@lance36)](https://github.com/lance36 "2 total commits to the Home Assistant orga: +1 commit to home-assistant.io +1 commit to core +") +- [lancer73 (@lancer73)](https://github.com/lancer73 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Landrash (@Landrash)](https://github.com/Landrash "327 total commits to the Home Assistant orga: +199 commits to hassbian-scripts +75 commits to home-assistant.io +48 commits to pi-gen +4 commits to core +1 commit to frontend +") - [lapy (@lapy)](https://github.com/lapy "5 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io ") - [Laqoore (@Laqoore)](https://github.com/Laqoore "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Lars Alexander Blumberg (@larsblumberg)](https://github.com/larsblumberg "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Lars Englund (@larsenglund)](https://github.com/larsenglund "1 total commits to the Home Assistant orga: -1 commit to appdaemon -") - [Lars Hagström (@DonOregano)](https://github.com/DonOregano "1 total commits to the Home Assistant orga: 1 commit to pyharmony ") @@ -6906,18 +8503,26 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Lars Lydersen (@larsvinc)](https://github.com/larsvinc "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [Lars Marowsky\-Brée (@l-mb)](https://github.com/l-mb "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Lars\-P (@Lars-P)](https://github.com/Lars-P "1 total commits to the Home Assistant orga: +1 commit to core +") - [Larsen Vallecillo (@larsenv)](https://github.com/larsenv "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [Lasse Korpela (@bobotus)](https://github.com/bobotus "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Laszlo Jakab (@laszlojakab)](https://github.com/laszlojakab "5 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +2 commits to brands +1 commit to core +") - [LaurensBot (@LaurensBot)](https://github.com/LaurensBot "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -6927,6 +8532,10 @@ This page contains a list of people who have contributed in one way or another t - [LavaGlass (@LavaGlass)](https://github.com/LavaGlass "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [lawtancool (@lawtancool)](https://github.com/lawtancool "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to brands +") - [Lazar Obradovic (@lobradov)](https://github.com/lobradov "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -6940,21 +8549,24 @@ This page contains a list of people who have contributed in one way or another t - [lclc98 (@lclc98)](https://github.com/lclc98 "1 total commits to the Home Assistant orga: 1 commit to hassio-addons ") -- [leaen (@leaen)](https://github.com/leaen "1 total commits to the Home Assistant orga: +- [LE LAY Olivier (@liollury)](https://github.com/liollury "1 total commits to the Home Assistant orga: +1 commit to core +") +- [leaen (@mossbanay)](https://github.com/mossbanay "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Leandro (@leofuscaldi)](https://github.com/leofuscaldi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Leandro Loureiro (@lealoureiro)](https://github.com/lealoureiro "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Lechu (@ShadeByLesio)](https://github.com/ShadeByLesio "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [led\-spb (@led-spb)](https://github.com/led-spb "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Ledernacken6 (@Ledernacken6)](https://github.com/Ledernacken6 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -6963,10 +8575,13 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io ") - [legacycode (@legacycode)](https://github.com/legacycode "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Leif (@leifclaesson)](https://github.com/leifclaesson "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [lekobob (@lekobob)](https://github.com/lekobob "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [lenardteri (@lenardteri)](https://github.com/lenardteri "1 total commits to the Home Assistant orga: 1 commit to python-openzwave @@ -6974,54 +8589,72 @@ This page contains a list of people who have contributed in one way or another t - [Lennart Bernhardt (@LennyPenny)](https://github.com/LennyPenny "1 total commits to the Home Assistant orga: 1 commit to hassio-build ") +- [Lennart Henke (@L-Henke)](https://github.com/L-Henke "2 total commits to the Home Assistant orga: +2 commits to core +") - [lennartk (@lennart-k)](https://github.com/lennart-k "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [LeoCal (@LeoCal)](https://github.com/LeoCal "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [LeoCal (@LeoCal)](https://github.com/LeoCal "3 total commits to the Home Assistant orga: +3 commits to core ") - [LeoDJ (@LeoDJ)](https://github.com/LeoDJ "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Leon99 (@Leon99)](https://github.com/Leon99 "3 total commits to the Home Assistant orga: +- [Leon Knauer (@reuank)](https://github.com/reuank "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Leon99 (@Leon99)](https://github.com/Leon99 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to appdaemon ") - [Leonardo Bellettini (@leobel96)](https://github.com/leobel96 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Leonardo Brondani Schenkel (@lbschenkel)](https://github.com/lbschenkel "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [Leonardo Merza (@ljmerza)](https://github.com/ljmerza "14 total commits to the Home Assistant orga: -7 commits to home-assistant +7 commits to core 4 commits to home-assistant.io 2 commits to developers.home-assistant -1 commit to home-assistant-polymer +1 commit to frontend ") - [Leonardo Saraiva (@vyper)](https://github.com/vyper "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [LeonCB (@LeonCB)](https://github.com/LeonCB "2 total commits to the Home Assistant orga: +1 commit to brands +1 commit to home-assistant.io +") - [Leothlon (@leothlon)](https://github.com/leothlon "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core +1 commit to home-assistant.io +") +- [Leroy Shirto (@leroyshirto)](https://github.com/leroyshirto "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") - [leschekfm (@leschekfm)](https://github.com/leschekfm "3 total commits to the Home Assistant orga: 3 commits to hassbian-scripts ") - [Lev Aronsky (@aronsky)](https://github.com/aronsky "17 total commits to the Home Assistant orga: -14 commits to home-assistant +14 commits to core 3 commits to home-assistant.io ") - [Levi Govaerts (@legovaer)](https://github.com/legovaer "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [lewei50 (@lewei50)](https://github.com/lewei50 "6 total commits to the Home Assistant orga: +3 commits to home-assistant.io +2 commits to core +1 commit to brands ") - [Lewis Juggins (@lwis)](https://github.com/lwis "71 total commits to the Home Assistant orga: -56 commits to home-assistant +56 commits to core 13 commits to home-assistant.io -1 commit to home-assistant-polymer 1 commit to people +1 commit to frontend ") - [Lewys Martin (@CountParadox)](https://github.com/CountParadox "7 total commits to the Home Assistant orga: 7 commits to home-assistant.io @@ -7029,25 +8662,28 @@ This page contains a list of people who have contributed in one way or another t - [leytpapas (@leytpapas)](https://github.com/leytpapas "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [lhanneus (@lhanneus)](https://github.com/lhanneus "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Li\-Wen Yip (@liwenyip)](https://github.com/liwenyip "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [liaanvdm (@liaanvdm)](https://github.com/liaanvdm "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [Liang Sun (@leonsim)](https://github.com/leonsim "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [libots (@libots)](https://github.com/libots "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io +- [libots (@libots)](https://github.com/libots "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to core ") - [lich (@mu4yu3)](https://github.com/mu4yu3 "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [lifeisafractal (@lifeisafractal)](https://github.com/lifeisafractal "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [lightbullet (@lightbullet)](https://github.com/lightbullet "10 total commits to the Home Assistant orga: 10 commits to open-zwave @@ -7059,31 +8695,38 @@ This page contains a list of people who have contributed in one way or another t 1 commit to 1password-teams-open-source ") - [Lincoln Kirchoff (@Kirchoff)](https://github.com/Kirchoff "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Lindsay Ward (@lindsaymarkward)](https://github.com/lindsaymarkward "23 total commits to the Home Assistant orga: -17 commits to home-assistant.io -6 commits to home-assistant +- [Lindsay Ward (@lindsaymarkward)](https://github.com/lindsaymarkward "32 total commits to the Home Assistant orga: +20 commits to home-assistant.io +9 commits to core +3 commits to developers.home-assistant +") +- [linkztream (@linkztream)](https://github.com/linkztream "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [linuxlurak (@linuxlurak)](https://github.com/linuxlurak "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io 2 commits to hadashboard ") - [linvinus (@linvinus)](https://github.com/linvinus "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [Liran BG (@liranbg)](https://github.com/liranbg "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Littlejon (@littlejon)](https://github.com/littlejon "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [lizaoreo (@lizaoreo)](https://github.com/lizaoreo "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [LJU (@LEJOUI)](https://github.com/LEJOUI "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [lolouk44 (@lolouk44)](https://github.com/lolouk44 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [lolouk44 (@lolouk44)](https://github.com/lolouk44 "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [longman391 (@longman391)](https://github.com/longman391 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -7095,11 +8738,14 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Lorenz Schmid (@lorenzschmid)](https://github.com/lorenzschmid "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Lorenzo Milesi (@maxxer)](https://github.com/maxxer "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Lorenzo (@lorenzoraimondi)](https://github.com/lorenzoraimondi "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Lorenzo Milesi (@maxxer)](https://github.com/maxxer "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [lorenzofattori (@lorenzofattori)](https://github.com/lorenzofattori "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -7109,80 +8755,83 @@ This page contains a list of people who have contributed in one way or another t ") - [Louis Matthijssen (@LouisMT)](https://github.com/LouisMT "6 total commits to the Home Assistant orga: 2 commits to pi-gen -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [Louis Orleans (@dudeofawesome)](https://github.com/dudeofawesome "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Louis\-Dominique Dubeau (@lddubeau)](https://github.com/lddubeau "3 total commits to the Home Assistant orga: +- [Louis\-Dominique Dubeau (@lddubeau)](https://github.com/lddubeau "4 total commits to the Home Assistant orga: +2 commits to core 1 commit to open-zwave -1 commit to home-assistant 1 commit to home-assistant.io ") - [Louis\-Etienne (@ledor473)](https://github.com/ledor473 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Lovro Oreskovic (@oresk)](https://github.com/oresk "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [lrmate (@lrmate)](https://github.com/lrmate "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [Luar Roji (@cyberplant)](https://github.com/cyberplant "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [LuBeDa (@lubeda)](https://github.com/lubeda "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Luc Touraille (@stilllman)](https://github.com/stilllman "5 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to netdisco 1 commit to home-assistant.io ") - [Luca Adrian Lindhorst (@lal12)](https://github.com/lal12 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Luca Angemi (@luca-angemi)](https://github.com/luca-angemi "12 total commits to the Home Assistant orga: +- [Luca Angemi (@luca-angemi)](https://github.com/luca-angemi "13 total commits to the Home Assistant orga: 6 commits to home-assistant.io -5 commits to home-assistant -1 commit to home-assistant-polymer +6 commits to core +1 commit to frontend ") - [Luca Simonetti @Nohup (@luca-simonetti)](https://github.com/luca-simonetti "1 total commits to the Home Assistant orga: -1 commit to hassio +1 commit to supervisor ") - [Luca Soldi (@LucaSoldi)](https://github.com/LucaSoldi "7 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 1 commit to home-assistant.io ") - [Luca Zimmermann (@soundstorm)](https://github.com/soundstorm "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [lucagiove (@lucagiove)](https://github.com/lucagiove "2 total commits to the Home Assistant orga: +2 commits to operating-system ") - [Lucas Nussbaum (@lnussbaum)](https://github.com/lnussbaum "26 total commits to the Home Assistant orga: 26 commits to open-zwave ") - [Luciano Colosio (@unlucio)](https://github.com/unlucio "1 total commits to the Home Assistant orga: -1 commit to hassio-installer +1 commit to supervised-installer ") - [Lucien Guimier (@guimier)](https://github.com/guimier "1 total commits to the Home Assistant orga: 1 commit to libcoap ") - [Ludovic (@ldvc)](https://github.com/ldvc "3 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer -1 commit to home-assistant +1 commit to frontend +1 commit to core 1 commit to home-assistant.io ") - [Ludovico de Nittis (@RyuzakiKK)](https://github.com/RyuzakiKK "8 total commits to the Home Assistant orga: 5 commits to home-assistant.io -3 commits to home-assistant +3 commits to core ") - [Ludwig Hubert (@lud-hu)](https://github.com/lud-hu "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Luis Martinez de Bartolome Izquierdo (@lasote)](https://github.com/lasote "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [luismonge1192 (@luismonge1192)](https://github.com/luismonge1192 "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant @@ -7191,75 +8840,87 @@ This page contains a list of people who have contributed in one way or another t 1 commit to hassio-addons ") - [Lukas Barth (@tinloaf)](https://github.com/tinloaf "39 total commits to the Home Assistant orga: -25 commits to home-assistant +25 commits to core 12 commits to home-assistant.io -2 commits to home-assistant-polymer +2 commits to frontend ") -- [Lukas Ecklmayr (@outrun0506)](https://github.com/outrun0506 "6 total commits to the Home Assistant orga: -5 commits to home-assistant.io -1 commit to home-assistant-polymer +- [Lukas Ecklmayr (@outrun0506)](https://github.com/outrun0506 "7 total commits to the Home Assistant orga: +6 commits to home-assistant.io +1 commit to frontend ") - [Lukas Hetzenecker (@lukas-hetzenecker)](https://github.com/lukas-hetzenecker "16 total commits to the Home Assistant orga: -11 commits to home-assistant +11 commits to core 5 commits to home-assistant.io ") - [Lukas Porubcan (@Luc3as)](https://github.com/Luc3as "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [Luke Armstrong (@lukearmstrong)](https://github.com/lukearmstrong "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [Luke Fritz (@lukiffer)](https://github.com/lukiffer "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [Luke Karrys (@lukekarrys)](https://github.com/lukekarrys "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Luke Pomfrey (@lpomfrey)](https://github.com/lpomfrey "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Luke Pomfrey (@lpomfrey)](https://github.com/lpomfrey "4 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io ") - [lukie80 (@lukie80)](https://github.com/lukie80 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [lunar\-consultancy (@lunar-consultancy)](https://github.com/lunar-consultancy "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [lundan (@lundan)](https://github.com/lundan "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [LuPa (@lupa18)](https://github.com/lupa18 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Lupin Demid (@lupin-de-mid)](https://github.com/lupin-de-mid "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [Luuk (@luukd)](https://github.com/luukd "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [Luuk (@Maharball1)](https://github.com/Maharball1 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Luuk Loeffen (@luuloe)](https://github.com/luuloe "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [LvivEchoes (@LvivEchoes)](https://github.com/LvivEchoes "8 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 3 commits to home-assistant.io -1 commit to home-assistant-polymer +1 commit to frontend ") - [lwad (@lwad)](https://github.com/lwad "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [lyghtnox (@lyghtnox)](https://github.com/lyghtnox "3 total commits to the Home Assistant orga: -2 commits to home-assistant.io -1 commit to home-assistant +- [LWD (@kb6673)](https://github.com/kb6673 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [lyghtnox (@lyghtnox)](https://github.com/lyghtnox "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io +1 commit to core ") - [m4dmin (@m4dmin)](https://github.com/m4dmin "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [m4tek (@m4tek)](https://github.com/m4tek "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [M\.J\. Wydra \(Jay\) (@Tediore)](https://github.com/Tediore "23 total commits to the Home Assistant orga: +19 commits to home-assistant.io +3 commits to frontend +1 commit to brands +") - [Maarten (@mvandek)](https://github.com/mvandek "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -7272,13 +8933,19 @@ This page contains a list of people who have contributed in one way or another t - [Maarten Lakerveld (@mlakerveld)](https://github.com/mlakerveld "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Maciej Bieniek (@bieniu)](https://github.com/bieniu "26 total commits to the Home Assistant orga: -19 commits to home-assistant -6 commits to home-assistant.io -1 commit to home-assistant-polymer +- [Mac\_Zhou (@mac-zhou)](https://github.com/mac-zhou "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Maciej Bieniek (@bieniu)](https://github.com/bieniu "104 total commits to the Home Assistant orga: +69 commits to core +14 commits to home-assistant.io +12 commits to frontend +7 commits to brands +2 commits to wheels-custom-integrations ") - [Maciej Sokołowski (@matemaciek)](https://github.com/matemaciek "5 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 1 commit to hassio-build ") - [Maciej Wasilak (@mwasilak)](https://github.com/mwasilak "1 total commits to the Home Assistant orga: @@ -7290,17 +8957,23 @@ This page contains a list of people who have contributed in one way or another t - [Madd\.is (@EyMaddis)](https://github.com/EyMaddis "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Madelaide (@Madelaide)](https://github.com/Madelaide "1 total commits to the Home Assistant orga: +1 commit to open-zwave +") - [Madhan Sundaram (@madhan5000)](https://github.com/madhan5000 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Madison Bullard (@madisonbullard)](https://github.com/madisonbullard "1 total commits to the Home Assistant orga: +1 commit to companion.home-assistant +") - [Magas (@magas0)](https://github.com/magas0 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Maggi Trymbill (@trymbill)](https://github.com/trymbill "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [MagicalTrev89 (@MagicalTrev89)](https://github.com/MagicalTrev89 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [MagieMalone (@MagieMalone)](https://github.com/MagieMalone "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -7309,11 +8982,11 @@ This page contains a list of people who have contributed in one way or another t 1 commit to open-zwave ") - [Magnus Brange (@brange)](https://github.com/brange "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Magnus Ihse Bursie (@magicus)](https://github.com/magicus "17 total commits to the Home Assistant orga: -9 commits to home-assistant +9 commits to core 4 commits to netdisco 3 commits to home-assistant.io 1 commit to people @@ -7328,279 +9001,339 @@ This page contains a list of people who have contributed in one way or another t 4 commits to home-assistant.io ") - [MagnusKnutas (@MagnusKnutas)](https://github.com/MagnusKnutas "29 total commits to the Home Assistant orga: -29 commits to home-assistant +29 commits to core ") - [magreen24 (@magreen24)](https://github.com/magreen24 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Mahasri Kalavala (@skalavala)](https://github.com/skalavala "36 total commits to the Home Assistant orga: 33 commits to home-assistant.io -2 commits to home-assistant +2 commits to core 1 commit to people ") - [Mahesh Subramaniya (@msubra)](https://github.com/msubra "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [maheus (@maheus)](https://github.com/maheus "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Maido Käära (@v3rm0n)](https://github.com/v3rm0n "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Maikel Punie (@Cereal2nd)](https://github.com/Cereal2nd "24 total commits to the Home Assistant orga: -16 commits to home-assistant -8 commits to home-assistant.io +- [Maikel Punie (@Cereal2nd)](https://github.com/Cereal2nd "34 total commits to the Home Assistant orga: +25 commits to core +9 commits to home-assistant.io ") - [Maikel Wever (@maikelwever)](https://github.com/maikelwever "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [MajestyIV (@MajestyIV)](https://github.com/MajestyIV "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [majstermod (@majstermod)](https://github.com/majstermod "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [majuss (@majuss)](https://github.com/majuss "9 total commits to the Home Assistant orga: -5 commits to home-assistant -4 commits to home-assistant.io +- [majuss (@majuss)](https://github.com/majuss "13 total commits to the Home Assistant orga: +7 commits to core +5 commits to home-assistant.io +1 commit to brands +") +- [MakeMeASandwich (@MakeMeASandwich)](https://github.com/MakeMeASandwich "13 total commits to the Home Assistant orga: +12 commits to core +1 commit to home-assistant.io ") - [MaKin211 (@MaKin211)](https://github.com/MaKin211 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Makrand Gupta (@makrandgupta)](https://github.com/makrandgupta "1 total commits to the Home Assistant orga: -1 commit to hassos +1 commit to operating-system ") - [Mal Curtis (@snikch)](https://github.com/snikch "5 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io ") -- [Malachi Soord (@inverse)](https://github.com/inverse "3 total commits to the Home Assistant orga: +- [Malachi Soord (@inverse)](https://github.com/inverse "6 total commits to the Home Assistant orga: 3 commits to home-assistant.io +3 commits to core ") -- [Malte Franken (@exxamalte)](https://github.com/exxamalte "81 total commits to the Home Assistant orga: -55 commits to home-assistant -19 commits to home-assistant.io -6 commits to home-assistant-polymer +- [Malcolm (@malcolmcdixon)](https://github.com/malcolmcdixon "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Malte Franken (@exxamalte)](https://github.com/exxamalte "105 total commits to the Home Assistant orga: +68 commits to core +26 commits to home-assistant.io +6 commits to frontend +4 commits to brands 1 commit to developers.home-assistant ") +- [mannte (@mannte)](https://github.com/mannte "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Manoj (@vmulpuru)](https://github.com/vmulpuru "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Manolis Chalkiadakis (@mxalk)](https://github.com/mxalk "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [manonstreet (@manonstreet)](https://github.com/manonstreet "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Mans Matulewicz (@MansM)](https://github.com/MansM "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Mans Matulewicz (@MansM)](https://github.com/MansM "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to core ") - [Manuel de la Rosa (@manuel-jrs)](https://github.com/manuel-jrs "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Manuel Díez (@manutenfruits)](https://github.com/manutenfruits "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Manuel Pietschmann (@manup)](https://github.com/manup "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to hassio-addons ") - [Manuel Zubieta (@iautom8things)](https://github.com/iautom8things "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [mar005 (@mar005)](https://github.com/mar005 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Maor (@maorcc)](https://github.com/maorcc "1 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations ") - [Marat Levit (@mlevit)](https://github.com/mlevit "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") +- [marawan31 (@marawan31)](https://github.com/marawan31 "4 total commits to the Home Assistant orga: +2 commits to frontend +1 commit to developers.home-assistant +1 commit to core +") +- [MarBra (@MarBra)](https://github.com/MarBra "1 total commits to the Home Assistant orga: +1 commit to core +") - [Marc (@marc-gist)](https://github.com/marc-gist "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Marc Egli (@frog32)](https://github.com/frog32 "12 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 3 commits to home-assistant.io -1 commit to hassio-addons-example +1 commit to addons-example ") - [Marc Forth (@mf-social)](https://github.com/mf-social "31 total commits to the Home Assistant orga: 29 commits to home-assistant.io 1 commit to fabric-home-assistant -1 commit to home-assistant +1 commit to core ") - [Marc Goodner (@robotdad)](https://github.com/robotdad "1 total commits to the Home Assistant orga: 1 commit to scenegen ") - [Marc Hörsken (@mback2k)](https://github.com/mback2k "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Marc Pabst (@marcpabst)](https://github.com/marcpabst "2 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer -1 commit to home-assistant +1 commit to frontend +1 commit to core ") - [Marc Plano\-Lesay (@Kernald)](https://github.com/Kernald "12 total commits to the Home Assistant orga: 10 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") -- [Marc Randolph (@mrand)](https://github.com/mrand "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Marc Randolph (@mrand)](https://github.com/mrand "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [Marcel (@MTRNord)](https://github.com/MTRNord "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Marcel Brückner (@marcelbrueckner)](https://github.com/marcelbrueckner "2 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend 1 commit to home-assistant.io ") - [Marcel Herd (@marcelherd)](https://github.com/marcelherd "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Marcel Holle (@multiholle)](https://github.com/multiholle "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Marcel Hoppe (@hobbypunk90)](https://github.com/hobbypunk90 "17 total commits to the Home Assistant orga: -9 commits to home-assistant +9 commits to core 8 commits to home-assistant.io ") +- [Marcel Steinbach (@mst)](https://github.com/mst "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Marcel van der Veldt (@marcelveldt)](https://github.com/marcelveldt "9 total commits to the Home Assistant orga: +9 commits to core +") - [Marcel030nl (@Marcel030nl)](https://github.com/Marcel030nl "6 total commits to the Home Assistant orga: 5 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") -- [Marcelo Moreira de Mello (@tchellomello)](https://github.com/tchellomello "160 total commits to the Home Assistant orga: -90 commits to home-assistant +- [Marcelo Moreira de Mello (@tchellomello)](https://github.com/tchellomello "165 total commits to the Home Assistant orga: +95 commits to core 67 commits to home-assistant.io -1 commit to home-assistant-assets -1 commit to home-assistant-polymer +1 commit to assets 1 commit to hassio-build +1 commit to frontend ") -- [Marcin Domański (@kabturek)](https://github.com/kabturek "6 total commits to the Home Assistant orga: -4 commits to appdaemon +- [Marcin (@merdok)](https://github.com/merdok "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Marcin Domański (@kabturek)](https://github.com/kabturek "2 total commits to the Home Assistant orga: 2 commits to developers.home-assistant ") -- [Marcin Jaworski (@yawor)](https://github.com/yawor "12 total commits to the Home Assistant orga: -12 commits to appdaemon -") - [Marcin Sędłak\-Jakubowski (@fdmarcin)](https://github.com/fdmarcin "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [MarcJenningsUK (@MarcJenningsUK)](https://github.com/MarcJenningsUK "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Marcio Granzotto Rodrigues (@marciogranzotto)](https://github.com/marciogranzotto "6 total commits to the Home Assistant orga: +5 commits to core +1 commit to android ") -- [Marco (@marconett)](https://github.com/marconett "6 total commits to the Home Assistant orga: -5 commits to appdaemon -1 commit to home-assistant.io +- [MarcJenningsUK (@MarcJenningsUK)](https://github.com/MarcJenningsUK "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") -- [Marco (@Marco98)](https://github.com/Marco98 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Marco (@Marco98)](https://github.com/Marco98 "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Marco (@marconett)](https://github.com/marconett "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Marco Bakera (@pintman)](https://github.com/pintman "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Marco Gazzola (@marcogazzola)](https://github.com/marcogazzola "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") +- [Marco H (@myxor)](https://github.com/myxor "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") - [Marco M (@ToRvaLDz)](https://github.com/ToRvaLDz "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Marco Nuñez (@setterlee)](https://github.com/setterlee "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Marco Orovecchia (@Oro)](https://github.com/Oro "14 total commits to the Home Assistant orga: -10 commits to home-assistant +10 commits to core 4 commits to home-assistant.io ") - [Marco Sirabella (@mjsir911)](https://github.com/mjsir911 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Marco Sousa (@marcomsousa)](https://github.com/marcomsousa "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [marcolertora (@marcolertora)](https://github.com/marcolertora "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [marconfus (@marconfus)](https://github.com/marconfus "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [MarcSN311 (@MarcSN311)](https://github.com/MarcSN311 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Marcus (@dgraye)](https://github.com/dgraye "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Marcus Fredlund (@mr-awk)](https://github.com/mr-awk "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [Marcus Schmidt (@mar-schmidt)](https://github.com/mar-schmidt "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Marcus Young (@myoung34)](https://github.com/myoung34 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [marecabo (@marecabo)](https://github.com/marecabo "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Marek Lewandowski (@mlewand)](https://github.com/mlewand "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [marengaz (@marengaz)](https://github.com/marengaz "1 total commits to the Home Assistant orga: +1 commit to core +") - [Marianne Hval (@mahval)](https://github.com/mahval "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend +") +- [Mariano Faraco (@mfaraco)](https://github.com/mfaraco "1 total commits to the Home Assistant orga: +1 commit to core ") - [Marijn Giesen (@marijngiesen)](https://github.com/marijngiesen "7 total commits to the Home Assistant orga: 5 commits to hadashboard 2 commits to home-assistant.io ") - [Marijn Pool (@IcyPalm)](https://github.com/IcyPalm "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [Mario Di Raimondo (@mario-tux)](https://github.com/mario-tux "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Mario Limonciello (@superm1)](https://github.com/superm1 "1 total commits to the Home Assistant orga: -1 commit to hassio-installer +- [Mario Limonciello (@superm1)](https://github.com/superm1 "2 total commits to the Home Assistant orga: +1 commit to supervised-installer +1 commit to home-assistant.io ") - [Mario Villavecchia (@lichtteil)](https://github.com/lichtteil "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [Mario Wenzel (@maweki)](https://github.com/maweki "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Marius (@ciotlosm)](https://github.com/ciotlosm "40 total commits to the Home Assistant orga: -14 commits to home-assistant-polymer +14 commits to frontend 12 commits to home-assistant.io -8 commits to home-assistant +8 commits to core 3 commits to developers.home-assistant 2 commits to ui-schema 1 commit to people ") -- [Marius (@Mariusthvdb)](https://github.com/Mariusthvdb "3 total commits to the Home Assistant orga: -2 commits to home-assistant.io -1 commit to home-assistant +- [Marius (@Mariusthvdb)](https://github.com/Mariusthvdb "18 total commits to the Home Assistant orga: +9 commits to home-assistant.io +7 commits to core +2 commits to frontend ") - [Marius Balčytis (@mariusbalcytis)](https://github.com/mariusbalcytis "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Marius Flage (@mflage)](https://github.com/mflage "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Marius Kotlarz (@kotlarz)](https://github.com/kotlarz "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +1 commit to home-assistant.io +") +- [Marius Oei (@mariusoei)](https://github.com/mariusoei "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Marius Retegan (@mretegan)](https://github.com/mretegan "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core +") +- [Mariusz Kryński (@mrk-its)](https://github.com/mrk-its "2 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core ") - [Mariusz Łuciów (@mariuszluciow)](https://github.com/mariuszluciow "5 total commits to the Home Assistant orga: -3 commits to home-assistant -1 commit to home-assistant-polymer +3 commits to core +1 commit to frontend 1 commit to home-assistant.io ") -- [mariwing (@mariwing)](https://github.com/mariwing "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [mariwing (@mariwing)](https://github.com/mariwing "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [Mark (@scmmmh)](https://github.com/scmmmh "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Mark (@markus99)](https://github.com/markus99 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Mark Grimes (@mvgrimes)](https://github.com/mvgrimes "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -7609,18 +9342,18 @@ This page contains a list of people who have contributed in one way or another t 1 commit to netdisco 1 commit to home-assistant.io ") -- [Mark Harrison (@MarkSHarrison)](https://github.com/MarkSHarrison "1 total commits to the Home Assistant orga: +- [Mark Harrison (@marksharrison)](https://github.com/marksharrison "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Mark Huson (@mehuman)](https://github.com/mehuman "11 total commits to the Home Assistant orga: 11 commits to home-assistant.io ") - [Mark Jozefiak (@ImEmJay)](https://github.com/ImEmJay "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Mark King (@vemek)](https://github.com/vemek "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Mark Lagendijk (@marklagendijk)](https://github.com/marklagendijk "2 total commits to the Home Assistant orga: 2 commits to hassbian-scripts @@ -7631,6 +9364,9 @@ This page contains a list of people who have contributed in one way or another t - [Mark Leenaerts (@mleenaerts)](https://github.com/mleenaerts "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Mark Lopez (@Silvenga)](https://github.com/Silvenga "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Mark LUCAS (@marco10024)](https://github.com/marco10024 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -7639,20 +9375,23 @@ This page contains a list of people who have contributed in one way or another t ") - [Mark Oude Veldhuis (@markoudev)](https://github.com/markoudev "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core +") +- [Mark Parker (@msp1974)](https://github.com/msp1974 "2 total commits to the Home Assistant orga: +2 commits to brands ") - [Mark Perdue (@markperdue)](https://github.com/markperdue "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [mark9white (@mark9white)](https://github.com/mark9white "1 total commits to the Home Assistant orga: -1 commit to hassio +1 commit to supervisor ") - [markcarline (@markcarline)](https://github.com/markcarline "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [markferry (@markferry)](https://github.com/markferry "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [markharleman (@markharleman)](https://github.com/markharleman "5 total commits to the Home Assistant orga: @@ -7662,59 +9401,87 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Markus (@iMarkus)](https://github.com/iMarkus "4 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to hassio +2 commits to core +1 commit to supervisor 1 commit to home-assistant.io ") - [Markus Becker (@markushx)](https://github.com/markushx "6 total commits to the Home Assistant orga: 6 commits to libcoap ") +- [Markus Bong (@2Fake)](https://github.com/2Fake "17 total commits to the Home Assistant orga: +17 commits to core +") +- [Markus Breitenberger (@breiti)](https://github.com/breiti "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Markus Haack (@mhaack)](https://github.com/mhaack "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Markus Ijäs (@mtijas)](https://github.com/mtijas "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Markus Jankowski (@SukramJ)](https://github.com/SukramJ "105 total commits to the Home Assistant orga: -76 commits to home-assistant -24 commits to home-assistant.io +- [Markus Jankowski (@SukramJ)](https://github.com/SukramJ "151 total commits to the Home Assistant orga: +109 commits to core +36 commits to home-assistant.io 3 commits to developers.home-assistant -2 commits to home-assistant-polymer +2 commits to frontend +1 commit to brands ") -- [Markus Nigbur (@mnigbur)](https://github.com/mnigbur "10 total commits to the Home Assistant orga: -6 commits to home-assistant +- [Markus Korbel (@markuskorbel)](https://github.com/markuskorbel "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Markus Meissner (@daringer)](https://github.com/daringer "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") +- [Markus Nigbur (@mnigbur)](https://github.com/mnigbur "11 total commits to the Home Assistant orga: +7 commits to core 3 commits to home-assistant.io -1 commit to home-assistant-polymer +1 commit to frontend ") - [Markus Peter (@bimbar)](https://github.com/bimbar "5 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io ") -- [Markus Pöschl (@Poeschl)](https://github.com/Poeschl "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Markus Pöschl (@Poeschl)](https://github.com/Poeschl "8 total commits to the Home Assistant orga: +4 commits to core +3 commits to home-assistant.io +1 commit to docker-base ") -- [Markus Ressel (@markusressel)](https://github.com/markusressel "7 total commits to the Home Assistant orga: +- [Markus Ressel (@markusressel)](https://github.com/markusressel "8 total commits to the Home Assistant orga: 4 commits to home-assistant.io -3 commits to home-assistant +4 commits to core ") - [Markus Stenberg (@fingon)](https://github.com/fingon "6 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core ") - [Markus Thiel (@mackelito)](https://github.com/mackelito "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [marthoc (@marthoc)](https://github.com/marthoc "34 total commits to the Home Assistant orga: -23 commits to home-assistant -6 commits to home-assistant.io +- [Marley Jaffe (@marleyjaffe)](https://github.com/marleyjaffe "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Marouane Felja (@maroil)](https://github.com/maroil "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [marthoc (@marthoc)](https://github.com/marthoc "38 total commits to the Home Assistant orga: +26 commits to core +7 commits to home-assistant.io 4 commits to open-zwave 1 commit to people ") -- [Martijn van Zal (@Martijn02)](https://github.com/Martijn02 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Martijn Baay (@baaym)](https://github.com/baaym "1 total commits to the Home Assistant orga: +1 commit to open-zwave ") -- [Martin (@crazyfx1)](https://github.com/crazyfx1 "3 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to home-assistant.io +- [Martijn van Zal (@Martijn02)](https://github.com/Martijn02 "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Martin (@crazyfx1)](https://github.com/crazyfx1 "7 total commits to the Home Assistant orga: +5 commits to core +2 commits to home-assistant.io +") +- [Martin (@xtools-at)](https://github.com/xtools-at "4 total commits to the Home Assistant orga: +4 commits to core ") - [Martin (@mrvanes)](https://github.com/mrvanes "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -7729,72 +9496,86 @@ This page contains a list of people who have contributed in one way or another t 2 commits to Iconic ") - [Martin Berg (@mbrrg)](https://github.com/mbrrg "12 total commits to the Home Assistant orga: -9 commits to home-assistant +9 commits to core 3 commits to home-assistant.io ") +- [Martin Bjeldbak Madsen (@martinbjeldbak)](https://github.com/martinbjeldbak "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Martin Brooksbank (@shutupflanders)](https://github.com/shutupflanders "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Martin Donlon (@wickerwaka)](https://github.com/wickerwaka "5 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io ") -- [Martin Eberhardt (@DarkFox)](https://github.com/DarkFox "11 total commits to the Home Assistant orga: +- [Martin Eberhardt (@DarkFox)](https://github.com/DarkFox "12 total commits to the Home Assistant orga: 7 commits to home-assistant.io -4 commits to home-assistant +5 commits to core ") - [Martin Elwin (@melwin)](https://github.com/melwin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Martin Fuchs (@fucm)](https://github.com/fucm "8 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 2 commits to home-assistant.io ") - [Martin Gafner (@mgafner)](https://github.com/mgafner "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Martin Gross (@pc-coholic)](https://github.com/pc-coholic "4 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core ") -- [Martin Hjelmare (@MartinHjelmare)](https://github.com/MartinHjelmare "224 total commits to the Home Assistant orga: -180 commits to home-assistant -36 commits to home-assistant.io -5 commits to developers.home-assistant +- [Martin Hjelmare (@MartinHjelmare)](https://github.com/MartinHjelmare "272 total commits to the Home Assistant orga: +216 commits to core +40 commits to home-assistant.io +6 commits to developers.home-assistant +4 commits to supervisor 2 commits to example-custom-config +1 commit to architecture 1 commit to people +1 commit to probot-home-assistant +1 commit to brands ") - [Martin J\. Laubach (@mjl)](https://github.com/mjl "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Martin Long (@martinlong1978)](https://github.com/martinlong1978 "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io ") - [Martin Mois (@siom79)](https://github.com/siom79 "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Martin Nöhrer (@matrixx567)](https://github.com/matrixx567 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Martin Rowan (@shortbloke)](https://github.com/shortbloke "6 total commits to the Home Assistant orga: -3 commits to home-assistant +- [Martin Rowan (@shortbloke)](https://github.com/shortbloke "7 total commits to the Home Assistant orga: +4 commits to core 3 commits to home-assistant.io ") - [Martin Tremblay (@MartyTremblay)](https://github.com/MartyTremblay "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Martin Treml (@Munsio)](https://github.com/Munsio "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Martin Vacula (@MatoKafkac)](https://github.com/MatoKafkac "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") -- [Martin Weinelt (@mweinelt)](https://github.com/mweinelt "19 total commits to the Home Assistant orga: -10 commits to home-assistant +- [Martin Weber (@martinweu)](https://github.com/martinweu "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Martin Weinelt (@mweinelt)](https://github.com/mweinelt "22 total commits to the Home Assistant orga: +13 commits to core 8 commits to home-assistant.io -1 commit to home-assistant-polymer +1 commit to frontend ") - [martinfrancois (@martinfrancois)](https://github.com/martinfrancois "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [MartinP (@mplinuxgeek)](https://github.com/mplinuxgeek "1 total commits to the Home Assistant orga: @@ -7804,14 +9585,14 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io ") - [martst (@martst)](https://github.com/martst "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [marutanm (@marutanm)](https://github.com/marutanm "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Marvin Wichmann (@marvin-w)](https://github.com/marvin-w "7 total commits to the Home Assistant orga: 4 commits to home-assistant.io -3 commits to home-assistant +3 commits to core ") - [Masahiro Kamata (@kamatari)](https://github.com/kamatari "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -7822,46 +9603,78 @@ This page contains a list of people who have contributed in one way or another t - [Mason Stewart (@masondesu)](https://github.com/masondesu "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Massimiliano Cannarozzo (@maxcanna)](https://github.com/maxcanna "5 total commits to the Home Assistant orga: +3 commits to core +2 commits to home-assistant.io +") - [mastakebob (@mastakebob)](https://github.com/mastakebob "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [masukomi (@masukomi)](https://github.com/masukomi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Mat Strange (@matstrange)](https://github.com/matstrange "8 total commits to the Home Assistant orga: +7 commits to frontend +1 commit to brands +") +- [mat1990dj (@mat1990dj)](https://github.com/mat1990dj "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") - [Matej Drobnič (@matejdro)](https://github.com/matejdro "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Mateus (@ma-te-us)](https://github.com/ma-te-us "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Mateusz Drab (@mateuszdrab)](https://github.com/mateuszdrab "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Mateusz Korniak (@matkor)](https://github.com/matkor "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") +- [Mateusz Soszyński (@TheLastGimbus)](https://github.com/TheLastGimbus "1 total commits to the Home Assistant orga: +1 commit to core +") +- [matgad (@matgad)](https://github.com/matgad "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Matheson Steplock (@ikifar2012)](https://github.com/ikifar2012 "6 total commits to the Home Assistant orga: +6 commits to home-assistant.io +") +- [matheus2308 (@matheus2308)](https://github.com/matheus2308 "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") - [Mathew Peterson (@mathewpeterson)](https://github.com/mathewpeterson "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to homebridge-homeassistant -1 commit to home-assistant -") -- [Mathieu Maret (@mmaret)](https://github.com/mmaret "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +1 commit to core ") - [Mathieu Maret (@mmaret-geny)](https://github.com/mmaret-geny "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Mathieu Maret (@mmaret)](https://github.com/mmaret "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Mathieu Velten (@MatMaul)](https://github.com/MatMaul "6 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core +1 commit to home-assistant.io +") +- [matlimatli (@matlimatli)](https://github.com/matlimatli "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") - [Matouš Bečvář (@MattXcz)](https://github.com/MattXcz "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [MatsNl (@MatsNl)](https://github.com/MatsNl "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [MatsNl (@MatsNl)](https://github.com/MatsNl "14 total commits to the Home Assistant orga: +10 commits to core +3 commits to home-assistant.io +1 commit to brands ") - [Matt Black (@mafrosis)](https://github.com/mafrosis "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Matt Cahill (@matt-cahill)](https://github.com/matt-cahill "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -7869,11 +9682,12 @@ This page contains a list of people who have contributed in one way or another t - [Matt Caminiti (@mcaminiti)](https://github.com/mcaminiti "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Matt Colyer (@mcolyer)](https://github.com/mcolyer "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Matt Colyer (@mcolyer)](https://github.com/mcolyer "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io ") - [Matt D (@matt1)](https://github.com/matt1 "1 total commits to the Home Assistant orga: -1 commit to hassio-cli +1 commit to cli ") - [Matt Enright (@wickedshimmy)](https://github.com/wickedshimmy "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -7889,24 +9703,24 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Matt Hamilton (@Eriner)](https://github.com/Eriner "4 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core ") - [Matt Hamrick (@diminishedprime)](https://github.com/diminishedprime "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Matt Kasa (@mattkasa)](https://github.com/mattkasa "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Matt LeBrun (@mlebrun)](https://github.com/mlebrun "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Matt N\. (@mnoorenberghe)](https://github.com/mnoorenberghe "65 total commits to the Home Assistant orga: -32 commits to home-assistant-iOS +32 commits to iOS 19 commits to home-assistant.io -11 commits to home-assistant -2 commits to home-assistant-polymer +11 commits to core +2 commits to frontend 1 commit to homebridge-homeassistant ") - [Matt Robinson (@brimstone)](https://github.com/brimstone "1 total commits to the Home Assistant orga: @@ -7917,73 +9731,84 @@ This page contains a list of people who have contributed in one way or another t ") - [Matt Schmitt (@schmittx)](https://github.com/schmittx "97 total commits to the Home Assistant orga: 52 commits to homebridge-homeassistant -27 commits to home-assistant +27 commits to core 13 commits to home-assistant.io -3 commits to home-assistant-polymer +3 commits to frontend 2 commits to developers.home-assistant ") -- [Matt Snyder (@oblogic7)](https://github.com/oblogic7 "23 total commits to the Home Assistant orga: -13 commits to home-assistant -10 commits to home-assistant.io +- [Matt Snyder (@oblogic7)](https://github.com/oblogic7 "33 total commits to the Home Assistant orga: +19 commits to core +14 commits to home-assistant.io ") - [Matt Swan (@surlymatt)](https://github.com/surlymatt "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Matt White (@matt-FFFFFF)](https://github.com/matt-FFFFFF "3 total commits to the Home Assistant orga: +- [Matt White (@matt-FFFFFF)](https://github.com/matt-FFFFFF "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io +1 commit to supervisor 1 commit to hassio-addons ") - [Matt White (@mw-white)](https://github.com/mw-white "12 total commits to the Home Assistant orga: -7 commits to home-assistant +7 commits to core 5 commits to home-assistant.io ") +- [matt2005 (@matt2005)](https://github.com/matt2005 "5 total commits to the Home Assistant orga: +3 commits to core +2 commits to home-assistant.io +") - [Matte23 (@Matte23)](https://github.com/Matte23 "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [MatteGary (@MatteGary)](https://github.com/MatteGary "6 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 2 commits to home-assistant.io ") +- [Mattheus (@tioan)](https://github.com/tioan "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Matthew (@Gaff)](https://github.com/Gaff "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") +- [Matthew (@Mattat01)](https://github.com/Mattat01 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Matthew Bowen (@mgbowen)](https://github.com/mgbowen "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Matthew Breedlove (@sirmalloc)](https://github.com/sirmalloc "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Matthew Donoughe (@mdonoughe)](https://github.com/mdonoughe "8 total commits to the Home Assistant orga: +- [Matthew Donoughe (@mdonoughe)](https://github.com/mdonoughe "9 total commits to the Home Assistant orga: 5 commits to home-assistant.io -2 commits to home-assistant -1 commit to home-assistant-polymer +3 commits to core +1 commit to frontend ") - [Matthew Dornquast (@dornquast)](https://github.com/dornquast "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Matthew Garrett (@mjg59)](https://github.com/mjg59 "40 total commits to the Home Assistant orga: -29 commits to home-assistant +- [Matthew Garrett (@mjg59)](https://github.com/mjg59 "43 total commits to the Home Assistant orga: +32 commits to core 8 commits to home-assistant.io 2 commits to netdisco 1 commit to people ") -- [Matthew Grimes (@cybergrimes)](https://github.com/cybergrimes "1 total commits to the Home Assistant orga: -1 commit to open-zwave -") -- [Matthew Hilton (@matt2005)](https://github.com/matt2005 "5 total commits to the Home Assistant orga: -3 commits to home-assistant +- [Matthew Grimes (@cybergrimes)](https://github.com/cybergrimes "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io +1 commit to open-zwave ") - [Matthew Miller (@MasterKale)](https://github.com/MasterKale "6 total commits to the Home Assistant orga: 6 commits to open-zwave ") - [Matthew Parlane (@Parlane)](https://github.com/Parlane "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Matthew Rollings (@stealthcopter)](https://github.com/stealthcopter "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") - [Matthew Schick (@mattsch)](https://github.com/mattsch "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Matthew Scoville (@Chaotic)](https://github.com/Chaotic "1 total commits to the Home Assistant orga: @@ -7992,19 +9817,19 @@ This page contains a list of people who have contributed in one way or another t - [Matthew T\. Kelley (@mkelley88)](https://github.com/mkelley88 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Matthew Treinish (@mtreinish)](https://github.com/mtreinish "25 total commits to the Home Assistant orga: -16 commits to home-assistant -9 commits to home-assistant.io +- [Matthew Treinish (@mtreinish)](https://github.com/mtreinish "28 total commits to the Home Assistant orga: +17 commits to core +11 commits to home-assistant.io ") - [Matthew Turney (@pho3nixf1re)](https://github.com/pho3nixf1re "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Matthew Vincent (@neshmi)](https://github.com/neshmi "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [Matthew Wegner (@mwegner)](https://github.com/mwegner "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Matthew Wire (@mattwire)](https://github.com/mattwire "6 total commits to the Home Assistant orga: @@ -8012,44 +9837,57 @@ This page contains a list of people who have contributed in one way or another t ") - [matthewcky2k (@matthewcky2k)](https://github.com/matthewcky2k "16 total commits to the Home Assistant orga: 15 commits to open-zwave -1 commit to home-assistant +1 commit to core ") -- [MatthewFlamm (@MatthewFlamm)](https://github.com/MatthewFlamm "9 total commits to the Home Assistant orga: -4 commits to home-assistant -3 commits to home-assistant-polymer -1 commit to developers.home-assistant -1 commit to home-assistant.io +- [MatthewFlamm (@MatthewFlamm)](https://github.com/MatthewFlamm "39 total commits to the Home Assistant orga: +22 commits to core +9 commits to home-assistant.io +4 commits to frontend +2 commits to developers.home-assistant +2 commits to wheels-custom-integrations ") -- [Matthias Alphart (@farmio)](https://github.com/farmio "10 total commits to the Home Assistant orga: -5 commits to home-assistant -5 commits to home-assistant.io +- [Matthias Alphart (@farmio)](https://github.com/farmio "13 total commits to the Home Assistant orga: +7 commits to core +6 commits to home-assistant.io ") - [Matthias Dötsch (@brainexe)](https://github.com/brainexe "3 total commits to the Home Assistant orga: -2 commits to home-assistant-polymer -1 commit to home-assistant +2 commits to frontend +1 commit to core ") - [Matthias Grawinkel (@meatz)](https://github.com/meatz "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Matthias Urlichs (@smurfix)](https://github.com/smurfix "10 total commits to the Home Assistant orga: -6 commits to home-assistant -3 commits to appdaemon +- [Matthias Urlichs (@smurfix)](https://github.com/smurfix "7 total commits to the Home Assistant orga: +6 commits to core 1 commit to home-assistant.io ") - [Matthias Wahl (@mfelsche)](https://github.com/mfelsche "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Matthias Weiss (@weissm)](https://github.com/weissm "1 total commits to the Home Assistant orga: +1 commit to core +") - [Matthieu (@d9pouces)](https://github.com/d9pouces "1 total commits to the Home Assistant orga: 1 commit to feedparser ") +- [Matthieu DUVAL (@ptimatth)](https://github.com/ptimatth "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Matthijs (@pasibun)](https://github.com/pasibun "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Mattias Ryrlén (@mattiasr)](https://github.com/mattiasr "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Mattias Welponer (@mxworm)](https://github.com/mxworm "32 total commits to the Home Assistant orga: -21 commits to home-assistant +- [Mattias Welponer (@eworme)](https://github.com/eworme "32 total commits to the Home Assistant orga: +21 commits to core 10 commits to home-assistant.io -1 commit to home-assistant-polymer +1 commit to frontend +") +- [MattiasC (@MattiasC)](https://github.com/MattiasC "1 total commits to the Home Assistant orga: +1 commit to brands ") - [mattie47 (@mattie47)](https://github.com/mattie47 "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io @@ -8062,34 +9900,44 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [mattwing (@mattwing)](https://github.com/mattwing "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Mauricio Bonani (@bonanitech)](https://github.com/bonanitech "10 total commits to the Home Assistant orga: -8 commits to home-assistant.io -2 commits to home-assistant-polymer +- [Maurice Kok (@mories76)](https://github.com/mories76 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Mauricio Bonani (@bonanitech)](https://github.com/bonanitech "18 total commits to the Home Assistant orga: +11 commits to home-assistant.io +6 commits to frontend +1 commit to hassio-addons ") - [Mauricio Vidal (@MrMauro)](https://github.com/MrMauro "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Max (@max-te)](https://github.com/max-te "3 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to home-assistant.io +- [mavrikkk (@mavrikkk)](https://github.com/mavrikkk "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Max (@max-te)](https://github.com/max-te "4 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io ") - [Max Laverse (@maxlaverse)](https://github.com/maxlaverse "9 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 3 commits to home-assistant.io ") - [Max Mudde (@makzdot)](https://github.com/makzdot "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") - [Max Muth (@mammuth)](https://github.com/mammuth "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Max Prokhorov (@mcspr)](https://github.com/mcspr "3 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer -1 commit to home-assistant +1 commit to frontend +1 commit to core +1 commit to home-assistant.io +") +- [Max Roeleveld (@doenietzomoeilijk)](https://github.com/doenietzomoeilijk "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Max Rosin (@ekeih)](https://github.com/ekeih "3 total commits to the Home Assistant orga: @@ -8098,13 +9946,12 @@ This page contains a list of people who have contributed in one way or another t - [Max Rumpf (@Maxr1998)](https://github.com/Maxr1998 "17 total commits to the Home Assistant orga: 17 commits to home-assistant.io ") -- [Max Rydahl Andersen (@maxandersen)](https://github.com/maxandersen "145 total commits to the Home Assistant orga: -131 commits to home-assistant-cli +- [Max Rydahl Andersen (@maxandersen)](https://github.com/maxandersen "14 total commits to the Home Assistant orga: 8 commits to home-assistant.io 3 commits to developers.home-assistant +1 commit to cli 1 commit to people -1 commit to hassio-cli -1 commit to home-assistant +1 commit to core ") - [Max Savard (@TravelinMax)](https://github.com/TravelinMax "3 total commits to the Home Assistant orga: 3 commits to hassio-addons @@ -8116,39 +9963,43 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [maxclaey (@maxclaey)](https://github.com/maxclaey "8 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core 3 commits to home-assistant.io ") - [MaxG88 (@MaxG88)](https://github.com/MaxG88 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Maxim Krušina (@maximkrusina)](https://github.com/maximkrusina "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Maximilian Ertl (@Sirs0ri)](https://github.com/Sirs0ri "2 total commits to the Home Assistant orga: +- [Maximilian Bösing (@boesing)](https://github.com/boesing "2 total commits to the Home Assistant orga: +2 commits to supervisor +") +- [Maximilian Ertl (@Sirs0ri)](https://github.com/Sirs0ri "3 total commits to the Home Assistant orga: 2 commits to hassbian-scripts +1 commit to developers.home-assistant ") - [Maximilian Früh (@mfrueh)](https://github.com/mfrueh "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Maximilien Cuony (@the-glu)](https://github.com/the-glu "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Maël Kimmerlin (@maelk)](https://github.com/maelk "1 total commits to the Home Assistant orga: -1 commit to hassos +1 commit to operating-system ") -- [mbo18 (@mbo18)](https://github.com/mbo18 "7 total commits to the Home Assistant orga: -2 commits to hassos -2 commits to home-assistant -2 commits to home-assistant.io -1 commit to hassio +- [mbo18 (@mbo18)](https://github.com/mbo18 "9 total commits to the Home Assistant orga: +4 commits to home-assistant.io +2 commits to operating-system +2 commits to core +1 commit to supervisor ") - [mboeru (@mboeru)](https://github.com/mboeru "1 total commits to the Home Assistant orga: -1 commit to home-assistant-iOS +1 commit to iOS ") - [mcc05 (@mcc05)](https://github.com/mcc05 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [mcfrojd (@mcfrojd)](https://github.com/mcfrojd "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io @@ -8157,7 +10008,7 @@ This page contains a list of people who have contributed in one way or another t 2 commits to open-zwave ") - [mclem (@mclem)](https://github.com/mclem "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [McNutty195 (@McNutty195)](https://github.com/McNutty195 "1 total commits to the Home Assistant orga: @@ -8165,16 +10016,24 @@ This page contains a list of people who have contributed in one way or another t ") - [mdallaire (@mdallaire)](https://github.com/mdallaire "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core +") +- [mdegat01 (@mdegat01)](https://github.com/mdegat01 "18 total commits to the Home Assistant orga: +14 commits to core +4 commits to home-assistant.io ") - [meatheadmike (@meatheadmike)](https://github.com/meatheadmike "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") -- [Megachip (@Megachip)](https://github.com/Megachip "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Megachip (@Megachip)](https://github.com/Megachip "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io ") -- [MeIchthys (@meichthys)](https://github.com/meichthys "8 total commits to the Home Assistant orga: -8 commits to home-assistant.io +- [MeIchthys (@meichthys)](https://github.com/meichthys "18 total commits to the Home Assistant orga: +14 commits to home-assistant.io +1 commit to frontend +1 commit to developers.home-assistant +1 commit to brands +1 commit to core ") - [meijerwynand (@meijerwynand)](https://github.com/meijerwynand "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -8185,40 +10044,57 @@ This page contains a list of people who have contributed in one way or another t - [Melvin (@MBlokhuijzen)](https://github.com/MBlokhuijzen "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [melyux (@melyux)](https://github.com/melyux "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") - [Menno Blom (@b10m)](https://github.com/b10m "6 total commits to the Home Assistant orga: 3 commits to home-assistant.io -2 commits to home-assistant +2 commits to core 1 commit to netdisco ") - [Meow (@GrumpyMeow)](https://github.com/GrumpyMeow "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [merc1031 (@merc1031)](https://github.com/merc1031 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [mertenats (@mertenats)](https://github.com/mertenats "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") +- [mezz64 (@mezz64)](https://github.com/mezz64 "68 total commits to the Home Assistant orga: +53 commits to core +13 commits to home-assistant.io +1 commit to hadashboard +1 commit to frontend +") - [mgiako (@mgiako)](https://github.com/mgiako "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [MGWGIT (@MGWGIT)](https://github.com/MGWGIT "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [mh\-daedalus (@mh-daedalus)](https://github.com/mh-daedalus "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [mhorst314 (@mhorst314)](https://github.com/mhorst314 "1 total commits to the Home Assistant orga: +1 commit to core +") - [Micah Neal (@noxlux)](https://github.com/noxlux "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Mich\-b (@Mich-b)](https://github.com/Mich-b "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Micha LaQua (@milaq)](https://github.com/milaq "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [Michael (@hartmms)](https://github.com/hartmms "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [Michael (@splunty)](https://github.com/splunty "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -8226,12 +10102,22 @@ This page contains a list of people who have contributed in one way or another t - [Michael (@mischsa)](https://github.com/mischsa "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Michael Auchter (@auchter)](https://github.com/auchter "13 total commits to the Home Assistant orga: -13 commits to home-assistant +- [Michael A\. Alderete (@alderete)](https://github.com/alderete "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") +- [Michael Auchter (@auchter)](https://github.com/auchter "14 total commits to the Home Assistant orga: +14 commits to core +") +- [Michael Bachmaier (@bachtron)](https://github.com/bachtron "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Michael Ball (@cycomachead)](https://github.com/cycomachead "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Michael Bisbjerg (@LordMike)](https://github.com/LordMike "6 total commits to the Home Assistant orga: +5 commits to home-assistant.io +1 commit to core +") - [Michael Bravo (@mbravorus)](https://github.com/mbravorus "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -8239,15 +10125,21 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io ") - [Michael Chang (@micbase)](https://github.com/micbase "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Michael Dokolin (@dokmic)](https://github.com/dokmic "2 total commits to the Home Assistant orga: +2 commits to core ") - [Michael Dubno (@dubnom)](https://github.com/dubnom "6 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 3 commits to home-assistant.io ") +- [Michael Farrell (@micolous)](https://github.com/micolous "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Michael Fester (@michaelfester)](https://github.com/michaelfester "7 total commits to the Home Assistant orga: 5 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [Michael Friis (@friism)](https://github.com/friism "1 total commits to the Home Assistant orga: 1 commit to gu-who @@ -8259,15 +10151,26 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Michael Gilbert (@Zyell)](https://github.com/Zyell "8 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core +") +- [Michael Hansen (@synesthesiam)](https://github.com/synesthesiam "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Michael Heinemann (@heinemml)](https://github.com/heinemml "6 total commits to the Home Assistant orga: +4 commits to core +2 commits to home-assistant.io ") - [Michael Hertig (@hertg)](https://github.com/hertg "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Michael Irigoyen (@goyney)](https://github.com/goyney "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Michael Irigoyen (@goyney)](https://github.com/goyney "5 total commits to the Home Assistant orga: +3 commits to frontend +1 commit to core 1 commit to home-assistant.io ") +- [Michael J\. Kidd (@linuxkidd)](https://github.com/linuxkidd "1 total commits to the Home Assistant orga: +1 commit to core +") - [Michael Kane (@thisIsMikeKane)](https://github.com/thisIsMikeKane "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -8275,7 +10178,7 @@ This page contains a list of people who have contributed in one way or another t 1 commit to open-zwave ") - [Michael Kutý (@michaelkuty)](https://github.com/michaelkuty "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [Michael Liu (@icefalcn)](https://github.com/icefalcn "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -8283,16 +10186,12 @@ 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 orga: 5 commits to home-assistant.io ") -- [Michael Lunzer (@michaellunzer)](https://github.com/michaellunzer "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Michael Lunzer (@michaellunzer)](https://github.com/michaellunzer "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Michael Meinel (@led02)](https://github.com/led02 "1 total commits to the Home Assistant orga: 1 commit to pyharmony ") -- [Michael Nosthoff (@heinemml)](https://github.com/heinemml "6 total commits to the Home Assistant orga: -4 commits to home-assistant -2 commits to home-assistant.io -") - [Michael Pereira (@MichaelPereira)](https://github.com/MichaelPereira "2 total commits to the Home Assistant orga: 2 commits to gu-who ") @@ -8300,13 +10199,13 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io ") - [Michael Pollett (@pollett)](https://github.com/pollett "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Michael Prokop (@mika)](https://github.com/mika "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Michael Pusterhofer (@feanor12)](https://github.com/feanor12 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Michael R\. Davis (@mrdvt92)](https://github.com/mrdvt92 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -8315,11 +10214,11 @@ This page contains a list of people who have contributed in one way or another t 17 commits to home-assistant.io ") - [Michael Scherer (@schmic)](https://github.com/schmic "5 total commits to the Home Assistant orga: -3 commits to home-assistant-polymer -2 commits to home-assistant +3 commits to frontend +2 commits to core ") - [Michael Schoonmaker (@Schoonology)](https://github.com/Schoonology "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Michael Schulze (@michsch)](https://github.com/michsch "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -8334,76 +10233,88 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Michael Wei (@no2chem)](https://github.com/no2chem "5 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io ") - [Michael Wheeler (@TheSkorm)](https://github.com/TheSkorm "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Michael Woods (@michaelwoods)](https://github.com/michaelwoods "1 total commits to the Home Assistant orga: -1 commit to home-assistant-cli -") -- [michaeldavie (@michaeldavie)](https://github.com/michaeldavie "22 total commits to the Home Assistant orga: -12 commits to home-assistant -10 commits to home-assistant.io +- [michaeldavie (@michaeldavie)](https://github.com/michaeldavie "36 total commits to the Home Assistant orga: +23 commits to core +12 commits to home-assistant.io +1 commit to brands ") - [MichaelSprague (@MichaelSprague)](https://github.com/MichaelSprague "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Michal (@Dinth)](https://github.com/Dinth "3 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Michal (@Dinth)](https://github.com/Dinth "5 total commits to the Home Assistant orga: +3 commits to home-assistant.io +1 commit to supervisor 1 commit to open-zwave ") -- [Michaël Arnauts (@michaelarnauts)](https://github.com/michaelarnauts "71 total commits to the Home Assistant orga: -38 commits to home-assistant -28 commits to home-assistant.io -3 commits to home-assistant-polymer +- [Michal Ziemski (@misialq)](https://github.com/misialq "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Michaël Arnauts (@michaelarnauts)](https://github.com/michaelarnauts "89 total commits to the Home Assistant orga: +50 commits to core +32 commits to home-assistant.io +3 commits to frontend 1 commit to netdisco 1 commit to people +1 commit to developers.home-assistant +1 commit to brands ") -- [Michał Mrozek (@Michsior14)](https://github.com/Michsior14 "30 total commits to the Home Assistant orga: -29 commits to home-assistant +- [Michaël Bitard (@MichaelBitard)](https://github.com/MichaelBitard "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") +- [Michał Mrozek (@Michsior14)](https://github.com/Michsior14 "32 total commits to the Home Assistant orga: +30 commits to core +1 commit to brands 1 commit to home-assistant.io ") - [Michał Węgrzynek (@mwegrzynek)](https://github.com/mwegrzynek "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Michel Settembrino (@Michel-Settembrino)](https://github.com/Michel-Settembrino "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Michele Porelli (@porelli)](https://github.com/porelli "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Michi Lehenauer (@michiil)](https://github.com/michiil "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [Mick Dekkers (@mickdekkers)](https://github.com/mickdekkers "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Mick Vleeshouwer (@iMicknl)](https://github.com/iMicknl "3 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Mick Vleeshouwer (@iMicknl)](https://github.com/iMicknl "6 total commits to the Home Assistant orga: +2 commits to core +1 commit to alerts.home-assistant.io +1 commit to wheels-custom-integrations +1 commit to brands 1 commit to home-assistant.io ") - [Mickaël Cornière (@bnounours)](https://github.com/bnounours "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Mickaël Schoentgen (@BoboTiG)](https://github.com/BoboTiG "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [micw (@micw)](https://github.com/micw "8 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core 3 commits to home-assistant.io ") - [migromao (@migromao)](https://github.com/migromao "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Miguel (@mdps)](https://github.com/mdps "3 total commits to the Home Assistant orga: -3 commits to appdaemon -") - [Miguel Gil Martínez (@miguelgilmartinez)](https://github.com/miguelgilmartinez "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Miha Lunar (@SmilyOrg)](https://github.com/SmilyOrg "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [mihalski (@mihalski)](https://github.com/mihalski "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io @@ -8411,23 +10322,23 @@ This page contains a list of people who have contributed in one way or another t - [Mika Hiltunen (@saaste)](https://github.com/saaste "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Mikael Svensson (@Nossnevs)](https://github.com/Nossnevs "3 total commits to the Home Assistant orga: +- [Mikael Svensson (@Nossnevs)](https://github.com/Nossnevs "4 total commits to the Home Assistant orga: +2 commits to core 2 commits to home-assistant.io -1 commit to home-assistant ") - [Mikayla Hutchinson (@mhutch)](https://github.com/mhutch "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to open-zwave ") -- [Mike (@mradziwo)](https://github.com/mradziwo "1 total commits to the Home Assistant orga: -1 commit to appdaemon -") - [Mike (@mikedm139)](https://github.com/mikedm139 "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") -- [Mike (@mike391)](https://github.com/mike391 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Mike (@mike391)](https://github.com/mike391 "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Mike (@thegame3202)](https://github.com/thegame3202 "1 total commits to the Home Assistant orga: +1 commit to core ") - [Mike (@mikenolet)](https://github.com/mikenolet "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -8436,106 +10347,140 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Mike Christianson (@MikeChristianson)](https://github.com/MikeChristianson "6 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core +") +- [Mike Cousins (@mikecousins)](https://github.com/mikecousins "1 total commits to the Home Assistant orga: +1 commit to hassio-addons ") - [Mike G Chambers (@mikegchambers)](https://github.com/mikegchambers "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Mike Hennessy (@henworth)](https://github.com/henworth "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Mike Keesey (@mkeesey)](https://github.com/mkeesey "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Mike Knudson (@mtgeekman)](https://github.com/mtgeekman "2 total commits to the Home Assistant orga: +1 commit to frontend +1 commit to developers.home-assistant +") - [Mike Kormendy (@mkormendy)](https://github.com/mkormendy "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Mike Megally (@cmsimike)](https://github.com/cmsimike "18 total commits to the Home Assistant orga: -12 commits to home-assistant +12 commits to core 6 commits to home-assistant.io ") - [Mike Miller (@mikeage)](https://github.com/mikeage "5 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 1 commit to home-assistant.io ") +- [Mike Nabhan (@mikenabhan)](https://github.com/mikenabhan "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") - [Mike Nicholson (@mikenicholson)](https://github.com/mikenicholson "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Mike O'Driscoll (@mikeodr)](https://github.com/mikeodr "12 total commits to the Home Assistant orga: 8 commits to home-assistant.io -4 commits to home-assistant +4 commits to core ") - [Mike Roberts (@m-roberts)](https://github.com/m-roberts "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") +- [Mike Shaver (@shaver)](https://github.com/shaver "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Mike Stangel (@stangel)](https://github.com/stangel "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [mikebarris (@mikebarris)](https://github.com/mikebarris "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [mikehole (@mikehole)](https://github.com/mikehole "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") +- [mikemc35 (@mikemc35)](https://github.com/mikemc35 "2 total commits to the Home Assistant orga: +1 commit to hassio-addons +1 commit to home-assistant.io +") +- [MikeTsenatek (@MikeTsenatek)](https://github.com/MikeTsenatek "1 total commits to the Home Assistant orga: +1 commit to core +") - [Mikhail Dronov (@dronov)](https://github.com/dronov "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [Mikkel Hoegh (@mikl)](https://github.com/mikl "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Mikko Tapionlinna (@Arkkimaagi)](https://github.com/Arkkimaagi "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Mikkel Pilehave Jensen (@pilehave)](https://github.com/pilehave "1 total commits to the Home Assistant orga: +1 commit to core ") -- [Milan V\. (@milanvo)](https://github.com/milanvo "19 total commits to the Home Assistant orga: -10 commits to home-assistant +- [Mikko Tapionlinna (@Arkkimaagi)](https://github.com/Arkkimaagi "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Milan V (@milanvo)](https://github.com/milanvo "19 total commits to the Home Assistant orga: +10 commits to core 7 commits to home-assistant.io -2 commits to home-assistant-polymer +2 commits to frontend ") - [Milas Bowman (@milas)](https://github.com/milas "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [milothomas (@milothomas)](https://github.com/milothomas "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Miloš Bunčić (@psyhomb)](https://github.com/psyhomb "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +1 commit to home-assistant.io +") +- [Mimiix (@Mimiix)](https://github.com/Mimiix "2 total commits to the Home Assistant orga: +1 commit to hassio-addons 1 commit to home-assistant.io ") - [MinchinWeb (@MinchinWeb)](https://github.com/MinchinWeb "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [mindakas (@mindakas)](https://github.com/mindakas "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [mindigmarton (@mindigmarton)](https://github.com/mindigmarton "3 total commits to the Home Assistant orga: -2 commits to home-assistant +- [mindigmarton (@mindigmarton)](https://github.com/mindigmarton "4 total commits to the Home Assistant orga: +3 commits to core 1 commit to home-assistant.io ") - [ming\.z (@zvving)](https://github.com/zvving "3 total commits to the Home Assistant orga: 3 commits to Iconic ") - [miniconfig (@miniconfig)](https://github.com/miniconfig "27 total commits to the Home Assistant orga: -20 commits to home-assistant +20 commits to core 7 commits to home-assistant.io ") - [minida28 (@minida28)](https://github.com/minida28 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Minims (@Minims)](https://github.com/Minims "3 total commits to the Home Assistant orga: +- [Minims (@Minims)](https://github.com/Minims "7 total commits to the Home Assistant orga: +4 commits to core 3 commits to homebridge-homeassistant ") -- [Miroslav Ždrale (@mzdrale)](https://github.com/mzdrale "8 total commits to the Home Assistant orga: -4 commits to home-assistant.io -4 commits to home-assistant +- [mirkster (@mirkster)](https://github.com/mirkster "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Miroslav Ždrale (@mzdrale)](https://github.com/mzdrale "12 total commits to the Home Assistant orga: +6 commits to home-assistant.io +6 commits to core ") - [miroslawkrol (@miroslawkrol)](https://github.com/miroslawkrol "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Mischa Gruber (@GruberMischa)](https://github.com/GruberMischa "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [MissingDLL (@MissingDLL)](https://github.com/MissingDLL "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Mister Wil (@MisterWil)](https://github.com/MisterWil "23 total commits to the Home Assistant orga: -17 commits to home-assistant +- [Mister Wil (@MisterWil)](https://github.com/MisterWil "25 total commits to the Home Assistant orga: +19 commits to core 6 commits to home-assistant.io ") - [misterbenj34 (@misterbenj34)](https://github.com/misterbenj34 "2 total commits to the Home Assistant orga: @@ -8553,55 +10498,68 @@ This page contains a list of people who have contributed in one way or another t - [Mitchell Cohen (@mitchchn)](https://github.com/mitchchn "31 total commits to the Home Assistant orga: 31 commits to 1password-teams-open-source ") +- [Mitchell Currie (@mitchins)](https://github.com/mitchins "1 total commits to the Home Assistant orga: +1 commit to Iconic +") - [Mitesh Patel (@gurumitts)](https://github.com/gurumitts "9 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core 4 commits to home-assistant.io ") - [MithrasPan (@MithrasPan)](https://github.com/MithrasPan "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Mitko Masarliev (@masarliev)](https://github.com/masarliev "12 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 4 commits to home-assistant.io ") - [MizterB (@MizterB)](https://github.com/MizterB "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [mje\-nz (@mje-nz)](https://github.com/mje-nz "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [MJJ (@mjj4791)](https://github.com/mjj4791 "25 total commits to the Home Assistant orga: 16 commits to home-assistant.io -9 commits to home-assistant +9 commits to core ") - [mkfink (@mkfink)](https://github.com/mkfink "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [mlambert\-zotec (@mlambert-zotec)](https://github.com/mlambert-zotec "2 total commits to the Home Assistant orga: 2 commits to python-openzwave ") -- [mmmmmtasty (@mmmmmtasty)](https://github.com/mmmmmtasty "8 total commits to the Home Assistant orga: -8 commits to appdaemon +- [mlemainque (@mlemainque)](https://github.com/mlemainque "4 total commits to the Home Assistant orga: +3 commits to core +1 commit to home-assistant.io ") - [mn (@nolstedt)](https://github.com/nolstedt "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [mnaggatz (@mnaggatz)](https://github.com/mnaggatz "2 total commits to the Home Assistant orga: +2 commits to core +") - [mnestor (@mnestor)](https://github.com/mnestor "7 total commits to the Home Assistant orga: -5 commits to home-assistant -1 commit to home-assistant-polymer +5 commits to core +1 commit to frontend 1 commit to home-assistant.io ") - [mnl1121 (@mnl1121)](https://github.com/mnl1121 "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [mogsub (@mogsub)](https://github.com/mogsub "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Mohamad Tarbin (@meauxt)](https://github.com/meauxt "4 total commits to the Home Assistant orga: -2 commits to home-assistant 2 commits to home-assistant.io +2 commits to core ") - [Mohammed Chotia (@mcchots)](https://github.com/mcchots "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [mohmacht (@mohmacht)](https://github.com/mohmacht "1 total commits to the Home Assistant orga: +1 commit to core +") - [mojotaker (@mojotaker)](https://github.com/mojotaker "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") @@ -8612,42 +10570,45 @@ This page contains a list of people who have contributed in one way or another t 5 commits to open-zwave ") - [monte\-monte (@monte-monte)](https://github.com/monte-monte "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [mooninite (@mooninite)](https://github.com/mooninite "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") - [Moonshot (@moonshot)](https://github.com/moonshot "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Moos (@moos)](https://github.com/moos "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Morgan Kesler (@keslerm)](https://github.com/keslerm "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [MORITA Hajime (@omo)](https://github.com/omo "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [Moritz Fey (@Mofeywalker)](https://github.com/Mofeywalker "6 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core 1 commit to hassio-addons ") - [Moritz Sternemann (@moritzsternemann)](https://github.com/moritzsternemann "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [Morten Lied Johansen (@mortenlj)](https://github.com/mortenlj "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Morten Lüneborg (@mopolus)](https://github.com/mopolus "6 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 2 commits to home-assistant.io ") -- [Morten Trab (@MTrab)](https://github.com/MTrab "4 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Morten Rugaard (@rugaard)](https://github.com/rugaard "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Morten Trab (@MTrab)](https://github.com/MTrab "5 total commits to the Home Assistant orga: +3 commits to core 2 commits to home-assistant.io ") - [mortenmathiasen (@mortenmathiasen)](https://github.com/mortenmathiasen "2 total commits to the Home Assistant orga: @@ -8656,18 +10617,19 @@ This page contains a list of people who have contributed in one way or another t - [Morvan LEPANNETIER (@armaesiea)](https://github.com/armaesiea "4 total commits to the Home Assistant orga: 4 commits to open-zwave ") +- [Moshe Kaplan (@moshekaplan)](https://github.com/moshekaplan "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Moshe Levi (@moshe010)](https://github.com/moshe010 "1 total commits to the Home Assistant orga: -1 commit to hassos +1 commit to operating-system ") - [moskovskiy82 (@moskovskiy82)](https://github.com/moskovskiy82 "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") -- [motir (@motir)](https://github.com/motir "1 total commits to the Home Assistant orga: -1 commit to appdaemon -") -- [mountainsandcode (@mountainsandcode)](https://github.com/mountainsandcode "9 total commits to the Home Assistant orga: -6 commits to home-assistant.io -3 commits to home-assistant +- [mountainsandcode (@mountainsandcode)](https://github.com/mountainsandcode "10 total commits to the Home Assistant orga: +7 commits to home-assistant.io +3 commits to core ") - [MPopti0n (@MPopti0n)](https://github.com/MPopti0n "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -8675,11 +10637,16 @@ This page contains a list of people who have contributed in one way or another t - [Mr\. Snyds (@mrsnyds)](https://github.com/mrsnyds "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [mreiling (@mreiling)](https://github.com/mreiling "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [MrDadoo (@MrDadoo)](https://github.com/MrDadoo "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [mreiling (@mreiling)](https://github.com/mreiling "6 total commits to the Home Assistant orga: +5 commits to core +1 commit to home-assistant.io ") - [mrosseel (@mrosseel)](https://github.com/mrosseel "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [mrpraline (@mrpraline)](https://github.com/mrpraline "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -8694,69 +10661,94 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [msvinth (@msvinth)](https://github.com/msvinth "5 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io ") - [mtannertdev (@mtannertdev)](https://github.com/mtannertdev "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [mtl010957 (@mtl010957)](https://github.com/mtl010957 "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [muerzi (@muerzi)](https://github.com/muerzi "4 total commits to the Home Assistant orga: 4 commits to open-zwave ") -- [mueslo (@mueslo)](https://github.com/mueslo "7 total commits to the Home Assistant orga: +- [mueslo (@mueslo)](https://github.com/mueslo "8 total commits to the Home Assistant orga: 5 commits to home-assistant.io -2 commits to home-assistant +3 commits to core ") -- [Muhammad Sheraz Lodhi (@sherazlodhi)](https://github.com/sherazlodhi "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Muhammad Sheraz Lodhi (@sherazlodhi)](https://github.com/sherazlodhi "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Muhammed Saho (@muhasaho)](https://github.com/muhasaho "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [mukundv (@mukundv)](https://github.com/mukundv "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [mvillarejo (@mvillarejo)](https://github.com/mvillarejo "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [mvn23 (@mvn23)](https://github.com/mvn23 "46 total commits to the Home Assistant orga: -31 commits to home-assistant -14 commits to home-assistant.io -1 commit to appdaemon +- [mvn23 (@mvn23)](https://github.com/mvn23 "54 total commits to the Home Assistant orga: +37 commits to core +16 commits to home-assistant.io +1 commit to brands +") +- [mvnetbiz (@mvnetbiz)](https://github.com/mvnetbiz "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [mweimerskirch (@mweimerskirch)](https://github.com/mweimerskirch "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") -- [Myles (@MylesIsCool)](https://github.com/MylesIsCool "1 total commits to the Home Assistant orga: +- [Myles (@FormallyMyles)](https://github.com/FormallyMyles "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Myles Eftos (@madpilot)](https://github.com/madpilot "2 total commits to the Home Assistant orga: -1 commit to appdaemon -1 commit to home-assistant +- [Myles Eftos (@madpilot)](https://github.com/madpilot "1 total commits to the Home Assistant orga: +1 commit to core +") +- [myzhang1029 (@myzhang1029)](https://github.com/myzhang1029 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Mårten Seiplax (@seiplax)](https://github.com/seiplax "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Mārtiņš Bruņenieks (@papuass)](https://github.com/papuass "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Mārtiņš Grunskis (@grunskis)](https://github.com/grunskis "1 total commits to the Home Assistant orga: 1 commit to netdisco ") - [n0dyjeff (@n0dyjeff)](https://github.com/n0dyjeff "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [N1nja98 (@N1nja98)](https://github.com/N1nja98 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [N1c093 (@N1c093)](https://github.com/N1c093 "7 total commits to the Home Assistant orga: +5 commits to brands +2 commits to core ") -- [Nacho Barrientos (@nbarrientos)](https://github.com/nbarrientos "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [N1nja98 (@N1nja98)](https://github.com/N1nja98 "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Nacho Barrientos (@nbarrientos)](https://github.com/nbarrientos "3 total commits to the Home Assistant orga: +2 commits to core 1 commit to home-assistant.io ") - [nagimov (@nagimov-blog)](https://github.com/nagimov-blog "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [namadori (@namadori)](https://github.com/namadori "5 total commits to the Home Assistant orga: -4 commits to home-assistant.io -1 commit to home-assistant +- [nagubal (@nagubal)](https://github.com/nagubal "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [nagyrobi (@nagyrobi)](https://github.com/nagyrobi "3 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to frontend +1 commit to brands +") +- [namadori (@namadori)](https://github.com/namadori "7 total commits to the Home Assistant orga: +5 commits to home-assistant.io +1 commit to frontend +1 commit to core ") - [Naomi C\. Bush (@naomicbush)](https://github.com/naomicbush "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source @@ -8768,26 +10760,32 @@ This page contains a list of people who have contributed in one way or another t 8 commits to open-zwave ") - [Nash Kaminski (@nkaminski)](https://github.com/nkaminski "6 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io -1 commit to home-assistant-polymer +1 commit to frontend +") +- [nashant (@nashant)](https://github.com/nashant "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Nate (@BillyNate)](https://github.com/BillyNate "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Nate Clark (@heythisisnate)](https://github.com/heythisisnate "26 total commits to the Home Assistant orga: -18 commits to home-assistant +18 commits to core 8 commits to home-assistant.io ") - [Nate Kleven (@nkleven)](https://github.com/nkleven "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Nate Robinson (@NateRobinsonS)](https://github.com/NateRobinsonS "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Nate Robinson (@NateRobinsonS)](https://github.com/NateRobinsonS "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [natemason (@natemason)](https://github.com/natemason "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Nathan (@nemccarthy)](https://github.com/nemccarthy "1 total commits to the Home Assistant orga: +1 commit to core ") - [Nathan Broadbent (@ndbroadbent)](https://github.com/ndbroadbent "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -8799,19 +10797,21 @@ This page contains a list of people who have contributed in one way or another t - [Nathan Freitas (@n8fr8)](https://github.com/n8fr8 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Nathan Henrie (@n8henrie)](https://github.com/n8henrie "23 total commits to the Home Assistant orga: -10 commits to home-assistant +- [Nathan Henrie (@n8henrie)](https://github.com/n8henrie "22 total commits to the Home Assistant orga: +10 commits to core 9 commits to home-assistant.io 2 commits to homebridge-homeassistant -1 commit to appdaemon -1 commit to home-assistant-polymer +1 commit to frontend ") - [Nathan Knotts (@nknotts)](https://github.com/nknotts "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [Nathan Long (@nathanl)](https://github.com/nathanl "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Nathan Tilley (@ntilley905)](https://github.com/ntilley905 "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Nathan W (@itsamenathan)](https://github.com/itsamenathan "3 total commits to the Home Assistant orga: 2 commits to hassio-addons 1 commit to home-assistant.io @@ -8821,22 +10821,22 @@ This page contains a list of people who have contributed in one way or another t ") - [Neil Crosby (@NeilCrosby)](https://github.com/NeilCrosby "6 total commits to the Home Assistant orga: 2 commits to developers.home-assistant -2 commits to home-assistant 2 commits to home-assistant.io +2 commits to core ") - [Neil du Toit (@NeilDuToit92)](https://github.com/NeilDuToit92 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Neil Lathwood (@laf)](https://github.com/laf "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [Nelis Willers (@NelisW)](https://github.com/NelisW "2 total commits to the Home Assistant orga: 1 commit to fabric-home-assistant 1 commit to home-assistant.io ") -- [NeLLyMerC (@NeLLyMerC)](https://github.com/NeLLyMerC "5 total commits to the Home Assistant orga: -5 commits to home-assistant.io +- [NeLLyMerC (@NeLLyMerC)](https://github.com/NeLLyMerC "8 total commits to the Home Assistant orga: +8 commits to home-assistant.io ") - [Nelson Chen (@nelsonjchen)](https://github.com/nelsonjchen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -8847,14 +10847,20 @@ This page contains a list of people who have contributed in one way or another t - [neonbunny (@neonbunny)](https://github.com/neonbunny "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Neonicus (@neopilou)](https://github.com/neopilou "13 total commits to the Home Assistant orga: +13 commits to android +") - [Nephiel (@Nephiel)](https://github.com/Nephiel "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [nepozs (@nepozs)](https://github.com/nepozs "1 total commits to the Home Assistant orga: +1 commit to operating-system +") - [Ness (@Xx-Ness-xX)](https://github.com/Xx-Ness-xX "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") - [newbee112 (@newbee112)](https://github.com/newbee112 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [nhendin (@nhendin)](https://github.com/nhendin "1 total commits to the Home Assistant orga: 1 commit to open-zwave @@ -8862,12 +10868,12 @@ This page contains a list of people who have contributed in one way or another t - [niai (@niai)](https://github.com/niai "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Niall Donegan (@ndonegan)](https://github.com/ndonegan "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Niall Donegan (@ndonegan)](https://github.com/ndonegan "2 total commits to the Home Assistant orga: +2 commits to core ") - [Niccolò Maggioni (@nmaggioni)](https://github.com/nmaggioni "4 total commits to the Home Assistant orga: -2 commits to home-assistant 2 commits to home-assistant.io +2 commits to core ") - [Nicholas Griffin (@nicholasgriffintn)](https://github.com/nicholasgriffintn "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io @@ -8876,8 +10882,8 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Nicholas Sielicki (@sielicki)](https://github.com/sielicki "4 total commits to the Home Assistant orga: -2 commits to home-assistant 2 commits to home-assistant.io +2 commits to core ") - [Nicholas Westerhausen (@nwesterhausen)](https://github.com/nwesterhausen "24 total commits to the Home Assistant orga: 24 commits to home-assistant.io @@ -8892,40 +10898,47 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Nick Horvath (@nhorvath)](https://github.com/nhorvath "13 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 5 commits to home-assistant.io ") - [Nick Oliver (@PixnBits)](https://github.com/PixnBits "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Nick Sabinske (@quadportnick)](https://github.com/quadportnick "4 total commits to the Home Assistant orga: -2 commits to home-assistant 2 commits to home-assistant.io +2 commits to core ") - [Nick Touran (@partofthething)](https://github.com/partofthething "42 total commits to the Home Assistant orga: -27 commits to home-assistant +27 commits to core 15 commits to home-assistant.io ") - [Nick Waring (@nickwaring)](https://github.com/nickwaring "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") -- [Nick Whyte (@nickw444)](https://github.com/nickw444 "21 total commits to the Home Assistant orga: -12 commits to home-assistant -9 commits to home-assistant.io +- [Nick Whyte (@nickw444)](https://github.com/nickw444 "25 total commits to the Home Assistant orga: +14 commits to core +10 commits to home-assistant.io +1 commit to brands ") - [Nick Zelei (@nickzelei)](https://github.com/nickzelei "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Nick4\-1 (@Nick4-1)](https://github.com/Nick4-1 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [nickidw (@nickidw)](https://github.com/nickidw "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [NickMa (@nickma82)](https://github.com/nickma82 "1 total commits to the Home Assistant orga: +1 commit to supervised-installer +") - [Nicko van Someren (@nickovs)](https://github.com/nickovs "9 total commits to the Home Assistant orga: -7 commits to home-assistant +7 commits to core 2 commits to home-assistant.io ") -- [nickrout (@nickrout)](https://github.com/nickrout "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [nickrout (@nickrout)](https://github.com/nickrout "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io ") - [Niclas (@nicmar)](https://github.com/nicmar "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -8938,13 +10951,16 @@ This page contains a list of people who have contributed in one way or another t ") - [Nicolae Vlădescu (@nicolaevladescu)](https://github.com/nicolaevladescu "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Nicolas Bougues (@nbougues)](https://github.com/nbougues "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Nicolas Bourasseau (@Imbuzi)](https://github.com/Imbuzi "1 total commits to the Home Assistant orga: +1 commit to core ") - [Nicolas Graziano (@ngraziano)](https://github.com/ngraziano "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to open-zwave ") - [Nicolas Martignoni (@martignoni)](https://github.com/martignoni "1 total commits to the Home Assistant orga: @@ -8953,39 +10969,54 @@ 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 orga: 1 commit to home-assistant.io ") -- [Nicole Zeckner (@PurelyNicole)](https://github.com/PurelyNicole "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Nicole Zeckner (@PurelyNicole)](https://github.com/PurelyNicole "5 total commits to the Home Assistant orga: +5 commits to home-assistant.io ") - [Nicolò Ribaudo (@nicolo-ribaudo)](https://github.com/nicolo-ribaudo "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") +- [nicop4 (@nicop4)](https://github.com/nicop4 "1 total commits to the Home Assistant orga: +1 commit to frontend +") +- [nicx (@nicx)](https://github.com/nicx "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [nicxvan (@nicxvan)](https://github.com/nicxvan "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Niels Keurentjes (@curry684)](https://github.com/curry684 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Niels Mündler (@nielstron)](https://github.com/nielstron "33 total commits to the Home Assistant orga: -23 commits to home-assistant -7 commits to home-assistant.io +- [Niels Klumper (@Klumper)](https://github.com/Klumper "49 total commits to the Home Assistant orga: +32 commits to brands +17 commits to home-assistant.io +") +- [Niels Mündler (@nielstron)](https://github.com/nielstron "34 total commits to the Home Assistant orga: +23 commits to core +8 commits to home-assistant.io 3 commits to netdisco ") - [nierob (@nierob)](https://github.com/nierob "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Nigel Rook (@NigelRook)](https://github.com/NigelRook "2 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer -1 commit to home-assistant +1 commit to frontend +1 commit to core ") - [Nik Klever (@nklever)](https://github.com/nklever "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Nik Rolls (@nikrolls)](https://github.com/nikrolls "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands ") - [Nikita Chernozipunnikov (@thatguynikita)](https://github.com/thatguynikita "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Niklas (@niklaswa)](https://github.com/niklaswa "6 total commits to the Home Assistant orga: 5 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Niklas Grebe (@ThYpHo0n)](https://github.com/ThYpHo0n "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -8994,7 +11025,7 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Niklas Morberg (@morberg)](https://github.com/morberg "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [Niklas V (@Nicxe)](https://github.com/Nicxe "2 total commits to the Home Assistant orga: @@ -9002,7 +11033,7 @@ This page contains a list of people who have contributed in one way or another t ") - [Niklas Wagner (@Skaronator)](https://github.com/Skaronator "10 total commits to the Home Assistant orga: 9 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Nikola (@niksy111)](https://github.com/niksy111 "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io @@ -9011,41 +11042,57 @@ This page contains a list of people who have contributed in one way or another t 1 commit to feedparser ") - [Nikolas Beutler (@biacz)](https://github.com/biacz "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [Nikolay Kasyanov (@nikolaykasyanov)](https://github.com/nikolaykasyanov "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Nikolay Vasilchuk (@Anonym-tsk)](https://github.com/Anonym-tsk "20 total commits to the Home Assistant orga: -15 commits to home-assistant -3 commits to home-assistant-polymer -2 commits to home-assistant.io +- [Nikolay Vasilchuk (@Anonym-tsk)](https://github.com/Anonym-tsk "26 total commits to the Home Assistant orga: +19 commits to core +4 commits to home-assistant.io +3 commits to frontend ") - [Nils Kristian Brekke (@Brekkjern)](https://github.com/Brekkjern "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Nils Larsgård (@nilsmagnus)](https://github.com/nilsmagnus "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Nils Uliczka (@darookee)](https://github.com/darookee "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [nilzen (@nilzen)](https://github.com/nilzen "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") +- [Nito Buendia (@nitobuendia)](https://github.com/nitobuendia "2 total commits to the Home Assistant orga: +2 commits to brands +") - [nkrauss (@nkrauss)](https://github.com/nkrauss "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [nldroid (@nldroid)](https://github.com/nldroid "48 total commits to the Home Assistant orga: +32 commits to brands +16 commits to home-assistant.io +") - [NMA (@nma83)](https://github.com/nma83 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Nolan Darilek (@ndarilek)](https://github.com/ndarilek "1 total commits to the Home Assistant orga: -1 commit to hassio +- [Noam Okman (@noamokman)](https://github.com/noamokman "1 total commits to the Home Assistant orga: +1 commit to hassio-addons ") -- [Nolan Gilley (@nkgilley)](https://github.com/nkgilley "123 total commits to the Home Assistant orga: -95 commits to home-assistant -28 commits to home-assistant.io +- [NobleKangaroo (@NobleKangaroo)](https://github.com/NobleKangaroo "3 total commits to the Home Assistant orga: +3 commits to core +") +- [Nolan Darilek (@ndarilek)](https://github.com/ndarilek "1 total commits to the Home Assistant orga: +1 commit to supervisor +") +- [Nolan Gilley (@nkgilley)](https://github.com/nkgilley "125 total commits to the Home Assistant orga: +96 commits to core +29 commits to home-assistant.io ") - [nollbit (@nollbit)](https://github.com/nollbit "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -9054,35 +11101,35 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [nordeep (@nordeep)](https://github.com/nordeep "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [nordlead2005 (@nordlead2005)](https://github.com/nordlead2005 "7 total commits to the Home Assistant orga: 4 commits to home-assistant.io -3 commits to home-assistant +3 commits to core ") - [Norien (@Norien)](https://github.com/Norien "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [normakm (@normakm)](https://github.com/normakm "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [NotoriousBDG (@notoriousbdg)](https://github.com/notoriousbdg "7 total commits to the Home Assistant orga: 3 commits to hassio-addons -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [NovapaX (@NovapaX)](https://github.com/NovapaX "60 total commits to the Home Assistant orga: -50 commits to home-assistant-polymer -8 commits to home-assistant -1 commit to home-assistant-assets +50 commits to frontend +8 commits to core +1 commit to assets 1 commit to home-assistant.io ") - [noxhirsch (@noxhirsch)](https://github.com/noxhirsch "12 total commits to the Home Assistant orga: 11 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [nragon (@nragon)](https://github.com/nragon "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [nsimb (@nsimb)](https://github.com/nsimb "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -9090,11 +11137,14 @@ This page contains a list of people who have contributed in one way or another t - [ntalekt (@ntalekt)](https://github.com/ntalekt "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") +- [nuhi (@noohi)](https://github.com/noohi "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [nullpixel (@nullpixel)](https://github.com/nullpixel "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [Nuno Sousa (@nunofgs)](https://github.com/nunofgs "7 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 2 commits to home-assistant.io 1 commit to homebridge-homeassistant ") @@ -9110,21 +11160,19 @@ 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 orga: 480 commits to libcoap ") -- [ochlocracy (@ochlocracy)](https://github.com/ochlocracy "13 total commits to the Home Assistant orga: -13 commits to home-assistant -") -- [Odianosen Ejale (@Odianosen25)](https://github.com/Odianosen25 "395 total commits to the Home Assistant orga: -395 commits to appdaemon +- [ochlocracy (@ochlocracy)](https://github.com/ochlocracy "67 total commits to the Home Assistant orga: +48 commits to core +19 commits to home-assistant.io ") - [Odin Hørthe Omdal (@odinho)](https://github.com/odinho "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") -- [Odin Ugedal (@odinuge)](https://github.com/odinuge "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Odin Ugedal (@odinuge)](https://github.com/odinuge "3 total commits to the Home Assistant orga: +2 commits to core 1 commit to home-assistant.io ") - [Ofek Ashery (@ofekashery)](https://github.com/ofekashery "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [officiallybob (@officiallybob)](https://github.com/officiallybob "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -9132,6 +11180,9 @@ This page contains a list of people who have contributed in one way or another t - [OGINO Masanori (@omasanori)](https://github.com/omasanori "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ohad Levy (@ohadlevy)](https://github.com/ohadlevy "1 total commits to the Home Assistant orga: +1 commit to core +") - [ohadbenita (@ohadbenita)](https://github.com/ohadbenita "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -9139,7 +11190,7 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [ohmer1 (@ohmer1)](https://github.com/ohmer1 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Okke Garling (@ogarling)](https://github.com/ogarling "1 total commits to the Home Assistant orga: @@ -9156,39 +11207,50 @@ This page contains a list of people who have contributed in one way or another t ") - [Ole\-Kenneth (@olekenneth)](https://github.com/olekenneth "2 total commits to the Home Assistant orga: 1 commit to homebridge-homeassistant -1 commit to home-assistant +1 commit to core +") +- [Ole\-Martin Heggen (@Swampen)](https://github.com/Swampen "1 total commits to the Home Assistant orga: +1 commit to core ") - [Oleg (@5LICK)](https://github.com/5LICK "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Oleg Kurapov (@2sheds)](https://github.com/2sheds "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Oleksandr Omelchuk (@sashao)](https://github.com/sashao "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [OleksandrBerchenko (@OleksandrBerchenko)](https://github.com/OleksandrBerchenko "7 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 1 commit to home-assistant.io ") -- [Oleksii Serdiuk (@leppa)](https://github.com/leppa "16 total commits to the Home Assistant orga: -11 commits to home-assistant +- [Oleksii Serdiuk (@leppa)](https://github.com/leppa "17 total commits to the Home Assistant orga: +12 commits to core 5 commits to home-assistant.io ") +- [Olen (@Olen)](https://github.com/Olen "1 total commits to the Home Assistant orga: +1 commit to core +") - [Olifant1990 (@Olifant1990)](https://github.com/Olifant1990 "6 total commits to the Home Assistant orga: 6 commits to open-zwave ") +- [olijouve (@olijouve)](https://github.com/olijouve "4 total commits to the Home Assistant orga: +2 commits to core +1 commit to hassio-addons +1 commit to home-assistant.io +") - [Olimpiu Rob (@olimpiurob)](https://github.com/olimpiurob "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Oliv3rDog (@Oliv3rDog)](https://github.com/Oliv3rDog "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Oliver (@scarface-4711)](https://github.com/scarface-4711 "34 total commits to the Home Assistant orga: -24 commits to home-assistant +- [Oliver (@scarface-4711)](https://github.com/scarface-4711 "38 total commits to the Home Assistant orga: +28 commits to core 9 commits to home-assistant.io 1 commit to netdisco ") @@ -9199,33 +11261,46 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Oliver van Porten (@mcdeck)](https://github.com/mcdeck "10 total commits to the Home Assistant orga: -10 commits to home-assistant +10 commits to core ") - [Oliver Voelker (@magenbrot)](https://github.com/magenbrot "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [oliverhg1 (@oliverhg1)](https://github.com/oliverhg1 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [OliverRepo (@OliverRepo)](https://github.com/OliverRepo "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [oliverscu (@oliverscu)](https://github.com/oliverscu "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Olivier B (@hobbe)](https://github.com/hobbe "4 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io +") - [Olivier DEBAUCHE (@Smartappli)](https://github.com/Smartappli "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Olivier Guerriat (@olivierguerriat)](https://github.com/olivierguerriat "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Olivér Falvai (@ofalvai)](https://github.com/ofalvai "2 total commits to the Home Assistant orga: +- [Olivér Falvai (@ofalvai)](https://github.com/ofalvai "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io +1 commit to frontend ") -- [Omar Usman (@omarusman)](https://github.com/omarusman "3 total commits to the Home Assistant orga: +- [ollo69 (@ollo69)](https://github.com/ollo69 "8 total commits to the Home Assistant orga: +5 commits to core +2 commits to brands +1 commit to home-assistant.io +") +- [Omar Usman (@oozman)](https://github.com/oozman "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core +") +- [omegacore (@omegacore)](https://github.com/omegacore "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Omen Wild (@OmenWild)](https://github.com/OmenWild "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -9233,62 +11308,84 @@ This page contains a list of people who have contributed in one way or another t - [Omer Efrat (@efratomer)](https://github.com/efratomer "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [On Freund (@OnFreund)](https://github.com/OnFreund "13 total commits to the Home Assistant orga: -8 commits to home-assistant -4 commits to home-assistant.io -1 commit to home-assistant-polymer +- [omriasta (@omriasta)](https://github.com/omriasta "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to brands ") -- [Oncleben31 (@oncleben31)](https://github.com/oncleben31 "21 total commits to the Home Assistant orga: +- [On Freund (@OnFreund)](https://github.com/OnFreund "37 total commits to the Home Assistant orga: +20 commits to core 12 commits to home-assistant.io -9 commits to home-assistant +3 commits to frontend +1 commit to developers.home-assistant +1 commit to brands +") +- [Oncleben31 (@oncleben31)](https://github.com/oncleben31 "22 total commits to the Home Assistant orga: +12 commits to home-assistant.io +10 commits to core ") - [Ong Vairoj (@ejel)](https://github.com/ejel "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [onlymejosh (@onlymejosh)](https://github.com/onlymejosh "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [onsmam (@onsmam)](https://github.com/onsmam "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Open Home Automation (@open-homeautomation)](https://github.com/open-homeautomation "41 total commits to the Home Assistant orga: -29 commits to home-assistant +29 commits to core 12 commits to home-assistant.io ") - [OpenDave15 (@OpenDave15)](https://github.com/OpenDave15 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") +- [optama (@optama)](https://github.com/optama "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [orb9 (@orb9)](https://github.com/orb9 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [orrpan (@orrpan)](https://github.com/orrpan "1 total commits to the Home Assistant orga: +- [orrpan (@orrpan)](https://github.com/orrpan "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") - [Orson (@orson1282)](https://github.com/orson1282 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Oscar Calvo (@ocalvo)](https://github.com/ocalvo "1 total commits to the Home Assistant orga: -1 commit to hassos +- [Oscar Calvo (@ocalvo)](https://github.com/ocalvo "31 total commits to the Home Assistant orga: +23 commits to home-assistant.io +6 commits to core +1 commit to operating-system +1 commit to brands +") +- [Oscar Stenqvist (@Tickaren)](https://github.com/Tickaren "1 total commits to the Home Assistant orga: +1 commit to android ") - [Oscar Tin Lai (@soraxas)](https://github.com/soraxas "6 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 3 commits to home-assistant.io ") +- [OscarHanzely (@OscarHanzely)](https://github.com/OscarHanzely "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [osirisinferi (@osirisinferi)](https://github.com/osirisinferi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Othou (@Othou)](https://github.com/Othou "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [ottersen (@ottersen)](https://github.com/ottersen "14 total commits to the Home Assistant orga: 11 commits to home-assistant.io -2 commits to home-assistant-polymer -1 commit to home-assistant +2 commits to frontend +1 commit to core ") -- [Otto Winter (@OttoWinter)](https://github.com/OttoWinter "189 total commits to the Home Assistant orga: -149 commits to home-assistant +- [Otto Winter (@OttoWinter)](https://github.com/OttoWinter "190 total commits to the Home Assistant orga: +150 commits to core 28 commits to home-assistant.io -5 commits to home-assistant-polymer +5 commits to frontend 3 commits to hass-release 2 commits to developers.home-assistant 1 commit to netdisco @@ -9300,36 +11397,70 @@ This page contains a list of people who have contributed in one way or another t - [overkill32 (@overkill32)](https://github.com/overkill32 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ovidiu Sas (@ovidiusas)](https://github.com/ovidiusas "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [ovidiulaz7 (@ovidiulaz7)](https://github.com/ovidiulaz7 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Oxan van Leeuwen (@oxan)](https://github.com/oxan "1 total commits to the Home Assistant orga: +1 commit to core +") +- [OzGav (@OzGav)](https://github.com/OzGav "1 total commits to the Home Assistant orga: +1 commit to brands +") - [oznu (@oznu)](https://github.com/oznu "1 total commits to the Home Assistant orga: 1 commit to homebridge-homeassistant ") - [P0L0 (@p0l0)](https://github.com/p0l0 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") +- [P\-Verbrugge (@P-Verbrugge)](https://github.com/P-Verbrugge "4 total commits to the Home Assistant orga: +3 commits to core +1 commit to home-assistant.io +") +- [paalex (@paalex)](https://github.com/paalex "1 total commits to the Home Assistant orga: +1 commit to companion.home-assistant +") +- [pablitofernandez (@pablitofernandez)](https://github.com/pablitofernandez "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Pablo Mellado (@mellado)](https://github.com/mellado "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Paddy0174 (@Paddy0174)](https://github.com/Paddy0174 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [pakwan (@pakwan)](https://github.com/pakwan "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [panache67 (@panache67)](https://github.com/panache67 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Panagiotis Panagiotopoulos (@ppanagiotis)](https://github.com/ppanagiotis "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io +- [Panagiotis Panagiotopoulos (@ppanagiotis)](https://github.com/ppanagiotis "7 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +2 commits to brands +2 commits to home-assistant.io +1 commit to core ") - [pander8828 (@pander8828)](https://github.com/pander8828 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [panosmz (@panosmz)](https://github.com/panosmz "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Paolo Bonzini (@bonzini)](https://github.com/bonzini "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Paolo Tuninetto (@tulindo)](https://github.com/tulindo "5 total commits to the Home Assistant orga: -5 commits to home-assistant +- [Paolo Tuninetto (@tulindo)](https://github.com/tulindo "10 total commits to the Home Assistant orga: +9 commits to core +1 commit to home-assistant.io +") +- [paolog89 (@paolog89)](https://github.com/paolog89 "1 total commits to the Home Assistant orga: +1 commit to core ") - [Parker Moore (@parkr)](https://github.com/parkr "62 total commits to the Home Assistant orga: 62 commits to home-assistant.io @@ -9341,53 +11472,57 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Pascal Bach (@bachp)](https://github.com/bachp "10 total commits to the Home Assistant orga: -9 commits to home-assistant +9 commits to core 1 commit to netdisco ") - [Pascal de Ladurantaye (@pascal-de-ladurantaye)](https://github.com/pascal-de-ladurantaye "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Pascal Hahn (@pascalhahn)](https://github.com/pascalhahn "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Pascal Roeleven (@pascallj)](https://github.com/pascallj "7 total commits to the Home Assistant orga: -4 commits to home-assistant -3 commits to home-assistant.io +- [Pascal Roeleven (@pascallj)](https://github.com/pascallj "11 total commits to the Home Assistant orga: +5 commits to core +5 commits to home-assistant.io +1 commit to brands ") -- [Pascal Vizeli (@pvizeli)](https://github.com/pvizeli "5923 total commits to the Home Assistant orga: -1777 commits to hassio -883 commits to home-assistant -843 commits to hassos +- [Pascal Vizeli (@pvizeli)](https://github.com/pvizeli "7469 total commits to the Home Assistant orga: +1981 commits to supervisor +1012 commits to operating-system +989 commits to core +796 commits to hassio-version +573 commits to hassio-addons 499 commits to hassio-build -490 commits to hassio-addons -378 commits to home-assistant.io -272 commits to hassio-version -181 commits to hassio-homeassistant -89 commits to hassio-wheels -87 commits to hassio-base -49 commits to hassio-builder -48 commits to ci-azure -44 commits to developers.home-assistant -38 commits to custom-components-wheels -35 commits to ada -31 commits to hassio-opencv -27 commits to hassio-cli +414 commits to home-assistant.io +217 commits to docker +148 commits to wheels +129 commits to docker-base +112 commits to ci-azure +64 commits to hassio-builder +59 commits to plugin-audio +56 commits to developers.home-assistant +56 commits to wheels-custom-integrations +45 commits to wheels-opencv +43 commits to ada +37 commits to supervised-installer +35 commits to python-openzwave +29 commits to cli +22 commits to hassio-addons-development 22 commits to hassio-auth -20 commits to hassio-installer -18 commits to hassio-addons-development -18 commits to python-openzwave -17 commits to hassio-addons-example -13 commits to hassio-tensorflow +22 commits to wheels-tensorflow +20 commits to frontend +17 commits to addons-example +16 commits to plugin-cli +15 commits to plugin-dns 11 commits to actions -8 commits to home-assistant-polymer -8 commits to hassio-dns -6 commits to hassos-cli -3 commits to architecture -3 commits to open-zwave -2 commits to hassos-pki -1 commit to netdisco +7 commits to wheels-scipy +6 commits to plugin-multicast +6 commits to hassos-blobs +4 commits to architecture +4 commits to open-zwave 1 commit to home-assistant-js-websocket +1 commit to netdisco 1 commit to people ") - [pascalsaul (@pascalsaul)](https://github.com/pascalsaul "1 total commits to the Home Assistant orga: @@ -9402,11 +11537,13 @@ This page contains a list of people who have contributed in one way or another t - [patatman (@patatman)](https://github.com/patatman "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [patkap (@patkap)](https://github.com/patkap "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [patmann03 (@patmann03)](https://github.com/patmann03 "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands ") -- [Patrick (@tradiuz)](https://github.com/tradiuz "7 total commits to the Home Assistant orga: +- [Patrick (@tradiuz)](https://github.com/tradiuz "9 total commits to the Home Assistant orga: 7 commits to home-assistant.io +2 commits to core ") - [Patrick Aikens (@duckpuppy)](https://github.com/duckpuppy "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io @@ -9414,9 +11551,15 @@ This page contains a list of people who have contributed in one way or another t - [Patrick Clery (@patrickclery)](https://github.com/patrickclery "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Patrick D\. (@pavax)](https://github.com/pavax "1 total commits to the Home Assistant orga: +1 commit to open-zwave +") +- [Patrick Decat (@pdecat)](https://github.com/pdecat "1 total commits to the Home Assistant orga: +1 commit to android +") - [Patrick Easters (@patrickeasters)](https://github.com/patrickeasters "7 total commits to the Home Assistant orga: 6 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Patrick Georgi (@pgeorgi)](https://github.com/pgeorgi "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source @@ -9425,56 +11568,78 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Patrick Hofmann (@PH89)](https://github.com/PH89 "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") -- [Patrick Kishino (@pkishino)](https://github.com/pkishino "1 total commits to the Home Assistant orga: +- [Patrick Kishino (@pkishino)](https://github.com/pkishino "4 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io +") +- [Patrick Smits (@Pater100)](https://github.com/Pater100 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Patrick T\.C (@ptc)](https://github.com/ptc "3 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Patrick T\.C (@ptc)](https://github.com/ptc "4 total commits to the Home Assistant orga: +2 commits to core +1 commit to hassio-addons 1 commit to home-assistant.io ") - [Patrick White (@pw)](https://github.com/pw "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Patrik (@ggravlingen)](https://github.com/ggravlingen "14 total commits to the Home Assistant orga: -10 commits to home-assistant +10 commits to core 2 commits to home-assistant.io -1 commit to developers.home-assistant 1 commit to alerts.home-assistant.io +1 commit to developers.home-assistant ") - [Patrik Ekström (@patrik3k)](https://github.com/patrik3k "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Patrik Hermansson (@bphermansson)](https://github.com/bphermansson "5 total commits to the Home Assistant orga: -5 commits to home-assistant.io +- [Patrik Hermansson (@bphermansson)](https://github.com/bphermansson "6 total commits to the Home Assistant orga: +6 commits to home-assistant.io +") +- [Patryk (@C6H6)](https://github.com/C6H6 "1 total commits to the Home Assistant orga: +1 commit to core ") - [Patryk Gałczyński (@evemorgen)](https://github.com/evemorgen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Paul Annekov (@PaulAnnekov)](https://github.com/PaulAnnekov "17 total commits to the Home Assistant orga: -14 commits to home-assistant +- [PatSki123 (@patski123)](https://github.com/patski123 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Paul (@peaster)](https://github.com/peaster "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Paul Annekov (@PaulAnnekov)](https://github.com/PaulAnnekov "19 total commits to the Home Assistant orga: +16 commits to core 3 commits to home-assistant.io ") - [Paul Archer (@geek65535)](https://github.com/geek65535 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Paul Beckcom (@kethoth)](https://github.com/kethoth "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +- [Paul Beckcom (@pbeckcom)](https://github.com/pbeckcom "2 total commits to the Home Assistant orga: +1 commit to frontend +1 commit to core ") - [Paul Biester (@isonet)](https://github.com/isonet "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Paul Bottein (@piitaya)](https://github.com/piitaya "5 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 1 commit to home-assistant.io ") -- [Paul Davis (@paulbdavis)](https://github.com/paulbdavis "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +- [Paul Daumlechner (@pawlizio)](https://github.com/pawlizio "1 total commits to the Home Assistant orga: +1 commit to core ") -- [Paul Hendry (@pshendry)](https://github.com/pshendry "1 total commits to the Home Assistant orga: +- [Paul Davis (@paulbdavis)](https://github.com/paulbdavis "1 total commits to the Home Assistant orga: +1 commit to frontend +") +- [Paul Enright (@penright)](https://github.com/penright "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Paul Hendry (@polendri)](https://github.com/polendri "1 total commits to the Home Assistant orga: 1 commit to warrant ") - [Paul Hobbs (@SolidElectronics)](https://github.com/SolidElectronics "1 total commits to the Home Assistant orga: @@ -9493,54 +11658,62 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Paul Klingelhuber (@NoUsername)](https://github.com/NoUsername "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Paul Krischer (@SqyD)](https://github.com/SqyD "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Paul Madden (@maddenp)](https://github.com/maddenp "4 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Paul Madden (@maddenp)](https://github.com/maddenp "5 total commits to the Home Assistant orga: +3 commits to core +2 commits to home-assistant.io +") +- [Paul Manzotti (@manzanotti)](https://github.com/manzanotti "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Paul Nicholls (@pauln)](https://github.com/pauln "2 total commits to the Home Assistant orga: 2 commits to netdisco ") - [Paul Philippov (@themactep)](https://github.com/themactep "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Paul Rabahy (@PRabahy)](https://github.com/PRabahy "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Paul Romkes (@Romkabouter)](https://github.com/Romkabouter "1 total commits to the Home Assistant orga: -1 commit to hassio-addons +- [Paul Romkes (@Romkabouter)](https://github.com/Romkabouter "3 total commits to the Home Assistant orga: +2 commits to hassio-addons +1 commit to core ") -- [Paul Sinclair (@sinclairpaul)](https://github.com/sinclairpaul "4 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [Paul Sinclair (@sinclairpaul)](https://github.com/sinclairpaul "17 total commits to the Home Assistant orga: +16 commits to home-assistant.io +1 commit to developers.home-assistant ") - [Paul Sokolovsky (@pfalcon)](https://github.com/pfalcon "6 total commits to the Home Assistant orga: 3 commits to netdisco -3 commits to home-assistant +3 commits to core ") - [Paul Stenius (@stenius)](https://github.com/stenius "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Paul Swartz (@paulswartz)](https://github.com/paulswartz "2 total commits to the Home Assistant orga: 2 commits to feedparser ") - [Paul Tarjan (@ptarjan)](https://github.com/ptarjan "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") +- [PaulParis1 (@PaulParis1)](https://github.com/PaulParis1 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [pavanagrawal123 (@pavanagrawal123)](https://github.com/pavanagrawal123 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Pavel Pletenev (@ASMfreaK)](https://github.com/ASMfreaK "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Pavel Ponomarev (@awsum)](https://github.com/awsum "2 total commits to the Home Assistant orga: -2 commits to home-assistant-polymer +- [Pavlo Ponomarov (@awsum)](https://github.com/awsum "2 total commits to the Home Assistant orga: +2 commits to frontend ") - [Pavol Babinčák (@scrool)](https://github.com/scrool "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -9548,9 +11721,11 @@ This page contains a list of people who have contributed in one way or another t - [Pavol Holes (@pavolholes)](https://github.com/pavolholes "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") -- [Pawel (@pszafer)](https://github.com/pszafer "21 total commits to the Home Assistant orga: -12 commits to home-assistant +- [Pawel (@pszafer)](https://github.com/pszafer "23 total commits to the Home Assistant orga: +12 commits to core 9 commits to home-assistant.io +1 commit to wheels-custom-integrations +1 commit to brands ") - [Pawel Winogrodzki (@PawelWMS)](https://github.com/PawelWMS "12 total commits to the Home Assistant orga: 12 commits to libcoap @@ -9562,58 +11737,71 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Paxy (@Paxy)](https://github.com/Paxy "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [pbalogh77 (@pbalogh77)](https://github.com/pbalogh77 "19 total commits to the Home Assistant orga: -16 commits to home-assistant +- [pbalogh77 (@pbalogh77)](https://github.com/pbalogh77 "20 total commits to the Home Assistant orga: +17 commits to core 3 commits to home-assistant.io ") - [pcragone (@pcragone)](https://github.com/pcragone "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [pdanilew (@pdanilew)](https://github.com/pdanilew "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [PDarkTemplar (@PDarkTemplar)](https://github.com/PDarkTemplar "9 total commits to the Home Assistant orga: 9 commits to open-zwave ") +- [pdcemulator (@pdcemulator)](https://github.com/pdcemulator "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [pdeelen (@pdeelen)](https://github.com/pdeelen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [PDekker (@PDekker)](https://github.com/PDekker "2 total commits to the Home Assistant orga: -2 commits to home-assistant-polymer +2 commits to frontend +") +- [Pedro Lamas (@PedroLamas)](https://github.com/PedroLamas "5 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io +1 commit to frontend ") - [Pedro Navarro (@pedronavf)](https://github.com/pedronavf "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Pedro Pombeiro (@PombeirP)](https://github.com/PombeirP "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io -") - [PeeJay (@pejotigrek)](https://github.com/pejotigrek "1 total commits to the Home Assistant orga: -1 commit to home-assistant-assets +1 commit to assets ") - [pepeEL (@pepeEL)](https://github.com/pepeEL "18 total commits to the Home Assistant orga: 16 commits to open-zwave -2 commits to home-assistant +2 commits to core ") - [Per Osbäck (@perosb)](https://github.com/perosb "26 total commits to the Home Assistant orga: -23 commits to home-assistant +23 commits to core 3 commits to home-assistant.io ") -- [Per Sandström (@persandstrom)](https://github.com/persandstrom "135 total commits to the Home Assistant orga: -104 commits to home-assistant +- [Per Sandström (@persandstrom)](https://github.com/persandstrom "136 total commits to the Home Assistant orga: +105 commits to core 19 commits to home-assistant.io -12 commits to home-assistant-polymer +12 commits to frontend ") -- [Per\-Øyvind Bruun (@peroyvind)](https://github.com/peroyvind "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Per\-Øyvind Bruun (@peroyvind)](https://github.com/peroyvind "4 total commits to the Home Assistant orga: +3 commits to core 1 commit to home-assistant.io ") - [pereiraru (@pereiraru)](https://github.com/pereiraru "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [perfalk (@perfalk)](https://github.com/perfalk "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [perjury (@perjury)](https://github.com/perjury "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") +- [Perry Naseck (@DaAwesomeP)](https://github.com/DaAwesomeP "2 total commits to the Home Assistant orga: +1 commit to operating-system +1 commit to core ") - [Pertti Roitto (@roitto)](https://github.com/roitto "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -9625,16 +11813,16 @@ This page contains a list of people who have contributed in one way or another t 3 commits to pyharmony ") - [Pete Peterson (@petey)](https://github.com/petey "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [PeteBa (@PeteBa)](https://github.com/PeteBa "12 total commits to the Home Assistant orga: -6 commits to home-assistant -4 commits to home-assistant-polymer +6 commits to core +4 commits to frontend 2 commits to home-assistant.io ") - [PetePriority (@PetePriority)](https://github.com/PetePriority "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Peter (@AnderssonPeter)](https://github.com/AnderssonPeter "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -9642,12 +11830,18 @@ This page contains a list of people who have contributed in one way or another t - [Peter Armstrong (@peteretep)](https://github.com/peteretep "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") +- [Peter Bainbridge (@PeterBainbridge)](https://github.com/PeterBainbridge "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Peter Clarke (@peteclarkez)](https://github.com/peteclarkez "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Peter Epley (@epleypa)](https://github.com/epleypa "9 total commits to the Home Assistant orga: -7 commits to home-assistant.io -2 commits to home-assistant +- [Peter Epley (@epleypa)](https://github.com/epleypa "11 total commits to the Home Assistant orga: +9 commits to home-assistant.io +2 commits to core +") +- [Peter Gebruers (@petergebruers)](https://github.com/petergebruers "1 total commits to the Home Assistant orga: +1 commit to open-zwave ") - [Peter Golm (@pgolm)](https://github.com/pgolm "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -9655,9 +11849,10 @@ This page contains a list of people who have contributed in one way or another t - [Peter Kyrkos (@KmanOz)](https://github.com/KmanOz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Peter Nijssen (@peternijssen)](https://github.com/peternijssen "14 total commits to the Home Assistant orga: -8 commits to home-assistant.io -6 commits to home-assistant +- [Peter Nijssen (@peternijssen)](https://github.com/peternijssen "21 total commits to the Home Assistant orga: +10 commits to core +9 commits to home-assistant.io +2 commits to alerts.home-assistant.io ") - [Peter Tisovčík (@mienkofax)](https://github.com/mienkofax "1 total commits to the Home Assistant orga: 1 commit to open-zwave @@ -9669,7 +11864,7 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [petewill (@petewill)](https://github.com/petewill "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [petkov (@petkov)](https://github.com/petkov "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -9678,48 +11873,54 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Petr Vraník (@konikvranik)](https://github.com/konikvranik "14 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 6 commits to home-assistant.io ") -- [Petro31 (@Petro31)](https://github.com/Petro31 "11 total commits to the Home Assistant orga: -5 commits to home-assistant.io -4 commits to home-assistant -2 commits to home-assistant-polymer +- [Petro31 (@Petro31)](https://github.com/Petro31 "15 total commits to the Home Assistant orga: +8 commits to home-assistant.io +5 commits to core +2 commits to frontend +") +- [pettertho (@pettertho)](https://github.com/pettertho "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [pezinek (@pezinek)](https://github.com/pezinek "9 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 1 commit to home-assistant.io ") - [pgenera (@pgenera)](https://github.com/pgenera "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [phardy (@phardy)](https://github.com/phardy "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [phfix (@phfix)](https://github.com/phfix "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Phi Dong (@pdong)](https://github.com/pdong "12 total commits to the Home Assistant orga: -8 commits to home-assistant-polymer +8 commits to frontend 3 commits to home-assistant.io 1 commit to developers.home-assistant ") -- [Phil (@pnbruckner)](https://github.com/pnbruckner "49 total commits to the Home Assistant orga: -35 commits to home-assistant -14 commits to home-assistant.io +- [Phil (@pnbruckner)](https://github.com/pnbruckner "111 total commits to the Home Assistant orga: +85 commits to core +26 commits to home-assistant.io ") - [Phil (@godloth)](https://github.com/godloth "10 total commits to the Home Assistant orga: 10 commits to home-assistant.io ") -- [Phil Cole (@filcole)](https://github.com/filcole "19 total commits to the Home Assistant orga: -12 commits to home-assistant.io -7 commits to home-assistant +- [Phil Cole (@filcole)](https://github.com/filcole "20 total commits to the Home Assistant orga: +13 commits to home-assistant.io +7 commits to core ") - [Phil Elson (@pelson)](https://github.com/pelson "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core +") +- [Phil Freo (@philfreo)](https://github.com/philfreo "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Phil Frost (@bitglue)](https://github.com/bitglue "15 total commits to the Home Assistant orga: -12 commits to home-assistant +12 commits to core 2 commits to home-assistant.io 1 commit to people ") @@ -9727,19 +11928,19 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io ") - [Phil Hansen (@Hansen8601)](https://github.com/Hansen8601 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Phil Hawthorne (@philhawthorne)](https://github.com/philhawthorne "37 total commits to the Home Assistant orga: 22 commits to home-assistant.io -11 commits to home-assistant +11 commits to core 4 commits to open-zwave ") - [Phil Kates (@philk)](https://github.com/philk "11 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 3 commits to home-assistant.io ") - [Phil Lavin (@phil-lavin)](https://github.com/phil-lavin "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Phil Nelson (@phil-nelson)](https://github.com/phil-nelson "2 total commits to the Home Assistant orga: 2 commits to open-zwave @@ -9748,11 +11949,16 @@ This page contains a list of people who have contributed in one way or another t 1 commit to 1password-teams-open-source ") - [phileaton (@phileaton)](https://github.com/phileaton "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Phileep (@Phileep)](https://github.com/Phileep "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Philip Allgaier (@spacegaier)](https://github.com/spacegaier "3 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +1 commit to core +1 commit to home-assistant.io +") - [Philip Hofstetter (@pilif)](https://github.com/pilif "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") @@ -9760,85 +11966,93 @@ This page contains a list of people who have contributed in one way or another t 1 commit to pi-gen ") - [Philip Kleimeyer (@philklei)](https://github.com/philklei "5 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 1 commit to home-assistant.io ") - [Philip Lundrigan (@philipbl)](https://github.com/philipbl "65 total commits to the Home Assistant orga: -56 commits to home-assistant +56 commits to core 9 commits to home-assistant.io ") -- [Philip Rosenberg\-Watt (@PhilRW)](https://github.com/PhilRW "27 total commits to the Home Assistant orga: -16 commits to home-assistant +- [Philip Rosenberg\-Watt (@PhilRW)](https://github.com/PhilRW "28 total commits to the Home Assistant orga: +17 commits to core 11 commits to home-assistant.io ") - [Philip Søeberg (@philipsoeberg)](https://github.com/philipsoeberg "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [Philipp Danner (@dannerph)](https://github.com/dannerph "2 total commits to the Home Assistant orga: -1 commit to home-assistant -1 commit to home-assistant.io +- [Philipp Danner (@dannerph)](https://github.com/dannerph "6 total commits to the Home Assistant orga: +3 commits to core +2 commits to home-assistant.io +1 commit to brands ") -- [Philipp Schmitt (@pschmitt)](https://github.com/pschmitt "40 total commits to the Home Assistant orga: -27 commits to home-assistant +- [Philipp Schmitt (@pschmitt)](https://github.com/pschmitt "44 total commits to the Home Assistant orga: +32 commits to core 11 commits to home-assistant.io -1 commit to appdaemon 1 commit to hassio-build ") - [Philipp Temminghoff (@phil65)](https://github.com/phil65 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Philipp Wensauer (@ultrara1n)](https://github.com/ultrara1n "3 total commits to the Home Assistant orga: +- [Philipp Wensauer (@ultrara1n)](https://github.com/ultrara1n "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to developers.home-assistant +1 commit to core ") - [Philippe Delodder (@phdelodder)](https://github.com/phdelodder "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [philipperequile (@philipperequile)](https://github.com/philipperequile "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Phill Price (@phillprice)](https://github.com/phillprice "14 total commits to the Home Assistant orga: -13 commits to home-assistant.io +- [Phill \(pssc\) (@pssc)](https://github.com/pssc "1 total commits to the Home Assistant orga: +1 commit to supervisor +") +- [Phill Price (@phillprice)](https://github.com/phillprice "16 total commits to the Home Assistant orga: +15 commits to home-assistant.io 1 commit to developers.home-assistant ") - [phispi (@phispi)](https://github.com/phispi "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [phithor (@phithor)](https://github.com/phithor "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [phlet (@phlet)](https://github.com/phlet "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [phlet (@phlet)](https://github.com/phlet "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [photinus (@photinus)](https://github.com/photinus "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [PhracturedBlue (@PhracturedBlue)](https://github.com/PhracturedBlue "43 total commits to the Home Assistant orga: -25 commits to home-assistant +25 commits to core 13 commits to home-assistant.io -5 commits to home-assistant-polymer +5 commits to frontend +") +- [phrfpeixoto (@phrfpeixoto)](https://github.com/phrfpeixoto "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Pier\-Luc Charbonneau (@plcharbonneau)](https://github.com/plcharbonneau "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [Pierre (@BaQs)](https://github.com/BaQs "3 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to home-assistant.io +- [Pierre (@BaQs)](https://github.com/BaQs "5 total commits to the Home Assistant orga: +3 commits to core +2 commits to home-assistant.io ") - [Pierre Gronlier (@ticapix)](https://github.com/ticapix "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Pierre Sicot (@psicot)](https://github.com/psicot "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") -- [Pierre Ståhl (@postlund)](https://github.com/postlund "54 total commits to the Home Assistant orga: -36 commits to home-assistant +- [Pierre Ståhl (@postlund)](https://github.com/postlund "55 total commits to the Home Assistant orga: +36 commits to core 12 commits to home-assistant.io 4 commits to netdisco -2 commits to home-assistant-polymer +2 commits to frontend +1 commit to brands ") - [Pierre Wilken (@pwilken)](https://github.com/pwilken "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source @@ -9846,26 +12060,37 @@ This page contains a list of people who have contributed in one way or another t - [Pierre\-Jean Leger (@Caligone)](https://github.com/Caligone "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Pierre\-Luc Milord (@plmilord)](https://github.com/plmilord "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [Piers Dawson\-Damer (@piersdd)](https://github.com/piersdd "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Pieter Ennes (@skion)](https://github.com/skion "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Pieter Goetschalckx (@314eter)](https://github.com/314eter "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [pinksocks (@pinksocks)](https://github.com/pinksocks "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Piotr Dobrowolski (@Informatic)](https://github.com/Informatic "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [Piotr Kubiak (@piotr-kubiak)](https://github.com/piotr-kubiak "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") +- [Piotr Machowski (@PiotrMachowski)](https://github.com/PiotrMachowski "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Piotr Miazga (@polishdeveloper)](https://github.com/polishdeveloper "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Piotr Witek (@piowit)](https://github.com/piowit "1 total commits to the Home Assistant orga: -1 commit to hassos +1 commit to operating-system ") - [Piotr Żuralski (@piotr-zuralski)](https://github.com/piotr-zuralski "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io @@ -9876,9 +12101,6 @@ 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 orga: 1 commit to home-assistant.io ") -- [pixiandreas (@pixiandreas)](https://github.com/pixiandreas "1 total commits to the Home Assistant orga: -1 commit to appdaemon -") - [pjv (@pjv)](https://github.com/pjv "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -9886,11 +12108,14 @@ This page contains a list of people who have contributed in one way or another t 5 commits to warrant ") - [plafü (@plafue)](https://github.com/plafue "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [PlanetJ (@PlanetJ)](https://github.com/PlanetJ "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [plasma16 (@plasma16)](https://github.com/plasma16 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [pleeja (@pleeja)](https://github.com/pleeja "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -9901,6 +12126,9 @@ This page contains a list of people who have contributed in one way or another t - [pmmcmullen94 (@pmmcmullen94)](https://github.com/pmmcmullen94 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [pnguyen\-tyro (@pnguyen-tyro)](https://github.com/pnguyen-tyro "1 total commits to the Home Assistant orga: +1 commit to core +") - [pocek (@pocek)](https://github.com/pocek "6 total commits to the Home Assistant orga: 6 commits to open-zwave ") @@ -9908,7 +12136,10 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [PoofyTeddy (@poofyteddy)](https://github.com/poofyteddy "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +1 commit to home-assistant.io +") +- [Povl H\. Pedersen (@povlhp)](https://github.com/povlhp "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [pp81381 (@pp81381)](https://github.com/pp81381 "1 total commits to the Home Assistant orga: @@ -9920,29 +12151,32 @@ This page contains a list of people who have contributed in one way or another t - [Pratyush Mohapatra (@Ativerc)](https://github.com/Ativerc "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [presslab\-us (@presslab-us)](https://github.com/presslab-us "3 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to home-assistant.io +- [presslab\-us (@presslab-us)](https://github.com/presslab-us "5 total commits to the Home Assistant orga: +3 commits to core +2 commits to home-assistant.io ") - [priiduonu (@priiduonu)](https://github.com/priiduonu "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [PriMachVisSys (@PriMachVisSys)](https://github.com/PriMachVisSys "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") - [printzlau (@printzlau)](https://github.com/printzlau "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") +- [proferabg (@proferabg)](https://github.com/proferabg "1 total commits to the Home Assistant orga: +1 commit to core +") - [prophit987 (@prophit987)](https://github.com/prophit987 "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Przemek Więch (@PeWu)](https://github.com/PeWu "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [psike (@psike)](https://github.com/psike "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [psixilambda (@psixilambda)](https://github.com/psixilambda "4 total commits to the Home Assistant orga: 4 commits to open-zwave @@ -9953,17 +12187,23 @@ 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 orga: 7 commits to home-assistant.io ") +- [punch (@jonthebastard)](https://github.com/jonthebastard "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Puppercino (@Puppercino)](https://github.com/Puppercino "1 total commits to the Home Assistant orga: +1 commit to 1password-teams-open-source +") - [Purplecarrot (@purplecarrot)](https://github.com/purplecarrot "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [pvmil (@pvmil)](https://github.com/pvmil "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [pvmil (@pvmil)](https://github.com/pvmil "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [pyitphyoaung (@pyitphyoaung)](https://github.com/pyitphyoaung "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Pär Svanström (@psvanstrom)](https://github.com/psvanstrom "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Qais Patankar (@qaisjp)](https://github.com/qaisjp "1 total commits to the Home Assistant orga: @@ -9984,49 +12224,60 @@ This page contains a list of people who have contributed in one way or another t - [Quatroking (@Quatroking)](https://github.com/Quatroking "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Quentame (@Quentame)](https://github.com/Quentame "57 total commits to the Home Assistant orga: -55 commits to home-assistant -2 commits to home-assistant.io -") -- [Quentin Favrie (@tseho)](https://github.com/tseho "3 total commits to the Home Assistant orga: -3 commits to appdaemon +- [Quentame (@Quentame)](https://github.com/Quentame "193 total commits to the Home Assistant orga: +156 commits to core +21 commits to home-assistant.io +14 commits to brands +1 commit to alerts.home-assistant.io +1 commit to frontend ") - [Quentin Stafford\-Fraser (@quentinsf)](https://github.com/quentinsf "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Questler (@Questler)](https://github.com/Questler "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [quthla (@quthla)](https://github.com/quthla "21 total commits to the Home Assistant orga: -10 commits to home-assistant -6 commits to home-assistant-polymer -4 commits to home-assistant-iOS +- [quiglag (@quiglag)](https://github.com/quiglag "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Quinn Casey (@qcasey)](https://github.com/qcasey "1 total commits to the Home Assistant orga: +1 commit to frontend +") +- [Quinn Hosler (@quinnhosler)](https://github.com/quinnhosler "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [quthla (@quthla)](https://github.com/quthla "24 total commits to the Home Assistant orga: +12 commits to core +6 commits to frontend +4 commits to iOS +1 commit to android 1 commit to home-assistant.io ") - [Qwertee (@Qwertee)](https://github.com/Qwertee "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Qxlkdr (@Qxlkdr)](https://github.com/Qxlkdr "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [R Huish (@genestealer)](https://github.com/genestealer "28 total commits to the Home Assistant orga: -28 commits to home-assistant.io +- [R Huish (@genestealer)](https://github.com/genestealer "31 total commits to the Home Assistant orga: +31 commits to home-assistant.io +") +- [r24\-IT (@r24-IT)](https://github.com/r24-IT "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [r4nd0mbr1ck (@r4nd0mbr1ck)](https://github.com/r4nd0mbr1ck "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [r\-jordan (@r-jordan)](https://github.com/r-jordan "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Raa'Shaun H\. (@CardcaptorRLH85)](https://github.com/CardcaptorRLH85 "1 total commits to the Home Assistant orga: -1 commit to hassio-installer -") -- [Radim (@rds76)](https://github.com/rds76 "2 total commits to the Home Assistant orga: -2 commits to appdaemon +- [Raa'Shaun Hunter (@CardcaptorRLH85)](https://github.com/CardcaptorRLH85 "1 total commits to the Home Assistant orga: +1 commit to supervised-installer ") - [radinsky (@radinsky)](https://github.com/radinsky "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -10036,7 +12287,13 @@ This page contains a list of people who have contributed in one way or another t ") - [rafale77 (@rafale77)](https://github.com/rafale77 "7 total commits to the Home Assistant orga: 4 commits to home-assistant.io -3 commits to home-assistant +3 commits to core +") +- [Rafał Słota (@rslota)](https://github.com/rslota "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Rafi Wiener (@rafiw)](https://github.com/rafiw "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [rahul\_5409 (@RahulRavishankar)](https://github.com/RahulRavishankar "1 total commits to the Home Assistant orga: 1 commit to hassio-addons @@ -10048,6 +12305,14 @@ This page contains a list of people who have contributed in one way or another t - [rainlake (@rainlake)](https://github.com/rainlake "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [rajlaud (@rajlaud)](https://github.com/rajlaud "11 total commits to the Home Assistant orga: +8 commits to core +2 commits to home-assistant.io +1 commit to frontend +") +- [rako77 (@rako77)](https://github.com/rako77 "1 total commits to the Home Assistant orga: +1 commit to core +") - [ral (@leitonp)](https://github.com/leitonp "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10057,27 +12322,31 @@ This page contains a list of people who have contributed in one way or another t - [Ralph Hopman (@rhopman)](https://github.com/rhopman "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Raman Gupta (@raman325)](https://github.com/raman325 "8 total commits to the Home Assistant orga: -5 commits to home-assistant.io -3 commits to home-assistant +- [Raman Gupta (@raman325)](https://github.com/raman325 "150 total commits to the Home Assistant orga: +101 commits to core +45 commits to home-assistant.io +3 commits to developers.home-assistant +1 commit to brands ") -- [Rami Mosleh (@engrbm87)](https://github.com/engrbm87 "19 total commits to the Home Assistant orga: -8 commits to appdaemon -7 commits to home-assistant -4 commits to home-assistant.io +- [Rami Mosleh (@engrbm87)](https://github.com/engrbm87 "41 total commits to the Home Assistant orga: +29 commits to core +12 commits to home-assistant.io ") - [Randall Mason (@ClashTheBunny)](https://github.com/ClashTheBunny "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [randellhodges (@randellhodges)](https://github.com/randellhodges "8 total commits to the Home Assistant orga: -3 commits to home-assistant-polymer -3 commits to home-assistant +- [randellhodges (@randellhodges)](https://github.com/randellhodges "9 total commits to the Home Assistant orga: +4 commits to core +3 commits to frontend 2 commits to home-assistant.io ") - [Raoul Teeuwen (@raoulteeuwen)](https://github.com/raoulteeuwen "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") +- [rappenze (@rappenze)](https://github.com/rappenze "1 total commits to the Home Assistant orga: +1 commit to core +") - [Rashmi Yadav (@raysrashmi)](https://github.com/raysrashmi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10085,27 +12354,33 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Rasmus (@rasmusbe)](https://github.com/rasmusbe "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [ratcash (@ratcashdev)](https://github.com/ratcashdev "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Ravi K (@shreram)](https://github.com/shreram "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Ravi K (@shreram)](https://github.com/shreram "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [Ray (@raymck)](https://github.com/raymck "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") +- [Ray Cielencki (@rayslinky)](https://github.com/rayslinky "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [ray0711 (@ray0711)](https://github.com/ray0711 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [raymccarthy (@raymccarthy)](https://github.com/raymccarthy "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Raymon de Looff (@raymondelooff)](https://github.com/raymondelooff "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Raymond Ha (@Shraymonks)](https://github.com/Shraymonks "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Raymond Ng (@RaymondNg2)](https://github.com/RaymondNg2 "2 total commits to the Home Assistant orga: 2 commits to open-zwave @@ -10115,11 +12390,15 @@ This page contains a list of people who have contributed in one way or another t ") - [rbflurry (@rbflurry)](https://github.com/rbflurry "20 total commits to the Home Assistant orga: 16 commits to home-assistant.io -4 commits to home-assistant +4 commits to core ") - [RBHR (@rbhr)](https://github.com/rbhr "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [rccoleman (@rccoleman)](https://github.com/rccoleman "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to core +") - [rcmdnk (@rcmdnk)](https://github.com/rcmdnk "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10130,25 +12409,29 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [realthk (@realthk)](https://github.com/realthk "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Rebecca Cran (@bcran)](https://github.com/bcran "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [redbeard (@brianredbeard)](https://github.com/brianredbeard "1 total commits to the Home Assistant orga: -1 commit to appdaemon +- [redbar0n (@redbar0n)](https://github.com/redbar0n "2 total commits to the Home Assistant orga: +1 commit to frontend +1 commit to home-assistant.io ") - [reductio (@reductio)](https://github.com/reductio "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Reed Riley (@reedriley)](https://github.com/reedriley "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [reef\-actor (@reef-actor)](https://github.com/reef-actor "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [reggit96 (@reggit96)](https://github.com/reggit96 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Reinder Reinders (@reinder83)](https://github.com/reinder83 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Reinhard Tartler (@siretart)](https://github.com/siretart "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -10157,68 +12440,80 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Renaud Martinet (@karouf)](https://github.com/karouf "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Rendili (@Rendili)](https://github.com/Rendili "6 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core 1 commit to home-assistant.io ") +- [Rene Klootwijk (@reneklootwijk)](https://github.com/reneklootwijk "1 total commits to the Home Assistant orga: +1 commit to open-zwave +") - [Rene Nulsch (@ReneNulschDE)](https://github.com/ReneNulschDE "26 total commits to the Home Assistant orga: -18 commits to home-assistant +18 commits to core 8 commits to home-assistant.io ") -- [Rene Tode (@ReneTode)](https://github.com/ReneTode "62 total commits to the Home Assistant orga: -59 commits to appdaemon +- [Rene Tode (@ReneTode)](https://github.com/ReneTode "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [René (@rretsiem)](https://github.com/rretsiem "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [René Kliment (@renekliment)](https://github.com/renekliment "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") -- [René\-Marc Simard (@renemarc)](https://github.com/renemarc "13 total commits to the Home Assistant orga: -10 commits to home-assistant +- [René\-Marc Simard (@renemarc)](https://github.com/renemarc "14 total commits to the Home Assistant orga: +11 commits to core 3 commits to home-assistant.io ") - [Rev Michael Greb (@mikegrb)](https://github.com/mikegrb "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [Reza Moallemi (@moallemi)](https://github.com/moallemi "2 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend 1 commit to home-assistant.io ") - [rgruebel (@rgruebel)](https://github.com/rgruebel "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [rhadamantys (@rhadamantys)](https://github.com/rhadamantys "4 total commits to the Home Assistant orga: +3 commits to core +1 commit to home-assistant.io +") - [rhooper (@rhooper)](https://github.com/rhooper "30 total commits to the Home Assistant orga: -25 commits to home-assistant +25 commits to core 3 commits to home-assistant.io 2 commits to hadashboard ") +- [Ricardo JL Rufino (@ricardojlrufino)](https://github.com/ricardojlrufino "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Riccardo Canta (@commento)](https://github.com/commento "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [Riccardo Massari (@maxdrift)](https://github.com/maxdrift "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Richard (@EarthlingRich)](https://github.com/EarthlingRich "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Richard (@NextNebula)](https://github.com/NextNebula "2 total commits to the Home Assistant orga: +2 commits to core ") - [Richard (@ainen)](https://github.com/ainen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Richard Arends (@Mosibi)](https://github.com/Mosibi "8 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core ") - [Richard Cox (@Khabi)](https://github.com/Khabi "15 total commits to the Home Assistant orga: -9 commits to home-assistant +9 commits to core 6 commits to home-assistant.io ") - [Richard Cunningham (@rythie)](https://github.com/rythie "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Richard de Boer (@rigrig)](https://github.com/rigrig "1 total commits to the Home Assistant orga: +1 commit to core +") - [Richard Evans (@rmevans9)](https://github.com/rmevans9 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10226,25 +12521,28 @@ This page contains a list of people who have contributed in one way or another t 1 commit to developers.home-assistant ") - [Richard Lucas (@lucasweb78)](https://github.com/lucasweb78 "10 total commits to the Home Assistant orga: -9 commits to home-assistant +9 commits to core 1 commit to people ") - [Richard Mitchell (@mitchellrj)](https://github.com/mitchellrj "20 total commits to the Home Assistant orga: -17 commits to home-assistant +17 commits to core 3 commits to home-assistant.io ") - [Richard Niemand (@rniemand)](https://github.com/rniemand "1 total commits to the Home Assistant orga: 1 commit to example-custom-config ") - [Richard Orr (@rorr73)](https://github.com/rorr73 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Richard Patel (@terorie)](https://github.com/terorie "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") -- [RichardUUU (@RichardUUU)](https://github.com/RichardUUU "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Richard Powell (@richardpowellus)](https://github.com/richardpowellus "2 total commits to the Home Assistant orga: +2 commits to core +") +- [RichardUUU (@RichardUUU)](https://github.com/RichardUUU "7 total commits to the Home Assistant orga: +7 commits to home-assistant.io ") - [richo (@richo)](https://github.com/richo "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -10252,26 +12550,36 @@ 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 orga: 1 commit to pi-gen ") +- [Rick (@rickvdl)](https://github.com/rickvdl "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Rick Fletcher (@rfletcher)](https://github.com/rfletcher "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Rick Sharp (@ricksharp)](https://github.com/ricksharp "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Rick van Hattem (@WoLpH)](https://github.com/WoLpH "6 total commits to the Home Assistant orga: -3 commits to home-assistant +- [Rick Sherman (@shermdog)](https://github.com/shermdog "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Rick van Hattem (@WoLpH)](https://github.com/WoLpH "7 total commits to the Home Assistant orga: +4 commits to core 1 commit to scenegen 1 commit to feedparser 1 commit to home-assistant.io ") +- [RickW (@wltng)](https://github.com/wltng "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [RickyTaterSalad (@RickyTaterSalad)](https://github.com/RickyTaterSalad "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [ricmik (@ricmik)](https://github.com/ricmik "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [rkabadi (@rkabadi)](https://github.com/rkabadi "17 total commits to the Home Assistant orga: -17 commits to home-assistant +17 commits to core ") - [rkuijer (@rkuijer)](https://github.com/rkuijer "1 total commits to the Home Assistant orga: 1 commit to open-zwave @@ -10285,29 +12593,39 @@ This page contains a list of people who have contributed in one way or another t - [Rob (@robvanuden)](https://github.com/robvanuden "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Rob Bierbooms (@RobBie1221)](https://github.com/RobBie1221 "11 total commits to the Home Assistant orga: +10 commits to core +1 commit to brands +") - [Rob Capellini (@capellini)](https://github.com/capellini "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [Rob Chandhok (@robchandhok)](https://github.com/robchandhok "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Rob Connolly (@webworxshop)](https://github.com/webworxshop "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [Rob Cranfill (@RobCranfill)](https://github.com/RobCranfill "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [Rob Johnson (@robjohnson189)](https://github.com/robjohnson189 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +1 commit to home-assistant.io +") +- [Rob Migchels (@DhrRob)](https://github.com/DhrRob "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Rob Slifka (@rslifka)](https://github.com/rslifka "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") +- [Rob Zwissler (@robzr)](https://github.com/robzr "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Robbert Müller (@mjrider)](https://github.com/mjrider "15 total commits to the Home Assistant orga: -9 commits to hassio-cli -2 commits to home-assistant +9 commits to cli +2 commits to core 2 commits to home-assistant.io 1 commit to hassio-addons 1 commit to people @@ -10315,109 +12633,121 @@ This page contains a list of people who have contributed in one way or another t - [Robbie Page (@rorpage)](https://github.com/rorpage "3 total commits to the Home Assistant orga: 3 commits to hassbian-scripts ") -- [Robbie Trencheny (@robbiet480)](https://github.com/robbiet480 "2483 total commits to the Home Assistant orga: -1256 commits to home-assistant-iOS -332 commits to home-assistant -293 commits to home-assistant.io -163 commits to ios-certificates +- [Robbie Trencheny (@robbiet480)](https://github.com/robbiet480 "2558 total commits to the Home Assistant orga: +1485 commits to iOS +336 commits to core +304 commits to home-assistant.io 93 commits to homebridge-homeassistant -90 commits to companion.home-assistant +93 commits to companion.home-assistant 44 commits to people -24 commits to cla-bot -23 commits to Home-Assistant-iOS-Push -21 commits to home-assistant-polymer -18 commits to Iconic -17 commits to mobile-apps-fcm-push +43 commits to mobile-apps-fcm-push +22 commits to frontend +20 commits to Iconic +18 commits to developers.home-assistant 15 commits to hubot-home-assistant -14 commits to developers.home-assistant -12 commits to home-assistant-assets +13 commits to assets +12 commits to android 8 commits to codeowners-mention +7 commits to organization-internal 7 commits to netdisco -6 commits to organization-internal 4 commits to home-assistant-js-websocket -3 commits to home-assistant-js -3 commits to hassbot -3 commits to home-assistant-cli -3 commits to scenegen 3 commits to LabelBot -3 commits to organization 3 commits to hadashboard -3 commits to appdaemon +3 commits to hassbot +3 commits to organization +3 commits to home-assistant-js +3 commits to scenegen 3 commits to .github -3 commits to home-assistant-android 3 commits to open-zwave +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 lambda-home-assistant-github 1 commit to hass-release 1 commit to gu-who ") - [Robby Grossman (@freerobby)](https://github.com/freerobby "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Robert (@metbril)](https://github.com/metbril "12 total commits to the Home Assistant orga: 12 commits to home-assistant.io ") +- [Robert (@sqrtroot)](https://github.com/sqrtroot "1 total commits to the Home Assistant orga: +1 commit to frontend +") +- [Robert "DocSalvager" Watson (@DocSalvager)](https://github.com/DocSalvager "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Robert Accettura (@raccettura)](https://github.com/raccettura "2 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer -1 commit to home-assistant +1 commit to frontend +1 commit to core ") - [Robert Beal (@robertbeal)](https://github.com/robertbeal "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Robert Chmielowiec (@chmielowiec)](https://github.com/chmielowiec "13 total commits to the Home Assistant orga: +9 commits to core +2 commits to home-assistant.io +1 commit to developers.home-assistant +1 commit to frontend ") - [Robert Dunmire III (@slackr31337)](https://github.com/slackr31337 "6 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core 1 commit to home-assistant.io ") - [Robert Kiss (@kepten)](https://github.com/kepten "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Robert Kowalski (@robertkowalski)](https://github.com/robertkowalski "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Robert Schindler (@efficiosoft)](https://github.com/efficiosoft "8 total commits to the Home Assistant orga: -4 commits to appdaemon -1 commit to home-assistant-polymer -1 commit to hassos -1 commit to home-assistant +- [Robert Marklund (@trollkarlen)](https://github.com/trollkarlen "5 total commits to the Home Assistant orga: +5 commits to core +") +- [Robert Resch (@edenhaus)](https://github.com/edenhaus "3 total commits to the Home Assistant orga: +2 commits to frontend 1 commit to home-assistant.io ") -- [Robert Schütz (@dotlambda)](https://github.com/dotlambda "9 total commits to the Home Assistant orga: -3 commits to home-assistant-cli +- [Robert Schindler (@efficiosoft)](https://github.com/efficiosoft "4 total commits to the Home Assistant orga: +1 commit to operating-system +1 commit to frontend +1 commit to core +1 commit to home-assistant.io +") +- [Robert Schütz (@dotlambda)](https://github.com/dotlambda "5 total commits to the Home Assistant orga: 2 commits to netdisco 2 commits to home-assistant.io -1 commit to appdaemon -1 commit to home-assistant +1 commit to core ") -- [Robert Svensson (@Kane610)](https://github.com/Kane610 "236 total commits to the Home Assistant orga: -186 commits to home-assistant -43 commits to home-assistant.io -4 commits to developers.home-assistant +- [Robert Svensson (@Kane610)](https://github.com/Kane610 "372 total commits to the Home Assistant orga: +318 commits to core +46 commits to home-assistant.io +5 commits to developers.home-assistant 1 commit to netdisco -1 commit to home-assistant-polymer 1 commit to people +1 commit to frontend ") -- [Robert Van Gorkom (@vangorra)](https://github.com/vangorra "13 total commits to the Home Assistant orga: -10 commits to home-assistant -3 commits to home-assistant.io +- [Robert Van Gorkom (@vangorra)](https://github.com/vangorra "42 total commits to the Home Assistant orga: +34 commits to core +8 commits to home-assistant.io ") - [Roberto Tyley (@rtyley)](https://github.com/rtyley "207 total commits to the Home Assistant orga: 207 commits to gu-who ") - [robhuls (@robhuls)](https://github.com/robhuls "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Robin (@robmarkcole)](https://github.com/robmarkcole "80 total commits to the Home Assistant orga: -50 commits to home-assistant.io -22 commits to home-assistant -2 commits to home-assistant-assets +- [Robin (@robmarkcole)](https://github.com/robmarkcole "93 total commits to the Home Assistant orga: +56 commits to home-assistant.io +28 commits to core 2 commits to home-assistant-notebooks +2 commits to assets 2 commits to people -1 commit to hassos +1 commit to operating-system 1 commit to data.home-assistant +1 commit to brands ") - [Robin (@Derkades)](https://github.com/Derkades "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -10427,17 +12757,19 @@ This page contains a list of people who have contributed in one way or another t ") - [Robin Clarke (@robin13)](https://github.com/robin13 "2 total commits to the Home Assistant orga: 1 commit to hassio-addons -1 commit to home-assistant +1 commit to core +") +- [Robin Hansson (@rabinage)](https://github.com/rabinage "1 total commits to the Home Assistant orga: +1 commit to hassio-addons ") - [Robin Harmsen (@reharmsen)](https://github.com/reharmsen "9 total commits to the Home Assistant orga: -2 commits to hassio-homeassistant -2 commits to hassio-base -2 commits to hassos 2 commits to hassio-addons +2 commits to docker +2 commits to operating-system +2 commits to docker-base 1 commit to hassio-builder ") -- [Robin Laurén (@llauren)](https://github.com/llauren "2 total commits to the Home Assistant orga: -1 commit to appdaemon +- [Robin Laurén (@llauren)](https://github.com/llauren "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Robin Malik (@robinmalik)](https://github.com/robinmalik "1 total commits to the Home Assistant orga: @@ -10447,20 +12779,26 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Robin Pronk (@rfpronk)](https://github.com/rfpronk "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") -- [Robin Wohlers\-Reichel (@squishykid)](https://github.com/squishykid "6 total commits to the Home Assistant orga: -5 commits to home-assistant +- [Robin Wohlers\-Reichel (@squishykid)](https://github.com/squishykid "7 total commits to the Home Assistant orga: +6 commits to core +1 commit to home-assistant.io +") +- [Robk (@230delphi)](https://github.com/230delphi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [roblandry (@roblandry)](https://github.com/roblandry "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [robybob64 (@robybob64)](https://github.com/robybob64 "4 total commits to the Home Assistant orga: 4 commits to open-zwave ") -- [Rocik (@Rocik)](https://github.com/Rocik "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Rocik (@Rocik)](https://github.com/Rocik "4 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io +") +- [RockBomber (@RockBomber)](https://github.com/RockBomber "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Roddie Hasan (@eiddor)](https://github.com/eiddor "9 total commits to the Home Assistant orga: @@ -10468,99 +12806,121 @@ This page contains a list of people who have contributed in one way or another t 3 commits to open-zwave ") - [Rodrigo Pérez (@rodripf)](https://github.com/rodripf "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") -- [Roeland Van Lembergen (@clayhill)](https://github.com/clayhill "2 total commits to the Home Assistant orga: -2 commits to appdaemon -") -- [Roelof Schuiling (@rschuiling)](https://github.com/rschuiling "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Roelof Schuiling (@rschuiling)](https://github.com/rschuiling "8 total commits to the Home Assistant orga: +8 commits to home-assistant.io ") - [Roger Gammans (@rgammans)](https://github.com/rgammans "1 total commits to the Home Assistant orga: 1 commit to feedparser ") -- [Rohan Kapoor (@rohankapoorcom)](https://github.com/rohankapoorcom "121 total commits to the Home Assistant orga: -83 commits to home-assistant +- [RogerSelwyn (@RogerSelwyn)](https://github.com/RogerSelwyn "10 total commits to the Home Assistant orga: +8 commits to core +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Rohan Kapoor (@rohankapoorcom)](https://github.com/rohankapoorcom "128 total commits to the Home Assistant orga: +88 commits to core 35 commits to home-assistant.io 2 commits to people +2 commits to frontend 1 commit to developers.home-assistant ") - [Roi Dayan (@roidayan)](https://github.com/roidayan "7 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 1 commit to home-assistant.io ") - [roiff (@roiff)](https://github.com/roiff "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to homebridge-homeassistant ") -- [Roland Beck (@Data-Monkey)](https://github.com/Data-Monkey "1 total commits to the Home Assistant orga: +- [Roland Beck (@Data-Monkey)](https://github.com/Data-Monkey "9 total commits to the Home Assistant orga: +5 commits to brands +4 commits to home-assistant.io +") +- [roleo (@roleoroleo)](https://github.com/roleoroleo "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") - [Rolf K (@abstrakct)](https://github.com/abstrakct "6 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 3 commits to home-assistant.io ") -- [Rolf Schäuble (@rschaeuble)](https://github.com/rschaeuble "6 total commits to the Home Assistant orga: -6 commits to appdaemon +- [Rolf Schäuble (@rschaeuble)](https://github.com/rschaeuble "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [rolfberkenbosch (@rolfberkenbosch)](https://github.com/rolfberkenbosch "9 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core +1 commit to home-assistant.io +") +- [rolfikr1 (@rolfikr1)](https://github.com/rolfikr1 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [rollbrettler (@rollbrettler)](https://github.com/rollbrettler "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [romain38 (@romain38)](https://github.com/romain38 "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [Roman (@HerrHofrat)](https://github.com/HerrHofrat "5 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io ") - [Roman (@Roemer)](https://github.com/Roemer "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Ron Klinkien (@cyberjunky)](https://github.com/cyberjunky "7 total commits to the Home Assistant orga: -3 commits to home-assistant.io -2 commits to hassio-homeassistant -2 commits to home-assistant +- [Ron Heft (@ronaldheft)](https://github.com/ronaldheft "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Ron Klinkien (@cyberjunky)](https://github.com/cyberjunky "21 total commits to the Home Assistant orga: +9 commits to core +7 commits to home-assistant.io +2 commits to docker +2 commits to brands +1 commit to wheels-custom-integrations ") - [Ron Miller (@brainyron)](https://github.com/brainyron "1 total commits to the Home Assistant orga: 1 commit to hassio-addons ") -- [Ron Schaeffer (@ronschaeffer)](https://github.com/ronschaeffer "3 total commits to the Home Assistant orga: +- [Ron Schaeffer (@ronschaeffer)](https://github.com/ronschaeffer "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io +1 commit to companion.home-assistant 1 commit to developers.home-assistant ") - [Ron Šmeral (@rsmeral)](https://github.com/rsmeral "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Ronald Dehuysser (@rdehuyss)](https://github.com/rdehuyss "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Ronald Dehuysser (@rdehuyss)](https://github.com/rdehuyss "5 total commits to the Home Assistant orga: +4 commits to home-assistant.io +1 commit to core ") - [Ronen Hayun (@rhayun)](https://github.com/rhayun "3 total commits to the Home Assistant orga: -3 commits to home-assistant-polymer +3 commits to frontend ") - [Ronnie Garcia (@ronniegarcia)](https://github.com/ronniegarcia "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Ronny Eia (@eiaro)](https://github.com/eiaro "4 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core +") +- [RonSpawnson (@RonSpawnson)](https://github.com/RonSpawnson "3 total commits to the Home Assistant orga: +3 commits to developers.home-assistant ") - [roqeer (@roqeer)](https://github.com/roqeer "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") -- [Ross Cullen (@rosscullen)](https://github.com/rosscullen "4 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [Ross Cullen (@rosscullen)](https://github.com/rosscullen "7 total commits to the Home Assistant orga: +7 commits to home-assistant.io ") - [Ross Dargan (@rossdargan)](https://github.com/rossdargan "8 total commits to the Home Assistant orga: 5 commits to home-assistant.io -3 commits to home-assistant +3 commits to core ") -- [Ross Patterson (@rpatterson)](https://github.com/rpatterson "7 total commits to the Home Assistant orga: +- [Ross Patterson (@rpatterson)](https://github.com/rpatterson "8 total commits to the Home Assistant orga: 7 commits to scenegen +1 commit to home-assistant.io ") - [Ross Schulman (@rschulman)](https://github.com/rschulman "1 total commits to the Home Assistant orga: 1 commit to pi-gen @@ -10573,13 +12933,14 @@ This page contains a list of people who have contributed in one way or another t ") - [Roy Duineveld (@royduin)](https://github.com/royduin "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Roy Tomeij (@roytomeij)](https://github.com/roytomeij "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [rpitera (@rpitera)](https://github.com/rpitera "6 total commits to the Home Assistant orga: -6 commits to home-assistant.io +- [rpitera (@rpitera)](https://github.com/rpitera "9 total commits to the Home Assistant orga: +8 commits to home-assistant.io +1 commit to brands ") - [rpr69 (@rpr69)](https://github.com/rpr69 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -10588,40 +12949,37 @@ This page contains a list of people who have contributed in one way or another t 7 commits to home-assistant.io ") - [Ruben (@rubenvandeven)](https://github.com/rubenvandeven "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Ruben J\. Jongejan (@rvben)](https://github.com/rvben "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [RubenKelevra (@RubenKelevra)](https://github.com/RubenKelevra "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io -") - [Rubens Panfili (@rpanfili)](https://github.com/rpanfili "1 total commits to the Home Assistant orga: 1 commit to hassio-addons ") - [rubenverhoef (@rubenverhoef)](https://github.com/rubenverhoef "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [rubund (@rubund)](https://github.com/rubund "6 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 2 commits to home-assistant.io ") - [Rubén Infante (@ruben0909)](https://github.com/ruben0909 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Rudertier (@Rudertier)](https://github.com/Rudertier "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Rudi Middel (@mrBussy)](https://github.com/mrBussy "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Rudolf Offereins (@Sholofly)](https://github.com/Sholofly "1 total commits to the Home Assistant orga: -1 commit to home-assistant -") -- [Rufik (@rufik)](https://github.com/rufik "2 total commits to the Home Assistant orga: -2 commits to home-assistant-cli +1 commit to core ") - [runningman84 (@runningman84)](https://github.com/runningman84 "5 total commits to the Home Assistant orga: 4 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [RunOnGitHub (@RunOnGitHub)](https://github.com/RunOnGitHub "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -10630,12 +12988,16 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [ruohan\.chen (@crhan)](https://github.com/crhan "6 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 2 commits to home-assistant.io ") -- [Ruslan Sayfutdinov (@KapJI)](https://github.com/KapJI "2 total commits to the Home Assistant orga: +- [Rupert (@dublowduck)](https://github.com/dublowduck "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Ruslan Sayfutdinov (@KapJI)](https://github.com/KapJI "13 total commits to the Home Assistant orga: +9 commits to frontend +3 commits to core 1 commit to developers.home-assistant -1 commit to home-assistant ") - [Russ Kubes (@rkubes)](https://github.com/rkubes "3 total commits to the Home Assistant orga: 3 commits to pi-gen @@ -10647,36 +13009,39 @@ This page contains a list of people who have contributed in one way or another t 4 commits to open-zwave ") - [Russell Cloran (@rcloran)](https://github.com/rcloran "40 total commits to the Home Assistant orga: -33 commits to home-assistant +33 commits to core 4 commits to homebridge-homeassistant 3 commits to home-assistant.io ") -- [Ryan (@ryanwinter)](https://github.com/ryanwinter "3 total commits to the Home Assistant orga: -3 commits to open-zwave +- [rwinjanssen (@rwinjanssen)](https://github.com/rwinjanssen "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Ryan (@rsnodgrass)](https://github.com/rsnodgrass "2 total commits to the Home Assistant orga: +2 commits to core ") - [Ryan Bahm (@rdbahm)](https://github.com/rdbahm "8 total commits to the Home Assistant orga: 5 commits to home-assistant.io -3 commits to home-assistant +3 commits to core ") - [Ryan Bray (@rbray89)](https://github.com/rbray89 "28 total commits to the Home Assistant orga: -24 commits to hassos +24 commits to operating-system 2 commits to home-assistant.io 1 commit to hassio-build 1 commit to people ") - [Ryan Claussen (@rtclauss)](https://github.com/rtclauss "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [Ryan Daigle (@rwdaigle)](https://github.com/rwdaigle "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [Ryan Davies (@PrimusNZ)](https://github.com/PrimusNZ "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [Ryan Ewen (@RyanEwen)](https://github.com/RyanEwen "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Ryan Gibbons (@rtgibbons)](https://github.com/rtgibbons "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -10691,31 +13056,31 @@ This page contains a list of people who have contributed in one way or another t 1 commit to hassbian-scripts ") - [Ryan Johnson (@ryanjohnsontv)](https://github.com/ryanjohnsontv "1 total commits to the Home Assistant orga: -1 commit to home-assistant-assets +1 commit to assets ") - [Ryan Kladar (@Kladar)](https://github.com/Kladar "1 total commits to the Home Assistant orga: -1 commit to hassos +1 commit to operating-system ") - [Ryan Kraus (@rmkraus)](https://github.com/rmkraus "195 total commits to the Home Assistant orga: -163 commits to home-assistant +163 commits to core 17 commits to home-assistant.io -14 commits to home-assistant-polymer +14 commits to frontend 1 commit to home-assistant-notebooks ") - [Ryan McLean (@ryanm101)](https://github.com/ryanm101 "99 total commits to the Home Assistant orga: -77 commits to hassio-cli -16 commits to home-assistant +77 commits to cli +16 commits to core 6 commits to home-assistant.io ") - [Ryan Mounce (@rmounce)](https://github.com/rmounce "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Ryan Nazaretian (@ryannazaretian)](https://github.com/ryannazaretian "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Ryan Nowakowski (@tubaman)](https://github.com/tubaman "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Ryan Parrish (@stickystyle)](https://github.com/stickystyle "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io @@ -10727,16 +13092,22 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Ryan Turner (@turnrye)](https://github.com/turnrye "7 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 1 commit to home-assistant.io ") - [Ryan Wagoner (@rwagoner)](https://github.com/rwagoner "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io -2 commits to home-assistant +2 commits to core +") +- [Ryan Warner (@rwarner)](https://github.com/rwarner "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Ryan Winchester (@ryanwinchester)](https://github.com/ryanwinchester "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [Ryan Winter (@ryanwinter)](https://github.com/ryanwinter "3 total commits to the Home Assistant orga: +3 commits to open-zwave +") - [ryqiem (@ryqiem)](https://github.com/ryqiem "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -10744,14 +13115,15 @@ This page contains a list of people who have contributed in one way or another t 5 commits to open-zwave ") - [Róbert Nagy (@vrnagy)](https://github.com/vrnagy "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Sabesto (@Sabesto)](https://github.com/Sabesto "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") -- [Sacha Telgenhof (@stelgenhof)](https://github.com/stelgenhof "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Sabuto (@Sabuto)](https://github.com/Sabuto "2 total commits to the Home Assistant orga: +1 commit to hassio-addons +1 commit to hassio-builder ") - [saepfle (@saepfle)](https://github.com/saepfle "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -10766,8 +13138,11 @@ This page contains a list of people who have contributed in one way or another t - [Salman Shah (@salman-bhai)](https://github.com/salman-bhai "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Salvatore Cordiano (@salvatorecordiano)](https://github.com/salvatorecordiano "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Sam Birch (@hotplot)](https://github.com/hotplot "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [Sam Holmes (@sam3d)](https://github.com/sam3d "4 total commits to the Home Assistant orga: @@ -10777,14 +13152,14 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io ") - [Sam Riley (@samriley)](https://github.com/samriley "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Sam Whited (@SamWhited)](https://github.com/SamWhited "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [sam\-io (@sam-io)](https://github.com/sam-io "5 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io ") - [sam\-wright (@sam-wright)](https://github.com/sam-wright "1 total commits to the Home Assistant orga: @@ -10802,7 +13177,7 @@ This page contains a list of people who have contributed in one way or another t ") - [Samuel Bétrisey (@betrisey)](https://github.com/betrisey "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Samuel Maggs (@samuelmaggs)](https://github.com/samuelmaggs "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -10811,33 +13186,44 @@ This page contains a list of people who have contributed in one way or another t 2 commits to developers.home-assistant 1 commit to home-assistant.io ") +- [Samuel Rau (@samrdev)](https://github.com/samrdev "98 total commits to the Home Assistant orga: +69 commits to brands +29 commits to home-assistant.io +") +- [Samuele Illuminati (@samu91gn)](https://github.com/samu91gn "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [samuelsson86 (@samuelsson86)](https://github.com/samuelsson86 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [SamyGarib (@SamyGarib)](https://github.com/SamyGarib "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Sander Cornelissen (@scornelissen85)](https://github.com/scornelissen85 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Sander de Leeuw (@sdeleeuw)](https://github.com/sdeleeuw "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Sander Geerts (@Devqon)](https://github.com/Devqon "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Sander Zumbrink (@zumitnl)](https://github.com/zumitnl "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [sander76 (@sander76)](https://github.com/sander76 "51 total commits to the Home Assistant orga: -47 commits to home-assistant +47 commits to core 4 commits to home-assistant.io ") -- [Sangwon Kim (@pueue)](https://github.com/pueue "1 total commits to the Home Assistant orga: +- [Sangwon Kim (@scon-io)](https://github.com/scon-io "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Santobert (@Santobert)](https://github.com/Santobert "48 total commits to the Home Assistant orga: -37 commits to home-assistant -11 commits to home-assistant.io +- [Santobert (@Santobert)](https://github.com/Santobert "59 total commits to the Home Assistant orga: +45 commits to core +13 commits to home-assistant.io +1 commit to brands ") - [sapph42 (@sapph42)](https://github.com/sapph42 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -10848,6 +13234,12 @@ This page contains a list of people who have contributed in one way or another t - [sarakha63 (@sarakha63)](https://github.com/sarakha63 "130 total commits to the Home Assistant orga: 130 commits to open-zwave ") +- [saruter (@saruter)](https://github.com/saruter "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Sascha Kühndel (@InuSasha)](https://github.com/InuSasha "1 total commits to the Home Assistant orga: +1 commit to core +") - [SaturnusDJ (@SaturnusDJ)](https://github.com/SaturnusDJ "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10857,21 +13249,34 @@ This page contains a list of people who have contributed in one way or another t - [Saurabh Sharma (@saurabhsharma001)](https://github.com/saurabhsharma001 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Save me (@Cyr-ius)](https://github.com/Cyr-ius "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Sava Tshontikidis (@stshontikidis)](https://github.com/stshontikidis "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Save me (@Cyr-ius)](https://github.com/Cyr-ius "9 total commits to the Home Assistant orga: +4 commits to core +2 commits to wheels-custom-integrations +2 commits to brands +1 commit to home-assistant.io ") - [Sbaa1 (@Sbaa1)](https://github.com/Sbaa1 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [sbilly (@sbilly)](https://github.com/sbilly "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [sbombay (@sbombay)](https://github.com/sbombay "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [sbYm (@GongT)](https://github.com/GongT "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [scaarup (@scaarup)](https://github.com/scaarup "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [scheric (@scheric)](https://github.com/scheric "9 total commits to the Home Assistant orga: 6 commits to home-assistant.io -3 commits to home-assistant +3 commits to core ") - [schferbe (@schferbe)](https://github.com/schferbe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -10880,19 +13285,19 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io ") - [schneefux (@schneefux)](https://github.com/schneefux "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [schnoetz (@schnoetz)](https://github.com/schnoetz "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Scholli (@ScholliYT)](https://github.com/ScholliYT "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [schumpeter2 (@schumpeter2)](https://github.com/schumpeter2 "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [SchumyHao (@SchumyHao)](https://github.com/SchumyHao "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Scott (@lostage)](https://github.com/lostage "2 total commits to the Home Assistant orga: 1 commit to developers.home-assistant @@ -10902,27 +13307,33 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io ") - [Scott Albertson (@salbertson)](https://github.com/salbertson "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Scott Bartuska (@bing281)](https://github.com/bing281 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Scott Bradshaw (@swbradshaw)](https://github.com/swbradshaw "6 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 2 commits to home-assistant.io ") +- [Scott Bressler (@sbressler)](https://github.com/sbressler "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Scott Gauche (@sgauche)](https://github.com/sgauche "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [Scott Griffin (@scottocs11)](https://github.com/scottocs11 "7 total commits to the Home Assistant orga: 7 commits to home-assistant.io ") +- [Scott Gruby (@sgruby)](https://github.com/sgruby "1 total commits to the Home Assistant orga: +1 commit to cli +") - [Scott Henning (@shenning00)](https://github.com/shenning00 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Scott O'Neil (@americanwookie)](https://github.com/americanwookie "7 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 3 commits to home-assistant.io ") - [Scott Prive (@sprive)](https://github.com/sprive "1 total commits to the Home Assistant orga: @@ -10930,36 +13341,54 @@ This page contains a list of people who have contributed in one way or another t ") - [Scott Reston (@ih8gates)](https://github.com/ih8gates "13 total commits to the Home Assistant orga: 10 commits to home-assistant.io -2 commits to home-assistant -1 commit to home-assistant-polymer +2 commits to core +1 commit to frontend +") +- [Scott Rodgers (@thegunslingers)](https://github.com/thegunslingers "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") +- [Scott Walsh (@invisiblethreat)](https://github.com/invisiblethreat "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Scott Watermasysk (@scottwater)](https://github.com/scottwater "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Scotte Zinn (@szinn)](https://github.com/szinn "1 total commits to the Home Assistant orga: +1 commit to core +") - [scottjones4k (@scottjones4k)](https://github.com/scottjones4k "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [sdekker90 (@sdekker90)](https://github.com/sdekker90 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [sdelliot (@sdelliot)](https://github.com/sdelliot "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [sdotter (@sdotter)](https://github.com/sdotter "1 total commits to the Home Assistant orga: +1 commit to frontend ") - [Sean (@mcnovy)](https://github.com/mcnovy "3 total commits to the Home Assistant orga: 3 commits to open-zwave ") - [Sean (@mitchese)](https://github.com/mitchese "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Sean Dague (@sdague)](https://github.com/sdague "87 total commits to the Home Assistant orga: -60 commits to home-assistant +- [Sean Dague (@sdague)](https://github.com/sdague "88 total commits to the Home Assistant orga: +61 commits to core 18 commits to home-assistant.io -5 commits to home-assistant-polymer +5 commits to frontend 3 commits to netdisco 1 commit to home-assistant-js ") +- [Sean Danischevsky (@seaniedan)](https://github.com/seaniedan "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Sean Gillies (@sgillies)](https://github.com/sgillies "6 total commits to the Home Assistant orga: 6 commits to feedparser ") - [Sean Gollschewsky (@gollo)](https://github.com/gollo "17 total commits to the Home Assistant orga: -10 commits to home-assistant +10 commits to core 4 commits to home-assistant.io 3 commits to hassio-build ") @@ -10969,32 +13398,55 @@ This page contains a list of people who have contributed in one way or another t - [Sean Kerr (@seankerr)](https://github.com/seankerr "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Sean Straus (@scstraus)](https://github.com/scstraus "1 total commits to the Home Assistant orga: +- [Sean Leonard (@MeanderingCode)](https://github.com/MeanderingCode "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Sean Nyekjær (@sknsean)](https://github.com/sknsean "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Sean Straus (@scstraus)](https://github.com/scstraus "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io +") +- [sean tearney (@ispysoftware)](https://github.com/ispysoftware "3 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core 1 commit to home-assistant.io ") - [Sean Wilson (@swilson)](https://github.com/swilson "11 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 4 commits to home-assistant.io -1 commit to home-assistant-polymer +1 commit to frontend +") +- [seanauff (@seanauff)](https://github.com/seanauff "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [seanb\-uk (@seanb-uk)](https://github.com/seanb-uk "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [seanodell (@seanodell)](https://github.com/seanodell "1 total commits to the Home Assistant orga: -1 commit to hassos +1 commit to operating-system ") -- [SeanPM5 (@SeanPM5)](https://github.com/SeanPM5 "79 total commits to the Home Assistant orga: -42 commits to companion.home-assistant -22 commits to home-assistant.io -11 commits to home-assistant-polymer +- [SeanPM5 (@SeanPM5)](https://github.com/SeanPM5 "131 total commits to the Home Assistant orga: +56 commits to companion.home-assistant +46 commits to home-assistant.io +16 commits to frontend +4 commits to alerts.home-assistant.io 2 commits to developers.home-assistant -2 commits to alerts.home-assistant.io +2 commits to brands +2 commits to core +1 commit to iOS +1 commit to supervisor +1 commit to operating-system ") -- [seanvictory (@seanvictory)](https://github.com/seanvictory "5 total commits to the Home Assistant orga: -5 commits to home-assistant.io +- [seanvictory (@seanvictory)](https://github.com/seanvictory "8 total commits to the Home Assistant orga: +6 commits to home-assistant.io +1 commit to developers.home-assistant +1 commit to core ") -- [Seb Ruiz (@sebr)](https://github.com/sebr "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +- [Seb Ruiz (@sebr)](https://github.com/sebr "3 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +1 commit to frontend +1 commit to brands ") - [Sebastiaan (@sebastiaanwezenberg)](https://github.com/sebastiaanwezenberg "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -11005,27 +13457,27 @@ This page contains a list of people who have contributed in one way or another t - [Sebastian (@sebk-666)](https://github.com/sebk-666 "7 total commits to the Home Assistant orga: 5 commits to home-assistant.io 1 commit to netdisco -1 commit to home-assistant +1 commit to core ") - [Sebastian (@sgso)](https://github.com/sgso "3 total commits to the Home Assistant orga: 3 commits to libcoap ") - [Sebastian Kügler (@sebasje)](https://github.com/sebasje "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Sebastian Muszynski (@syssi)](https://github.com/syssi "204 total commits to the Home Assistant orga: -136 commits to home-assistant +- [Sebastian Muszynski (@syssi)](https://github.com/syssi "205 total commits to the Home Assistant orga: +137 commits to core 62 commits to home-assistant.io 3 commits to netdisco -2 commits to home-assistant-polymer +2 commits to frontend 1 commit to people ") - [Sebastian Ovide (@sebastianovide)](https://github.com/sebastianovide "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Sebastian von Minckwitz (@teodoc)](https://github.com/teodoc "3 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer -1 commit to home-assistant +1 commit to frontend +1 commit to core 1 commit to home-assistant.io ") - [sebdoan (@sebdoan)](https://github.com/sebdoan "1 total commits to the Home Assistant orga: @@ -11037,8 +13489,8 @@ This page contains a list of people who have contributed in one way or another t - [sekavatar (@sekavatar)](https://github.com/sekavatar "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Semir Patel (@analogue)](https://github.com/analogue "2 total commits to the Home Assistant orga: -2 commits to appdaemon +- [Semir Patel (@analogue)](https://github.com/analogue "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [sentinel\-23 (@sentinel-23)](https://github.com/sentinel-23 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -11049,36 +13501,44 @@ This page contains a list of people who have contributed in one way or another t - [Sergej (@Sergej-Popov)](https://github.com/Sergej-Popov "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Sergey Avdeev (@avdeevsv91)](https://github.com/avdeevsv91 "3 total commits to the Home Assistant orga: +2 commits to frontend +1 commit to operating-system +") - [Sergey Isachenko (@zabuldon)](https://github.com/zabuldon "11 total commits to the Home Assistant orga: -9 commits to home-assistant +9 commits to core 2 commits to home-assistant.io ") - [Sergey Lanzman (@sergeylanzman)](https://github.com/sergeylanzman "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Sergey Morozik (@morozsm)](https://github.com/morozsm "1 total commits to the Home Assistant orga: +1 commit to supervisor +") - [Sergey Rymsha (@rymsha)](https://github.com/rymsha "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Serghei Iakovlev (@sergeyklay)](https://github.com/sergeyklay "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Sergio Conde Gómez (@skgsergio)](https://github.com/skgsergio "4 total commits to the Home Assistant orga: -3 commits to home-assistant -1 commit to home-assistant.io +- [Sergio Conde Gómez (@skgsergio)](https://github.com/skgsergio "6 total commits to the Home Assistant orga: +3 commits to core +2 commits to home-assistant.io +1 commit to brands ") - [Sergio Mayoral Martínez (@sermayoral)](https://github.com/sermayoral "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Sergio Oller (@zeehio)](https://github.com/zeehio "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Sergio Viudes (@sjvc)](https://github.com/sjvc "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") -- [Sergiy Maysak (@sergeymaysak)](https://github.com/sergeymaysak "4 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Sergiy Maysak (@sergeymaysak)](https://github.com/sergeymaysak "5 total commits to the Home Assistant orga: +3 commits to core 2 commits to home-assistant.io ") - [Seth Jackson (@sethjackson)](https://github.com/sethjackson "1 total commits to the Home Assistant orga: @@ -11089,32 +13549,38 @@ This page contains a list of people who have contributed in one way or another t ") - [Seweryn Zeman (@cadavre)](https://github.com/cadavre "2 total commits to the Home Assistant orga: 1 commit to netdisco -1 commit to home-assistant +1 commit to core ") - [sfam (@sfam)](https://github.com/sfam "65 total commits to the Home Assistant orga: -58 commits to home-assistant +58 commits to core 5 commits to home-assistant.io 1 commit to netdisco -1 commit to home-assistant-polymer +1 commit to frontend ") - [sfjes (@sfjes)](https://github.com/sfjes "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Shahen Hovhannisyan (@shahen94)](https://github.com/shahen94 "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [shanbs (@shanbs)](https://github.com/shanbs "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") +- [Shane (@SmbKiwi)](https://github.com/SmbKiwi "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Shane Liesegang (@sjml)](https://github.com/sjml "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Shane Madden (@shanemadden)](https://github.com/shanemadden "20 total commits to the Home Assistant orga: 20 commits to open-zwave ") +- [Shane Qi (@ShaneQi)](https://github.com/ShaneQi "2 total commits to the Home Assistant orga: +2 commits to core +") - [Shantanu Tushar (@shaan7)](https://github.com/shaan7 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Sharif Nassar (@mrwacky42)](https://github.com/mrwacky42 "2 total commits to the Home Assistant orga: 1 commit to hassio-addons @@ -11126,43 +13592,51 @@ This page contains a list of people who have contributed in one way or another t - [Shaun McCloud (@smccloud)](https://github.com/smccloud "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Shawn Wilsher (@sdwilsh)](https://github.com/sdwilsh "2 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +1 commit to core +") - [Shawna (@cherrykoda)](https://github.com/cherrykoda "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [shbatm (@shbatm)](https://github.com/shbatm "5 total commits to the Home Assistant orga: -2 commits to home-assistant-polymer -2 commits to home-assistant -1 commit to home-assistant.io -") -- [Shiny (@Br3nda)](https://github.com/Br3nda "4 total commits to the Home Assistant orga: -3 commits to home-assistant.io -1 commit to developers.home-assistant +- [shbatm (@shbatm)](https://github.com/shbatm "26 total commits to the Home Assistant orga: +17 commits to core +6 commits to home-assistant.io +2 commits to frontend +1 commit to android ") - [Shiwigy (@Shiwigy)](https://github.com/Shiwigy "2 total commits to the Home Assistant orga: 2 commits to hassio-addons ") -- [shker (@serhtt)](https://github.com/serhtt "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [shker (@serhtt)](https://github.com/serhtt "2 total commits to the Home Assistant orga: +2 commits to core ") -- [shred86 (@shred86)](https://github.com/shred86 "10 total commits to the Home Assistant orga: -7 commits to home-assistant -3 commits to home-assistant.io +- [shred86 (@shred86)](https://github.com/shred86 "28 total commits to the Home Assistant orga: +21 commits to core +6 commits to home-assistant.io +1 commit to brands ") - [shuaiger (@shuaiger)](https://github.com/shuaiger "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Shubham mittal (@upgoingstar)](https://github.com/upgoingstar "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Shulyaka (@Shulyaka)](https://github.com/Shulyaka "4 total commits to the Home Assistant orga: -3 commits to home-assistant.io -1 commit to home-assistant +- [Shulyaka (@Shulyaka)](https://github.com/Shulyaka "45 total commits to the Home Assistant orga: +21 commits to frontend +12 commits to core +10 commits to home-assistant.io +1 commit to developers.home-assistant +1 commit to brands ") - [siberx (@siberx)](https://github.com/siberx "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Sicco van Sas (@siccovansas)](https://github.com/siccovansas "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [siebert (@siebert)](https://github.com/siebert "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [signaleleven (@signaleleven)](https://github.com/signaleleven "1 total commits to the Home Assistant orga: 1 commit to hassio-addons @@ -11170,13 +13644,13 @@ This page contains a list of people who have contributed in one way or another t - [Siim Talvik (@simpss)](https://github.com/simpss "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [silfa718 (@silfa718)](https://github.com/silfa718 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [silfa718 (@silfa718)](https://github.com/silfa718 "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [SiliconAvatar (@SiliconAvatar)](https://github.com/SiliconAvatar "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io 1 commit to hassio-addons -1 commit to home-assistant +1 commit to core ") - [silsha fux (@silsha)](https://github.com/silsha "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -11185,12 +13659,15 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Simao (@simaosimao)](https://github.com/simaosimao "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +1 commit to home-assistant.io +") +- [simieski (@simieski)](https://github.com/simieski "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Simon (@echox)](https://github.com/echox "3 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer -1 commit to home-assistant +1 commit to frontend +1 commit to core 1 commit to home-assistant.io ") - [Simon (@Deadolus)](https://github.com/Deadolus "2 total commits to the Home Assistant orga: @@ -11199,6 +13676,9 @@ This page contains a list of people who have contributed in one way or another t - [Simon (@chatainsim)](https://github.com/chatainsim "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Simon Bumm (@codingcyclist)](https://github.com/codingcyclist "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Simon Elsbrock (@elsbrock)](https://github.com/elsbrock "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -11206,28 +13686,33 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Simon Holzmayer (@sholzmayer)](https://github.com/sholzmayer "6 total commits to the Home Assistant orga: -3 commits to hassos -1 commit to hassio -1 commit to home-assistant-polymer +3 commits to operating-system +1 commit to supervisor 1 commit to developers.home-assistant +1 commit to frontend ") - [Simon Hörrle (@CM000n)](https://github.com/CM000n "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Simon L\. B\. Nielsen (@simonlbn)](https://github.com/simonlbn "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Simon Lepla (@Platzii)](https://github.com/Platzii "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") - [Simon Nørager Sørensen (@simse)](https://github.com/simse "5 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 1 commit to home-assistant.io ") +- [Simon Opelt (@sopelt)](https://github.com/sopelt "2 total commits to the Home Assistant orga: +2 commits to operating-system +") - [Simon Szustkowski (@simonszu)](https://github.com/simonszu "7 total commits to the Home Assistant orga: 4 commits to home-assistant.io -3 commits to home-assistant +3 commits to core ") -- [Simon van der Veldt (@simonvanderveldt)](https://github.com/simonvanderveldt "2 total commits to the Home Assistant orga: -1 commit to appdaemon -1 commit to home-assistant +- [Simon van der Veldt (@simonvanderveldt)](https://github.com/simonvanderveldt "1 total commits to the Home Assistant orga: +1 commit to core ") - [Simon Wüllhorst (@descilla)](https://github.com/descilla "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -11247,11 +13732,20 @@ This page contains a list of people who have contributed in one way or another t - [Sindre Hansen (@sindrehan)](https://github.com/sindrehan "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [sirvictory444 (@sirvictory444)](https://github.com/sirvictory444 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [sithmein (@sithmein)](https://github.com/sithmein "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [sjabby (@sjabby)](https://github.com/sjabby "33 total commits to the Home Assistant orga: 29 commits to home-assistant.io -3 commits to home-assistant +3 commits to core 1 commit to hassbian-scripts ") +- [sjee105 (@sjee105)](https://github.com/sjee105 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Sjors Spoorendonk (@sjorsjes)](https://github.com/sjorsjes "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") @@ -11264,8 +13758,11 @@ This page contains a list of people who have contributed in one way or another t - [skycryer (@skycryer)](https://github.com/skycryer "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Slava (@vaceslav)](https://github.com/vaceslav "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [slamp (@slamp)](https://github.com/slamp "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Slava (@vaceslav)](https://github.com/vaceslav "4 total commits to the Home Assistant orga: +4 commits to core ") - [sleveque (@sleveque)](https://github.com/sleveque "4 total commits to the Home Assistant orga: 4 commits to open-zwave @@ -11273,51 +13770,76 @@ This page contains a list of people who have contributed in one way or another t - [slimatic (@slimatic)](https://github.com/slimatic "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Sly Gryphon (@sgryphon)](https://github.com/sgryphon "1 total commits to the Home Assistant orga: +1 commit to core +") +- [sly1111 (@sly1111)](https://github.com/sly1111 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [smaggard (@smaggard)](https://github.com/smaggard "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [smallship (@smallship)](https://github.com/smallship "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [smega (@smega)](https://github.com/smega "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [smoldaner (@smoldaner)](https://github.com/smoldaner "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core +") +- [smugleafdev (@smugleafdev)](https://github.com/smugleafdev "1 total commits to the Home Assistant orga: +1 commit to core ") - [sn0oz (@sn0oz)](https://github.com/sn0oz "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [snagytx (@snagytx)](https://github.com/snagytx "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [snarky\-snark (@snarky-snark)](https://github.com/snarky-snark "1 total commits to the Home Assistant orga: +1 commit to brands ") - [sndcr (@sndcr)](https://github.com/sndcr "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [SneakSnackSnake (@SneakSnackSnake)](https://github.com/SneakSnackSnake "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [snizzleorg (@snizzleorg)](https://github.com/snizzleorg "5 total commits to the Home Assistant orga: 5 commits to hadashboard ") -- [SNoof85 (@SNoof85)](https://github.com/SNoof85 "17 total commits to the Home Assistant orga: -10 commits to home-assistant.io -7 commits to home-assistant +- [SNoof85 (@SNoof85)](https://github.com/SNoof85 "24 total commits to the Home Assistant orga: +14 commits to home-assistant.io +10 commits to core ") -- [so3n (@so3n)](https://github.com/so3n "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [so3n (@nickneos)](https://github.com/nickneos "1 total commits to the Home Assistant orga: +1 commit to core ") - [SofianeG (@sofianegargouri)](https://github.com/sofianegargouri "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [SoftXperience (@SoftXperience)](https://github.com/SoftXperience "1 total commits to the Home Assistant orga: +1 commit to core +") - [Solomon Sklash (@SolomonSklash)](https://github.com/SolomonSklash "1 total commits to the Home Assistant orga: 1 commit to data.home-assistant ") +- [sophof (@sophof)](https://github.com/sophof "1 total commits to the Home Assistant orga: +1 commit to core +") - [Sorin Sbarnea (@ssbarnea)](https://github.com/ssbarnea "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [sorinyo2004 (@sorinyo2004)](https://github.com/sorinyo2004 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [sorryusernameisalreadytaken (@sorryusernameisalreadytaken)](https://github.com/sorryusernameisalreadytaken "1 total commits to the Home Assistant orga: +1 commit to android +") - [Soós Péter (@soosp)](https://github.com/soosp "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [spacemanspiff2007 (@spacemanspiff2007)](https://github.com/spacemanspiff2007 "1 total commits to the Home Assistant orga: @@ -11326,60 +13848,71 @@ This page contains a list of people who have contributed in one way or another t - [sparkydave1981 (@sparkydave1981)](https://github.com/sparkydave1981 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Spartan\-II\-117 (@Spartan-II-117)](https://github.com/Spartan-II-117 "1 total commits to the Home Assistant orga: +- [Spartan\-II\-117 (@Spartan-II-117)](https://github.com/Spartan-II-117 "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") - [speedmann (@speedmann)](https://github.com/speedmann "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [spektren (@spektren)](https://github.com/spektren "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Spencer Oberstadt (@soberstadt)](https://github.com/soberstadt "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Spencer Owen (@spuder)](https://github.com/spuder "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Spencer Salisbury (@smsalisbury)](https://github.com/smsalisbury "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [spinside (@spinside)](https://github.com/spinside "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [springstan (@springstan)](https://github.com/springstan "30 total commits to the Home Assistant orga: -19 commits to home-assistant-polymer -10 commits to home-assistant -1 commit to home-assistant.io +- [springstan (@springstan)](https://github.com/springstan "392 total commits to the Home Assistant orga: +362 commits to core +20 commits to frontend +9 commits to home-assistant.io +1 commit to developers.home-assistant ") - [SpudGunMan (@SpudGunMan)](https://github.com/SpudGunMan "14 total commits to the Home Assistant orga: 14 commits to open-zwave ") - [squidwardy (@villanyibalint)](https://github.com/villanyibalint "3 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer -1 commit to home-assistant +1 commit to frontend +1 commit to core 1 commit to home-assistant.io ") - [squirtbrnr (@squirtbrnr)](https://github.com/squirtbrnr "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Squixx (@Squixx)](https://github.com/Squixx "1 total commits to the Home Assistant orga: +1 commit to core ") - [srg74 (@srg74)](https://github.com/srg74 "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") - [Sriram Vaidyanathan (@vaidyasr)](https://github.com/vaidyasr "9 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core 4 commits to home-assistant.io ") - [srirams (@srirams)](https://github.com/srirams "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [ssenart (@ssenart)](https://github.com/ssenart "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [St\. John Johnson (@stjohnjohnson)](https://github.com/stjohnjohnson "9 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core 4 commits to home-assistant.io ") +- [staal0 (@staal0)](https://github.com/staal0 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [stanvx (@stanvx)](https://github.com/stanvx "2 total commits to the Home Assistant orga: 1 commit to open-zwave 1 commit to home-assistant.io @@ -11387,26 +13920,26 @@ This page contains a list of people who have contributed in one way or another t - [Staphylea (@Staphylea)](https://github.com/Staphylea "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [stappel (@stappel)](https://github.com/stappel "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [staraxis (@staraxis)](https://github.com/staraxis "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [starkillerOG (@starkillerOG)](https://github.com/starkillerOG "25 total commits to the Home Assistant orga: -17 commits to home-assistant -5 commits to home-assistant.io -2 commits to home-assistant-polymer +- [starkillerOG (@starkillerOG)](https://github.com/starkillerOG "56 total commits to the Home Assistant orga: +37 commits to core +16 commits to home-assistant.io +2 commits to frontend 1 commit to developers.home-assistant ") - [Stavros Korokithakis (@skorokithakis)](https://github.com/skorokithakis "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [stboch (@stboch)](https://github.com/stboch "2 total commits to the Home Assistant orga: -2 commits to home-assistant -") -- [Steaff (@steffenslavetinsky)](https://github.com/steffenslavetinsky "1 total commits to the Home Assistant orga: -1 commit to home-assistant +2 commits to core ") - [Stealth Hacker (@stealthhacker)](https://github.com/stealthhacker "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [steckenpferd (@steckenpferd)](https://github.com/steckenpferd "2 total commits to the Home Assistant orga: @@ -11415,35 +13948,53 @@ This page contains a list of people who have contributed in one way or another t - [stedy6 (@stedy6)](https://github.com/stedy6 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Stef Smeets (@stefsmeets)](https://github.com/stefsmeets "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Stefan (@stefanroelofs)](https://github.com/stefanroelofs "4 total commits to the Home Assistant orga: 4 commits to hassio-addons ") -- [Stefan Agner (@agners)](https://github.com/agners "2 total commits to the Home Assistant orga: +- [Stefan Agner (@agners)](https://github.com/agners "13 total commits to the Home Assistant orga: +6 commits to operating-system +2 commits to core +2 commits to home-assistant.io 1 commit to hassio-addons -1 commit to hassio-installer +1 commit to supervised-installer +1 commit to developers.home-assistant ") -- [Stefan Burke (@stefnb)](https://github.com/stefnb "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Stefan Burke (@chosen-boot)](https://github.com/chosen-boot "1 total commits to the Home Assistant orga: +1 commit to core ") -- [Stefan Feješ (@fejes713)](https://github.com/fejes713 "1 total commits to the Home Assistant orga: +- [Stefan Fejes (@fejes713)](https://github.com/fejes713 "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [Stefan Jonasson (@stefan-jonasson)](https://github.com/stefan-jonasson "12 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 4 commits to home-assistant.io ") +- [Stefan Lehmann (@stlehmann)](https://github.com/stlehmann "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") - [stefanlod (@stefanlod)](https://github.com/stefanlod "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Stefano Scipioni (@scipioni)](https://github.com/scipioni "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core +1 commit to home-assistant.io +") +- [Stefano0042 (@Stefano0042)](https://github.com/Stefano0042 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Steffen Zimmermann (@mampfes)](https://github.com/mampfes "4 total commits to the Home Assistant orga: +3 commits to core 1 commit to home-assistant.io ") - [steljwagh (@steljwagh)](https://github.com/steljwagh "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [Steltek (@Steltek)](https://github.com/Steltek "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [Sten Spans (@sspans)](https://github.com/sspans "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -11452,17 +14003,17 @@ This page contains a list of people who have contributed in one way or another t 1 commit to open-zwave ") - [Stephan Auerhahn (@mpstephana)](https://github.com/mpstephana "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Stephan Beier (@stbkde)](https://github.com/stbkde "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Stephan Grobler (@stephangrobler)](https://github.com/stephangrobler "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [stephanerosi (@stephanerosi)](https://github.com/stephanerosi "11 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 3 commits to home-assistant.io ") - [stephanfevrier (@stephanfevrier)](https://github.com/stephanfevrier "1 total commits to the Home Assistant orga: @@ -11475,7 +14026,7 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Stephen Benjamin (@stbenjam)](https://github.com/stbenjam "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Stephen Coogan (@coogie)](https://github.com/coogie "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -11489,44 +14040,47 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io ") - [Stephen Hoekstra (@shoekstra)](https://github.com/shoekstra "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Stephen Vanterpool (@blackgold9)](https://github.com/blackgold9 "115 total commits to the Home Assistant orga: -113 commits to home-assistant-iOS -1 commit to home-assistant-polymer +113 commits to iOS 1 commit to developers.home-assistant +1 commit to frontend ") - [Stephen Yeargin (@stephenyeargin)](https://github.com/stephenyeargin "32 total commits to the Home Assistant orga: 29 commits to hubot-home-assistant -1 commit to home-assistant-polymer -1 commit to home-assistant +1 commit to frontend +1 commit to core 1 commit to home-assistant.io ") - [StephenWetzel (@StephenWetzel)](https://github.com/StephenWetzel "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Steve (@kabongsteve)](https://github.com/kabongsteve "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Steve Bauer (@stevejbauer)](https://github.com/stevejbauer "12 total commits to the Home Assistant orga: 12 commits to open-zwave ") - [Steve Easley (@SteveEasley)](https://github.com/SteveEasley "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [Steve Edson (@SteveEdson)](https://github.com/SteveEdson "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core +") +- [Steve Luzynski (@sluzynsk)](https://github.com/sluzynsk "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Steve M (@shmick)](https://github.com/shmick "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Steve Pomeroy (@xxv)](https://github.com/xxv "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") - [Steve Rhoades (@steverhoades)](https://github.com/steverhoades "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Steve Scott (@thewishy)](https://github.com/thewishy "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -11538,34 +14092,46 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Steve9F (@Steve9F)](https://github.com/Steve9F "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [steve\-gombos (@steve-gombos)](https://github.com/steve-gombos "2 total commits to the Home Assistant orga: +2 commits to core ") - [SteveDinn (@SteveDinn)](https://github.com/SteveDinn "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Steven Adams (@navstev0)](https://github.com/navstev0 "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") - [Steven Barnes (@salt-lick)](https://github.com/salt-lick "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +1 commit to home-assistant.io +") +- [Steven Barth (@sbyx)](https://github.com/sbyx "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") - [Steven Conaway (@SConaway)](https://github.com/SConaway "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Steven D\. Lander (@stevendlander)](https://github.com/stevendlander "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") -- [Steven Looman (@StevenLooman)](https://github.com/StevenLooman "75 total commits to the Home Assistant orga: -68 commits to home-assistant -4 commits to home-assistant.io +- [Steven Impens (@imstevenxyz)](https://github.com/imstevenxyz "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Steven Looman (@StevenLooman)](https://github.com/StevenLooman "89 total commits to the Home Assistant orga: +80 commits to core +6 commits to home-assistant.io 3 commits to netdisco ") -- [Steven Rollason (@gadgetchnnel)](https://github.com/gadgetchnnel "5 total commits to the Home Assistant orga: -3 commits to home-assistant +- [Steven Rollason (@gadgetchnnel)](https://github.com/gadgetchnnel "9 total commits to the Home Assistant orga: +6 commits to core 2 commits to home-assistant.io +1 commit to brands ") - [Steven Webb (@cy1701)](https://github.com/cy1701 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -11573,16 +14139,25 @@ This page contains a list of people who have contributed in one way or another t - [stevenp (@stevenp)](https://github.com/stevenp "3 total commits to the Home Assistant orga: 3 commits to Iconic ") +- [StevusPrimus (@StevusPrimus)](https://github.com/StevusPrimus "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [stickpin (@stickpin)](https://github.com/stickpin "7 total commits to the Home Assistant orga: +5 commits to hassio-addons +1 commit to core +1 commit to home-assistant.io +") - [Stijn Tintel (@stintel)](https://github.com/stintel "3 total commits to the Home Assistant orga: 2 commits to open-zwave -1 commit to home-assistant +1 commit to core ") - [Strixx76 (@Strixx76)](https://github.com/Strixx76 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Stu Gott (@stu-gott)](https://github.com/stu-gott "9 total commits to the Home Assistant orga: 5 commits to home-assistant.io -4 commits to home-assistant +4 commits to core ") - [Stuart (@schford)](https://github.com/schford "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -11591,7 +14166,7 @@ This page contains a list of people who have contributed in one way or another t 5 commits to home-assistant.io ") - [Stuart Mumford (@Cadair)](https://github.com/Cadair "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Stuart Pook (@stuart12)](https://github.com/stuart12 "1 total commits to the Home Assistant orga: @@ -11604,30 +14179,27 @@ This page contains a list of people who have contributed in one way or another t 1 commit to open-zwave ") - [Ståle Semb Hauknes (@LaStrada)](https://github.com/LaStrada "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Stéphane Bidoul \(ACSONE\) (@sbidoul)](https://github.com/sbidoul "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") -- [SuHun Han (@ssut)](https://github.com/ssut "1 total commits to the Home Assistant orga: +- [Suhun Han (@ssut)](https://github.com/ssut "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [SupahNoob (@SupahNoob)](https://github.com/SupahNoob "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io -") - [superjunky (@superjunky)](https://github.com/superjunky "3 total commits to the Home Assistant orga: 3 commits to open-zwave ") - [superpuffin (@superpuffin)](https://github.com/superpuffin "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [surfermarty (@surfermarty)](https://github.com/surfermarty "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [sustah (@sustah)](https://github.com/sustah "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [svedese (@svedese)](https://github.com/svedese "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -11636,21 +14208,27 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io ") - [Sven (@svendroid)](https://github.com/svendroid "4 total commits to the Home Assistant orga: -4 commits to home-assistant-polymer +4 commits to frontend ") -- [Sven\-Hendrik Haase (@svenstaro)](https://github.com/svenstaro "4 total commits to the Home Assistant orga: -3 commits to home-assistant.io -1 commit to home-assistant +- [Sven\-Hendrik Haase (@svenstaro)](https://github.com/svenstaro "7 total commits to the Home Assistant orga: +4 commits to home-assistant.io +3 commits to core ") -- [Swamp\-Ig (@Swamp-Ig)](https://github.com/Swamp-Ig "53 total commits to the Home Assistant orga: -39 commits to home-assistant +- [sverleysen (@sverleysen)](https://github.com/sverleysen "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [svh1985 (@svh1985)](https://github.com/svh1985 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Swamp\-Ig (@Swamp-Ig)](https://github.com/Swamp-Ig "54 total commits to the Home Assistant orga: +40 commits to core 10 commits to home-assistant.io -2 commits to home-assistant-polymer +2 commits to frontend 1 commit to people 1 commit to developers.home-assistant ") - [swanwila (@swanwila)](https://github.com/swanwila "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [swhaat (@swhaat)](https://github.com/swhaat "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -11662,16 +14240,15 @@ This page contains a list of people who have contributed in one way or another t 3 commits to python-openzwave ") - [Sylvia van Os (@TheLastProject)](https://github.com/TheLastProject "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [System Tester (@systemtester)](https://github.com/systemtester "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") -- [Sytone (@sytone)](https://github.com/sytone "12 total commits to the Home Assistant orga: +- [Sytone (@sytone)](https://github.com/sytone "10 total commits to the Home Assistant orga: 6 commits to home-assistant.io -2 commits to home-assistant-cli -2 commits to home-assistant +2 commits to core 1 commit to hassio-build 1 commit to developers.home-assistant ") @@ -11681,20 +14258,27 @@ This page contains a list of people who have contributed in one way or another t - [Sébastien GALLET (@bibi21000)](https://github.com/bibi21000 "1024 total commits to the Home Assistant orga: 1024 commits to python-openzwave ") -- [Sébastien RAMAGE (@doudz)](https://github.com/doudz "19 total commits to the Home Assistant orga: -15 commits to home-assistant +- [Sébastien RAMAGE (@doudz)](https://github.com/doudz "21 total commits to the Home Assistant orga: +17 commits to core 4 commits to home-assistant.io ") -- [Sören (@pattyland)](https://github.com/pattyland "16 total commits to the Home Assistant orga: -13 commits to home-assistant.io -2 commits to home-assistant -1 commit to example-custom-config -") -- [Sören Beye (@Hypfer)](https://github.com/Hypfer "1 total commits to the Home Assistant orga: +- [Sérgio (@sergioisidoro)](https://github.com/sergioisidoro "3 total commits to the Home Assistant orga: +1 commit to docker-base +1 commit to core 1 commit to home-assistant.io ") -- [Sören Oldag (@soldag)](https://github.com/soldag "19 total commits to the Home Assistant orga: -11 commits to home-assistant +- [Sören (@pattyland)](https://github.com/pattyland "18 total commits to the Home Assistant orga: +15 commits to home-assistant.io +2 commits to core +1 commit to example-custom-config +") +- [Sören Beye (@Hypfer)](https://github.com/Hypfer "4 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to companion.home-assistant +1 commit to core +") +- [Sören Oldag (@soldag)](https://github.com/soldag "21 total commits to the Home Assistant orga: +13 commits to core 8 commits to home-assistant.io ") - [Søren Dam Pedersen (@Pengman)](https://github.com/Pengman "1 total commits to the Home Assistant orga: @@ -11705,17 +14289,20 @@ This page contains a list of people who have contributed in one way or another t ") - [t30 (@t30)](https://github.com/t30 "8 total commits to the Home Assistant orga: 7 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Tabakhase (@tabakhase)](https://github.com/tabakhase "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant-polymer -1 commit to home-assistant +1 commit to frontend +1 commit to core ") - [tadly (@tadly)](https://github.com/tadly "9 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 1 commit to home-assistant.io ") +- [Tais Hedegaard Holland (@taisholland)](https://github.com/taisholland "1 total commits to the Home Assistant orga: +1 commit to core +") - [Tal Salmona (@talsalmona)](https://github.com/talsalmona "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -11726,21 +14313,27 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [tantecky (@tantecky)](https://github.com/tantecky "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Tarunpreet Ubhi (@UbhiTS)](https://github.com/UbhiTS "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Tatham Oddie (@tathamoddie)](https://github.com/tathamoddie "1 total commits to the Home Assistant orga: +1 commit to hassio-addons ") - [Taylor Peet (@RePeet13)](https://github.com/RePeet13 "10 total commits to the Home Assistant orga: 9 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Taylor Silva (@taylorsilva)](https://github.com/taylorsilva "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Taylor Vierrether (@viertaxa)](https://github.com/viertaxa "5 total commits to the Home Assistant orga: 3 commits to open-zwave 2 commits to home-assistant.io ") - [tbergo (@tbergo)](https://github.com/tbergo "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [tbrock47 (@tbrock47)](https://github.com/tbrock47 "1 total commits to the Home Assistant orga: @@ -11749,91 +14342,104 @@ This page contains a list of people who have contributed in one way or another t - [tchentchen (@tchentchen)](https://github.com/tchentchen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [tdejneka (@tdejneka)](https://github.com/tdejneka "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Teagan Glenn (@Teagan42)](https://github.com/Teagan42 "59 total commits to the Home Assistant orga: -49 commits to home-assistant +49 commits to core 9 commits to home-assistant.io 1 commit to home-assistant-js ") +- [technofreak74 (@technofreak74)](https://github.com/technofreak74 "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Ted Drain (@TD22057)](https://github.com/TD22057 "7 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core 2 commits to home-assistant.io ") -- [Ted Kulp (@tedkulp)](https://github.com/tedkulp "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io -") - [Ted Sluis (@tedsluis)](https://github.com/tedsluis "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [tedstriker (@tedstriker)](https://github.com/tedstriker "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [teejay\-87 (@teejay-87)](https://github.com/teejay-87 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Teemu Mikkonen (@T3m3z)](https://github.com/T3m3z "5 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io ") - [Teemu Patja (@tpatja)](https://github.com/tpatja "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") -- [Teemu R\. (@rytilahti)](https://github.com/rytilahti "94 total commits to the Home Assistant orga: -71 commits to home-assistant -15 commits to home-assistant.io +- [Teemu R\. (@rytilahti)](https://github.com/rytilahti "100 total commits to the Home Assistant orga: +78 commits to core +16 commits to home-assistant.io 5 commits to netdisco -2 commits to home-assistant-cli 1 commit to people ") - [Teguh Sobirin (@tjstyle)](https://github.com/tjstyle "2 total commits to the Home Assistant orga: 2 commits to pi-gen ") -- [TehRobot (@TehRobot)](https://github.com/TehRobot "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [TehRobot (@TehRobot)](https://github.com/TehRobot "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Teis Angel Clausen (@AngelFreak)](https://github.com/AngelFreak "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Tejpal Sahota (@GrandNewbien)](https://github.com/GrandNewbien "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") +- [teldri (@teldri)](https://github.com/teldri "1 total commits to the Home Assistant orga: +1 commit to core +") - [teliov (@teliov)](https://github.com/teliov "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [temeteke (@temeteke)](https://github.com/temeteke "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Tentoe (@Tentoe)](https://github.com/Tentoe "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend +") +- [Teppo Rekola (@sytem)](https://github.com/sytem "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Terence Foxcroft (@tfoxcroft)](https://github.com/tfoxcroft "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [terminet85 (@terminet85)](https://github.com/terminet85 "1 total commits to the Home Assistant orga: +1 commit to core +") - [Terry Carlin (@terrycarlin)](https://github.com/terrycarlin "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Tertius (@Tertiush)](https://github.com/Tertiush "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [terual (@terual)](https://github.com/terual "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Test GITHub account (@YogoGit)](https://github.com/YogoGit "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [tetienne (@tetienne)](https://github.com/tetienne "3 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to home-assistant.io +- [tetienne (@tetienne)](https://github.com/tetienne "21 total commits to the Home Assistant orga: +15 commits to core +4 commits to home-assistant.io +1 commit to alerts.home-assistant.io +1 commit to brands ") - [tfitts (@tfitts)](https://github.com/tfitts "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [tflack (@tflack)](https://github.com/tflack "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [tfyoung (@tfyoung)](https://github.com/tfyoung "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -11842,23 +14448,25 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [thaohtp (@thaohtp)](https://github.com/thaohtp "4 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core ") - [Tharsan Bhuvanendran (@thizzle)](https://github.com/thizzle "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [ThaSiouL (@ThaSiouL)](https://github.com/ThaSiouL "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [ThaStealth (@ThaStealth)](https://github.com/ThaStealth "6 total commits to the Home Assistant orga: -3 commits to home-assistant 3 commits to home-assistant.io +3 commits to core ") -- [THATDONFC (@THATDONFC)](https://github.com/THATDONFC "1 total commits to the Home Assistant orga: +- [THATDONFC (@THATDONFC)](https://github.com/THATDONFC "3 total commits to the Home Assistant orga: +1 commit to hassio-addons 1 commit to developers.home-assistant +1 commit to home-assistant.io ") - [The Gitter Badger (@gitter-badger)](https://github.com/gitter-badger "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [The Louie (@the-louie)](https://github.com/the-louie "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -11873,26 +14481,31 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Theb\-1 (@Theb-1)](https://github.com/Theb-1 "5 total commits to the Home Assistant orga: -5 commits to home-assistant +5 commits to core ") - [TheCellMC (@TheCellMC)](https://github.com/TheCellMC "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [TheFrogDaddy (@TheFrogDaddy)](https://github.com/TheFrogDaddy "1 total commits to the Home Assistant orga: -1 commit to appdaemon +- [thecem (@thecem)](https://github.com/thecem "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [thecode (@thecode)](https://github.com/thecode "3 total commits to the Home Assistant orga: +1 commit to operating-system +1 commit to core +1 commit to home-assistant.io +") +- [TheGroundZero (@TheGroundZero)](https://github.com/TheGroundZero "1 total commits to the Home Assistant orga: +1 commit to hassio-addons ") - [thehookup (@thehookup)](https://github.com/thehookup "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [thejacko12354 (@thejacko12354)](https://github.com/thejacko12354 "1 total commits to the Home Assistant orga: -1 commit to home-assistant -") - [TheJulianJES (@TheJulianJES)](https://github.com/TheJulianJES "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [thelittlefireman (@thelittlefireman)](https://github.com/thelittlefireman "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [themanieldaniel (@themanieldaniel)](https://github.com/themanieldaniel "14 total commits to the Home Assistant orga: 14 commits to home-assistant.io @@ -11901,29 +14514,36 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [theolind (@theolind)](https://github.com/theolind "27 total commits to the Home Assistant orga: -25 commits to home-assistant +25 commits to core 2 commits to home-assistant.io ") - [thepotoo (@thepotoo)](https://github.com/thepotoo "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [therealryanbonham (@therealryanbonham)](https://github.com/therealryanbonham "2 total commits to the Home Assistant orga: +2 commits to core ") - [TheRedBull205 (@TheRedBull205)](https://github.com/TheRedBull205 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Thiago Oliveira (@chilicheech)](https://github.com/chilicheech "10 total commits to the Home Assistant orga: -5 commits to home-assistant +- [ThermIQ (@ThermIQ)](https://github.com/ThermIQ "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Thiago Oliveira (@chilicheech)](https://github.com/chilicheech "11 total commits to the Home Assistant orga: +5 commits to core 3 commits to open-zwave -2 commits to home-assistant.io +3 commits to home-assistant.io ") - [Thibault Cohen (@titilambert)](https://github.com/titilambert "53 total commits to the Home Assistant orga: -39 commits to home-assistant +39 commits to core 13 commits to home-assistant.io -1 commit to home-assistant-polymer +1 commit to frontend ") -- [Thibault Maekelbergh (@thibmaek)](https://github.com/thibmaek "15 total commits to the Home Assistant orga: -7 commits to home-assistant +- [Thibault Maekelbergh (@thibmaek)](https://github.com/thibmaek "18 total commits to the Home Assistant orga: +9 commits to core 7 commits to home-assistant.io 1 commit to hassio-addons +1 commit to brands ") - [Thierry Bellocchi (@tbeloc)](https://github.com/tbeloc "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -11937,13 +14557,14 @@ This page contains a list of people who have contributed in one way or another t - [Thom Stricklin (@thomshouse)](https://github.com/thomshouse "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Thom Troy (@ttroy50)](https://github.com/ttroy50 "19 total commits to the Home Assistant orga: -11 commits to home-assistant -8 commits to home-assistant.io +- [Thom Troy (@ttroy50)](https://github.com/ttroy50 "23 total commits to the Home Assistant orga: +11 commits to core +10 commits to home-assistant.io +2 commits to brands ") -- [Thomas (@HexF)](https://github.com/HexF "2 total commits to the Home Assistant orga: +- [Thomas (@l3d00m)](https://github.com/l3d00m "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io -1 commit to home-assistant ") - [Thomas (@a-tom-s)](https://github.com/a-tom-s "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -11951,65 +14572,98 @@ This page contains a list of people who have contributed in one way or another t - [Thomas Alcala Schneider (@ThomasMarcel)](https://github.com/ThomasMarcel "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Thomas Augustinus (@taugusti)](https://github.com/taugusti "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Thomas Aunvik (@ThomasAunvik)](https://github.com/ThomasAunvik "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Thomas Deblock (@deblockt)](https://github.com/deblockt "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [Thomas Delaet (@thomasdelaet)](https://github.com/thomasdelaet "7 total commits to the Home Assistant orga: -4 commits to home-assistant +5 commits to core 2 commits to home-assistant.io -1 commit to appdaemon ") -- [Thomas Friedel (@tfriedel)](https://github.com/tfriedel "2 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Thomas Dietrich (@ThomDietrich)](https://github.com/ThomDietrich "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io +1 commit to hassio-addons ") -- [Thomas Germain (@thomasgermain)](https://github.com/thomasgermain "3 total commits to the Home Assistant orga: -3 commits to home-assistant -") -- [Thomas Hervé (@therve)](https://github.com/therve "3 total commits to the Home Assistant orga: -3 commits to home-assistant -") -- [Thomas Klingbeil (@thomasklingbeil)](https://github.com/thomasklingbeil "1 total commits to the Home Assistant orga: -1 commit to home-assistant -") -- [Thomas Krüger (@thomaskr)](https://github.com/thomaskr "1 total commits to the Home Assistant orga: -1 commit to home-assistant -") -- [Thomas Le Gentil (@kifeo)](https://github.com/kifeo "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Thomas Dulle (@freps)](https://github.com/freps "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Thomas Lovén (@thomasloven)](https://github.com/thomasloven "92 total commits to the Home Assistant orga: -54 commits to home-assistant-polymer -24 commits to home-assistant.io -13 commits to home-assistant +- [Thomas Friedel (@tfriedel)](https://github.com/tfriedel "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Thomas Germain (@thomasgermain)](https://github.com/thomasgermain "3 total commits to the Home Assistant orga: +3 commits to core +") +- [Thomas Hervé (@therve)](https://github.com/therve "3 total commits to the Home Assistant orga: +3 commits to core +") +- [Thomas Hollstegge (@Tho85)](https://github.com/Tho85 "13 total commits to the Home Assistant orga: +11 commits to core +2 commits to home-assistant.io +") +- [Thomas Jaggi (@backflip)](https://github.com/backflip "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Thomas Johanns (@jtommi)](https://github.com/jtommi "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Thomas Klingbeil (@thomasklingbeil)](https://github.com/thomasklingbeil "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Thomas Krüger (@thomaskr)](https://github.com/thomaskr "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Thomas Le Gentil (@kifeo)](https://github.com/kifeo "5 total commits to the Home Assistant orga: +3 commits to core +2 commits to home-assistant.io +") +- [Thomas Lemberger (@lembergerth)](https://github.com/lembergerth "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Thomas Linde (@tellerbop)](https://github.com/tellerbop "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Thomas Lovén (@thomasloven)](https://github.com/thomasloven "111 total commits to the Home Assistant orga: +69 commits to frontend +26 commits to home-assistant.io +14 commits to core 1 commit to people +1 commit to developers.home-assistant +") +- [Thomas Mauerer (@thomasmauerer)](https://github.com/thomasmauerer "1 total commits to the Home Assistant orga: +1 commit to cli ") - [Thomas Passer Jensen (@tomatpasser)](https://github.com/tomatpasser "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Thomas Petazzoni (@tpetazzoni)](https://github.com/tpetazzoni "1 total commits to the Home Assistant orga: 1 commit to libcoap ") -- [Thomas Phillips (@thomas-phillips-nz)](https://github.com/thomas-phillips-nz "2 total commits to the Home Assistant orga: -2 commits to pi-gen -") - [Thomas Purchas (@thomaspurchas)](https://github.com/thomaspurchas "1 total commits to the Home Assistant orga: 1 commit to homebridge-homeassistant ") - [Thomas Pötsch (@thp-comnets)](https://github.com/thp-comnets "7 total commits to the Home Assistant orga: 7 commits to libcoap ") -- [Thomas Redmer (@Skorfulose)](https://github.com/Skorfulose "3 total commits to the Home Assistant orga: -2 commits to home-assistant.io -1 commit to hassio-cli +- [Thomas Redmer (@Skorfulose)](https://github.com/Skorfulose "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io +1 commit to cli ") - [Thomas Rix (@rixth)](https://github.com/rixth "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Thomas Schamm (@tschamm)](https://github.com/tschamm "1 total commits to the Home Assistant orga: +1 commit to core +") - [Thomas Svedberg (@ThomasSvedberg)](https://github.com/ThomasSvedberg "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Thomas Wilson (@novirium)](https://github.com/novirium "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -12018,24 +14672,32 @@ This page contains a list of people who have contributed in one way or another t 1 commit to open-zwave ") - [thomaslian (@thomaslian)](https://github.com/thomaslian "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [thomasvs (@thomasvs)](https://github.com/thomasvs "3 total commits to the Home Assistant orga: -2 commits to home-assistant.io -1 commit to hassos +- [thomasvs (@thomasvs)](https://github.com/thomasvs "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io +1 commit to operating-system ") -- [Thorjan Knudsvik (@knudsvik)](https://github.com/knudsvik "1 total commits to the Home Assistant orga: +- [thomkaufmann (@thomkaufmann)](https://github.com/thomkaufmann "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Thorbjørn Bruarøy (@The2rB)](https://github.com/The2rB "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Thorjan Knudsvik (@knudsvik)](https://github.com/knudsvik "4 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to brands +1 commit to core +") - [Thorsten Alteholz (@alteholz)](https://github.com/alteholz "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [thoscut (@thoscut)](https://github.com/thoscut "5 total commits to the Home Assistant orga: -3 commits to home-assistant.io -2 commits to home-assistant +- [thoscut (@thoscut)](https://github.com/thoscut "7 total commits to the Home Assistant orga: +4 commits to home-assistant.io +3 commits to core ") -- [thrawnarn (@thrawnarn)](https://github.com/thrawnarn "10 total commits to the Home Assistant orga: -5 commits to home-assistant +- [thrawnarn (@thrawnarn)](https://github.com/thrawnarn "11 total commits to the Home Assistant orga: +6 commits to core 4 commits to home-assistant.io 1 commit to netdisco ") @@ -12048,25 +14710,32 @@ This page contains a list of people who have contributed in one way or another t - [thunfischbrot (@thunfischbrot)](https://github.com/thunfischbrot "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [tiagofreire\-pt (@tiagofreire-pt)](https://github.com/tiagofreire-pt "7 total commits to the Home Assistant orga: -7 commits to home-assistant.io +- [tiagofreire\-pt (@tiagofreire-pt)](https://github.com/tiagofreire-pt "16 total commits to the Home Assistant orga: +13 commits to home-assistant.io +2 commits to core +1 commit to developers.home-assistant ") - [Ties de Kock (@ties)](https://github.com/ties "5 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io ") -- [tigattack (@tigattack)](https://github.com/tigattack "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [tigattack (@tigattack)](https://github.com/tigattack "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") -- [Tiit Rätsep (@ratsept)](https://github.com/ratsept "4 total commits to the Home Assistant orga: -3 commits to home-assistant +- [Tiit Rätsep (@ratsept)](https://github.com/ratsept "5 total commits to the Home Assistant orga: +4 commits to core 1 commit to home-assistant.io ") - [tijuca (@tijuca)](https://github.com/tijuca "106 total commits to the Home Assistant orga: 106 commits to libcoap ") +- [tikismoke (@tikismoke)](https://github.com/tikismoke "7 total commits to the Home Assistant orga: +3 commits to wheels-custom-integrations +2 commits to brands +2 commits to home-assistant.io +") - [Till (@microraptor)](https://github.com/microraptor "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Till Schulte\-Coerne (@tillsc)](https://github.com/tillsc "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -12074,93 +14743,113 @@ This page contains a list of people who have contributed in one way or another t - [tilphousia (@tilphousia)](https://github.com/tilphousia "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Tim (@Timmmeeeh)](https://github.com/Timmmeeeh "3 total commits to the Home Assistant orga: +3 commits to android +") - [Tim (@tinglis1)](https://github.com/tinglis1 "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") -- [Tim (@tmyoungjr)](https://github.com/tmyoungjr "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Tim (@tmyoungjr)](https://github.com/tmyoungjr "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Tim Bailey (@TimBailey-pnk)](https://github.com/TimBailey-pnk "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Tim Clephas (@Timple)](https://github.com/Timple "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Tim Gates (@timgates42)](https://github.com/timgates42 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Tim Gerla (@tgerla)](https://github.com/tgerla "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Tim Gray (@tgray)](https://github.com/tgray "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Tim Harton (@timharton)](https://github.com/timharton "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Tim Hordern (@mence)](https://github.com/mence "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Tim Lyakhovetskiy (@tlyakhov)](https://github.com/tlyakhov "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") -- [Tim McCormick (@timmccor)](https://github.com/timmccor "6 total commits to the Home Assistant orga: -4 commits to home-assistant +- [Tim McCormick (@timmccor)](https://github.com/timmccor "7 total commits to the Home Assistant orga: +5 commits to core 2 commits to open-zwave ") +- [Tim Messerschmidt (@SeraphimSerapis)](https://github.com/SeraphimSerapis "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Tim Rightnour (@garbled1)](https://github.com/garbled1 "6 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +2 commits to core +2 commits to home-assistant.io +") - [Tim Soderstrom (@m00dawg)](https://github.com/m00dawg "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Tim Stanley (@timstanley1985)](https://github.com/timstanley1985 "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") -- [Tim van Cann (@timvancann)](https://github.com/timvancann "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Tim van Cann (@timvancann)](https://github.com/timvancann "10 total commits to the Home Assistant orga: +5 commits to core +4 commits to home-assistant.io +1 commit to brands +") +- [Tim van der Heide (@timmmmmmmmm)](https://github.com/timmmmmmmmm "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Tim Wilbrink (@TWilb)](https://github.com/TWilb "15 total commits to the Home Assistant orga: -15 commits to home-assistant-iOS +15 commits to iOS ") - [Tim Wilde (@twilde)](https://github.com/twilde "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [timfosse (@timfosse)](https://github.com/timfosse "1 total commits to the Home Assistant orga: +- [timfosse (@ludipq)](https://github.com/ludipq "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [timkoers (@timkoers)](https://github.com/timkoers "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Timm Schäuble (@tymm)](https://github.com/tymm "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Timmo (@timmo001)](https://github.com/timmo001 "31 total commits to the Home Assistant orga: -14 commits to home-assistant-polymer -8 commits to home-assistant.io -5 commits to home-assistant -2 commits to home-assistant-android -1 commit to hassio +- [Timmo (@timmo001)](https://github.com/timmo001 "66 total commits to the Home Assistant orga: +26 commits to frontend +14 commits to core +11 commits to home-assistant.io +6 commits to android +5 commits to brands +2 commits to supervisor 1 commit to data.home-assistant +1 commit to developers.home-assistant ") - [Timo (@timotk)](https://github.com/timotk "1 total commits to the Home Assistant orga: 1 commit to netdisco ") - [Timo S (@sti0)](https://github.com/sti0 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Timothy Macdonald (@tsmacdonald)](https://github.com/tsmacdonald "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [TimV (@vroomfonde1)](https://github.com/vroomfonde1 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [TimVa (@TimVa)](https://github.com/TimVa "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [tizzen33 (@tizzen33)](https://github.com/tizzen33 "2 total commits to the Home Assistant orga: +2 commits to core +") - [TJ Rana (@tjrana)](https://github.com/tjrana "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") @@ -12171,8 +14860,8 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [tleegaard (@tleegaard)](https://github.com/tleegaard "4 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to home-assistant-polymer +2 commits to core +1 commit to frontend 1 commit to home-assistant.io ") - [tlpeter (@tlpeter)](https://github.com/tlpeter "2 total commits to the Home Assistant orga: @@ -12183,25 +14872,28 @@ This page contains a list of people who have contributed in one way or another t ") - [tmd224 (@tmd224)](https://github.com/tmd224 "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [tmechen (@tmechen)](https://github.com/tmechen "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Toast (@swetoast)](https://github.com/swetoast "2 total commits to the Home Assistant orga: 2 commits to hassbian-scripts ") +- [Tobias (@tlindener)](https://github.com/tlindener "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Tobias Bieniek (@Turbo87)](https://github.com/Turbo87 "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [Tobias Efinger (@tefinger)](https://github.com/tefinger "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") - [Tobias Hoff (@ToSa27)](https://github.com/ToSa27 "5 total commits to the Home Assistant orga: 2 commits to open-zwave 1 commit to hassio-addons -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Tobias Hutterer (@tobiashutterer)](https://github.com/tobiashutterer "1 total commits to the Home Assistant orga: @@ -12210,45 +14902,48 @@ 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 orga: 1 commit to home-assistant.io ") -- [Tobias Perschon (@tofuSCHNITZEL)](https://github.com/tofuSCHNITZEL "4 total commits to the Home Assistant orga: -2 commits to home-assistant -2 commits to home-assistant.io +- [Tobias Perschon (@tofuSCHNITZEL)](https://github.com/tofuSCHNITZEL "6 total commits to the Home Assistant orga: +3 commits to home-assistant.io +3 commits to core ") -- [Tobias Sauerwein (@cgtobi)](https://github.com/cgtobi "156 total commits to the Home Assistant orga: -98 commits to home-assistant -42 commits to home-assistant.io +- [Tobias Sauerwein (@cgtobi)](https://github.com/cgtobi "204 total commits to the Home Assistant orga: +135 commits to core +49 commits to home-assistant.io 9 commits to people -4 commits to developers.home-assistant +8 commits to developers.home-assistant 2 commits to data.home-assistant -1 commit to appdaemon +1 commit to brands ") - [Tobie Booth (@tobiebooth)](https://github.com/tobiebooth "6 total commits to the Home Assistant orga: -4 commits to home-assistant -1 commit to home-assistant-polymer +4 commits to core +1 commit to frontend 1 commit to home-assistant.io ") - [Toby Gray (@tobygray)](https://github.com/tobygray "4 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core ") - [Toby Matejovsky (@tobym)](https://github.com/tobym "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Tod Schmidt (@tschmidty69)](https://github.com/tschmidty69 "62 total commits to the Home Assistant orga: -22 commits to home-assistant -21 commits to appdaemon +- [Tod Schmidt (@tschmidty69)](https://github.com/tschmidty69 "41 total commits to the Home Assistant orga: +22 commits to core 10 commits to home-assistant.io 7 commits to hassio-addons -2 commits to hassio +2 commits to supervisor ") - [Todd McNeal (@tmcneal)](https://github.com/tmcneal "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [toddeye (@toddeye)](https://github.com/toddeye "20 total commits to the Home Assistant orga: -20 commits to home-assistant +20 commits to core ") -- [Tom (@CoMPaTech)](https://github.com/CoMPaTech "3 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to home-assistant.io +- [Tom (@CoMPaTech)](https://github.com/CoMPaTech "19 total commits to the Home Assistant orga: +12 commits to core +5 commits to home-assistant.io +2 commits to brands +") +- [Tom (@uphillbattle)](https://github.com/uphillbattle "1 total commits to the Home Assistant orga: +1 commit to core ") - [Tom Barbette (@tbarbette)](https://github.com/tbarbette "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -12256,25 +14951,31 @@ This page contains a list of people who have contributed in one way or another t - [Tom Behets (@betz)](https://github.com/betz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Tom Brien (@TomBrien)](https://github.com/TomBrien "139 total commits to the Home Assistant orga: -137 commits to companion.home-assistant -2 commits to home-assistant.io +- [Tom Brien (@TomBrien)](https://github.com/TomBrien "347 total commits to the Home Assistant orga: +290 commits to companion.home-assistant +17 commits to developers.home-assistant +12 commits to iOS +12 commits to data.home-assistant +11 commits to home-assistant.io +3 commits to core +1 commit to probot-home-assistant +1 commit to alerts.home-assistant.io ") - [Tom Chapin (@tomchapin)](https://github.com/tomchapin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Tom Dickman (@tdickman)](https://github.com/tdickman "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [Tom Duijf (@tomduijf)](https://github.com/tomduijf "70 total commits to the Home Assistant orga: -53 commits to home-assistant +53 commits to core 9 commits to home-assistant.io -6 commits to home-assistant-polymer +6 commits to frontend 2 commits to netdisco ") -- [Tom Harris (@teharris1)](https://github.com/teharris1 "35 total commits to the Home Assistant orga: -24 commits to home-assistant -11 commits to home-assistant.io +- [Tom Harris (@teharris1)](https://github.com/teharris1 "55 total commits to the Home Assistant orga: +42 commits to core +13 commits to home-assistant.io ") - [Tom Hoover (@tomhoover)](https://github.com/tomhoover "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io @@ -12288,156 +14989,186 @@ This page contains a list of people who have contributed in one way or another t - [Tom J Nowell (@tomjn)](https://github.com/tomjn "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Tom L (@Qu3uk)](https://github.com/Qu3uk "6 total commits to the Home Assistant orga: -6 commits to home-assistant.io +- [Tom L (@Qu3uk)](https://github.com/Qu3uk "9 total commits to the Home Assistant orga: +9 commits to home-assistant.io ") - [Tom Matheussen (@Tommatheussen)](https://github.com/Tommatheussen "17 total commits to the Home Assistant orga: -6 commits to home-assistant 6 commits to home-assistant.io -4 commits to home-assistant-polymer +6 commits to core +4 commits to frontend 1 commit to developers.home-assistant ") - [Tom Monck JR (@tmonck)](https://github.com/tmonck "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Tom Most (@twm)](https://github.com/twm "9 total commits to the Home Assistant orga: 9 commits to feedparser ") - [Tom Raithel (@tomraithel)](https://github.com/tomraithel "5 total commits to the Home Assistant orga: -4 commits to home-assistant-polymer +4 commits to frontend 1 commit to home-assistant.io ") - [Tom Robinson (@tlrobinson)](https://github.com/tlrobinson "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Tom Schneider (@vigonotion)](https://github.com/vigonotion "2 total commits to the Home Assistant orga: -1 commit to custom-components-wheels -1 commit to home-assistant +- [Tom Schneider (@vigonotion)](https://github.com/vigonotion "11 total commits to the Home Assistant orga: +3 commits to brands +3 commits to home-assistant.io +3 commits to core +1 commit to wheels-custom-integrations +1 commit to developers.home-assistant ") - [Tom Usher (@tomusher)](https://github.com/tomusher "1 total commits to the Home Assistant orga: 1 commit to netdisco ") - [Tom Waters (@tomwaters)](https://github.com/tomwaters "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Tomaae (@tomaae)](https://github.com/tomaae "3 total commits to the Home Assistant orga: +2 commits to brands +1 commit to wheels-custom-integrations ") - [Tomas Hellström (@helto4real)](https://github.com/helto4real "8 total commits to the Home Assistant orga: -7 commits to home-assistant +7 commits to core 1 commit to home-assistant.io ") - [Tomas Kislan (@tkislan)](https://github.com/tkislan "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Tomasz (@Misiu)](https://github.com/Misiu "6 total commits to the Home Assistant orga: -5 commits to home-assistant -1 commit to home-assistant.io +- [Tomasz (@Misiu)](https://github.com/Misiu "14 total commits to the Home Assistant orga: +7 commits to core +2 commits to frontend +2 commits to brands +2 commits to home-assistant.io +1 commit to wheels-custom-integrations ") - [Tomasz Mlynski (@dvz)](https://github.com/dvz "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [tomaszduda23 (@tomaszduda23)](https://github.com/tomaszduda23 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [tombbo (@tombbo)](https://github.com/tombbo "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") - [Tomek985 (@Tomek985)](https://github.com/Tomek985 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Tomer Figenblat (@TomerFi)](https://github.com/TomerFi "6 total commits to the Home Assistant orga: -3 commits to home-assistant +- [Tomer Figenblat (@TomerFi)](https://github.com/TomerFi "8 total commits to the Home Assistant orga: +4 commits to core 2 commits to home-assistant.io 1 commit to developers.home-assistant +1 commit to brands ") - [Tomi Blinnikka (@docBliny)](https://github.com/docBliny "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Tomi Lehto (@tomilehto)](https://github.com/tomilehto "4 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io ") - [Tomi Salmi (@tomppasalmi)](https://github.com/tomppasalmi "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [Tomi Tuhkanen (@ttu)](https://github.com/ttu "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") -- [tomlut (@tomlut)](https://github.com/tomlut "14 total commits to the Home Assistant orga: -14 commits to home-assistant.io +- [tomlut (@tomlut)](https://github.com/tomlut "16 total commits to the Home Assistant orga: +16 commits to home-assistant.io ") - [Tommaso Marchionni (@tommasomarchionni)](https://github.com/tommasomarchionni "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Tommi Pääkkö (@Glenf)](https://github.com/Glenf "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") - [TomMini (@TomMini)](https://github.com/TomMini "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [Tommy Goode (@airdrummingfool)](https://github.com/airdrummingfool "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [Tommy Jonsson (@quazzie)](https://github.com/quazzie "20 total commits to the Home Assistant orga: -11 commits to home-assistant +11 commits to core 5 commits to home-assistant.io -4 commits to home-assistant-polymer +4 commits to frontend ") -- [Tommy Larsson (@larssont)](https://github.com/larssont "3 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to home-assistant.io +- [Tommy Larsson (@larssont)](https://github.com/larssont "4 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io ") - [Tommy Long (@tommyjlong)](https://github.com/tommyjlong "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") +- [tomtzeng (@tomtzeng)](https://github.com/tomtzeng "1 total commits to the Home Assistant orga: +1 commit to core +") - [tonire1702 (@tonire1702)](https://github.com/tonire1702 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Tontze (@Tontze)](https://github.com/Tontze "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [Tony Apuzzo (@TonyApuzzo)](https://github.com/TonyApuzzo "2 total commits to the Home Assistant orga: -2 commits to hassos +2 commits to operating-system ") - [Tony Brobston (@TonyBrobston)](https://github.com/TonyBrobston "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Tony Carmichael (@aicarmic)](https://github.com/aicarmic "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [tony chang (@idealisms)](https://github.com/idealisms "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Tony McDonald (@technocoffee)](https://github.com/technocoffee "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Tony Mitchell (@tonymitchell)](https://github.com/tonymitchell "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Tony Nichols (@JranZu)](https://github.com/JranZu "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Tony Phan (@phan-t)](https://github.com/phan-t "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Tony Roman (@ronytomen)](https://github.com/ronytomen "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Tony763 (@Tony763)](https://github.com/Tony763 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Tony763 (@Tony763)](https://github.com/Tony763 "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to core +") +- [Tony\-Munich (@Tony-Munich)](https://github.com/Tony-Munich "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Toon Willems (@nudded)](https://github.com/nudded "4 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core ") -- [TopdRob (@TopdRob)](https://github.com/TopdRob "7 total commits to the Home Assistant orga: -7 commits to home-assistant -") -- [Tor Arne Vestbø (@torarnv)](https://github.com/torarnv "3 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer -1 commit to developers.home-assistant -1 commit to home-assistant -") -- [Tor Magnus (@tcastberg)](https://github.com/tcastberg "2 total commits to the Home Assistant orga: -1 commit to home-assistant +- [TopdRob (@TopdRob)](https://github.com/TopdRob "8 total commits to the Home Assistant orga: +7 commits to core 1 commit to home-assistant.io ") -- [Torkild Retvedt (@torkildr)](https://github.com/torkildr "2 total commits to the Home Assistant orga: -2 commits to appdaemon +- [Tor Arne Vestbø (@torarnv)](https://github.com/torarnv "12 total commits to the Home Assistant orga: +9 commits to iOS +1 commit to developers.home-assistant +1 commit to frontend +1 commit to core +") +- [Tor Magnus (@tcastberg)](https://github.com/tcastberg "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Tore Amundsen (@toreamun)](https://github.com/toreamun "3 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +1 commit to brands ") - [tortfeaser (@tortfeaser)](https://github.com/tortfeaser "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -12446,12 +15177,12 @@ This page contains a list of people who have contributed in one way or another t 1 commit to homebridge-homeassistant ") - [Totoo (@htotoo)](https://github.com/htotoo "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Touliloup (@RiRomain)](https://github.com/RiRomain "16 total commits to the Home Assistant orga: 13 commits to home-assistant.io -3 commits to home-assistant +3 commits to core ") - [towerhand (@towerhand)](https://github.com/towerhand "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -12468,67 +15199,91 @@ This page contains a list of people who have contributed in one way or another t - [trbs (@trbs)](https://github.com/trbs "1 total commits to the Home Assistant orga: 1 commit to netdisco ") +- [Trekky12 (@Trekky12)](https://github.com/Trekky12 "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [trentjw (@trentjw)](https://github.com/trentjw "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") - [Trevin (@tmchow)](https://github.com/tmchow "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [Trevor (@tboyce021)](https://github.com/tboyce021 "15 total commits to the Home Assistant orga: -10 commits to home-assistant +10 commits to core 5 commits to home-assistant.io ") - [Trevor Joynson (@akatrevorjay)](https://github.com/akatrevorjay "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Trey Hunner (@treyhunner)](https://github.com/treyhunner "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Trey Richards (@treyrich)](https://github.com/treyrich "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io -") - [Trey Sheldon (@tsheldon)](https://github.com/tsheldon "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [trilu2000 (@trilu2000)](https://github.com/trilu2000 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [tringler (@tringler)](https://github.com/tringler "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") -- [Tristan Caulfield (@Bahnburner)](https://github.com/Bahnburner "3 total commits to the Home Assistant orga: -2 commits to home-assistant -1 commit to home-assistant.io -") -- [tristanatfarkas (@trilleplay)](https://github.com/trilleplay "1 total commits to the Home Assistant orga: +- [Tristan (@trilleplay)](https://github.com/trilleplay "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Troels Agergaard Jacobsen (@tkjacobsen)](https://github.com/tkjacobsen "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Tristan Caulfield (@Bahnburner)](https://github.com/Bahnburner "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io ") -- [trollkarlen (@trollkarlen)](https://github.com/trollkarlen "5 total commits to the Home Assistant orga: -5 commits to home-assistant +- [Troels Agergaard Jacobsen (@tkjacobsen)](https://github.com/tkjacobsen "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Troon (@Troon)](https://github.com/Troon "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Troy Kelly (@troykelly)](https://github.com/troykelly "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Trung Lê (@joneslee85)](https://github.com/joneslee85 "1 total commits to the Home Assistant orga: +- [Troy Prelog (@tprelog)](https://github.com/tprelog "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Trung Lê (@runlevel5)](https://github.com/runlevel5 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Try2Fly (@Try2Fly)](https://github.com/Try2Fly "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Trygve Vea (@kvisle)](https://github.com/kvisle "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Tsvi Mostovicz (@tsvi)](https://github.com/tsvi "43 total commits to the Home Assistant orga: -28 commits to home-assistant -14 commits to home-assistant.io +- [tsat\-psv (@tsat-psv)](https://github.com/tsat-psv "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [tscibilia (@tscibilia)](https://github.com/tscibilia "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [tstabrawa (@tstabrawa)](https://github.com/tstabrawa "1 total commits to the Home Assistant orga: +1 commit to docker +") +- [Tsvi Mostovicz (@tsvi)](https://github.com/tsvi "49 total commits to the Home Assistant orga: +31 commits to core +15 commits to home-assistant.io +2 commits to brands 1 commit to developers.home-assistant ") -- [tubalainen (@tubalainen)](https://github.com/tubalainen "4 total commits to the Home Assistant orga: +- [tubalainen (@tubalainen)](https://github.com/tubalainen "6 total commits to the Home Assistant orga: +5 commits to home-assistant.io +1 commit to core +") +- [tube0013 (@tube0013)](https://github.com/tube0013 "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") -- [tube0013 (@tube0013)](https://github.com/tube0013 "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [tucoti (@tucoti)](https://github.com/tucoti "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [tumik (@tumik)](https://github.com/tumik "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Tuncay (@Tuncay-Ayhan)](https://github.com/Tuncay-Ayhan "3 total commits to the Home Assistant orga: 1 commit to hassbian-scripts @@ -12541,12 +15296,15 @@ This page contains a list of people who have contributed in one way or another t - [tuxuser (@tuxuser)](https://github.com/tuxuser "1 total commits to the Home Assistant orga: 1 commit to netdisco ") +- [TVDLoewe (@TVDLoewe)](https://github.com/TVDLoewe "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") - [Twan Coenraad (@tcoenraad)](https://github.com/tcoenraad "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [twendt (@twendt)](https://github.com/twendt "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Twit123 (@Twit123)](https://github.com/Twit123 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -12558,21 +15316,20 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [tyjtyj (@tyjtyj)](https://github.com/tyjtyj "3 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core ") - [Tyler (@TFenby)](https://github.com/TFenby "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Tyler (@tyler-public)](https://github.com/tyler-public "1 total commits to the Home Assistant orga: +1 commit to core ") - [Tyler Bigler (@tyler-8)](https://github.com/tyler-8 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Tyler Crumpton (@tylercrumpton)](https://github.com/tylercrumpton "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant -") -- [Tyler Page (@iamtpage)](https://github.com/iamtpage "13 total commits to the Home Assistant orga: -10 commits to home-assistant -3 commits to home-assistant.io +1 commit to core ") - [Tyler Shaw\! (@tylershaw)](https://github.com/tylershaw "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -12580,23 +15337,29 @@ This page contains a list of people who have contributed in one way or another t - [Tyler Straub (@tylerstraub)](https://github.com/tylerstraub "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Tyler Szabo (@tylerszabo)](https://github.com/tylerszabo "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Tõnis Tobre (@tobre6)](https://github.com/tobre6 "1 total commits to the Home Assistant orga: 1 commit to homebridge-homeassistant ") - [ubnt\-marc\-khouri (@ubnt-marc-khouri)](https://github.com/ubnt-marc-khouri "6 total commits to the Home Assistant orga: -2 commits to home-assistant-polymer +2 commits to frontend 1 commit to hassio-build 1 commit to developers.home-assistant -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [uchagani (@uchagani)](https://github.com/uchagani "20 total commits to the Home Assistant orga: -17 commits to home-assistant +17 commits to core 2 commits to home-assistant.io -1 commit to home-assistant-polymer +1 commit to frontend +") +- [uDude (@uDude)](https://github.com/uDude "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [UgaitzEtxebarria (@UgaitzEtxebarria)](https://github.com/UgaitzEtxebarria "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Ugo Viti (@ugoviti)](https://github.com/ugoviti "24 total commits to the Home Assistant orga: @@ -12608,8 +15371,11 @@ This page contains a list of people who have contributed in one way or another t - [Uli (@uehler)](https://github.com/uehler "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") +- [ulnic (@ulnic)](https://github.com/ulnic "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Ulrich Dobramysl (@ulido)](https://github.com/ulido "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [ultratoto14 (@ultratoto14)](https://github.com/ultratoto14 "1 total commits to the Home Assistant orga: 1 commit to netdisco @@ -12620,30 +15386,38 @@ This page contains a list of people who have contributed in one way or another t - [Underknowledge (@Underknowledge)](https://github.com/Underknowledge "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [unixko (@unixko)](https://github.com/unixko "3 total commits to the Home Assistant orga: -2 commits to home-assistant.io -1 commit to home-assistant +- [unixko (@unixko)](https://github.com/unixko "5 total commits to the Home Assistant orga: +3 commits to home-assistant.io +2 commits to core ") - [UnrealKazu (@UnrealKazu)](https://github.com/UnrealKazu "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant-polymer +1 commit to frontend ") - [upsert (@upsert)](https://github.com/upsert "3 total commits to the Home Assistant orga: 1 commit to netdisco -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [User5981 (@User5981)](https://github.com/User5981 "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend +") +- [uvjustin (@uvjustin)](https://github.com/uvjustin "23 total commits to the Home Assistant orga: +19 commits to core +3 commits to home-assistant.io +1 commit to brands +") +- [Vaarlion (@Vaarlion)](https://github.com/Vaarlion "1 total commits to the Home Assistant orga: +1 commit to core ") - [vacumet (@vacumet)](https://github.com/vacumet "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [vaidyasm (@vaidyasm)](https://github.com/vaidyasm "7 total commits to the Home Assistant orga: 7 commits to home-assistant.io ") - [Valentin Alexeev (@valentinalexeev)](https://github.com/valentinalexeev "11 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 3 commits to home-assistant.io ") - [Valentin Petkov (@skyval)](https://github.com/skyval "2 total commits to the Home Assistant orga: @@ -12652,6 +15426,9 @@ This page contains a list of people who have contributed in one way or another t - [Valentin VALCIU (@axiac)](https://github.com/axiac "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Valerio Baudo (@vabbb)](https://github.com/vabbb "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Valiceemo (@Valiceemo)](https://github.com/Valiceemo "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -12659,7 +15436,7 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io ") - [Varga Tamas (@tamasv)](https://github.com/tamasv "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Variour (@Variour)](https://github.com/Variour "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -12669,14 +15446,23 @@ This page contains a list of people who have contributed in one way or another t 1 commit to people ") - [vatir (@vatir)](https://github.com/vatir "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Vaz Allen (@vaz)](https://github.com/vaz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Vc (@Valcob)](https://github.com/Valcob "1 total commits to the Home Assistant orga: +1 commit to hassio-addons +") - [VDRainer (@VDRainer)](https://github.com/VDRainer "8 total commits to the Home Assistant orga: 5 commits to home-assistant.io -3 commits to home-assistant +3 commits to core +") +- [Vedeneb (@Vedeneb)](https://github.com/Vedeneb "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Vegetto (@angelnu)](https://github.com/angelnu "1 total commits to the Home Assistant orga: +1 commit to core ") - [Veldkornet (@Veldkornet)](https://github.com/Veldkornet "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -12684,24 +15470,31 @@ This page contains a list of people who have contributed in one way or another t - [Velik123 (@Velik123)](https://github.com/Velik123 "1 total commits to the Home Assistant orga: 1 commit to pyharmony ") +- [vermium\-sifell (@vermium-sifell)](https://github.com/vermium-sifell "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [vetegrodd (@vetegrodd)](https://github.com/vetegrodd "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [vexofp (@vexofp)](https://github.com/vexofp "4 total commits to the Home Assistant orga: 4 commits to open-zwave ") - [Victor Cerutti (@victorcerutti)](https://github.com/victorcerutti "11 total commits to the Home Assistant orga: 5 commits to home-assistant.io -3 commits to home-assistant-polymer -3 commits to home-assistant +3 commits to frontend +3 commits to core +") +- [Victor Guimarães (@guimaraes13)](https://github.com/guimaraes13 "1 total commits to the Home Assistant orga: +1 commit to core ") - [Victor Jalencas (@victor)](https://github.com/victor "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Victor Vostrikov (@gorynychzmey)](https://github.com/gorynychzmey "10 total commits to the Home Assistant orga: -5 commits to home-assistant -4 commits to home-assistant.io -1 commit to home-assistant-polymer +- [Victor Vostrikov (@gorynychzmey)](https://github.com/gorynychzmey "13 total commits to the Home Assistant orga: +6 commits to home-assistant.io +6 commits to core +1 commit to frontend ") - [Vidar Tyldum (@tyldum)](https://github.com/tyldum "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -12710,38 +15503,49 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Viet Dzung (@dzungpv)](https://github.com/dzungpv "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [Vignesh Venkat (@vickyg3)](https://github.com/vickyg3 "11 total commits to the Home Assistant orga: -7 commits to home-assistant +7 commits to core 4 commits to home-assistant.io ") - [Vikram Gorla (@vikramgorla)](https://github.com/vikramgorla "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") +- [Viktor Lindgren (@Masterzior)](https://github.com/Masterzior "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Viktor45 (@Viktor45)](https://github.com/Viktor45 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Ville Skyttä (@scop)](https://github.com/scop "282 total commits to the Home Assistant orga: -213 commits to home-assistant -30 commits to home-assistant.io +- [Ville Skyttä (@scop)](https://github.com/scop "411 total commits to the Home Assistant orga: +310 commits to core +46 commits to home-assistant.io +14 commits to hassio-addons 13 commits to netdisco -7 commits to hassio-addons -5 commits to home-assistant-polymer -4 commits to developers.home-assistant -3 commits to hassio-cli -2 commits to hassio +8 commits to frontend +8 commits to developers.home-assistant +4 commits to cli 2 commits to hassio-build +2 commits to supervisor 1 commit to architecture 1 commit to people 1 commit to ci-azure +1 commit to brands ") -- [Villhellm (@Villhellm)](https://github.com/Villhellm "12 total commits to the Home Assistant orga: -9 commits to home-assistant.io -2 commits to home-assistant +- [villevirtanen (@villevirtanen)](https://github.com/villevirtanen "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Villhellm (@Villhellm)](https://github.com/Villhellm "21 total commits to the Home Assistant orga: +17 commits to home-assistant.io +3 commits to core 1 commit to developers.home-assistant ") +- [Vilppu Vuorinen (@vilppuvuorinen)](https://github.com/vilppuvuorinen "15 total commits to the Home Assistant orga: +9 commits to core +6 commits to home-assistant.io +") - [Vincent Etter (@Wookai)](https://github.com/Wookai "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -12749,7 +15553,11 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Vincent KHERBACHE (@vincent-k)](https://github.com/vincent-k "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Vincent Le Bourlot (@vlebourl)](https://github.com/vlebourl "6 total commits to the Home Assistant orga: +5 commits to core +1 commit to home-assistant.io ") - [Vincent Masselis (@VincentMasselis)](https://github.com/VincentMasselis "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -12764,7 +15572,7 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Vincent Van Den Berghe (@vandenberghev)](https://github.com/vandenberghev "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Vincenzo Chianese (@XVincentX)](https://github.com/XVincentX "1 total commits to the Home Assistant orga: @@ -12774,35 +15582,49 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Viorel Stirbu (@viorels)](https://github.com/viorels "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [viswa\-swami (@viswa-swami)](https://github.com/viswa-swami "9 total commits to the Home Assistant orga: -9 commits to home-assistant +9 commits to core ") - [Vitaly Bogdanov (@vsbogd)](https://github.com/vsbogd "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Vittorio Monaco (@vittoriom)](https://github.com/vittoriom "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [VivantSenior (@VivantSenior)](https://github.com/VivantSenior "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [Vlad (@vladm)](https://github.com/vladm "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [Vlad Korniev (@vkorn)](https://github.com/vkorn "5 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 2 commits to home-assistant.io 1 commit to hassio-build ") - [Vladimir Eremin (@yottatsa)](https://github.com/yottatsa "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Vladimír (@machv)](https://github.com/machv "1 total commits to the Home Assistant orga: +1 commit to companion.home-assistant +") +- [Vladimír Záhradník (@vzahradnik)](https://github.com/vzahradnik "16 total commits to the Home Assistant orga: +8 commits to core +7 commits to home-assistant.io +1 commit to frontend ") - [vladonemo (@vladonemo)](https://github.com/vladonemo "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [vllungu (@vllungu)](https://github.com/vllungu "3 total commits to the Home Assistant orga: 3 commits to libcoap ") +- [vlumikero (@vlumikero)](https://github.com/vlumikero "1 total commits to the Home Assistant orga: +1 commit to brands +") - [vMeph (@vMeph)](https://github.com/vMeph "7 total commits to the Home Assistant orga: 7 commits to home-assistant.io ") @@ -12812,35 +15634,44 @@ This page contains a list of people who have contributed in one way or another t - [Volker Thiel (@riker09)](https://github.com/riker09 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [vrs01 (@vrs01)](https://github.com/vrs01 "21 total commits to the Home Assistant orga: +- [vrs01 (@vrs01)](https://github.com/vrs01 "15 total commits to the Home Assistant orga: 14 commits to home-assistant.io -6 commits to appdaemon -1 commit to home-assistant +1 commit to core ") -- [Wade Dorrell (@waded)](https://github.com/waded "2 total commits to the Home Assistant orga: +- [vwir (@vwir)](https://github.com/vwir "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Wade Dorrell (@waded)](https://github.com/waded "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io +1 commit to hassio-addons ") - [Wagner Sartori Junior (@trunet)](https://github.com/trunet "2 total commits to the Home Assistant orga: 1 commit to netdisco -1 commit to home-assistant +1 commit to core ") - [Walker Boyle (@walkerdb)](https://github.com/walkerdb "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Walter Huf (@hufman)](https://github.com/hufman "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [warcanoid (@warcanoid)](https://github.com/warcanoid "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [Warren Konkel (@wkonkel)](https://github.com/wkonkel "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [wasper17 (@wasper17)](https://github.com/wasper17 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [WAStaggs (@StagasaurusRex)](https://github.com/StagasaurusRex "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Watchfox (@Watchfox)](https://github.com/Watchfox "1 total commits to the Home Assistant orga: +1 commit to core +") - [waxhell (@waxhell)](https://github.com/waxhell "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -12850,19 +15681,22 @@ This page contains a list of people who have contributed in one way or another t - [wbradmoore (@wbradmoore)](https://github.com/wbradmoore "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [weado (@weado)](https://github.com/weado "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [WebSpider (@WebSpider)](https://github.com/WebSpider "3 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core 1 commit to home-assistant.io ") - [Wesley Young (@wesdyoung)](https://github.com/wesdyoung "1 total commits to the Home Assistant orga: 1 commit to warrant ") - [whhsw (@whhsw)](https://github.com/whhsw "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Whytey (@Whytey)](https://github.com/Whytey "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [wietseschmitt (@wietseschmitt)](https://github.com/wietseschmitt "1 total commits to the Home Assistant orga: @@ -12881,7 +15715,7 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io ") - [Will Boyce (@wrboyce)](https://github.com/wrboyce "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [Will Hargrave (@will-h)](https://github.com/will-h "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -12893,7 +15727,7 @@ This page contains a list of people who have contributed in one way or another t ") - [Will Hughes (@insertjokehere)](https://github.com/insertjokehere "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Will Marler (@wmarler)](https://github.com/wmarler "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -12902,44 +15736,66 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Will W (@tiktok7)](https://github.com/tiktok7 "6 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 2 commits to home-assistant.io ") - [Willem Burgers (@wburgers)](https://github.com/wburgers "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core +") +- [Willem\-Jan (@liudger)](https://github.com/liudger "6 total commits to the Home Assistant orga: +3 commits to home-assistant.io +3 commits to core ") - [Willems Davy (@joyrider3774)](https://github.com/joyrider3774 "7 total commits to the Home Assistant orga: 4 commits to home-assistant.io -3 commits to home-assistant +3 commits to core ") - [willgreenberg (@willgreenberg)](https://github.com/willgreenberg "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") +- [William (@willyb321)](https://github.com/willyb321 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [William Comartin (@wcomartin)](https://github.com/wcomartin "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [William Johansson (@radhus)](https://github.com/radhus "2 total commits to the Home Assistant orga: -1 commit to hassio +1 commit to supervisor 1 commit to home-assistant.io ") - [William Scanlon (@w1ll1am23)](https://github.com/w1ll1am23 "152 total commits to the Home Assistant orga: -107 commits to home-assistant +107 commits to core 40 commits to home-assistant.io 2 commits to netdisco 2 commits to developers.home-assistant -1 commit to home-assistant-polymer +1 commit to frontend ") -- [William Sutton (@zombielinux)](https://github.com/zombielinux "4 total commits to the Home Assistant orga: -3 commits to home-assistant +- [William Sutton (@zombielinux)](https://github.com/zombielinux "5 total commits to the Home Assistant orga: +4 commits to core 1 commit to home-assistant.io ") -- [williamlehman (@williamlehman)](https://github.com/williamlehman "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +- [williambherman (@williambherman)](https://github.com/williambherman "1 total commits to the Home Assistant orga: +1 commit to open-zwave ") -- [Wim Haanstra (@depl0y)](https://github.com/depl0y "8 total commits to the Home Assistant orga: -4 commits to home-assistant -4 commits to home-assistant.io +- [williamlehman (@williamlehman)](https://github.com/williamlehman "1 total commits to the Home Assistant orga: +1 commit to frontend +") +- [willidh74 (@willidh74)](https://github.com/willidh74 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [willscottuk (@willscottuk)](https://github.com/willscottuk "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Wim Haanstra (@depl0y)](https://github.com/depl0y "14 total commits to the Home Assistant orga: +9 commits to core +5 commits to home-assistant.io +") +- [wind\-rider (@hansmbakker)](https://github.com/hansmbakker "5 total commits to the Home Assistant orga: +5 commits to core +") +- [winterscar (@winterscar)](https://github.com/winterscar "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant ") - [wmn79 (@wmn79)](https://github.com/wmn79 "6 total commits to the Home Assistant orga: 5 commits to home-assistant.io @@ -12955,27 +15811,27 @@ This page contains a list of people who have contributed in one way or another t ") - [Wojciech Bederski (@wuub)](https://github.com/wuub "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io -1 commit to home-assistant +1 commit to core ") - [Wojciech Mamak (@atomic7777)](https://github.com/atomic7777 "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Wojtek (@wiuwiu)](https://github.com/wiuwiu "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [wokar (@wokar)](https://github.com/wokar "12 total commits to the Home Assistant orga: -8 commits to home-assistant +8 commits to core 4 commits to home-assistant.io ") - [Wolf\-Bastian Pöttner (@BastianPoe)](https://github.com/BastianPoe "7 total commits to the Home Assistant orga: -4 commits to home-assistant +4 commits to core 3 commits to home-assistant.io ") - [Wolfgang Beer (@wolfgangB33r)](https://github.com/wolfgangB33r "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Wolfgang Malgadey (@wmalgadey)](https://github.com/wmalgadey "8 total commits to the Home Assistant orga: -7 commits to home-assistant +7 commits to core 1 commit to home-assistant.io ") - [Wopalecki (@Wopalecki)](https://github.com/Wopalecki "1 total commits to the Home Assistant orga: @@ -12999,9 +15855,15 @@ This page contains a list of people who have contributed in one way or another t - [wyznerd (@wyznerd)](https://github.com/wyznerd "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [xabivaz (@spanishkangaroo)](https://github.com/spanishkangaroo "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [xander2 (@xander2)](https://github.com/xander2 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Xavi Moreno (@xaviml)](https://github.com/xaviml "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Xavier Damman (@xdamman)](https://github.com/xdamman "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") @@ -13014,15 +15876,25 @@ This page contains a list of people who have contributed in one way or another t - [xelprep (@xelprep)](https://github.com/xelprep "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") +- [Xiaonan Shen (@shenxn)](https://github.com/shenxn "46 total commits to the Home Assistant orga: +33 commits to core +8 commits to home-assistant.io +3 commits to developers.home-assistant +1 commit to frontend +1 commit to brands +") - [xifle (@xifle)](https://github.com/xifle "9 total commits to the Home Assistant orga: -7 commits to home-assistant +7 commits to core 2 commits to home-assistant.io ") - [Xinzhao Xu (@iawia002)](https://github.com/iawia002 "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [xorbital (@xorbital)](https://github.com/xorbital "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Xorso (@Xorso)](https://github.com/Xorso "22 total commits to the Home Assistant orga: -21 commits to home-assistant +21 commits to core 1 commit to hassio-addons ") - [xPsIXx (@xPsIXx)](https://github.com/xPsIXx "1 total commits to the Home Assistant orga: @@ -13032,31 +15904,31 @@ This page contains a list of people who have contributed in one way or another t 78 commits to open-zwave ") - [xTCx (@asafbiton96)](https://github.com/asafbiton96 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Xus Badia (@XusBadia)](https://github.com/XusBadia "3 total commits to the Home Assistant orga: -1 commit to home-assistant-assets -1 commit to home-assistant-iOS -1 commit to home-assistant-polymer +- [Xus Badia (@XusBadia)](https://github.com/XusBadia "5 total commits to the Home Assistant orga: +3 commits to iOS +1 commit to assets +1 commit to frontend ") - [yankees9920 (@wagnerbenh)](https://github.com/wagnerbenh "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Yann Jajkiewicz (@yjajkiew)](https://github.com/yjajkiew "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Yannic\-HAW (@Yannic-HAW)](https://github.com/Yannic-HAW "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Yannick KERMAREC (@YanK-fr)](https://github.com/YanK-fr "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Yannick POLLART (@ypollart)](https://github.com/ypollart "8 total commits to the Home Assistant orga: -4 commits to home-assistant 4 commits to home-assistant.io +4 commits to core ") - [Yannick Simard (@TheRaven)](https://github.com/TheRaven "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -13064,11 +15936,15 @@ This page contains a list of people who have contributed in one way or another t - [Yannik25 (@Yannik25)](https://github.com/Yannik25 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Yarmo Mackenbach (@YarmoM)](https://github.com/YarmoM "11 total commits to the Home Assistant orga: +7 commits to core +4 commits to home-assistant.io +") - [Yaron de Leeuw (@jarondl)](https://github.com/jarondl "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Yaroslav (@Yarikx)](https://github.com/Yarikx "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [yasin (@yasinS)](https://github.com/yasinS "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io @@ -13083,67 +15959,104 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io ") - [Yegor Vialov (@estevez-dev)](https://github.com/estevez-dev "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") -- [Yevgeniy (@sgttrs)](https://github.com/sgttrs "5 total commits to the Home Assistant orga: -3 commits to home-assistant -1 commit to home-assistant-polymer +- [Yevgeniy (@Yevgenium)](https://github.com/Yevgenium "5 total commits to the Home Assistant orga: +3 commits to core +1 commit to frontend 1 commit to home-assistant.io ") - [Yien Xu (@yienxu)](https://github.com/yienxu "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [yingzong (@yingzong)](https://github.com/yingzong "1 total commits to the Home Assistant orga: 1 commit to warrant ") -- [Yllelder Bamir (@Yllelder)](https://github.com/Yllelder "1 total commits to the Home Assistant orga: +- [Yllelder Bamir (@Yllelder)](https://github.com/Yllelder "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [yniezink (@yniezink)](https://github.com/yniezink "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Yof (@yoflippo)](https://github.com/yoflippo "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") -- [Yosi Levy (@yosilevy)](https://github.com/yosilevy "56 total commits to the Home Assistant orga: -48 commits to home-assistant-polymer +- [Yosi Levy (@yosilevy)](https://github.com/yosilevy "100 total commits to the Home Assistant orga: +92 commits to frontend 4 commits to home-assistant.io -3 commits to home-assistant +3 commits to core 1 commit to people ") +- [youdroid (@youdroid)](https://github.com/youdroid "3 total commits to the Home Assistant orga: +3 commits to brands +") +- [Younes Manton (@ymanton)](https://github.com/ymanton "1 total commits to the Home Assistant orga: +1 commit to open-zwave +") - [Yu (@GuryYu)](https://github.com/GuryYu "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core +") +- [Yuchen Ying (@yegle)](https://github.com/yegle "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Yue Kang (@kangyue92)](https://github.com/kangyue92 "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [YujiTFD (@YujiTFD)](https://github.com/YujiTFD "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Yuki Ueda (@Ikuyadeu)](https://github.com/Ikuyadeu "1 total commits to the Home Assistant orga: +1 commit to core ") - [yulongying (@yulongying)](https://github.com/yulongying "1 total commits to the Home Assistant orga: 1 commit to home-assistant-js-websocket ") - [Yum (@goofz)](https://github.com/goofz "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core +") +- [Yuval (@rt400)](https://github.com/rt400 "1 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations ") - [Z (@zanerv)](https://github.com/zanerv "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [z0p (@z0mbieprocess)](https://github.com/z0mbieprocess "3 total commits to the Home Assistant orga: +- [z00nx 0 (@z00nx)](https://github.com/z00nx "1 total commits to the Home Assistant orga: +1 commit to core +") +- [z0p (@z0mbieprocess)](https://github.com/z0mbieprocess "6 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io 1 commit to open-zwave -1 commit to home-assistant -1 commit to home-assistant.io +1 commit to brands ") - [Zac (@zacs)](https://github.com/zacs "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Zac West (@zacwest)](https://github.com/zacwest "160 total commits to the Home Assistant orga: +153 commits to iOS +3 commits to companion.home-assistant +2 commits to home-assistant.io +1 commit to developers.home-assistant +1 commit to core +") - [Zac\-HD (@Zac-HD)](https://github.com/Zac-HD "5 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 2 commits to home-assistant.io ") - [Zach (@snowzach)](https://github.com/snowzach "8 total commits to the Home Assistant orga: -6 commits to home-assistant +6 commits to core 2 commits to home-assistant.io ") - [Zachary Priddy (@zpriddy)](https://github.com/zpriddy "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [Zack Arnett (@zsarnett)](https://github.com/zsarnett "124 total commits to the Home Assistant orga: -93 commits to home-assistant-polymer -29 commits to home-assistant.io +- [Zack Arnett (@zsarnett)](https://github.com/zsarnett "234 total commits to the Home Assistant orga: +188 commits to frontend +43 commits to home-assistant.io 1 commit to people 1 commit to developers.home-assistant +1 commit to core ") - [Zack Lalanne (@zlalanne)](https://github.com/zlalanne "1 total commits to the Home Assistant orga: 1 commit to open-zwave @@ -13155,62 +16068,76 @@ 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 ") +- [zacpotts (@zacpotts)](https://github.com/zacpotts "2 total commits to the Home Assistant orga: +2 commits to core +") - [Zadkiel (@aslafy-z)](https://github.com/aslafy-z "1 total commits to the Home Assistant orga: -1 commit to home-assistant-polymer +1 commit to frontend ") - [zajnic (@zajnic)](https://github.com/zajnic "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Zak (@zemerick1)](https://github.com/zemerick1 "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") -- [Zapfmeister (@Zapfmeister)](https://github.com/Zapfmeister "4 total commits to the Home Assistant orga: -4 commits to hassio-addons +- [Zane Riley (@zaneriley)](https://github.com/zaneriley "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Zapfmeister (@Zapfmeister)](https://github.com/Zapfmeister "6 total commits to the Home Assistant orga: +6 commits to hassio-addons ") - [Zeb Palmer (@zebpalmer)](https://github.com/zebpalmer "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Zellux Wang (@zellux)](https://github.com/zellux "2 total commits to the Home Assistant orga: -2 commits to home-assistant +2 commits to core ") - [zeltom (@zeltom)](https://github.com/zeltom "2 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core 1 commit to home-assistant.io ") - [Zen Tormey (@xehn)](https://github.com/xehn "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") +- [Zep Fietje (@zepfietje)](https://github.com/zepfietje "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [ZERBIB Mickael (@Hellorheaven)](https://github.com/Hellorheaven "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [zewelor (@zewelor)](https://github.com/zewelor "48 total commits to the Home Assistant orga: -40 commits to home-assistant -8 commits to home-assistant.io +- [zewelor (@zewelor)](https://github.com/zewelor "58 total commits to the Home Assistant orga: +47 commits to core +10 commits to home-assistant.io +1 commit to supervisor ") - [zgmnkv (@zgmnkv)](https://github.com/zgmnkv "4 total commits to the Home Assistant orga: 4 commits to open-zwave ") -- [Zhao (@zhaokoh)](https://github.com/zhaokoh "1 total commits to the Home Assistant orga: -1 commit to home-assistant +- [Zhao (@zhaokoh)](https://github.com/zhaokoh "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io ") - [Zhao Lü (@zlu)](https://github.com/zlu "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") - [Zhong Jianxin (@azuwis)](https://github.com/azuwis "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [zhujisheng (@zhujisheng)](https://github.com/zhujisheng "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io -2 commits to home-assistant +2 commits to core ") -- [zhumuht (@zhumuht)](https://github.com/zhumuht "6 total commits to the Home Assistant orga: -4 commits to home-assistant +- [zhumuht (@zhumuht)](https://github.com/zhumuht "8 total commits to the Home Assistant orga: +6 commits to core 2 commits to home-assistant.io ") +- [zinxes (@zinxes)](https://github.com/zinxes "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Zio Tibia (@ziotibia81)](https://github.com/ziotibia81 "14 total commits to the Home Assistant orga: 7 commits to home-assistant.io -7 commits to home-assistant +7 commits to core ") - [zipperten (@zipperten)](https://github.com/zipperten "2 total commits to the Home Assistant orga: 2 commits to open-zwave @@ -13219,11 +16146,16 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io ") - [ZiroNL (@ZiroNL)](https://github.com/ZiroNL "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") +- [Ziv (@ziv1234)](https://github.com/ziv1234 "41 total commits to the Home Assistant orga: +34 commits to core +6 commits to home-assistant.io +1 commit to brands +") - [zmrowicki@hotmail\.com (@zmrow)](https://github.com/zmrow "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [zoomix (@zoomix)](https://github.com/zoomix "2 total commits to the Home Assistant orga: 2 commits to developers.home-assistant @@ -13235,19 +16167,29 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Zoé Bőle (@zoe1337)](https://github.com/zoe1337 "4 total commits to the Home Assistant orga: -3 commits to home-assistant +3 commits to core 1 commit to home-assistant.io ") -- [zuccs (@zuccs)](https://github.com/zuccs "1 total commits to the Home Assistant orga: +- [zpetr (@zpetr)](https://github.com/zpetr "1 total commits to the Home Assistant orga: +1 commit to core +") +- [zuccs (@zuccs)](https://github.com/zuccs "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [zvldz (@zvldz)](https://github.com/zvldz "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Åke Strandberg (@astrandb)](https://github.com/astrandb "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Åskar Andersson (@olskar)](https://github.com/olskar "12 total commits to the Home Assistant orga: 8 commits to home-assistant.io -3 commits to home-assistant +3 commits to core 1 commit to hassbian-scripts ") - [Øystein Hansen (@oeysteinhansen)](https://github.com/oeysteinhansen "1 total commits to the Home Assistant orga: -1 commit to home-assistant +1 commit to core ") - [Łukasz Mróz (@sunshinejr)](https://github.com/sunshinejr "3 total commits to the Home Assistant orga: 3 commits to 1password-teams-open-source @@ -13255,8 +16197,8 @@ This page contains a list of people who have contributed in one way or another t - [Šimon Let (@curusarn)](https://github.com/curusarn "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") -- [Дубовик Максим (@lufton)](https://github.com/lufton "4 total commits to the Home Assistant orga: -2 commits to home-assistant +- [Дубовик Максим (@lufton)](https://github.com/lufton "5 total commits to the Home Assistant orga: +3 commits to core 2 commits to home-assistant.io ") - [Елизаров Роман Русланович (@fantomnotabene)](https://github.com/fantomnotabene "1 total commits to the Home Assistant orga: @@ -13265,4 +16207,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 Sunday, November 17 2019, 13:17:30 UTC. +This page was last updated Sunday, August 09 2020, 14:52:02 UTC. From 67115d65517ee4c71243a71705addf23d8be5445 Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Tue, 11 Aug 2020 10:48:52 +0000 Subject: [PATCH 31/34] Add list of possible states to description about timers (#14203) --- source/_integrations/timer.markdown | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/source/_integrations/timer.markdown b/source/_integrations/timer.markdown index 6df5a78919a..2595218159a 100644 --- a/source/_integrations/timer.markdown +++ b/source/_integrations/timer.markdown @@ -50,6 +50,14 @@ timer: Pick an icon that you can find on [materialdesignicons.com](https://materialdesignicons.com/) to use for your timer and prefix the name with `mdi:`. For example `mdi:car`, `mdi:ambulance`, or `mdi:motorbike`. +## Possible States + +| State | Description | +| ----- | ----------- | +| `idle` | Timer is idle because the timer finished, was canceled or was never started | +| `active` | Timer is currently running because it was (re-)started | +| `paused` | Timer is paused because it was paused | + ## Events | Event | Description | From cddd3720db67428ea0660ac34e46a753fa31c103 Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Tue, 11 Aug 2020 10:49:45 +0000 Subject: [PATCH 32/34] Fixed ambigouty about above/below for automation trigger numeric_state (#14204) Above and below are strict comparison operators (> or <, not >= or <=). The version before was ambiguous about that by explaining that values like 17 or above will trigger the automation. --- source/_docs/automation/trigger.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_docs/automation/trigger.markdown b/source/_docs/automation/trigger.markdown index 1b01d155153..c690ca7a1fb 100644 --- a/source/_docs/automation/trigger.markdown +++ b/source/_docs/automation/trigger.markdown @@ -82,7 +82,7 @@ automation:

Listing above and below together means the numeric_state has to be between the two values. -In the example above, the trigger would fire if a numeric_state goes to 17.1-24.9 (from 17 or below, or 25 or above). +In the example above, the trigger would fire if a numeric_state goes to 17.1-24.9 (from strict below 17, or strict above 25).
The `for:` can also be specified as `HH:MM:SS` like this: From 8151efd0bc76a0fe53281a48d0e89f5a367030e6 Mon Sep 17 00:00:00 2001 From: Stefan <37924749+stefanroelofs@users.noreply.github.com> Date: Tue, 11 Aug 2020 13:05:41 +0200 Subject: [PATCH 33/34] Zone Trigger: changed entity_id from device_tracker to person (#14228) Entity_id of a zone trigger can be both a person, or a device_tracker. I'd say that a person entity is the newer, recomended type. --- source/_docs/automation/trigger.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_docs/automation/trigger.markdown b/source/_docs/automation/trigger.markdown index c690ca7a1fb..f8c5bbf1cd9 100644 --- a/source/_docs/automation/trigger.markdown +++ b/source/_docs/automation/trigger.markdown @@ -367,13 +367,13 @@ Note that a given webhook can only be used in one automation at a time. That is, ### Zone trigger -Zone trigger fires when an entity is entering or leaving the zone. For zone automation to work, you need to have setup a device tracker platform that supports reporting GPS coordinates. This includes [GPS Logger](/integrations/gpslogger/), the [OwnTracks platform](/integrations/owntracks/) and the [iCloud platform](/integrations/icloud/). +Zone trigger fires when an entity is entering or leaving the zone. The entity can be either a person, or a device_tracker. For zone automation to work, you need to have setup a device tracker platform that supports reporting GPS coordinates. This includes [GPS Logger](/integrations/gpslogger/), the [OwnTracks platform](/integrations/owntracks/) and the [iCloud platform](/integrations/icloud/). ```yaml automation: trigger: platform: zone - entity_id: device_tracker.paulus + entity_id: person.paulus zone: zone.home # Event is either enter or leave event: enter # or "leave" From cd0b6dae95b726627ef9278ba04a2acbf4ff342b Mon Sep 17 00:00:00 2001 From: jh Date: Tue, 11 Aug 2020 13:20:24 +0200 Subject: [PATCH 34/34] Update getting started Wi-Fi section (#14187) Co-authored-by: Franck Nijhof --- source/getting-started/index.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/getting-started/index.markdown b/source/getting-started/index.markdown index 9957699f59a..cfb725a3c2b 100644 --- a/source/getting-started/index.markdown +++ b/source/getting-started/index.markdown @@ -52,7 +52,7 @@ We will need a few things to get started with installing Home Assistant. The Ras 1. Put the SD card in your card reader. 2. Open balenaEtcher, select the Home Assistant image and flash it to the SD card. 3. Unmount the SD card and remove it from your card reader. -4. Follow this step if you want to configure Wi-Fi or a static IP address (this step requires a USB stick). Otherwise, move to step 5. +4. The most reliable networking setup for your Raspberry Pi is to connect it using an Ethernet cable, however, if you want to configure Wi-Fi or a static IP address (this step requires a USB stick) you can try this: - Format a USB stick to FAT32 with the volume name `CONFIG`. - Create a folder named `network` in the root of the newly-formatted USB stick. - Within that folder, create a file named `my-network` without a file extension.