diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c38a37e6a71..02316533776 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: - name: Check out files from GitHub uses: actions/checkout@v3.0.2 - name: Setting up Node.js - uses: actions/setup-node@v3.1.1 + uses: actions/setup-node@v3.2.0 with: node-version: 16.x cache: "npm" @@ -27,7 +27,7 @@ jobs: - name: Check out files from GitHub uses: actions/checkout@v3.0.2 - name: Setting up Node.js - uses: actions/setup-node@v3.1.1 + uses: actions/setup-node@v3.2.0 with: node-version: 16.x cache: "npm" diff --git a/_config.yml b/_config.yml index ed322d03ba9..473539e33b3 100644 --- a/_config.yml +++ b/_config.yml @@ -107,8 +107,8 @@ social: # Home Assistant release details current_major_version: 2022 current_minor_version: 5 -current_patch_version: 4 -date_released: 2022-05-12 +current_patch_version: 5 +date_released: 2022-05-18 # Either # or the anchor link to latest release notes in the blog post. # Must be prefixed with a # and have double quotes around it. diff --git a/plugins/my.rb b/plugins/my.rb index 5588bc275e9..20fba206a0f 100644 --- a/plugins/my.rb +++ b/plugins/my.rb @@ -80,7 +80,6 @@ module Jekyll DEFAULT_ICONS = { "config_flow_start" => "icon-plus-sign", "config" => "icon-cog", - "integrations" => "icon-puzzle-piece", } # Default title used for in-line text @@ -103,6 +102,7 @@ module Jekyll "info" => "Information", "supervisor_info" => "Supervisor Information", "supervisor_backups" => "Backups", + "integrations" => "Devices & Services", } def parse_options(input, context) diff --git a/source/_docs/authentication/providers.markdown b/source/_docs/authentication/providers.markdown index 4c53be5f69b..9c1c91728a3 100644 --- a/source/_docs/authentication/providers.markdown +++ b/source/_docs/authentication/providers.markdown @@ -123,7 +123,9 @@ Specially, you can use `group: GROUP_ID` to assign all users in certain `user gr #### Skip Login Page Examples -This is a feature to allow you bring back some of the experience before the user system was implemented. You can directly jump to main page if you are accessing from trusted networks, the `allow_bypass_login` is on, and you have ONLY ONE available user to choose in the login form. +This is a feature to allow you to bring back some of the experience before the user system was implemented. You can directly jump to the main page if you are accessing from trusted networks, the `allow_bypass_login` is on, and you have ONLY ONE available user to choose from in the login form. + +If you allow bypass login then your cookie will not be stored and every time you refresh the page in Home Assistant a new login will be created. This is because bypassing the login does not give you the option to save the login. ```yaml # assuming you have only one non-system user diff --git a/source/_docs/automation/templating.markdown b/source/_docs/automation/templating.markdown index cc17001e7af..ad5b5ac5309 100644 --- a/source/_docs/automation/templating.markdown +++ b/source/_docs/automation/templating.markdown @@ -29,7 +29,7 @@ The following describes trigger data associated with all platforms. | Template variable | Data | | ------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------- | | `trigger.platform` | Hardcoded: `calendar` | -| `trigger.event_type` | The trigger event type, either `start` or `end` | +| `trigger.event` | The trigger event type, either `start` or `end` | | `trigger.calendar_event` | The calendar event object matched. | | `trigger.calendar_event.summary` | The title or summary of the calendar event. | | `trigger.calendar_event.start` | String representation of the start date or date time of the calendar event e.g. `2022-04-10`, or `2022-04-10 11:30:00-07:00` | diff --git a/source/_docs/scripts.markdown b/source/_docs/scripts.markdown index 72999165ac1..bd7aa752e95 100644 --- a/source/_docs/scripts.markdown +++ b/source/_docs/scripts.markdown @@ -154,7 +154,7 @@ The `condition` action only stops executing the current sequence block. When it below: 20 ``` -## Delay +## Wait for time to pass (delay) Delays are useful for temporarily suspending your script and start it at a later moment. We support different syntaxes for a delay as shown below. @@ -204,7 +204,7 @@ All forms accept templates. These actions allow a script to wait for entities in the system to be in a certain state as specified by a template, or some event to happen as expressed by one or more triggers. -### Wait Template +### Wait for a template This action evaluates the template, and if true, the script will continue. If not, then it will wait until it is true. @@ -220,7 +220,7 @@ The template is re-evaluated whenever an entity ID that it references changes st {% endraw %} -### Wait for Trigger +### Wait for a trigger This action can use the same triggers that are available in an automation's `trigger` section. See [Automation Trigger](/docs/automation/trigger). The script will continue whenever any of the triggers fires. All previously defined [trigger variables](/docs/automation/trigger#trigger-variables), [variables](#variables) and [script variables] are passed to the trigger. {% raw %} @@ -461,7 +461,7 @@ repeat: - language: English message: Hello World - language: Dutch - hello: Hallo Wereld + message: Hallo Wereld sequence: - service: notify.phone data: diff --git a/source/_includes/asides/component_navigation.html b/source/_includes/asides/component_navigation.html index fef93e4373a..dbadf4b007f 100644 --- a/source/_includes/asides/component_navigation.html +++ b/source/_includes/asides/component_navigation.html @@ -14,7 +14,7 @@
- The {{ page.name | default: page.title }} integration was introduced in Home Assistant {{ page.ha_release | default: "unknown" }}, + The {{ page.name | default: page.title }} {{ page.ha_integration_type | default: "integration" }} was introduced in Home Assistant {{ page.ha_release | default: "unknown" }}, and it's used by {% if percentage < 1 %} diff --git a/source/_includes/asides/docs_navigation.html b/source/_includes/asides/docs_navigation.html index 3a7bfa2dd17..d37d9db9f0f 100644 --- a/source/_includes/asides/docs_navigation.html +++ b/source/_includes/asides/docs_navigation.html @@ -56,11 +56,11 @@ Advanced Configuration
---- +{% include integrations/config_flow.md %} + + +## Available entities The PECO Outage Counter integration allows you to get the current count of power outages for any county, and the total for the operating region too. @@ -35,5 +38,3 @@ This integration will create 5 entities. - A sensor that shows the total amount of customers served in the county. - A sensor that shows the percentage of customers with no power. - A sensor that shows the alert that appears when you open the online outage map. - -{% include integrations/config_flow.md %} diff --git a/source/_integrations/powerwall.markdown b/source/_integrations/powerwall.markdown index 64b738670f5..abd64e67d50 100644 --- a/source/_integrations/powerwall.markdown +++ b/source/_integrations/powerwall.markdown @@ -32,16 +32,17 @@ There is currently support for the following device types within Home Assistant: The following binary sensors are added for each Powerwall: -- Grid Service Active -- Grid Status -- Powerwall Charging -- Powerwall Connected to Tesla -- Powerwall Status +- Grid Services - On/ Off +- Grid Status - On/ Off +- Powerwall Charging - Charging/ Not Charging +- Powerwall Connected to Tesla - Connected / Not Connected +- Powerwall Status - On/ Off ### Sensor The following sensors are added for each Powerwall: +- Powerwall Backup Reserve - Reserve energy for grid outages in % - Powerwall Battery Now - Usage in kW - Powerwall Charge - Percent charge remaining in % - Powerwall Generator Now - Usage in kW (if applicable) @@ -49,6 +50,7 @@ The following sensors are added for each Powerwall: - Powerwall Solar Now - Solar usage in kW (if applicable) - Powerwall Site Now - Site usage in kW - Powerwall Backup Reserve - Percentage of battery which will be reserved for a grid outage +- Frequency/ Average Current/ Average Voltage Now The following sensors show the direction of energy: @@ -62,3 +64,8 @@ The following sensors show the direction of energy: - Powerwall Load Import - Load energy imported in kWh - Powerwall Generator Export - Generator energy exported in kWh - Powerwall Generator Import - Generator energy imported in kWh + +### Device Info + +- Model number: PowerWall 2 (GW2) by Tesla +- Firmware Revision diff --git a/source/_integrations/script.markdown b/source/_integrations/script.markdown index f486eb98e5b..446d3d9cfac 100644 --- a/source/_integrations/script.markdown +++ b/source/_integrations/script.markdown @@ -13,6 +13,10 @@ ha_integration_type: integration The script integration allows users to specify a sequence of actions to be executed by Home Assistant. These are run when you turn the script on. The script integration will create an entity for each script and allow them to be controlled via services. +Scripts can be created via YAML configuration (described below) or via {% my scripts title="the UI" %}. + +{% my scripts badge %} + ## Configuration The sequence of actions is specified using the [Home Assistant Script Syntax](/getting-started/scripts/). diff --git a/source/_integrations/sensibo.markdown b/source/_integrations/sensibo.markdown index 7412ad23e02..192598cb641 100644 --- a/source/_integrations/sensibo.markdown +++ b/source/_integrations/sensibo.markdown @@ -92,13 +92,13 @@ switch: target: entity_id: climate.ac data: - hvac_mode: cool + hvac_mode: "cool" turn_off: service: climate.set_hvac_mode target: entity_id: climate.ac data: - hvac_mode: off + hvac_mode: "off" ``` {% endraw %} diff --git a/source/_integrations/sensor.markdown b/source/_integrations/sensor.markdown index 6f9b315f67a..713343e6ae9 100644 --- a/source/_integrations/sensor.markdown +++ b/source/_integrations/sensor.markdown @@ -43,7 +43,7 @@ The type of data a sensor returns impacts how it is displayed in the frontend. T - **pm25**: Concentration of particulate matter less than 2.5 micrometers in µg/m³ - **power_factor**: Power factor in % - **power**: Power in W or kW -- **pressure**: Pressure in hPa or mbar +- **pressure**: Pressure in Pa, kPa, hPa, bar, cbar, mbar, mmHg, inHg or psi - **reactive_power**: Reactive power in var - **signal_strength**: Signal strength in dB or dBm - **sulphur_dioxide**: Concentration of sulphur dioxide in µg/m³ diff --git a/source/_integrations/seventeentrack.markdown b/source/_integrations/seventeentrack.markdown index 5f1ca986cda..cae454ce22e 100644 --- a/source/_integrations/seventeentrack.markdown +++ b/source/_integrations/seventeentrack.markdown @@ -52,6 +52,33 @@ show_delivered: default: false {% endconfiguration %} +## Package statuses + +[17track's API](https://api.17track.net/en/doc) provides the following tracking statuses. The integration creates a sensor for each status, which contains the packages in that status. The sensor's displayed value is the number of packages in that status. + +- Not found +- In transit +- Expired +- Pick up +- Undelivered +- Delivered +- Alert + +## Package-level attributes + +Each package entry (for example, within a status sensor) contains the following attributes. + +- package.friendly_name +- package.status +- package.destination_country +- package.info_text +- package.timestamp +- package.location +- package.origin_country +- package.package_type +- package.tracking_info_language +- package.tracking_number + ## Examples ### Dashboard summary card diff --git a/source/_integrations/template.markdown b/source/_integrations/template.markdown index ce9765a507a..dee101ed24d 100644 --- a/source/_integrations/template.markdown +++ b/source/_integrations/template.markdown @@ -385,13 +385,13 @@ You can use a trigger-based template entity to convert any event or other automa ```yaml template: - trigger: - platform: event - event_type: my_event - binary_sensor: - - name: Event recently fired - auto_off: 5 - state: "true" + - trigger: + platform: event + event_type: my_event + binary_sensor: + - name: Event recently fired + auto_off: 5 + state: "true" ``` ### Sun Angle diff --git a/source/_integrations/unifiprotect.markdown b/source/_integrations/unifiprotect.markdown index 45aa6c8824f..0365b4694f4 100644 --- a/source/_integrations/unifiprotect.markdown +++ b/source/_integrations/unifiprotect.markdown @@ -5,6 +5,7 @@ ha_category: - Binary Sensor - Button - Camera + - Doorbell - Hub - Light - Lock diff --git a/source/_integrations/viaggiatreno.markdown b/source/_integrations/viaggiatreno.markdown index 8d2b3170605..5ef2b67817f 100644 --- a/source/_integrations/viaggiatreno.markdown +++ b/source/_integrations/viaggiatreno.markdown @@ -16,8 +16,8 @@ The `viaggiatreno` sensor will give you information about configured train ids a To activate the sensor you need at least two parameters: the `train_id` and the `station_id`. The first is available just looking at the [ViaggiaTreno](http://viaggiatreno.it/) timetable, the latter can be obtained using the dedicated API endpoint: -`http://www.viaggiatreno.it/viaggiatrenonew/resteasy/viaggiatreno/autocompletaStazione/` -(e.g., `http://www.viaggiatreno.it/viaggiatrenonew/resteasy/viaggiatreno/autocompletaStazione/ROMA` will list all station names (with ids) that starts with *ROMA*). +`http://www.viaggiatreno.it/infomobilita/resteasy/viaggiatreno/autocompletaStazione/` +(e.g., `http://www.viaggiatreno.it/infomobilita/resteasy/viaggiatreno/autocompletaStazione/ROMA` will list all station names (with ids) that starts with *ROMA*).
diff --git a/source/_integrations/yeelight.markdown b/source/_integrations/yeelight.markdown index e039b6cf17d..dbd760f51eb 100644 --- a/source/_integrations/yeelight.markdown +++ b/source/_integrations/yeelight.markdown @@ -180,7 +180,9 @@ This integration is tested to work with the following models. If you have a diff | `color1` | YLDP03YL | LED Bulb (Color) - E26 | | `color2` | YLDP06YL | LED Bulb (Color) - 2nd generation | | `color4` | YLDP13YL | LED Bulb 1S (Color) | +| `color4` | YLDP04YL | LED Bulb 1S (Color) | | `color6` | YLDP13AYL | LED Bulb 1S (Color) | +| `colorb` | YLDP005 | LED Bulb (Color) | | `colorc` | YLDP004-A | GU10 W1 (Color) | | `strip1` | YLDD01YL | Lightstrip (Color) | | `strip1` | YLDD02YL | Lightstrip (Color) | diff --git a/source/_integrations/zha.markdown b/source/_integrations/zha.markdown index 3c5cccacd37..388c787c9c7 100644 --- a/source/_integrations/zha.markdown +++ b/source/_integrations/zha.markdown @@ -461,7 +461,7 @@ Using a Philips Hue Dimmer Switch or Lutron Connected Bulb Remote is probably th 3. Press and hold the (I)/(ON) and (O)/(OFF) buttons on the Philips Hue Dimmer Switch. The bulb should start blinking in 10-20 seconds. The bulb will blink, then turn off, then turn on. You can now release the dimmer buttons. 4. Your bulb is now factor resey and ready for pairing. A green light on the top left of the dimmer remote indicates that your bulb has been successfully reset to factory default settings. -Note: If you are not unable to reset the bulb, remove it from the Hue Bridge and retry the procedure. +Note: If you are unable to reset the bulb, remove it from the Hue Bridge and retry the procedure. #### Lutron Connected Bulb Remote diff --git a/source/_posts/2022-05-04-release-20225.markdown b/source/_posts/2022-05-04-release-20225.markdown index 17c6bf4f64c..7026fd55c53 100644 --- a/source/_posts/2022-05-04-release-20225.markdown +++ b/source/_posts/2022-05-04-release-20225.markdown @@ -65,6 +65,7 @@ Enjoy the release! - [Release 2022.5.2 - May 6](#release-202252---may-6) - [Release 2022.5.3 - May 8](#release-202253---may-8) - [Release 2022.5.4 - May 12](#release-202254---may-12) +- [Release 2022.5.5 - May 18](#release-202255---may-18) - [Need help? Join the community!](#need-help-join-the-community) - [Breaking Changes](#breaking-changes) - [Farewell to the following](#farewell-to-the-following) @@ -886,6 +887,59 @@ The following integrations are now available via the Home Assistant UI: [unifiprotect docs]: /integrations/unifiprotect/ [zwave_js docs]: /integrations/zwave_js/ +## Release 2022.5.5 - May 18 + +- Refresh camera stream source of Synology DSM connected cameras ([@mib1185] - [#70938]) +- Warn user if "model" key is missing from Shelly firmware ([@chemelli74] - [#71612]) ([shelly docs]) +- Remove LIFX bulb discovery from the inflight list if it fails to connect ([@Djelibeybi] - [#71673]) ([lifx docs]) +- Limit parallel requests in fibaro light ([@rappenze] - [#71762]) ([fibaro docs]) +- Fix VeSync air_quality fan attribute ([@jetpacktuxedo] - [#71771]) ([vesync docs]) +- Fix handling package detection for latest UniFi Protect beta ([@AngellusMortis] - [#71821]) ([unifiprotect docs]) +- Add missing Shelly Cover sensors bugfix ([@RadekHvizdos] - [#71831]) ([shelly docs]) +- Revert changing `pysnmp` to `pysnmplib` ([@bieniu] - [#71901]) ([snmp docs]) ([brother docs]) +- Suppress Upnp error in SamsungTV resubscribe ([@epenet] - [#71925]) ([samsungtv docs]) +- Properly handle Shelly gen2 device disconnect ([@chemelli74] - [#71937]) ([shelly docs]) +- Include initial state in history_stats count ([@bdraco] - [#71952]) ([history_stats docs]) +- Fix filesize doing IO in event loop ([@thecode] - [#72038]) ([filesize docs]) +- Ignore UpnpXmlContentError in SamsungTV ([@epenet] - [#72056]) ([samsungtv docs]) +- Cleanup unused import in SamsungTV ([@epenet] - [#72102]) ([samsungtv docs]) + +[#70938]: https://github.com/home-assistant/core/pull/70938 +[#71612]: https://github.com/home-assistant/core/pull/71612 +[#71673]: https://github.com/home-assistant/core/pull/71673 +[#71762]: https://github.com/home-assistant/core/pull/71762 +[#71771]: https://github.com/home-assistant/core/pull/71771 +[#71821]: https://github.com/home-assistant/core/pull/71821 +[#71831]: https://github.com/home-assistant/core/pull/71831 +[#71901]: https://github.com/home-assistant/core/pull/71901 +[#71925]: https://github.com/home-assistant/core/pull/71925 +[#71937]: https://github.com/home-assistant/core/pull/71937 +[#71952]: https://github.com/home-assistant/core/pull/71952 +[#72038]: https://github.com/home-assistant/core/pull/72038 +[#72056]: https://github.com/home-assistant/core/pull/72056 +[#72102]: https://github.com/home-assistant/core/pull/72102 +[@AngellusMortis]: https://github.com/AngellusMortis +[@Djelibeybi]: https://github.com/Djelibeybi +[@RadekHvizdos]: https://github.com/RadekHvizdos +[@bdraco]: https://github.com/bdraco +[@bieniu]: https://github.com/bieniu +[@chemelli74]: https://github.com/chemelli74 +[@epenet]: https://github.com/epenet +[@jetpacktuxedo]: https://github.com/jetpacktuxedo +[@mib1185]: https://github.com/mib1185 +[@rappenze]: https://github.com/rappenze +[@thecode]: https://github.com/thecode +[brother docs]: /integrations/brother/ +[fibaro docs]: /integrations/fibaro/ +[filesize docs]: /integrations/filesize/ +[history_stats docs]: /integrations/history_stats/ +[lifx docs]: /integrations/lifx/ +[samsungtv docs]: /integrations/samsungtv/ +[shelly docs]: /integrations/shelly/ +[snmp docs]: /integrations/snmp/ +[unifiprotect docs]: /integrations/unifiprotect/ +[vesync docs]: /integrations/vesync/ + ## Need help? Join the community! Home Assistant has a great community of users who are all more than willing diff --git a/source/_posts/2022-05-16-home-assistant-os-release-8.markdown b/source/_posts/2022-05-16-home-assistant-os-release-8.markdown new file mode 100644 index 00000000000..9f419782b94 --- /dev/null +++ b/source/_posts/2022-05-16-home-assistant-os-release-8.markdown @@ -0,0 +1,123 @@ +--- +layout: post +title: "Home Assistant OS Release 8" +description: "Now using GRUB2 for UEFI-based systems, Home Assistant Yellow support, and support for UEFI-based AArch64 systems!" +date: 2022-05-16 00:00:00 +date_formatted: "May 16, 2022" +author: Stefan Agner +author_twitter: falstaff_ch +comments: true +categories: Release-Notes +og_image: /images/blog/2022-05-16-os8/social.png +--- + + +Home Assistant OS Release 8 Logo + + +Home Assistant OS 8.0 stable is available now! + +**Highlights**: + +- Use of GRUB2 for UEFI based systems +- Support for additional Wi-Fi and Bluetooth devices +- New image: Generic AArch64 for UEFI based AArch64 VMs and boards +- New image: Home Assistant Yellow + +For existing installations, no manual intervention is needed! You can safely +update without reading these rather technical release notes. + +## Table of contents + +- [Table of contents](#table-of-contents) +- [Operating System Changes](#operating-system-changes) + - [GRUB2 for UEFI based systems](#grub2-for-uefi-based-systems) + - [Under the Hood](#under-the-hood) + - [Other Changes](#other-changes) +- [Device Support](#device-support) + - [Raspberry Pi](#raspberry-pi) + - [Home Assistant Yellow](#home-assistant-yellow) + - [Generic x86-64](#generic-x86-64) + - [Generic AArch64 support](#generic-aarch64-support) + +## Operating System Changes + +### GRUB2 for UEFI based systems + +For Generic x86-64, OVA and the new Generic AArch64 Home Assistant uses GRUB2 +as boot loader now. GRUB2 (GRand Unified Bootloader) is the de-facto standard +boot loader used by most Linux distributions. The main reason for switching from +Barebox to GRUB2 was the missing AArch64 UEFI boot support in Barebox. We also +expect GRUB2 to be more stable especially on Desktop style x86-64 systems as +it gets used by much more users since generic Linux distributions use GRUB2. +Although, we actually hit a bug in GRUB2 during the RC phase, let's hope +this was a one-off. 🤞 + +Screenshot showing GRUB2 menu of Home Assistant OS + +The boot menu shows the two boot slots. Typically you don't have to change +selection here, unless you intentionally want to boot the previously installed +Home Assistant OS version. + +Note: Upgrading from any version 7.x is safe, but we recommend upgrading from +the last version of the previous major release. This is also the best tested +upgrade path. From any release with GRUB2 it is only safe to downgrade to 7.6! +Downgrading to releases before 7.6 can be done by downgrading to 7.6 first. + +### Under the Hood + +Under the hood, the OS was updated to the latest upstream Linux 5.15 kernel +as well as Buildroot 2022.02.1. The latest Buildroot release brings new +versions of various core components like systemd 250, NetworkManager 1.34.0 +and Docker 20.10.14. + +Additional networking drivers and settings prepare Home Assistant OS to +host the [OpenThread Border Router add-on]. + +### Other Changes + +- IP set support for advanced firewalling (also used by the OTBR add-on). +- Support for NTP configuration via DHCP. +- Google Coral support is now using Google's latest driver. This enables + additional Coral device support such as PCI Dual Edge TPU. +- Legacy wext backend for wpa_suppilcant is now enabled to support more Wi-Fi + devices. + +## Device Support + +### Raspberry Pi + +All Raspberry Pi versions use the latest LTS Linux Kernel 5.15 and firmware +(tag 1.20220331) from the Raspberry Pi team. These are the same versions as +the Raspberry Pi OS is using currently. + +### Home Assistant Yellow + +This is the first release that supports Home Assistant Yellow. Since Home +Assistant Yellow uses the Raspberry Pi Compute Module 4, the support is +based on the regular Raspberry Pi support currently. The Yellow image is +using the same kernel and firmware version. The Yellow board also supports +booting directly off of an NVMe device for those using a CM4 Lite (without +eMMC storage). + +### Generic x86-64 + +Besides the move to GRUB2 Generic x86-64 received quite some additional device +support. The Wi-Fi devices 3945ABG/BG/4965AGN and 22000 series are now supported. + +Other Changes: + +- Support 32-bit UEFI boot. This is required by older Intel Atom systems. Note + that only the boot loader is 32-bit, everything else uses the same 64-bit + binaries as 64-bit UEFI boot. +- Driver and firmware for Broadcom BNX2/BNX2X network interfaces are included. + +### Generic AArch64 support + +[@Doridian] contributed support for generic AArch64 systems which use the UEFI +boot flow. It should support real boards as well as virtual machines. So far +it has been successfully tested on KVM Virtual Machines. + +[@Doridian]: https://github.com/Doridian +[OpenThread Border Router add-on]: https://github.com/home-assistant/addons-development/tree/master/openthread_border_router diff --git a/source/developers/credits.markdown b/source/developers/credits.markdown index 346ae1ca43e..8aa61645935 100644 --- a/source/developers/credits.markdown +++ b/source/developers/credits.markdown @@ -1,58 +1,61 @@ --- title: "Credits" description: "Credits for the developers who contributed to Home Assistant." -date: 2021-02-16, 10:01:51 +0000 +date: 2022-05-15, 12:20:38 +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 "12658 total commits to the Home Assistant orga: -6835 commits to core -2357 commits to home-assistant.io -2256 commits to frontend -285 commits to developers.home-assistant +- [Paulus Schoutsen (@balloob)](https://github.com/balloob "14143 total commits to the Home Assistant orga: +7765 commits to core +2616 commits to frontend +2568 commits to home-assistant.io +308 commits to developers.home-assistant 237 commits to home-assistant-js -179 commits to home-assistant-js-websocket -144 commits to netdisco -66 commits to hass-release -39 commits to probot-home-assistant -35 commits to alerts.home-assistant.io -28 commits to my.home-assistant.io +203 commits to home-assistant-js-websocket +67 commits to hass-release +67 commits to my.home-assistant.io +49 commits to alerts.home-assistant.io +40 commits to probot-home-assistant 26 commits to LabelBot -20 commits to data.home-assistant -19 commits to assets +24 commits to data.home-assistant +20 commits to assets 16 commits to supervisor -14 commits to example-custom-config -13 commits to architecture +15 commits to example-custom-config +14 commits to architecture 9 commits to hbmqtt-auth-home-assistant +8 commits to addons +8 commits to newsletter-ghost-theme 7 commits to micropython-home-assistant 7 commits to custom-panel-starter-kit-react 7 commits to android 6 commits to home-assistant-notebooks -6 commits to addons 6 commits to ui-schema 5 commits to github-issue-maker 4 commits to supervised-installer +3 commits to iOS 3 commits to hassio-build 3 commits to docker -2 commits to cla-bot +3 commits to version +3 commits to brands 2 commits to lambda-home-assistant-github 2 commits to issue-bot -2 commits to iOS 2 commits to addons-example -2 commits to ada +2 commits to .github +2 commits to companion.home-assistant 2 commits to ci-azure +2 commits to ada 2 commits to plugin-observer -2 commits to brands +2 commits to partner.home-assistant 1 commit to warrant -1 commit to feedparser 1 commit to mobile-apps-fcm-push +1 commit to feedparser 1 commit to codeowners-mention -1 commit to companion.home-assistant -1 commit to wheels-custom-integrations 1 commit to wheels +1 commit to wheels-custom-integrations +1 commit to analytics.home-assistant.io 1 commit to open-zwave ") @@ -60,6 +63,9 @@ This page contains a list of people who have contributed in one way or another t (in alphabetical order) +- [0bmay (@0bmay)](https://github.com/0bmay "4 total commits to the Home Assistant orga: +4 commits to core +") - [100ferhas (@100ferhas)](https://github.com/100ferhas "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -74,6 +80,9 @@ This page contains a list of people who have contributed in one way or another t - [1v0dev (@1v0dev)](https://github.com/1v0dev "1 total commits to the Home Assistant orga: 1 commit to core ") +- [235816 (@235816)](https://github.com/235816 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [333ryan18 (@333ryan18)](https://github.com/333ryan18 "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -84,6 +93,9 @@ This page contains a list of people who have contributed in one way or another t - [50m3rer0 (@50m3rer0)](https://github.com/50m3rer0 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [53Industries (@53Industries)](https://github.com/53Industries "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [5mauggy (@5mauggy)](https://github.com/5mauggy "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -99,8 +111,8 @@ This page contains a list of people who have contributed in one way or another t 1 commit to wheels-custom-integrations 1 commit to brands ") -- [\[Security\] (@smartechru)](https://github.com/smartechru "2 total commits to the Home Assistant orga: -2 commits to brands +- [\[Security\] (@smartechru)](https://github.com/smartechru "3 total commits to the Home Assistant orga: +3 commits to brands ") - [A C\+\+ MaNong (@zhuqf)](https://github.com/zhuqf "1 total commits to the Home Assistant orga: 1 commit to core @@ -120,38 +132,40 @@ This page contains a list of people who have contributed in one way or another t - [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 "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Aalian Khan (@AalianKhan)](https://github.com/AalianKhan "4 total commits to the Home Assistant orga: +4 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 ") -- [Aaron (@xeanhort)](https://github.com/xeanhort "1 total commits to the Home Assistant orga: -1 commit to developers.home-assistant -") - [Aaron (@mcd1992)](https://github.com/mcd1992 "5 total commits to the Home Assistant orga: 5 commits to open-zwave ") +- [Aaron (@xeanhort)](https://github.com/xeanhort "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Aaron (@aaroncmills)](https://github.com/aaroncmills "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") -- [Aaron Bach (@bachya)](https://github.com/bachya "600 total commits to the Home Assistant orga: -500 commits to core -89 commits to home-assistant.io -5 commits to alerts.home-assistant.io -4 commits to brands +- [Aaron Bach (@bachya)](https://github.com/bachya "993 total commits to the Home Assistant orga: +868 commits to core +110 commits to home-assistant.io +7 commits to alerts.home-assistant.io +6 commits to brands 1 commit to architecture 1 commit to people ") -- [Aaron David Schneider (@AaronDavidSchneider)](https://github.com/AaronDavidSchneider "5 total commits to the Home Assistant orga: -3 commits to core +- [Aaron David Schneider (@AaronDavidSchneider)](https://github.com/AaronDavidSchneider "17 total commits to the Home Assistant orga: +11 commits to core +4 commits to home-assistant.io 1 commit to wheels-custom-integrations 1 commit to brands ") -- [Aaron Godfrey (@boralyl)](https://github.com/boralyl "14 total commits to the Home Assistant orga: -6 commits to core +- [Aaron Godfrey (@boralyl)](https://github.com/boralyl "17 total commits to the Home Assistant orga: +8 commits to core 4 commits to home-assistant.io 3 commits to brands +1 commit to frontend 1 commit to wheels-custom-integrations ") - [Aaron Linville (@linville)](https://github.com/linville "1 total commits to the Home Assistant orga: @@ -170,6 +184,12 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Aaron Sierra (@aaron-sierra)](https://github.com/aaron-sierra "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Aaron Ten Clay (@aarontc)](https://github.com/aarontc "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [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 @@ -181,42 +201,70 @@ This page contains a list of people who have contributed in one way or another t 5 commits to home-assistant.io 1 commit to core ") +- [ABdataman (@ABdataman)](https://github.com/ABdataman "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Abdelmalek Benelouezzane (@malekbene)](https://github.com/malekbene "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Abdul Hussain (@hussain-abdul)](https://github.com/hussain-abdul "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Abe Wiersma (@Snuggert)](https://github.com/Snuggert "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Abel Matser (@abelmatser)](https://github.com/abelmatser "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Abel Matser (@abelmatser)](https://github.com/abelmatser "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") +- [Abhimanyu Vishwakarma (@abhimanyuv-img)](https://github.com/abhimanyuv-img "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [Abhishek Anand (@aa755)](https://github.com/aa755 "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [ablack89 (@ablack89)](https://github.com/ablack89 "1 total commits to the Home Assistant orga: +1 commit to core +") - [abondoe (@abondoe)](https://github.com/abondoe "1 total commits to the Home Assistant orga: 1 commit to core ") - [ABOTlegacy (@ABOTlegacy)](https://github.com/ABOTlegacy "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [abrlox (@abrlox)](https://github.com/abrlox "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [absurdist81 (@absurdist81)](https://github.com/absurdist81 "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Abílio Costa (@abmantis)](https://github.com/abmantis "61 total commits to the Home Assistant orga: -41 commits to core -15 commits to home-assistant.io +- [Abílio Costa (@abmantis)](https://github.com/abmantis "70 total commits to the Home Assistant orga: +47 commits to core +18 commits to home-assistant.io 3 commits to frontend 1 commit to home-assistant-js-websocket -1 commit to netdisco +1 commit to brands ") -- [Achilleas Pipinellis (@axilleas)](https://github.com/axilleas "9 total commits to the Home Assistant orga: -7 commits to home-assistant.io +- [acbee (@acbee)](https://github.com/acbee "1 total commits to the Home Assistant orga: +1 commit to companion.home-assistant +") +- [aceindy (@aceindy)](https://github.com/aceindy "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Achilleas Pipinellis (@axilleas)](https://github.com/axilleas "13 total commits to the Home Assistant orga: +11 commits to home-assistant.io 2 commits to core ") -- [ActuallyRuben (@ActuallyRuben)](https://github.com/ActuallyRuben "2 total commits to the Home Assistant orga: +- [acshef (@acshef)](https://github.com/acshef "1 total commits to the Home Assistant orga: +1 commit to core +") +- [ActuallyRuben (@RvanBaarle)](https://github.com/RvanBaarle "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") -- [Adam (@SilvrrGIT)](https://github.com/SilvrrGIT "35 total commits to the Home Assistant orga: -33 commits to home-assistant.io +- [Adam (@SilvrrGIT)](https://github.com/SilvrrGIT "36 total commits to the Home Assistant orga: +34 commits to home-assistant.io 2 commits to core ") - [Adam Allport (@AAllport)](https://github.com/AAllport "1 total commits to the Home Assistant orga: @@ -231,6 +279,9 @@ This page contains a list of people who have contributed in one way or another t 6 commits to home-assistant.io 1 commit to docker ") +- [Adam Bogdał (@bogdal)](https://github.com/bogdal "1 total commits to the Home Assistant orga: +1 commit to core +") - [Adam Brin (@abrin)](https://github.com/abrin "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") @@ -238,6 +289,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Adam Chyb (@chybby)](https://github.com/chybby "1 total commits to the Home Assistant orga: +1 commit to core +") - [Adam Cooper (@GenericStudent)](https://github.com/GenericStudent "15 total commits to the Home Assistant orga: 11 commits to core 4 commits to home-assistant.io @@ -246,12 +300,21 @@ This page contains a list of people who have contributed in one way or another t 4 commits to home-assistant.io 3 commits to core ") -- [Adam Ernst (@adamjernst)](https://github.com/adamjernst "11 total commits to the Home Assistant orga: -5 commits to home-assistant.io -3 commits to core +- [Adam Duskett (@aduskett)](https://github.com/aduskett "771 total commits to the Home Assistant orga: +771 commits to buildroot +") +- [Adam Duskett (@retroroot-linux)](https://github.com/retroroot-linux "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Adam Ernst (@adamjernst)](https://github.com/adamjernst "14 total commits to the Home Assistant orga: +6 commits to home-assistant.io +5 commits to core 2 commits to frontend 1 commit to developers.home-assistant ") +- [Adam Feldman (@adamfeldman)](https://github.com/adamfeldman "1 total commits to the Home Assistant orga: +1 commit to core +") - [Adam Garcia (@pancho-villa)](https://github.com/pancho-villa "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -261,11 +324,14 @@ This page contains a list of people who have contributed in one way or another t - [Adam Griffiths (@aogriffiths)](https://github.com/aogriffiths "1 total commits to the Home Assistant orga: 1 commit to operating-system ") +- [Adam Heinrich (@adamheinrich)](https://github.com/adamheinrich "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Adam Knight (@ahknight)](https://github.com/ahknight "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [Adam Król (@adamkrol93)](https://github.com/adamkrol93 "7 total commits to the Home Assistant orga: -5 commits to core +- [Adam Król (@adamkrol93)](https://github.com/adamkrol93 "8 total commits to the Home Assistant orga: +6 commits to core 1 commit to brands 1 commit to home-assistant.io ") @@ -273,12 +339,13 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core ") - [Adam Michaleski (@prairieapps)](https://github.com/prairieapps "5 total commits to the Home Assistant orga: -2 commits to home-assistant.io 2 commits to core +2 commits to home-assistant.io 1 commit to brands ") -- [Adam Outler (@adamoutler)](https://github.com/adamoutler "6 total commits to the Home Assistant orga: -3 commits to developers.home-assistant +- [Adam Outler (@adamoutler)](https://github.com/adamoutler "9 total commits to the Home Assistant orga: +4 commits to developers.home-assistant +2 commits to brands 2 commits to home-assistant.io 1 commit to core ") @@ -294,6 +361,9 @@ This page contains a list of people who have contributed in one way or another t - [Adam Whittingham (@AdamWhittingham)](https://github.com/AdamWhittingham "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Adam Wujek (@awujek)](https://github.com/awujek "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Adam Žurek (@adaamz)](https://github.com/adaamz "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -327,6 +397,9 @@ This page contains a list of people who have contributed in one way or another t - [ADeeds (@ADeeds)](https://github.com/ADeeds "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [AdeZwart (@AdeZwart)](https://github.com/AdeZwart "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [AdighaLogic (@AdighaLogic)](https://github.com/AdighaLogic "13 total commits to the Home Assistant orga: 12 commits to addons 1 commit to home-assistant.io @@ -340,6 +413,9 @@ 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 ") +- [AdmiralStipe (@AdmiralStipe)](https://github.com/AdmiralStipe "1 total commits to the Home Assistant orga: +1 commit to core +") - [Adorem (@Adorem)](https://github.com/Adorem "2 total commits to the Home Assistant orga: 2 commits to operating-system ") @@ -354,13 +430,20 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [Adrian Campos (@adriancampos)](https://github.com/adriancampos "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io 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 Huber (@Adi146)](https://github.com/Adi146 "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Adrian Perez (@aperezdc)](https://github.com/aperezdc "152 total commits to the Home Assistant orga: +152 commits to buildroot +") - [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 @@ -371,22 +454,44 @@ This page contains a list of people who have contributed in one way or another t - [Adrian Scillato (@ascillato)](https://github.com/ascillato "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Adrian Sterr (@adriansterr)](https://github.com/adriansterr "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Adrian Suwała (@adriansuwala)](https://github.com/adriansuwala "4 total commits to the Home Assistant orga: 4 commits to core ") +- [Adrian Sweet (@asweet-thegoodpenguin)](https://github.com/asweet-thegoodpenguin "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Adrian Yee (@brewt)](https://github.com/brewt "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [adrian\-vlad (@adrian-vlad)](https://github.com/adrian-vlad "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [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 core +- [Adrien Brault (@adrienbrault)](https://github.com/adrienbrault "3 total commits to the Home Assistant orga: +3 commits to core +") +- [Adrien Béraud (@aberaud)](https://github.com/aberaud "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Adrien Decostre (@Wallamit)](https://github.com/Wallamit "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [Adrien Foulon (@Tofandel)](https://github.com/Tofandel "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Adrien Gallouët (@angt)](https://github.com/angt "16 total commits to the Home Assistant orga: +16 commits to buildroot +") +- [Adrien Ricciardi (@RICCIARDI-Adrien)](https://github.com/RICCIARDI-Adrien "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Adrià Vilanova Martínez (@avm99963)](https://github.com/avm99963 "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") @@ -394,7 +499,9 @@ This page contains a list of people who have contributed in one way or another t 6 commits to home-assistant.io 2 commits to core ") -- [Adrián Moreno (@adrianmo)](https://github.com/adrianmo "1 total commits to the Home Assistant orga: +- [Adrián Moreno (@adrianmo)](https://github.com/adrianmo "5 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io 1 commit to brands ") - [aenea (@aenea)](https://github.com/aenea "2 total commits to the Home Assistant orga: @@ -403,12 +510,18 @@ This page contains a list of people who have contributed in one way or another t - [AEnterprise (@AEnterprise)](https://github.com/AEnterprise "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Aeotec\-ccheng (@Aeotec-ccheng)](https://github.com/Aeotec-ccheng "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Aephir (@Aephir)](https://github.com/Aephir "1 total commits to the Home Assistant orga: 1 commit to frontend ") - [aetolus (@aetolus)](https://github.com/aetolus "2 total commits to the Home Assistant orga: 2 commits to core ") +- [aex351 (@aex351)](https://github.com/aex351 "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Agneev Mukherjee (@agneevX)](https://github.com/agneevX "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") @@ -432,11 +545,14 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") -- [aidbish (@aidbish)](https://github.com/aidbish "14 total commits to the Home Assistant orga: -11 commits to home-assistant.io +- [aidbish (@aidbish)](https://github.com/aidbish "15 total commits to the Home Assistant orga: +12 commits to home-assistant.io 2 commits to core 1 commit to alerts.home-assistant.io ") +- [Aijay Adams (@aijayadams)](https://github.com/aijayadams "1 total commits to the Home Assistant orga: +1 commit to brands +") - [airthusiast (@airthusiast)](https://github.com/airthusiast "4 total commits to the Home Assistant orga: 4 commits to core ") @@ -450,13 +566,16 @@ This page contains a list of people who have contributed in one way or another t - [aizerin (@aizerin)](https://github.com/aizerin "1 total commits to the Home Assistant orga: 1 commit to core ") -- [AJ Schmidt (@ajschmidt8)](https://github.com/ajschmidt8 "13 total commits to the Home Assistant orga: -9 commits to core +- [AJ Schmidt (@ajschmidt8)](https://github.com/ajschmidt8 "19 total commits to the Home Assistant orga: +15 commits to core 4 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 ") +- [Ajinkya Bawaskar (@ajinkyabawaskar)](https://github.com/ajinkyabawaskar "1 total commits to the Home Assistant orga: +1 commit to operating-system +") - [ajobbins (@ajobbins)](https://github.com/ajobbins "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -472,9 +591,15 @@ This page contains a list of people who have contributed in one way or another t 6 commits to core 2 commits to developers.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 +- [akennedy\-adtran (@akennedy-adtran)](https://github.com/akennedy-adtran "8 total commits to the Home Assistant orga: +8 commits to buildroot +") +- [Akihiko Odaki (@akihikodaki)](https://github.com/akihikodaki "5 total commits to the Home Assistant orga: +5 commits to buildroot +") +- [akloeckner (@akloeckner)](https://github.com/akloeckner "20 total commits to the Home Assistant orga: +11 commits to home-assistant.io +9 commits to core ") - [Akriti Chadda (@akriticg)](https://github.com/akriticg "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -483,37 +608,53 @@ This page contains a list of people who have contributed in one way or another t 3 commits to core 2 commits to home-assistant.io ") +- [Aladin (@aladin2000)](https://github.com/aladin2000 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Alain Tavan (@alain57)](https://github.com/alain57 "1 total commits to the Home Assistant orga: 1 commit to core ") - [Alain Turbide (@Dilbert66)](https://github.com/Dilbert66 "2 total commits to the Home Assistant orga: 2 commits to core ") +- [AlainH (@AlainH)](https://github.com/AlainH "1 total commits to the Home Assistant orga: +1 commit to core +") - [Alan Bowman (@alanbowman)](https://github.com/alanbowman "5 total commits to the Home Assistant orga: 4 commits to core 1 commit to home-assistant.io ") -- [Alan Byrne (@burnsie-la)](https://github.com/burnsie-la "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Alan Byrne (@burnsie-la)](https://github.com/burnsie-la "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io +1 commit to core ") - [Alan Fischer (@alanfischer)](https://github.com/alanfischer "21 total commits to the Home Assistant orga: 17 commits to core 4 commits to home-assistant.io ") -- [Alan Murray (@atmurray)](https://github.com/atmurray "4 total commits to the Home Assistant orga: -2 commits to core +- [Alan Murray (@atmurray)](https://github.com/atmurray "6 total commits to the Home Assistant orga: +4 commits to core 1 commit to brands 1 commit to home-assistant.io ") +- [Alan Ott (@alan-softiron-limited)](https://github.com/alan-softiron-limited "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Alan Ott (@signal11)](https://github.com/signal11 "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [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 "58 total commits to the Home Assistant orga: -44 commits to core -9 commits to home-assistant.io -3 commits to wheels-custom-integrations -1 commit to developers.home-assistant -1 commit to brands +- [Alan Tse (@alandtse)](https://github.com/alandtse "79 total commits to the Home Assistant orga: +57 commits to core +10 commits to home-assistant.io +6 commits to wheels-custom-integrations +3 commits to developers.home-assistant +3 commits to brands +") +- [Alan Yaniger (@ayaniger)](https://github.com/ayaniger "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [AlanLane1 (@AlanLane1)](https://github.com/AlanLane1 "2 total commits to the Home Assistant orga: 2 commits to data.home-assistant @@ -527,6 +668,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to supervisor 1 commit to docker ") +- [Alba Mendez (@mildsunrise)](https://github.com/mildsunrise "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Albatross (@DyingAlbatross)](https://github.com/DyingAlbatross "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -534,33 +678,48 @@ This page contains a list of people who have contributed in one way or another t 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: +- [Albert Lee (@trisk)](https://github.com/trisk "21 total commits to the Home Assistant orga: 12 commits to core 8 commits to home-assistant.io +1 commit to buildroot ") - [Alberto Arias Maestro (@albertoarias)](https://github.com/albertoarias "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Alberto Geniola (@albertogeniola)](https://github.com/albertogeniola "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") - [AlCalzone (@AlCalzone)](https://github.com/AlCalzone "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [aldot (@aldot)](https://github.com/aldot "924 total commits to the Home Assistant orga: +924 commits to buildroot +") - [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 "29 total commits to the Home Assistant orga: -21 commits to home-assistant.io +- [Alec Rust (@AlecRust)](https://github.com/AlecRust "33 total commits to the Home Assistant orga: +23 commits to home-assistant.io +2 commits to cli 2 commits to companion.home-assistant 2 commits to alerts.home-assistant.io 1 commit to addons -1 commit to developers.home-assistant -1 commit to supervised-installer 1 commit to frontend +1 commit to supervised-installer +1 commit to developers.home-assistant ") - [Aleix Murtra (@alemuro)](https://github.com/alemuro "5 total commits to the Home Assistant orga: 3 commits to core 1 commit to brands 1 commit to home-assistant.io ") +- [Alejandro Almazán (@aalmazanarbs)](https://github.com/aalmazanarbs "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Alejandro González (@AlexTMjugador)](https://github.com/AlexTMjugador "7 total commits to the Home Assistant orga: +7 commits to buildroot +") - [Alejandro Rivera (@AlejandroRivera)](https://github.com/AlejandroRivera "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to home-assistant.io @@ -571,8 +730,12 @@ This page contains a list of people who have contributed in one way or another t - [Aleksandar Todorović \(r3bl\) (@inputsh)](https://github.com/inputsh "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Aleksander Żarczyński (@o-l-o)](https://github.com/o-l-o "1 total commits to the Home Assistant orga: +- [Aleksander Morgado (@aleksander0m)](https://github.com/aleksander0m "30 total commits to the Home Assistant orga: +30 commits to buildroot +") +- [Aleksander Żarczyński (@o-l-o)](https://github.com/o-l-o "2 total commits to the Home Assistant orga: 1 commit to core +1 commit to home-assistant.io ") - [Aleksandr Smirnov (@jaxer)](https://github.com/jaxer "1 total commits to the Home Assistant orga: 1 commit to core @@ -583,18 +746,25 @@ This page contains a list of people who have contributed in one way or another t - [Aleksey Jurchenko (@alekseyjurchenko)](https://github.com/alekseyjurchenko "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [alekslyse (@alekslyse)](https://github.com/alekslyse "1 total commits to the Home Assistant orga: +- [alekslyse (@alekslyse)](https://github.com/alekslyse "2 total commits to the Home Assistant orga: +1 commit to brands 1 commit to home-assistant.io ") -- [Alessandro Di Felice (@difelice)](https://github.com/difelice "1 total commits to the Home Assistant orga: +- [Alessandro Del Prete (@alexdelprete)](https://github.com/alexdelprete "4 total commits to the Home Assistant orga: +3 commits to brands +1 commit to wheels-custom-integrations +") +- [Alessandro Di Felice (@difelice)](https://github.com/difelice "3 total commits to the Home Assistant orga: +2 commits to core 1 commit to home-assistant.io ") - [Alessandro Mogavero (@alexmogavero)](https://github.com/alexmogavero "4 total commits to the Home Assistant orga: 3 commits to core 1 commit to home-assistant.io ") -- [Alessandro Pilotti (@alexpilotti)](https://github.com/alexpilotti "1 total commits to the Home Assistant orga: +- [Alessandro Pilotti (@alexpilotti)](https://github.com/alexpilotti "2 total commits to the Home Assistant orga: 1 commit 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 frontend @@ -609,17 +779,17 @@ This page contains a list of people who have contributed in one way or another t - [Alex (@shr00mie)](https://github.com/shr00mie "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") +- [Alex (@newAM)](https://github.com/newAM "2 total commits to the Home Assistant orga: +2 commits to core +") - [Alex (@asbach)](https://github.com/asbach "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to core ") -- [Alex (@r-xela)](https://github.com/r-xela "1 total commits to the Home Assistant orga: -1 commit to core -") - [Alex (@MungoRae)](https://github.com/MungoRae "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Alex (@newAM)](https://github.com/newAM "1 total commits to the Home Assistant orga: +- [Alex (@r-xela)](https://github.com/r-xela "1 total commits to the Home Assistant orga: 1 commit to core ") - [Alex (@nnmalex)](https://github.com/nnmalex "1 total commits to the Home Assistant orga: @@ -634,8 +804,11 @@ This page contains a list of people who have contributed in one way or another t - [Alex Bahm (@techfreek)](https://github.com/techfreek "2 total commits to the Home Assistant orga: 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 +- [Alex Baldwin (@rampartisan)](https://github.com/rampartisan "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Alex Barcelo (@alexbarcelo)](https://github.com/alexbarcelo "9 total commits to the Home Assistant orga: +5 commits to home-assistant.io 3 commits to addons 1 commit to core ") @@ -645,6 +818,12 @@ This page contains a list of people who have contributed in one way or another t - [Alex Cragg (@epicalex)](https://github.com/epicalex "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Alex Crawford (@crawford)](https://github.com/crawford "1 total commits to the Home Assistant orga: +1 commit to plugin-cli +") +- [Alex Dobrynin (@adobrynin)](https://github.com/adobrynin "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Alex Fung (@paraselene)](https://github.com/paraselene "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -653,7 +832,16 @@ This page contains a list of people who have contributed in one way or another t 11 commits to home-assistant.io 4 commits to operating-system ") -- [Alex Kretzschmar (@IronicBadger)](https://github.com/IronicBadger "1 total commits to the Home Assistant orga: +- [Alex Henry (@Hyralex)](https://github.com/Hyralex "3 total commits to the Home Assistant orga: +3 commits to core +") +- [Alex Iribarren (@alexiri)](https://github.com/alexiri "1 total commits to the Home Assistant orga: +1 commit to cli +") +- [Alex Kaplan (@kaplan2539)](https://github.com/kaplan2539 "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [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: @@ -678,6 +866,9 @@ This page contains a list of people who have contributed in one way or another t - [Alex Osadchyy (@aosadchyy)](https://github.com/aosadchyy "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Alex Peters (@Lx)](https://github.com/Lx "1 total commits to the Home Assistant orga: +1 commit to probot-home-assistant +") - [Alex Popoutsis (@apop880)](https://github.com/apop880 "6 total commits to the Home Assistant orga: 3 commits to home-assistant.io 2 commits to developers.home-assistant @@ -687,12 +878,15 @@ This page contains a list of people who have contributed in one way or another t 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: +- [Alex S\. Glomsaas (@SuperManifolds)](https://github.com/SuperManifolds "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 Suykov (@arsv)](https://github.com/arsv "48 total commits to the Home Assistant orga: +48 commits to buildroot +") - [Alex Szlavik (@AlexSzlavik)](https://github.com/AlexSzlavik "2 total commits to the Home Assistant orga: 2 commits to core ") @@ -706,10 +900,14 @@ This page contains a list of people who have contributed in one way or another t - [Alex Ward (@alxwrd)](https://github.com/alxwrd "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Alex X (@AlexxIT)](https://github.com/AlexxIT "2 total commits to the Home Assistant orga: -1 commit to wheels-custom-integrations +- [Alex X (@AlexxIT)](https://github.com/AlexxIT "9 total commits to the Home Assistant orga: +6 commits to brands +2 commits to wheels-custom-integrations 1 commit to home-assistant.io ") +- [Alex Yao (@alexyao2015)](https://github.com/alexyao2015 "3 total commits to the Home Assistant orga: +3 commits to core +") - [Alex1234 (@Alex1234)](https://github.com/Alex1234 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -721,6 +919,9 @@ This page contains a list of people who have contributed in one way or another t - [Alex\-Klein (@Alex-Klein)](https://github.com/Alex-Klein "1 total commits to the Home Assistant orga: 1 commit to core ") +- [alex\.bennee@linaro\.org (@stsquad)](https://github.com/stsquad "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [Alexander (@ualex73)](https://github.com/ualex73 "168 total commits to the Home Assistant orga: 162 commits to open-zwave 2 commits to home-assistant.io @@ -731,10 +932,25 @@ This page contains a list of people who have contributed in one way or another t - [Alexander (@vtochq)](https://github.com/vtochq "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Alexander 'z33ky' Hirsch (@z33ky)](https://github.com/z33ky "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Alexander Bandukwala (@7h3kk1d)](https://github.com/7h3kk1d "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Alexander Eisele (@derEisele)](https://github.com/derEisele "1 total commits to the Home Assistant orga: +- [Alexander Clouter (@jimdigriz)](https://github.com/jimdigriz "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Alexander Dahl (@LeSpocky)](https://github.com/LeSpocky "26 total commits to the Home Assistant orga: +26 commits to buildroot +") +- [Alexander Egorenkov (@eaibmz)](https://github.com/eaibmz "23 total commits to the Home Assistant orga: +23 commits to buildroot +") +- [Alexander Egorenkov (@egorenar)](https://github.com/egorenar "9 total commits to the Home Assistant orga: +9 commits to buildroot +") +- [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: @@ -753,71 +969,126 @@ This page contains a list of people who have contributed in one way or another t - [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 core +- [Alexander Kurz (@alexanderkurz)](https://github.com/alexanderkurz "1 total commits to the Home Assistant orga: +1 commit to buildroot ") -- [Alexander Leisentritt (@Alex9779)](https://github.com/Alex9779 "2 total commits to the Home Assistant orga: +- [Alexander Leisentritt (@Alex9779)](https://github.com/Alex9779 "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io +1 commit to developers.home-assistant +1 commit to core +") +- [Alexander Lukichev (@alukichev)](https://github.com/alukichev "10 total commits to the Home Assistant orga: +10 commits to buildroot ") - [Alexander Lyon (@arlyon)](https://github.com/arlyon "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Alexander Mukhin (@aimukhin)](https://github.com/aimukhin "18 total commits to the Home Assistant orga: +18 commits to buildroot +") - [Alexander Petrov (@meanmail)](https://github.com/meanmail "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Alexander Pitkin (@peleccom)](https://github.com/peleccom "3 total commits to the Home Assistant orga: -3 commits to core +- [Alexander Pitkin (@peleccom)](https://github.com/peleccom "5 total commits to the Home Assistant orga: +5 commits to core ") -- [Alexander Ryazanov (@alryaz)](https://github.com/alryaz "8 total commits to the Home Assistant orga: -5 commits to brands -3 commits to wheels-custom-integrations +- [Alexander Reinert (@alexreinert)](https://github.com/alexreinert "2 total commits to the Home Assistant orga: +2 commits to operating-system +") +- [Alexander Rey (@alexander0042)](https://github.com/alexander0042 "3 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +1 commit to brands +") +- [Alexander Ryazanov (@alryaz)](https://github.com/alryaz "18 total commits to the Home Assistant orga: +12 commits to brands +6 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 Shiyan (@shcgit)](https://github.com/shcgit "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Alexander Slansky (@aslansky)](https://github.com/aslansky "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Alexander Stefanov (@fedya)](https://github.com/fedya "5 total commits to the Home Assistant orga: +5 commits to buildroot +") +- [Alexander Varnin (@fenixk19)](https://github.com/fenixk19 "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Alexandre Belloni (@alexandrebelloni)](https://github.com/alexandrebelloni "42 total commits to the Home Assistant orga: +42 commits to buildroot +") +- [Alexandre Esse (@ahresse)](https://github.com/ahresse "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [Alexandre Leites (@xalexslx)](https://github.com/xalexslx "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Alexandre Pereira da Silva (@aletes)](https://github.com/aletes "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [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 ") +- [Alexandru Ardelean (@commodo)](https://github.com/commodo "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Alexandru Branza (@jaruba)](https://github.com/jaruba "1 total commits to the Home Assistant orga: 1 commit to brands ") -- [Alexei Chetroi (@Adminiuga)](https://github.com/Adminiuga "256 total commits to the Home Assistant orga: -238 commits to core +- [alexanv1 (@alexanv1)](https://github.com/alexanv1 "5 total commits to the Home Assistant orga: +5 commits to core +") +- [Alexei Chetroi (@Adminiuga)](https://github.com/Adminiuga "312 total commits to the Home Assistant orga: +293 commits to core 13 commits to home-assistant.io 4 commits to frontend 1 commit to people +1 commit to developers.home-assistant ") -- [Alexey (@Spirit-X)](https://github.com/Spirit-X "1 total commits to the Home Assistant orga: -1 commit to core +- [Alexey 'Cluster' Avdyukhin (@ClusterM)](https://github.com/ClusterM "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Alexey Brodkin (@abrodkin)](https://github.com/abrodkin "131 total commits to the Home Assistant orga: +131 commits to buildroot ") - [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: +- [Alexey Kustov (@papajojo)](https://github.com/papajojo "5 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io 1 commit to brands -1 commit to core -1 commit to home-assistant.io +") +- [Alexey Mednyy (@swex)](https://github.com/swex "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Alexey Neyman (@stilor)](https://github.com/stilor "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [Alexey Pristavkin (@Pristavkin)](https://github.com/Pristavkin "1 total commits to the Home Assistant orga: 1 commit to operating-system ") +- [Alexey Roslyakov (@e-yes)](https://github.com/e-yes "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [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 "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") -- [AlexSchmitz222 (@AlexSchmitz222)](https://github.com/AlexSchmitz222 "3 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Alexis Tyler (@OmgImAlexis)](https://github.com/OmgImAlexis "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [AlexSchmitz222 (@AlexSchmitz222)](https://github.com/AlexSchmitz222 "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io 1 commit to core ") - [Alexxander0 (@Alexxander0)](https://github.com/Alexxander0 "4 total commits to the Home Assistant orga: @@ -827,6 +1098,13 @@ This page contains a list of people who have contributed in one way or another t - [Alfie Day (@Azelphur)](https://github.com/Azelphur "12 total commits to the Home Assistant orga: 12 commits to core ") +- [Alfiegerner (@Alfiegerner)](https://github.com/Alfiegerner "8 total commits to the Home Assistant orga: +5 commits to android +3 commits to companion.home-assistant +") +- [Alfonso Sorrentino (@BigNocciolino)](https://github.com/BigNocciolino "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Algirdas Č\. (@algirdasc)](https://github.com/algirdasc "2 total commits to the Home Assistant orga: 1 commit to wheels-custom-integrations 1 commit to brands @@ -835,6 +1113,15 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io 2 commits to core ") +- [Alifer Moraes (@alifermoraes)](https://github.com/alifermoraes "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [alim4r (@alim4r)](https://github.com/alim4r "5 total commits to the Home Assistant orga: +5 commits to core +") +- [Alistair Francis (@alistair23)](https://github.com/alistair23 "43 total commits to the Home Assistant orga: +43 commits to buildroot +") - [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 @@ -852,14 +1139,25 @@ This page contains a list of people who have contributed in one way or another t - [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 "16 total commits to the Home Assistant orga: +- [Allan P\. (@allanpersson)](https://github.com/allanpersson "16 total commits to the Home Assistant orga: 14 commits to home-assistant.io 2 commits to addons ") -- [Allen Porter (@allenporter)](https://github.com/allenporter "70 total commits to the Home Assistant orga: -52 commits to core -13 commits to home-assistant.io -5 commits to developers.home-assistant +- [Allan W\. Nielsen (@allannielsen)](https://github.com/allannielsen "59 total commits to the Home Assistant orga: +59 commits to buildroot +") +- [Allen Derusha (@aderusha)](https://github.com/aderusha "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Allen Porter (@allenporter)](https://github.com/allenporter "427 total commits to the Home Assistant orga: +306 commits to core +49 commits to developers.home-assistant +46 commits to home-assistant.io +17 commits to frontend +4 commits to wheels +3 commits to supervisor +1 commit to alerts.home-assistant.io +1 commit to brands ") - [Allison (@Leapo)](https://github.com/Leapo "2 total commits to the Home Assistant orga: 1 commit to core @@ -877,18 +1175,18 @@ This page contains a list of people who have contributed in one way or another t - [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 "190 total commits to the Home Assistant orga: -104 commits to home-assistant.io +- [Alok Saboo (@arsaboo)](https://github.com/arsaboo "191 total commits to the Home Assistant orga: +105 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 addons +1 commit to hassbian-scripts 1 commit to people ") -- [Alone (@al-one)](https://github.com/al-one "4 total commits to the Home Assistant orga: -2 commits to wheels-custom-integrations +- [Alone (@al-one)](https://github.com/al-one "5 total commits to the Home Assistant orga: +3 commits to wheels-custom-integrations 2 commits to brands ") - [Alpha Chen (@kejadlen)](https://github.com/kejadlen "1 total commits to the Home Assistant orga: @@ -902,8 +1200,8 @@ This page contains a list of people who have contributed in one way or another t 11 commits to home-assistant.io 4 commits to core ") -- [Alvaro Garcia (@alvarorgf)](https://github.com/alvarorgf "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Alvaro G\. M\. (@agamez)](https://github.com/agamez "17 total commits to the Home Assistant orga: +17 commits to buildroot ") - [Alvi Mahadi (@alvi2496)](https://github.com/alvi2496 "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant @@ -912,6 +1210,13 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [amadeo\-alex (@amadeo-alex)](https://github.com/amadeo-alex "3 total commits to the Home Assistant orga: +2 commits to android +1 commit to companion.home-assistant +") +- [amahlaka (@amahlaka)](https://github.com/amahlaka "6 total commits to the Home Assistant orga: +6 commits to home-assistant.io +") - [Aman Gupta Karmani (@tmm1)](https://github.com/tmm1 "10 total commits to the Home Assistant orga: 10 commits to operating-system ") @@ -927,12 +1232,25 @@ This page contains a list of people who have contributed in one way or another t - [Amir hossein Hossein Zadeh Karimi (@AmirHosseinKarimi)](https://github.com/AmirHosseinKarimi "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [amitfin (@amitfin)](https://github.com/amitfin "1 total commits to the Home Assistant orga: +- [Amit Keret (@amitkeret)](https://github.com/amitkeret "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [amitfin (@amitfin)](https://github.com/amitfin "4 total commits to the Home Assistant orga: +2 commits to core +1 commit to frontend 1 commit to developers.home-assistant ") - [Amol Katdare (@amolkatdare)](https://github.com/amolkatdare "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Amos Yuen (@amosyuen)](https://github.com/amosyuen "4 total commits to the Home Assistant orga: +2 commits to core +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Amran Haroon (@haroon3rd)](https://github.com/haroon3rd "1 total commits to the Home Assistant orga: +1 commit to brands +") - [ams123ios (@ams123ios)](https://github.com/ams123ios "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -940,14 +1258,23 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Anand Borkar (@anandb235)](https://github.com/anandb235 "3 total commits to the Home Assistant orga: +3 commits to supervisor +") - [Anand Radhakrishnan (@anand-p-r)](https://github.com/anand-p-r "1 total commits to the Home Assistant orga: 1 commit to wheels-custom-integrations ") - [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 +- [Anatoly (@dontbug)](https://github.com/dontbug "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Anatoly Borodin (@anatolyborodin)](https://github.com/anatolyborodin "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Anders Darander (@darander)](https://github.com/darander "15 total commits to the Home Assistant orga: +15 commits to buildroot ") - [Anders Einar Hilden (@Kagee)](https://github.com/Kagee "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -955,15 +1282,19 @@ This page contains a list of people who have contributed in one way or another t - [Anders Fogh Eriksen (@Fogh)](https://github.com/Fogh "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Anders Gjendem (@agjendem)](https://github.com/agjendem "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Anders Gjendem (@agjendem)](https://github.com/agjendem "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Anders Liljekvist (@thrawnarn)](https://github.com/thrawnarn "13 total commits to the Home Assistant orga: +9 commits to core +4 commits to home-assistant.io ") - [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 "474 total commits to the Home Assistant orga: -387 commits to core -73 commits to home-assistant.io +- [Anders Melchiorsen (@amelchio)](https://github.com/amelchio "503 total commits to the Home Assistant orga: +413 commits to core +76 commits to home-assistant.io 6 commits to pyharmony 3 commits to frontend 2 commits to iOS @@ -973,8 +1304,13 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [Anders Roxell (@roxell)](https://github.com/roxell "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Andi (@h4de5)](https://github.com/h4de5 "6 total commits to the Home Assistant orga: 3 commits to core +2 commits to brands +1 commit to wheels-custom-integrations ") - [andig (@andig)](https://github.com/andig "2 total commits to the Home Assistant orga: 2 commits to pi-gen @@ -982,19 +1318,22 @@ This page contains a list of people who have contributed in one way or another t - [Andre (@andre68723)](https://github.com/andre68723 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Andre Lengwenus (@alengwenus)](https://github.com/alengwenus "54 total commits to the Home Assistant orga: -38 commits to core -15 commits to home-assistant.io +- [Andre Lengwenus (@alengwenus)](https://github.com/alengwenus "74 total commits to the Home Assistant orga: +56 commits to core +17 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 +- [Andre Renaud (@AndreRenaud)](https://github.com/AndreRenaud "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Andre Richter (@andre-richter)](https://github.com/andre-richter "25 total commits to the Home Assistant orga: +23 commits to core +2 commits to home-assistant.io ") - [Andrea (@andker87)](https://github.com/andker87 "1 total commits to the Home Assistant orga: 1 commit to brands ") -- [Andrea (@BubiDevs)](https://github.com/BubiDevs "3 total commits to the Home Assistant orga: +- [Andrea (@andreabusi)](https://github.com/andreabusi "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [Andrea Barbaresi (@barban-dev)](https://github.com/barban-dev "3 total commits to the Home Assistant orga: @@ -1019,6 +1358,13 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Andreas (@a529987659852)](https://github.com/a529987659852 "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Andreas (@andreas-amlabs)](https://github.com/andreas-amlabs "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") - [Andreas Billmeier (@onkelbeh)](https://github.com/onkelbeh "7 total commits to the Home Assistant orga: 7 commits to core ") @@ -1026,14 +1372,17 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to home-assistant.io ") +- [Andreas Brett (@andreasbrett)](https://github.com/andreasbrett "4 total commits to the Home Assistant orga: +4 commits to core +") - [Andreas Cambitsis (@acambitsis)](https://github.com/acambitsis "1 total commits to the Home Assistant orga: 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 Ehn (@ehn)](https://github.com/ehn "3 total commits to the Home Assistant orga: +3 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 Franz (@andreasfranz)](https://github.com/andreasfranz "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Andreas Hartl (@nd-net)](https://github.com/nd-net "2 total commits to the Home Assistant orga: 1 commit to core @@ -1044,10 +1393,23 @@ This page contains a list of people who have contributed in one way or another t 2 commits to addons 1 commit to core ") -- [Andreas Oberritter (@mtdcr)](https://github.com/mtdcr "13 total commits to the Home Assistant orga: -8 commits to core +- [Andreas Klinger (@it-klinger)](https://github.com/it-klinger "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [Andreas Larsson (@andreas-gaisler)](https://github.com/andreas-gaisler "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Andreas Lindhé (@lindhe)](https://github.com/lindhe "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Andreas Oberritter (@mtdcr)](https://github.com/mtdcr "18 total commits to the Home Assistant orga: +13 commits to core 5 commits to home-assistant.io ") +- [Andreas Oetken (@oetken)](https://github.com/oetken "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Andreas Rammhold (@andir)](https://github.com/andir "1 total commits to the Home Assistant orga: 1 commit to frontend ") @@ -1064,9 +1426,15 @@ This page contains a list of people who have contributed in one way or another t 6 commits to home-assistant.io 1 commit to core ") +- [Andreas Sansano (@asansano)](https://github.com/asansano "1 total commits to the Home Assistant orga: +1 commit to core +") - [Andreas Setterlind (@Gamester17)](https://github.com/Gamester17 "14 total commits to the Home Assistant orga: 14 commits to home-assistant.io ") +- [Andreas Willich (@SabotageAndi)](https://github.com/SabotageAndi "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Andreas Wolter (@a-wolter)](https://github.com/a-wolter "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -1077,9 +1445,6 @@ This page contains a list of people who have contributed in one way or another t - [andreasfelder (@andreasfelder)](https://github.com/andreasfelder "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [andreasreinhardt (@andreasreinhardt)](https://github.com/andreasreinhardt "1 total commits to the Home Assistant orga: -1 commit to netdisco -") - [Andreea\-Daniela Ene (@AndreeaEne)](https://github.com/AndreeaEne "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") @@ -1103,9 +1468,10 @@ 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 "10 total commits to the Home Assistant orga: +- [Andrew (@aneisch)](https://github.com/aneisch "11 total commits to the Home Assistant orga: 7 commits to home-assistant.io 3 commits to core +1 commit to companion.home-assistant ") - [Andrew (@aoakeson)](https://github.com/aoakeson "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -1121,9 +1487,18 @@ This page contains a list of people who have contributed in one way or another t - [Andrew Ash (@ash211)](https://github.com/ash211 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Andrew Barnes (@UmbraMalison)](https://github.com/UmbraMalison "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Andrew Berry (@deviantintegral)](https://github.com/deviantintegral "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Andrew Beveridge ☄️ (@beveradb)](https://github.com/beveradb "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") +- [Andrew Bullock (@trullock)](https://github.com/trullock "1 total commits to the Home Assistant orga: +1 commit to core +") - [Andrew Chatham (@achatham)](https://github.com/achatham "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to home-assistant.io @@ -1133,6 +1508,12 @@ This page contains a list of people who have contributed in one way or another t 29 commits to scenegen 22 commits to home-assistant.io ") +- [Andrew Donnellan (@ajdlinux)](https://github.com/ajdlinux "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Andrew Dunham (@andrew-d)](https://github.com/andrew-d "1 total commits to the Home Assistant orga: +1 commit to operating-system +") - [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 @@ -1141,11 +1522,15 @@ This page contains a list of people who have contributed in one way or another t - [Andrew Garrett (@werdnum)](https://github.com/werdnum "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Andrew Grimberg (@tykeal)](https://github.com/tykeal "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [Andrew Hall (@FattusMannus)](https://github.com/FattusMannus "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Andrew Hayworth (@ahayworth)](https://github.com/ahayworth "16 total commits to the Home Assistant orga: -12 commits to core +- [Andrew Hayworth (@ahayworth)](https://github.com/ahayworth "17 total commits to the Home Assistant orga: +13 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: @@ -1159,6 +1544,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to home-assistant.io ") +- [Andrew Ma (@ajma)](https://github.com/ajma "1 total commits to the Home Assistant orga: +1 commit to alerts.home-assistant.io +") - [Andrew Marks (@ajmarks)](https://github.com/ajmarks "15 total commits to the Home Assistant orga: 6 commits to core 3 commits to wheels-custom-integrations @@ -1185,11 +1573,13 @@ This page contains a list of people who have contributed in one way or another t - [Andrew Rowson (@growse)](https://github.com/growse "2 total commits to the Home Assistant orga: 2 commits to core ") -- [Andrew Sayre (@andrewsayre)](https://github.com/andrewsayre "144 total commits to the Home Assistant orga: +- [Andrew Ruder (@aeruder)](https://github.com/aeruder "7 total commits to the Home Assistant orga: +7 commits to buildroot +") +- [Andrew Sayre (@andrewsayre)](https://github.com/andrewsayre "143 total commits to the Home Assistant orga: 105 commits to core 34 commits to home-assistant.io 3 commits to developers.home-assistant -1 commit to netdisco 1 commit to people ") - [Andrew Scheller (@lurch)](https://github.com/lurch "1 total commits to the Home Assistant orga: @@ -1201,6 +1591,9 @@ This page contains a list of people who have contributed in one way or another t - [Andrew Smith (@andrewmichaelsmith)](https://github.com/andrewmichaelsmith "2 total commits to the Home Assistant orga: 2 commits to pi-gen ") +- [Andrew Soback (@asoback)](https://github.com/asoback "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Andrew Starr\-Bochicchio (@andrewsomething)](https://github.com/andrewsomething "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -1211,6 +1604,9 @@ This page contains a list of people who have contributed in one way or another t 32 commits to core 1 commit to home-assistant-js ") +- [Andrew Webster (@andrwwbstr)](https://github.com/andrwwbstr "14 total commits to the Home Assistant orga: +14 commits to buildroot +") - [Andrew Wedgbury (@sconemad)](https://github.com/sconemad "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") @@ -1224,6 +1620,9 @@ This page contains a list of people who have contributed in one way or another t - [Andrew Ying (@andrewying)](https://github.com/andrewying "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Andrew55529 (@Andrew55529)](https://github.com/Andrew55529 "2 total commits to the Home Assistant orga: +2 commits to core +") - [andrew\-curtis (@andrew-curtis)](https://github.com/andrew-curtis "8 total commits to the Home Assistant orga: 8 commits to home-assistant.io ") @@ -1247,13 +1646,18 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [Andrey "Limych" Khrolenok (@Limych)](https://github.com/Limych "13 total commits to the Home Assistant orga: +8 commits to brands +2 commits to wheels-custom-integrations 2 commits to home-assistant.io 1 commit to core ") -- [Andrey Kupreychik (@foxel)](https://github.com/foxel "32 total commits to the Home Assistant orga: -21 commits to core -9 commits to home-assistant.io +- [Andrey Gorbunov (@gorbunovav)](https://github.com/gorbunovav "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Andrey Kupreychik (@foxel)](https://github.com/foxel "37 total commits to the Home Assistant orga: +25 commits to core +10 commits to home-assistant.io 1 commit to frontend 1 commit to brands ") @@ -1264,9 +1668,18 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io 1 commit to core ") +- [Andrey Skvortsov (@AndreySV)](https://github.com/AndreySV "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Andrey Smirnov (@ndreys)](https://github.com/ndreys "38 total commits to the Home Assistant orga: +38 commits to buildroot +") - [Andrey Ulanov (@aulanov)](https://github.com/aulanov "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") +- [Andrey Yurovsky (@yurovsky)](https://github.com/yurovsky "11 total commits to the Home Assistant orga: +11 commits to buildroot +") - [Andrius Štikonas (@stikonas)](https://github.com/stikonas "1 total commits to the Home Assistant orga: 1 commit to brands ") @@ -1277,9 +1690,15 @@ This page contains a list of people who have contributed in one way or another t 12 commits to home-assistant.io 1 commit to core ") -- [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 +- [Andrzej Pichliński (@apichlinski)](https://github.com/apichlinski "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Andrzej Raczkowski (@araczkowski)](https://github.com/araczkowski "1 total commits to the Home Assistant orga: +1 commit to core +") +- [András Rutkai (@rutkai)](https://github.com/rutkai "8 total commits to the Home Assistant orga: +5 commits to core +3 commits to home-assistant.io ") - [André Bação (@abacao)](https://github.com/abacao "1 total commits to the Home Assistant orga: 1 commit to brands @@ -1290,6 +1709,9 @@ This page contains a list of people who have contributed in one way or another t - [André Lobo (@andrewolfy)](https://github.com/andrewolfy "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [André Zwing (@AndreRH)](https://github.com/AndreRH "94 total commits to the Home Assistant orga: +94 commits to buildroot +") - [Andréas Lundgren (@adevade)](https://github.com/adevade "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -1297,6 +1719,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to wheels-custom-integrations 1 commit to brands ") +- [Andy Allsopp (@arallsopp)](https://github.com/arallsopp "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 core 9 commits to home-assistant.io @@ -1304,9 +1729,15 @@ This page contains a list of people who have contributed in one way or another t - [Andy Cordill (@acordill)](https://github.com/acordill "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Andy Gibbs (@andyg1001)](https://github.com/andyg1001 "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Andy Grunwald (@andygrunwald)](https://github.com/andygrunwald "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Andy Jackson (@andybjackson)](https://github.com/andybjackson "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Andy Kittner (@andkit)](https://github.com/andkit "2 total commits to the Home Assistant orga: 2 commits to core ") @@ -1320,6 +1751,9 @@ This page contains a list of people who have contributed in one way or another t - [Andy Piper (@andypiper)](https://github.com/andypiper "1 total commits to the Home Assistant orga: 1 commit to brands ") +- [Andy Shevchenko (@andy-shev)](https://github.com/andy-shev "14 total commits to the Home Assistant orga: +14 commits to buildroot +") - [Andy Tuba (@andytuba)](https://github.com/andytuba "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") @@ -1329,13 +1763,23 @@ This page contains a list of people who have contributed in one way or another t - [andyat (@andyat)](https://github.com/andyat "2 total commits to the Home Assistant orga: 2 commits to core ") +- [aneeshd (@aneeshd)](https://github.com/aneeshd "1 total commits to the Home Assistant orga: +1 commit to brands +") - [angel12 (@angel12)](https://github.com/angel12 "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") -- [Angelo Gagliano (@TheGardenMonkey)](https://github.com/TheGardenMonkey "10 total commits to the Home Assistant orga: -7 commits to core +- [Angeliki Papadopoulou (@apapadopoulou)](https://github.com/apapadopoulou "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Angelo Compagnucci (@angeloc)](https://github.com/angeloc "249 total commits to the Home Assistant orga: +249 commits to buildroot +") +- [Angelo Gagliano (@TheGardenMonkey)](https://github.com/TheGardenMonkey "15 total commits to the Home Assistant orga: +11 commits to core 3 commits to home-assistant.io +1 commit to docker ") - [Angie1313 (@Angie1313)](https://github.com/Angie1313 "2 total commits to the Home Assistant orga: 2 commits to developers.home-assistant @@ -1343,6 +1787,19 @@ This page contains a list of people who have contributed in one way or another t - [Anglac (@Anglac)](https://github.com/Anglac "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Ani Betts (@anaisbetts)](https://github.com/anaisbetts "7 total commits to the Home Assistant orga: +5 commits to core +2 commits to home-assistant.io +") +- [Aniket (@HandyHat)](https://github.com/HandyHat "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Anil Daoud (@AnilDaoud)](https://github.com/AnilDaoud "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Anisse Astier (@anisse)](https://github.com/anisse "6 total commits to the Home Assistant orga: +6 commits to buildroot +") - [Anna Prosvetova (@aprosvetova)](https://github.com/aprosvetova "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -1353,6 +1810,9 @@ This page contains a list of people who have contributed in one way or another t 5 commits to android 1 commit to core ") +- [annuges (@annuges)](https://github.com/annuges "1 total commits to the Home Assistant orga: +1 commit to operating-system +") - [anotherjulien (@anotherjulien)](https://github.com/anotherjulien "1 total commits to the Home Assistant orga: 1 commit to brands ") @@ -1365,18 +1825,23 @@ This page contains a list of people who have contributed in one way or another t - [Ansgar Mertens (@ansgarm)](https://github.com/ansgarm "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Anssi Hannula (@anssih)](https://github.com/anssih "6 total commits to the Home Assistant orga: +6 commits to buildroot +") - [Antetokounpo (@Antetokounpo)](https://github.com/Antetokounpo "1 total commits to the Home Assistant orga: 1 commit to core ") +- [AnthiasD (@AnthiasD)](https://github.com/AnthiasD "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 core ") - [Anthony Carbone (@ant-car)](https://github.com/ant-car "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Anthony Hughes (@tony2nite)](https://github.com/tony2nite "15 total commits to the Home Assistant orga: +- [Anthony Hughes (@tony2nite)](https://github.com/tony2nite "14 total commits to the Home Assistant orga: 12 commits to pyharmony -1 commit to netdisco 1 commit to core 1 commit to home-assistant.io ") @@ -1400,17 +1865,27 @@ This page contains a list of people who have contributed in one way or another t 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 core +- [Antoine Meillet (@inetAnt)](https://github.com/inetAnt "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io ") -- [Anton Averkiev (@wowgamr)](https://github.com/wowgamr "4 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Antoine Pierlot\-Garcin (@bok)](https://github.com/bok "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Antoine Ténart (@atenart)](https://github.com/atenart "57 total commits to the Home Assistant orga: +57 commits to buildroot +") +- [Anton Averkiev (@wowgamr)](https://github.com/wowgamr "5 total commits to the Home Assistant orga: +3 commits to home-assistant.io 1 commit to wheels-custom-integrations 1 commit to brands ") - [Anton Babenko (@antonbabenko)](https://github.com/antonbabenko "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Anton Blanchard (@antonblanchard)](https://github.com/antonblanchard "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Anton Chakirov (@achakirov)](https://github.com/achakirov "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") @@ -1420,12 +1895,16 @@ This page contains a list of people who have contributed in one way or another t - [Anton Johansson (@anton-johansson)](https://github.com/anton-johansson "1 total commits to the Home Assistant orga: 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 Kolesov (@anthony-kolesov)](https://github.com/anthony-kolesov "27 total commits to the Home Assistant orga: +27 commits to buildroot ") -- [Anton Lundin (@glance-)](https://github.com/glance- "8 total commits to the Home Assistant orga: +- [Anton Lundin (@glance-)](https://github.com/glance- "7 total commits to the Home Assistant orga: 7 commits to core -1 commit to netdisco +") +- [Anton Malko (@ANMalko)](https://github.com/ANMalko "12 total commits to the Home Assistant orga: +8 commits to core +3 commits to home-assistant.io +1 commit to brands ") - [Anton Palgunov (@Toxblh)](https://github.com/Toxblh "2 total commits to the Home Assistant orga: 1 commit to core @@ -1436,8 +1915,8 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io 1 commit to frontend ") -- [Anton Tolchanov (@knyar)](https://github.com/knyar "4 total commits to the Home Assistant orga: -4 commits to core +- [Anton Tolchanov (@knyar)](https://github.com/knyar "5 total commits to the Home Assistant orga: +5 commits to core ") - [Anton Verburg (@antonverburg)](https://github.com/antonverburg "3 total commits to the Home Assistant orga: 2 commits to core @@ -1449,13 +1928,23 @@ This page contains a list of people who have contributed in one way or another t - [Antongiacomo Polimeno (@antongiacomo)](https://github.com/antongiacomo "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Antoni Czaplicki (@Antoni-Czaplicki)](https://github.com/Antoni-Czaplicki "14 total commits to the Home Assistant orga: +5 commits to brands +4 commits to core +2 commits to developers.home-assistant +2 commits to home-assistant.io +1 commit to wheels-custom-integrations +") - [Antoni K (@antoni-k)](https://github.com/antoni-k "22 total commits to the Home Assistant orga: 21 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: +- [Antoni Różański (@arozans)](https://github.com/arozans "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Antonio Larrosa (@antlarr)](https://github.com/antlarr "3 total commits to the Home Assistant orga: +3 commits to core +") - [Antonio Párraga Navarro (@aparraga)](https://github.com/aparraga "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -1466,23 +1955,47 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Antony Pavlov (@frantony)](https://github.com/frantony "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Antti K\. Koskela (@koskila)](https://github.com/koskila "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Anubhaw Arya (@aarya123)](https://github.com/aarya123 "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [anugs (@anugs)](https://github.com/anugs "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io +") - [Anurag El Dorado (@aedorado)](https://github.com/aedorado "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [aomann (@aomann)](https://github.com/aomann "1 total commits to the Home Assistant orga: +1 commit to core +") +- [apaperclip (@apaperclip)](https://github.com/apaperclip "5 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io +1 commit to brands +") - [apastuszak (@apastuszak)](https://github.com/apastuszak "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [apetrycki (@apetrycki)](https://github.com/apetrycki "1 total commits to the Home Assistant orga: 1 commit to core ") -- [apo\-mak (@apo-mak)](https://github.com/apo-mak "2 total commits to the Home Assistant orga: +- [apo\-mak (@apo-mak)](https://github.com/apo-mak "4 total commits to the Home Assistant orga: +2 commits to android 1 commit to frontend 1 commit to home-assistant.io ") +- [Appleguru (@appleguru)](https://github.com/appleguru "1 total commits to the Home Assistant orga: +1 commit to core +") +- [apworks1 (@apworks1)](https://github.com/apworks1 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [aquarium (@theaquarium)](https://github.com/theaquarium "6 total commits to the Home Assistant orga: 3 commits to frontend 3 commits to home-assistant.io @@ -1493,9 +2006,22 @@ This page contains a list of people who have contributed in one way or another t - [aquesnel (@aquesnel)](https://github.com/aquesnel "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [AR (@aleiphoenix)](https://github.com/aleiphoenix "2 total commits to the Home Assistant orga: +- [AR (@sp3c73r2038)](https://github.com/sp3c73r2038 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [arantes555 (@arantes555)](https://github.com/arantes555 "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") +- [Aras Vaichas (@mrstinky)](https://github.com/mrstinky "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Arbuzov Sergey (@Arbuzov)](https://github.com/Arbuzov "2 total commits to the Home Assistant orga: +2 commits to brands +") +- [arcsi42 (@arcsi42)](https://github.com/arcsi42 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [arcsur (@arcsur)](https://github.com/arcsur "4 total commits to the Home Assistant orga: 3 commits to core 1 commit to home-assistant.io @@ -1505,10 +2031,14 @@ This page contains a list of people who have contributed in one way or another t 1 commit to brands 1 commit to home-assistant.io ") -- [Ardetus (@Ardetus)](https://github.com/Ardetus "4 total commits to the Home Assistant orga: +- [Ardetus (@ardzeus)](https://github.com/ardzeus "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io 2 commits to core ") +- [ardevd (@ardevd)](https://github.com/ardevd "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [Ardi Mehist (@omgapuppy)](https://github.com/omgapuppy "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to core @@ -1526,13 +2056,15 @@ This page contains a list of people who have contributed in one way or another t - [Ari Simonen (@asimonen)](https://github.com/asimonen "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Ariana Hlavaty (@arianahl)](https://github.com/arianahl "8 total commits to the Home Assistant orga: -7 commits to core -1 commit to home-assistant.io +- [Ariana Hlavaty (@Ariana-Hlavaty-i2)](https://github.com/Ariana-Hlavaty-i2 "6 total commits to the Home Assistant orga: +6 commits to core ") - [aribarreto (@aribarreto)](https://github.com/aribarreto "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ariel D'Alessandro (@adalessandro)](https://github.com/adalessandro "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [Ariel Voskov (@Voskov)](https://github.com/Voskov "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -1547,8 +2079,8 @@ This page contains a list of people who have contributed in one way or another t 1 commit to brands 1 commit to home-assistant.io ") -- [Arjan van Balken (@vanbalken)](https://github.com/vanbalken "5 total commits to the Home Assistant orga: -4 commits to core +- [Arjan van Balken (@vanbalken)](https://github.com/vanbalken "7 total commits to the Home Assistant orga: +6 commits to core 1 commit to home-assistant.io ") - [arjenfvellinga (@arjenfvellinga)](https://github.com/arjenfvellinga "6 total commits to the Home Assistant orga: @@ -1558,12 +2090,27 @@ This page contains a list of people who have contributed in one way or another t - [arjenvrh (@arjenvrh)](https://github.com/arjenvrh "1 total commits to the Home Assistant orga: 1 commit to brands ") +- [Arman Taherian (@armantaherian)](https://github.com/armantaherian "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Arnaud (@aaujon)](https://github.com/aaujon "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [Arno (@aetjansen)](https://github.com/aetjansen "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") +- [Arno M (@arnom-ms)](https://github.com/arnom-ms "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [ArnoGit (@ArnoGit)](https://github.com/ArnoGit "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Arnold Bloemert (@abloemert)](https://github.com/abloemert "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [arnout (@arnout)](https://github.com/arnout "743 total commits to the Home Assistant orga: +743 commits to buildroot +") - [Aron Hafner (@hafffe)](https://github.com/hafffe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -1586,25 +2133,51 @@ 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 ") +- [Artem Draft (@Drafteed)](https://github.com/Drafteed "12 total commits to the Home Assistant orga: +9 commits to core +3 commits to home-assistant.io +") +- [Artem Poliukhovych (@nergal)](https://github.com/nergal "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Artem Senichev (@artemsen)](https://github.com/artemsen "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Artem Sorokin (@dext0r)](https://github.com/dext0r "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [Artem Tokarev (@RealArtemiy)](https://github.com/RealArtemiy "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Arthur (@arthurjdam)](https://github.com/arthurjdam "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Arthur LAMBERT (@Evanok)](https://github.com/Evanok "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Arthur Leonard Andersen (@leoc)](https://github.com/leoc "9 total commits to the Home Assistant orga: 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 ") -- [Arto Jantunen (@viiru-)](https://github.com/viiru- "3 total commits to the Home Assistant orga: -2 commits to core -1 commit to home-assistant.io +- [Arthur Zapparoli (@arthurgeek)](https://github.com/arthurgeek "1 total commits to the Home Assistant orga: +1 commit to core ") -- [Arttu mahlakaarto (@amahlaka)](https://github.com/amahlaka "6 total commits to the Home Assistant orga: -6 commits to home-assistant.io +- [Arto Jantunen (@viiru-)](https://github.com/viiru- "7 total commits to the Home Assistant orga: +5 commits to core +2 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 ") +- [Artur L (@lorek123)](https://github.com/lorek123 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [arturdobo (@arturdobo)](https://github.com/arturdobo "1 total commits to the Home Assistant orga: +1 commit to core +") - [Artuto (@Artuto)](https://github.com/Artuto "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") @@ -1618,21 +2191,39 @@ This page contains a list of people who have contributed in one way or another t - [Arvind Prasanna (@aprasanna)](https://github.com/aprasanna "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Asaf Levy (@asaf400)](https://github.com/asaf400 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [asafkahlon (@asafkahlon)](https://github.com/asafkahlon "492 total commits to the Home Assistant orga: +492 commits to buildroot +") - [aschamberger (@aschamberger)](https://github.com/aschamberger "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [Asgeir Bjarni Ingvarsson (@asgeir)](https://github.com/asgeir "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Ash Charles (@ashcharles)](https://github.com/ashcharles "7 total commits to the Home Assistant orga: +7 commits to buildroot +") - [ash7777 (@ash7777)](https://github.com/ash7777 "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [ashev (@ashev)](https://github.com/ashev "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Ashley 'DrToxic' Devine (@DrToxic)](https://github.com/DrToxic "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Ashley Cawley (@ashleycawley)](https://github.com/ashleycawley "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Ashton Campbell (@AshtonCampbell)](https://github.com/AshtonCampbell "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") -- [Ashton Lafferty (@cogneato)](https://github.com/cogneato "216 total commits to the Home Assistant orga: -108 commits to home-assistant.io +- [Ashton Lafferty (@cogneato)](https://github.com/cogneato "221 total commits to the Home Assistant orga: +113 commits to home-assistant.io 93 commits to brands 6 commits to operating-system 4 commits to developers.home-assistant @@ -1647,13 +2238,26 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [Assaf Inbal (@shmuelzon)](https://github.com/shmuelzon "25 total commits to the Home Assistant orga: +13 commits to buildroot 9 commits to homebridge-homeassistant 3 commits to core ") +- [astronaut (@rsegers)](https://github.com/rsegers "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Atanas Palavrov Updating wiringPi to add support for RPi3B\+ (@palavrov)](https://github.com/palavrov "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Atharva Lele (@atharvalele)](https://github.com/atharvalele "7 total commits to the Home Assistant orga: +7 commits to buildroot +") - [atorralba (@atorralba)](https://github.com/atorralba "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Atticus Maximus (@amaximus)](https://github.com/amaximus "6 total commits to the Home Assistant orga: +6 commits to brands +") - [Attie Grande (@attie)](https://github.com/attie "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") @@ -1664,6 +2268,9 @@ This page contains a list of people who have contributed in one way or another t - [Aubin Paul (@outlyer)](https://github.com/outlyer "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Audrey Motheron (@Audmo)](https://github.com/Audmo "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Audric Schiltknecht (@chemicalstorm)](https://github.com/chemicalstorm "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io 1 commit to core @@ -1675,22 +2282,37 @@ This page contains a list of people who have contributed in one way or another t - [aufano (@aufano)](https://github.com/aufano "2 total commits to the Home Assistant orga: 2 commits to core ") +- [augustas2 (@augustas2)](https://github.com/augustas2 "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Augustin Thiercelin (@n1tsu)](https://github.com/n1tsu "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [auhlie (@auhlie)](https://github.com/auhlie "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [Auke Bruinsma (@air2)](https://github.com/air2 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Aurelijus Rožėnas (@aurelijusrozenas)](https://github.com/aurelijusrozenas "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") +- [Aurélien Chabot (@trishika)](https://github.com/trishika "11 total commits to the Home Assistant orga: +11 commits to buildroot +") +- [ausserirdischesindgesund (@ausserirdischesindgesund)](https://github.com/ausserirdischesindgesund "3 total commits to the Home Assistant orga: +3 commits to brands +") - [Austin (@trainman419)](https://github.com/trainman419 "9 total commits to the Home Assistant orga: 9 commits to core ") -- [Austin Drummond (@adrum)](https://github.com/adrum "27 total commits to the Home Assistant orga: -15 commits to core -12 commits to home-assistant.io +- [Austin Drummond (@adrum)](https://github.com/adrum "29 total commits to the Home Assistant orga: +16 commits to core +13 commits to home-assistant.io ") -- [Austin Mroczek (@austinmroczek)](https://github.com/austinmroczek "32 total commits to the Home Assistant orga: -17 commits to core -10 commits to home-assistant.io +- [Austin Mroczek (@austinmroczek)](https://github.com/austinmroczek "56 total commits to the Home Assistant orga: +38 commits to core +13 commits to home-assistant.io 2 commits to developers.home-assistant 2 commits to open-zwave 1 commit to brands @@ -1703,9 +2325,24 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to home-assistant.io ") +- [avee87 (@avee87)](https://github.com/avee87 "24 total commits to the Home Assistant orga: +16 commits to core +7 commits to home-assistant.io +1 commit to developers.home-assistant +") +- [Avi Miller (@Djelibeybi)](https://github.com/Djelibeybi "14 total commits to the Home Assistant orga: +13 commits 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 ") +- [Avi Shukron (@avrahamshukron)](https://github.com/avrahamshukron "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Avishay Orpaz (@avishorp)](https://github.com/avishorp "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [avocadio (@avocadio)](https://github.com/avocadio "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -1721,6 +2358,12 @@ This page contains a list of people who have contributed in one way or another t - [Axel (@axel8viii)](https://github.com/axel8viii "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") +- [Axel Lin (@AxelLin)](https://github.com/AxelLin "104 total commits to the Home Assistant orga: +104 commits to buildroot +") +- [Axel Sepúlveda (@chepo92)](https://github.com/chepo92 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [ayatoy (@ayatoy)](https://github.com/ayatoy "1 total commits to the Home Assistant orga: 1 commit to feedparser ") @@ -1730,6 +2373,9 @@ This page contains a list of people who have contributed in one way or another t - [Azimoth (@Azimoth)](https://github.com/Azimoth "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") +- [azrdev (@azrdev)](https://github.com/azrdev "2 total commits to the Home Assistant orga: +2 commits to core +") - [b1g1an (@bobbynobble)](https://github.com/bobbynobble "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -1738,17 +2384,21 @@ This page contains a list of people who have contributed in one way or another t ") - [b3nj1 (@b3nj1)](https://github.com/b3nj1 "8 total commits to the Home Assistant orga: 3 commits to core -2 commits to python-openzwave 2 commits to frontend +2 commits to python-openzwave 1 commit to addons ") - [b4dpxl (@b4dpxl)](https://github.com/b4dpxl "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") -- [B\-Hartley (@B-Hartley)](https://github.com/B-Hartley "2 total commits to the Home Assistant orga: +- [B\-Hartley (@B-Hartley)](https://github.com/B-Hartley "5 total commits to the Home Assistant orga: +3 commits to core 2 commits to home-assistant.io ") +- [b\-pass (@b-pass)](https://github.com/b-pass "1 total commits to the Home Assistant orga: +1 commit to core +") - [backcountrymountains (@backcountrymountains)](https://github.com/backcountrymountains "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -1759,16 +2409,22 @@ This page contains a list of people who have contributed in one way or another t 22 commits to core 2 commits to home-assistant.io ") -- [badguy99 (@badguy99)](https://github.com/badguy99 "5 total commits to the Home Assistant orga: -4 commits to core +- [badguy99 (@badguy99)](https://github.com/badguy99 "6 total commits to the Home Assistant orga: +5 commits to core 1 commit to home-assistant.io ") +- [Bai Yingjie (@Bai-Yingjie)](https://github.com/Bai-Yingjie "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [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 core ") +- [Balamurugan P (@balamurugan1603)](https://github.com/balamurugan1603 "1 total commits to the Home Assistant orga: +1 commit to supervisor +") - [Balazs Keresztury (@belidzs)](https://github.com/belidzs "7 total commits to the Home Assistant orga: 3 commits to home-assistant.io 3 commits to core @@ -1778,21 +2434,27 @@ This page contains a list of people who have contributed in one way or another t 8 commits to core 1 commit to home-assistant.io ") +- [balk77 (@balk77)](https://github.com/balk77 "1 total commits to the Home Assistant orga: +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 ") - [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 "9 total commits to the Home Assistant orga: -4 commits to home-assistant.io -4 commits to core -1 commit to brands +- [Baptiste Candellier (@outadoc)](https://github.com/outadoc "12 total commits to the Home Assistant orga: +5 commits to home-assistant.io +5 commits to core +2 commits to brands ") - [Baptiste Lecocq (@tiste)](https://github.com/tiste "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io 2 commits to core ") +- [Baptiste Moraine (@bmoraine)](https://github.com/bmoraine "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Baptiste Poirriez (@bpoirriez)](https://github.com/bpoirriez "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to core @@ -1800,18 +2462,31 @@ This page contains a list of people who have contributed in one way or another t - [Baran Kaynak (@barankaynak)](https://github.com/barankaynak "1 total commits to the Home Assistant orga: 1 commit to frontend ") +- [barleybobs (@barleybobs)](https://github.com/barleybobs "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [barney (@barneyman)](https://github.com/barneyman "1 total commits to the Home Assistant orga: +1 commit to brands +") - [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 "18 total commits to the Home Assistant orga: -12 commits to core -3 commits to netdisco -3 commits to home-assistant.io +- [Barry Quiel (@quielb)](https://github.com/quielb "3 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to developers.home-assistant +1 commit to core +") +- [Barry Williams (@bazwilliams)](https://github.com/bazwilliams "2 total commits to the Home Assistant orga: +2 commits to core ") - [Barrysv (@Barrysv)](https://github.com/Barrysv "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Bart Janssens (@barche)](https://github.com/barche "1 total commits to the Home Assistant orga: +1 commit to core +") - [Bart S (@zBart)](https://github.com/zBart "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -1823,15 +2498,25 @@ This page contains a list of people who have contributed in one way or another t - [bart\-roos (@bart-roos)](https://github.com/bart-roos "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Bartek Celary (@semiquasi)](https://github.com/semiquasi "1 total commits to the Home Assistant orga: +- [Bartek Celary (@bcelary)](https://github.com/bcelary "2 total commits to the Home Assistant orga: 1 commit to home-assistant.io +1 commit to core +") +- [Bartosz Biłas (@bbilas)](https://github.com/bbilas "88 total commits to the Home Assistant orga: +88 commits to buildroot ") - [Bartosz Fenski (@fenio)](https://github.com/fenio "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Bartosz Gołaszewski (@brgl)](https://github.com/brgl "67 total commits to the Home Assistant orga: +67 commits to buildroot +") - [Baruch Rothkoff (@baruchiro)](https://github.com/baruchiro "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Baruch Siach (@baruchsiach)](https://github.com/baruchsiach "1243 total commits to the Home Assistant orga: +1243 commits to buildroot +") - [Bas (@basbl)](https://github.com/basbl "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -1840,12 +2525,12 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") -- [Bas Nijholt (@basnijholt)](https://github.com/basnijholt "209 total commits to the Home Assistant orga: -190 commits to core +- [Bas Nijholt (@basnijholt)](https://github.com/basnijholt "210 total commits to the Home Assistant orga: +191 commits to core 16 commits to home-assistant.io -1 commit to developers.home-assistant -1 commit to supervised-installer 1 commit to frontend +1 commit to supervised-installer +1 commit to developers.home-assistant ") - [Bas Schipper (@basschipper)](https://github.com/basschipper "10 total commits to the Home Assistant orga: 8 commits to core @@ -1857,16 +2542,28 @@ This page contains a list of people who have contributed in one way or another t - [Bas Veeling (@basveeling)](https://github.com/basveeling "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Bascht74 (@Bascht74)](https://github.com/Bascht74 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Bashir (@Brahmah)](https://github.com/Brahmah "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to frontend ") +- [bashworth (@bash-worth)](https://github.com/bash-worth "1 total commits to the Home Assistant orga: +1 commit to core +") - [basst22778 (@basst22778)](https://github.com/basst22778 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Bastian Stegmann (@stegmannb)](https://github.com/stegmannb "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [bastien (@cbastienbaron)](https://github.com/cbastienbaron "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Bastien Gautier (@bastgau)](https://github.com/bastgau "2 total commits to the Home Assistant orga: +2 commits to core +") - [bastshoes (@bastshoes)](https://github.com/bastshoes "6 total commits to the Home Assistant orga: 3 commits to core 2 commits to home-assistant.io @@ -1912,9 +2609,14 @@ This page contains a list of people who have contributed in one way or another t - [bejoyjaison (@bejoyjaison)](https://github.com/bejoyjaison "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Ben (@benleb)](https://github.com/benleb "20 total commits to the Home Assistant orga: -9 commits to home-assistant.io -9 commits to core +- [belgianrubs (@belgianrubs)](https://github.com/belgianrubs "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Ben (@benleb)](https://github.com/benleb "31 total commits to the Home Assistant orga: +15 commits to core +10 commits to home-assistant.io +2 commits to wheels-custom-integrations +2 commits to brands 1 commit to home-assistant-notebooks 1 commit to developers.home-assistant ") @@ -1935,6 +2637,9 @@ This page contains a list of people who have contributed in one way or another t - [Ben Bennett (@knobunc)](https://github.com/knobunc "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Ben Boeckel (@mathstuf)](https://github.com/mathstuf "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Ben Carlsson (@glacials)](https://github.com/glacials "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") @@ -1945,6 +2650,16 @@ This page contains a list of people who have contributed in one way or another t - [Ben Doerr (@bendoerr)](https://github.com/bendoerr "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Ben Edmunds (@Tigger2014)](https://github.com/Tigger2014 "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Ben Felton (@itjedi42)](https://github.com/itjedi42 "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Ben Hale (@nebhale)](https://github.com/nebhale "1 total commits to the Home Assistant orga: +1 commit to core +") - [Ben Krajancic (@fantasmos)](https://github.com/fantasmos "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -1966,16 +2681,26 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [Ben Randall (@veleek)](https://github.com/veleek "8 total commits to the Home Assistant orga: 6 commits to core -1 commit to home-assistant.io +2 commits to home-assistant.io ") - [Ben Schattinger (@lights0123)](https://github.com/lights0123 "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Ben Shaner (@bens545)](https://github.com/bens545 "3 total commits to the Home Assistant orga: +2 commits to brands +1 commit to home-assistant.io +") +- [Ben Shelton (@beshelto)](https://github.com/beshelto "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [Ben Spoon (@spoonben)](https://github.com/spoonben "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ben Stolovitz (@citelao)](https://github.com/citelao "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 frontend ") @@ -1983,6 +2708,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to home-assistant.io ") +- [ben wal (@benwalio)](https://github.com/benwalio "1 total commits to the Home Assistant orga: +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 ") @@ -2001,22 +2729,38 @@ This page contains a list of people who have contributed in one way or another t - [Benedikt Böhm (@hollow)](https://github.com/hollow "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [Benjamin (@bbr111)](https://github.com/bbr111 "1 total commits to the Home Assistant orga: +1 commit to core +") - [Benjamin Bryan (@ahnooie)](https://github.com/ahnooie "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Benjamin Calderon (@benjcal)](https://github.com/benjcal "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Benjamin Granzow (@Dysman)](https://github.com/Dysman "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Benjamin Kamath (@kamathba)](https://github.com/kamathba "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Benjamin Parzella (@bparzella)](https://github.com/bparzella "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") +- [Benjamin RAIBAUD (@braibaud)](https://github.com/braibaud "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Benjamin Richter (@kilrogg)](https://github.com/kilrogg "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Benjamin Schmid (@bentolor)](https://github.com/bentolor "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Benjamin Staffin (@benley)](https://github.com/benley "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Benjamin Stürmer (@thebino)](https://github.com/thebino "1 total commits to the Home Assistant orga: +- [Benjamin Stürmer (@thebino)](https://github.com/thebino "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations 1 commit to brands ") - [Benji (@bbbenji)](https://github.com/bbbenji "3 total commits to the Home Assistant orga: @@ -2025,6 +2769,9 @@ This page contains a list of people who have contributed in one way or another t - [Bennett Kanuka (@bkanuka)](https://github.com/bkanuka "8 total commits to the Home Assistant orga: 8 commits to pyharmony ") +- [Benny (@Benny-Git)](https://github.com/Benny-Git "1 total commits to the Home Assistant orga: +1 commit to companion.home-assistant +") - [Benny de Leeuw (@leeuwte)](https://github.com/leeuwte "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -2036,6 +2783,16 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to home-assistant.io ") +- [Benoît Mauduit (@be-neth)](https://github.com/be-neth "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Benoît Thébaudeau (@bthebaudeau)](https://github.com/bthebaudeau "49 total commits to the Home Assistant orga: +49 commits to buildroot +") +- [BenPru (@BenPru)](https://github.com/BenPru "3 total commits to the Home Assistant orga: +2 commits to brands +1 commit to wheels-custom-integrations +") - [bepsoccer (@bepsoccer)](https://github.com/bepsoccer "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") @@ -2045,9 +2802,15 @@ This page contains a list of people who have contributed in one way or another t - [berightback\-dev (@berightback-dev)](https://github.com/berightback-dev "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Bernardo Loureiro (@bernardolm)](https://github.com/bernardolm "1 total commits to the Home Assistant orga: +1 commit to supervised-installer +") - [Bernardus Jansen (@bajansen)](https://github.com/bajansen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Bernd Amend (@BerndAmend)](https://github.com/BerndAmend "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Bernd Schlapsi (@brot)](https://github.com/brot "5 total commits to the Home Assistant orga: 5 commits to feedparser ") @@ -2055,8 +2818,19 @@ This page contains a list of people who have contributed in one way or another t 4 commits to home-assistant.io 3 commits to core ") -- [Berni Moses (@bernimoses)](https://github.com/bernimoses "3 total commits to the Home Assistant orga: -3 commits to core +- [Bernhard Hecker (@bairnhard)](https://github.com/bairnhard "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Berni Moses (@bernimoses)](https://github.com/bernimoses "4 total commits to the Home Assistant orga: +4 commits to core +") +- [Bert Outtier (@bertouttier)](https://github.com/bertouttier "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Bert Roos (@Bert-R)](https://github.com/Bert-R "3 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +1 commit to core +1 commit to home-assistant.io ") - [Bertbert (@bertbert72)](https://github.com/bertbert72 "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -2065,13 +2839,16 @@ This page contains a list of people who have contributed in one way or another t - [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 "18 total commits to the Home Assistant orga: -8 commits to core -7 commits to home-assistant.io +- [bestlibre (@bestlibre)](https://github.com/bestlibre "20 total commits to the Home Assistant orga: +9 commits to core +8 commits to home-assistant.io 1 commit to hassio-build 1 commit to supervisor 1 commit to frontend ") +- [Beta\-Computer (@Beta-Computer)](https://github.com/Beta-Computer "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") - [bevosangryghost (@bevosangryghost)](https://github.com/bevosangryghost "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -2081,7 +2858,17 @@ 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 "3 total commits to the Home Assistant orga: +- [bheading (@bheading)](https://github.com/bheading "20 total commits to the Home Assistant orga: +20 commits to buildroot +") +- [Biagio Montaruli (@biagiom)](https://github.com/biagiom "6 total commits to the Home Assistant orga: +6 commits to buildroot +") +- [Big Mike (@mikelawrence)](https://github.com/mikelawrence "1 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +") +- [bigbadblunt (@bigbadblunt)](https://github.com/bigbadblunt "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 @@ -2100,6 +2887,9 @@ This page contains a list of people who have contributed in one way or another t - [Bike Dude (@hackacad)](https://github.com/hackacad "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Bilal Wasim (@bwasim)](https://github.com/bwasim "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [Bill \(William\) O'Neill (@woneill)](https://github.com/woneill "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -2110,14 +2900,24 @@ This page contains a list of people who have contributed in one way or another t 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: +- [billsq (@billsq)](https://github.com/billsq "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") +- [Billy Stevenson (@Sotolotl)](https://github.com/Sotolotl "3 total commits to the Home Assistant orga: +1 commit to brands 1 commit to core +1 commit to home-assistant.io +") +- [Bin Meng (@lbmeng)](https://github.com/lbmeng "5 total commits to the Home Assistant orga: +5 commits to buildroot ") - [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: +- [binsentsu (@binsentsu)](https://github.com/binsentsu "2 total commits to the Home Assistant orga: 1 commit to brands +1 commit to home-assistant.io ") - [BioSehnsucht (@BioSehnsucht)](https://github.com/BioSehnsucht "14 total commits to the Home Assistant orga: 8 commits to home-assistant.io @@ -2127,8 +2927,8 @@ This page contains a list of people who have contributed in one way or another t - [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 +- [Bjarne Riis (@briis)](https://github.com/briis "10 total commits to the Home Assistant orga: +8 commits to brands 2 commits to wheels-custom-integrations ") - [Bjarni Ivarsson (@bjarniivarsson)](https://github.com/bjarniivarsson "8 total commits to the Home Assistant orga: @@ -2156,12 +2956,18 @@ This page contains a list of people who have contributed in one way or another t - [Björn Victor (@bictorv)](https://github.com/bictorv "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Bjørn Forsman (@bjornfor)](https://github.com/bjornfor "24 total commits to the Home Assistant orga: +24 commits to buildroot +") - [Bjørn Snoen (@bjornsnoen)](https://github.com/bjornsnoen "1 total commits to the Home Assistant orga: 1 commit to core ") - [bkcberry (@bkcberry)](https://github.com/bkcberry "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [bkuhls (@bkuhls)](https://github.com/bkuhls "4622 total commits to the Home Assistant orga: +4622 commits to buildroot +") - [bl8rnr (@bl8rnr)](https://github.com/bl8rnr "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -2180,8 +2986,12 @@ This page contains a list of people who have contributed in one way or another t - [blackwind (@blackwind)](https://github.com/blackwind "2 total commits to the Home Assistant orga: 2 commits to core ") -- [blakadder (@blakadder)](https://github.com/blakadder "5 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [blair (@blairun)](https://github.com/blairun "1 total commits to the Home Assistant orga: +1 commit to frontend +") +- [blakadder (@blakadder)](https://github.com/blakadder "7 total commits to the Home Assistant orga: +5 commits to home-assistant.io +1 commit to alerts.home-assistant.io 1 commit to brands ") - [Blake (@sreknob)](https://github.com/sreknob "1 total commits to the Home Assistant orga: @@ -2195,13 +3005,27 @@ This page contains a list of people who have contributed in one way or another t - [Blanyal D'Souza (@blanyal)](https://github.com/blanyal "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [blastoise186 (@blastoise186)](https://github.com/blastoise186 "2 total commits to the Home Assistant orga: +2 commits to core +") +- [blawford (@blawford)](https://github.com/blawford "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [bleader (@bleader)](https://github.com/bleader "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Blear (@Blear)](https://github.com/Blear "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Blender3D (@Blender3D)](https://github.com/Blender3D "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [blhoward2 (@blhoward2)](https://github.com/blhoward2 "4 total commits to the Home Assistant orga: +2 commits to alerts.home-assistant.io +2 commits to home-assistant.io +") - [blindlight86 (@blindlight86)](https://github.com/blindlight86 "3 total commits to the Home Assistant orga: 2 commits to brands 1 commit to wheels-custom-integrations @@ -2209,9 +3033,15 @@ This page contains a list of people who have contributed in one way or another t - [blissarts (@blissarts)](https://github.com/blissarts "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") +- [Blomme\, Maarten (@mblfir)](https://github.com/mblfir "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [bluestripe (@bluestripe)](https://github.com/bluestripe "1 total commits to the Home Assistant orga: 1 commit to core ") +- [bmaier\-col (@bmaier-col)](https://github.com/bmaier-col "14 total commits to the Home Assistant orga: +14 commits to buildroot +") - [Bo (@bohmandan)](https://github.com/bohmandan "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") @@ -2239,8 +3069,8 @@ This page contains a list of people who have contributed in one way or another t - [bobnwk (@bobnwk)](https://github.com/bobnwk "1 total commits to the Home Assistant orga: 1 commit to core ") -- [boc\-the\-git (@boc-the-git)](https://github.com/boc-the-git "8 total commits to the Home Assistant orga: -8 commits to home-assistant.io +- [boc\-the\-git (@boc-the-git)](https://github.com/boc-the-git "13 total commits to the Home Assistant orga: +13 commits to home-assistant.io ") - [Boced66 (@boced66)](https://github.com/boced66 "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io @@ -2248,6 +3078,9 @@ 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 Radulescu (@bogdanr)](https://github.com/bogdanr "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [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 @@ -2270,12 +3103,13 @@ This page contains a list of people who have contributed in one way or another t - [boradwell (@boradwell)](https://github.com/boradwell "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Boris Gulay (@BoresXP)](https://github.com/BoresXP "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Boris Gulay (@BoresXP)](https://github.com/BoresXP "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to core ") -- [Boris K (@bokub)](https://github.com/bokub "14 total commits to the Home Assistant orga: +- [Boris K (@bokub)](https://github.com/bokub "15 total commits to the Home Assistant orga: 7 commits to home-assistant.io -6 commits to core +7 commits to core 1 commit to brands ") - [Boris Kaplounovsky (@bskaplou)](https://github.com/bskaplou "4 total commits to the Home Assistant orga: @@ -2286,13 +3120,15 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io 1 commit to core ") -- [bouni (@Bouni)](https://github.com/Bouni "86 total commits to the Home Assistant orga: -81 commits to core -5 commits to home-assistant.io +- [bouni (@Bouni)](https://github.com/Bouni "113 total commits to the Home Assistant orga: +82 commits to core +14 commits to brands +12 commits to home-assistant.io +5 commits to wheels-custom-integrations ") -- [Bouwe Westerdijk (@bouwew)](https://github.com/bouwew "16 total commits to the Home Assistant orga: -12 commits to core -4 commits to home-assistant.io +- [Bouwe Westerdijk (@bouwew)](https://github.com/bouwew "27 total commits to the Home Assistant orga: +21 commits to core +6 commits to home-assistant.io ") - [Boyi C (@fanthos)](https://github.com/fanthos "25 total commits to the Home Assistant orga: 17 commits to frontend @@ -2320,6 +3156,9 @@ This page contains a list of people who have contributed in one way or another t - [brad (@oakbrad)](https://github.com/oakbrad "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Brad Ackerman (@backerman)](https://github.com/backerman "1 total commits to the Home Assistant orga: +1 commit to devcontainer +") - [Brad Buran (@bburan)](https://github.com/bburan "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -2342,6 +3181,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Brad Love (@b-rad-NDi)](https://github.com/b-rad-NDi "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [Brad Sanders (@thebradleysanders)](https://github.com/thebradleysanders "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") @@ -2354,6 +3196,9 @@ This page contains a list of people who have contributed in one way or another t - [braddparker (@braddparker)](https://github.com/braddparker "1 total commits to the Home Assistant orga: 1 commit to core ") +- [bradford barr (@bradfordbarr)](https://github.com/bradfordbarr "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [Bradley Nelson (@BCNelson)](https://github.com/BCNelson "5 total commits to the Home Assistant orga: 2 commits to android 1 commit to developers.home-assistant @@ -2366,34 +3211,49 @@ This page contains a list of people who have contributed in one way or another t - [BradleyDHobbs (@BradleyDHobbs)](https://github.com/BradleyDHobbs "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Brady Holt (@bradymholt)](https://github.com/bradymholt "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Brady Rosino (@BradyRosino)](https://github.com/BradyRosino "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Brahma Fear (@brahmafear)](https://github.com/brahmafear "8 total commits to the Home Assistant orga: 8 commits to home-assistant.io ") +- [Brainik (@Brainik)](https://github.com/Brainik "9 total commits to the Home Assistant orga: +9 commits to buildroot +") +- [Bram Gerritsen (@bramstroker)](https://github.com/bramstroker "8 total commits to the Home Assistant orga: +3 commits to core +2 commits to brands +2 commits to home-assistant.io +1 commit to wheels-custom-integrations +") - [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 "1652 total commits to the Home Assistant orga: -1222 commits to frontend -331 commits to core -42 commits to home-assistant.io -12 commits to home-assistant-js-websocket -10 commits to my.home-assistant.io +- [Bram Kragten (@bramkragten)](https://github.com/bramkragten "2630 total commits to the Home Assistant orga: +1951 commits to frontend +499 commits to core +58 commits to home-assistant.io +36 commits to my.home-assistant.io +21 commits to home-assistant-js-websocket +18 commits to analytics.home-assistant.io +13 commits to developers.home-assistant 8 commits to supervisor -8 commits to developers.home-assistant -4 commits to android +7 commits to android 4 commits to wheels-custom-integrations +2 commits to hass-release 2 commits to addons 2 commits to operating-system 2 commits to probot-home-assistant +2 commits to alerts.home-assistant.io 1 commit to home-assistant-notebooks 1 commit to assets +1 commit to version 1 commit to people -1 commit to alerts.home-assistant.io 1 commit to brands ") - [Bram Mittendorff (@brammittendorff)](https://github.com/brammittendorff "1 total commits to the Home Assistant orga: @@ -2412,28 +3272,44 @@ This page contains a list of people who have contributed in one way or another t - [Brandon Corry (@brandoncorry)](https://github.com/brandoncorry "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Brandon Davidson (@brandond)](https://github.com/brandond "4 total commits to the Home Assistant orga: +- [Brandon Davidson (@brandond)](https://github.com/brandond "3 total commits to the Home Assistant orga: 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 Rothweiler (@bdr99)](https://github.com/bdr99 "2 total commits to the Home Assistant orga: +- [Brandon Rothweiler (@bdr99)](https://github.com/bdr99 "42 total commits to the Home Assistant orga: +29 commits to core +10 commits to home-assistant.io +1 commit to frontend +1 commit to developers.home-assistant 1 commit to brands -1 commit to core +") +- [Brandon Valentine (@bval)](https://github.com/bval "1 total commits to the Home Assistant orga: +1 commit to addons ") - [Brandon Weeks (@brandonweeks)](https://github.com/brandonweeks "3 total commits to the Home Assistant orga: 3 commits to core ") +- [brandondb1 (@brandondb1)](https://github.com/brandondb1 "1 total commits to the Home Assistant orga: +1 commit to brands +") - [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: +- [Brant Knudson (@brantlk)](https://github.com/brantlk "3 total commits to the Home Assistant orga: 2 commits to core +1 commit to home-assistant.io ") -- [brburns (@brburns)](https://github.com/brburns "2 total commits to the Home Assistant orga: -2 commits to netdisco +- [Brazen00 (@Brazen00)](https://github.com/Brazen00 "1 total commits to the Home Assistant orga: +1 commit to alerts.home-assistant.io +") +- [BreakingBread0 (@BreakingBread0)](https://github.com/BreakingBread0 "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [breakthestatic (@breakthestatic)](https://github.com/breakthestatic "1 total commits to the Home Assistant orga: +1 commit to core ") - [brefra (@brefra)](https://github.com/brefra "16 total commits to the Home Assistant orga: 9 commits to core @@ -2453,6 +3329,12 @@ This page contains a list of people who have contributed in one way or another t - [Brendan Berg (@captainnapalm)](https://github.com/captainnapalm "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Brendan Dahl (@dahlb)](https://github.com/dahlb "3 total commits to the Home Assistant orga: +3 commits to brands +") +- [Brendan M\. Sleight (@bmsleight)](https://github.com/bmsleight "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Brendan Tobolaski (@btobolaski)](https://github.com/btobolaski "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -2471,11 +3353,20 @@ This page contains a list of people who have contributed in one way or another t - [Brendon Go (@brendongo)](https://github.com/brendongo "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Breno Lima (@brenolimanxp)](https://github.com/brenolimanxp "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Brent Generous (@bgenerous-impinj)](https://github.com/bgenerous-impinj "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Brent Kerlin (@bkerlin)](https://github.com/bkerlin "1 total commits to the Home Assistant orga: 1 commit to hassio-build ") -- [Brent Saltzman (@brent20)](https://github.com/brent20 "9 total commits to the Home Assistant orga: -9 commits to home-assistant.io +- [Brent Petit (@bjpetit)](https://github.com/bjpetit "7 total commits to the Home Assistant orga: +7 commits to core +") +- [Brent Saltzman (@brent20)](https://github.com/brent20 "10 total commits to the Home Assistant orga: +10 commits to home-assistant.io ") - [Brenton (@rbrenton)](https://github.com/rbrenton "1 total commits to the Home Assistant orga: 1 commit to operating-system @@ -2484,9 +3375,16 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") -- [Brett (@Bre77)](https://github.com/Bre77 "15 total commits to the Home Assistant orga: -12 commits to core +- [Brett Adams (@Bre77)](https://github.com/Bre77 "46 total commits to the Home Assistant orga: +38 commits to core +6 commits to home-assistant.io 2 commits to brands +") +- [Brett Hiltbrand (@bjhiltbrand)](https://github.com/bjhiltbrand "3 total commits to the Home Assistant orga: +2 commits to brands +1 commit to wheels-custom-integrations +") +- [Brett Lammers (@BALSwim50W)](https://github.com/BALSwim50W "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Brett T\. Warden (@bwarden)](https://github.com/bwarden "7 total commits to the Home Assistant orga: @@ -2495,6 +3393,12 @@ This page contains a list of people who have contributed in one way or another t - [Brian (@imbrianj)](https://github.com/imbrianj "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Brian Baidal (@drakhart)](https://github.com/drakhart "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Brian Beattie (@beattie)](https://github.com/beattie "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Brian Cribbs (@cribbstechnologies)](https://github.com/cribbstechnologies "44 total commits to the Home Assistant orga: 27 commits to core 15 commits to home-assistant.io @@ -2503,6 +3407,11 @@ This page contains a list of people who have contributed in one way or another t - [Brian Dunlay (@bdunlay)](https://github.com/bdunlay "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Brian Egge (@brianegge)](https://github.com/brianegge "14 total commits to the Home Assistant orga: +10 commits to core +3 commits to home-assistant.io +1 commit to brands +") - [Brian Fitzgerald (@Brianfit)](https://github.com/Brianfit "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -2532,43 +3441,66 @@ This page contains a list of people who have contributed in one way or another t - [Brian Karani Ndwiga (@rayrayndwiga)](https://github.com/rayrayndwiga "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Brian Kim (@bkrepo)](https://github.com/bkrepo "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Brian Kramer (@B-Kramer)](https://github.com/B-Kramer "1 total commits to the Home Assistant orga: +1 commit to companion.home-assistant +") - [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 "2 total commits to the Home Assistant orga: -1 commit to operating-system -1 commit to home-assistant.io +- [Brian O'Connor (@btoconnor)](https://github.com/btoconnor "1 total commits to the Home Assistant orga: +1 commit to core ") -- [Brian Rogers (@brg468)](https://github.com/brg468 "28 total commits to the Home Assistant orga: -20 commits to core +- [Brian Orpin (@borpin)](https://github.com/borpin "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to operating-system +") +- [Brian Redbeard (@brianredbeard)](https://github.com/brianredbeard "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [Brian Rogers (@brg468)](https://github.com/brg468 "32 total commits to the Home Assistant orga: +24 commits to core 8 commits to home-assistant.io ") - [Brian Torres\-Gil (@btorresgil)](https://github.com/btorresgil "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Brian Towles (@wonderslug)](https://github.com/wonderslug "4 total commits to the Home Assistant orga: -4 commits to core +- [Brian Towles (@wonderslug)](https://github.com/wonderslug "16 total commits to the Home Assistant orga: +11 commits to core +4 commits to home-assistant.io +1 commit to brands ") - [BrianWithAHat (@BrianWithAHat)](https://github.com/BrianWithAHat "2 total commits to the Home Assistant orga: 2 commits to core ") -- [Brig Lamoreaux (@briglx)](https://github.com/briglx "12 total commits to the Home Assistant orga: -9 commits to core -2 commits to home-assistant.io +- [Brig Lamoreaux (@briglx)](https://github.com/briglx "15 total commits to the Home Assistant orga: +11 commits to core +3 commits to home-assistant.io 1 commit to brands ") - [Brigham Brown (@brigham)](https://github.com/brigham "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Brint E\. Kriebel (@bekriebel)](https://github.com/bekriebel "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Britton Clapp (@britton-clapp)](https://github.com/britton-clapp "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [brkr19 (@brkr19)](https://github.com/brkr19 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [broadcasttechie (@broadcasttechie)](https://github.com/broadcasttechie "1 total commits to the Home Assistant orga: +1 commit to core +") - [Brock Allen (@brockallen)](https://github.com/brockallen "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Brock Williams (@cotcomsol)](https://github.com/cotcomsol "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [brode (@brode)](https://github.com/brode "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -2588,10 +3520,22 @@ This page contains a list of people who have contributed in one way or another t - [Bruce (@trux66)](https://github.com/trux66 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Bruce Howells (@BruceHowells)](https://github.com/BruceHowells "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Bruce Sheplan (@bshep)](https://github.com/bshep "2 total commits to the Home Assistant orga: +2 commits to core +") +- [brucemiranda (@brucemiranda)](https://github.com/brucemiranda "1 total commits to the Home Assistant orga: +1 commit to core +") - [BRUH Automation (@bruhautomation)](https://github.com/bruhautomation "4 total commits to the Home Assistant orga: 3 commits to hassbian-scripts 1 commit to home-assistant.io ") +- [Bruno (@HVR88)](https://github.com/HVR88 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Bruno Binet (@bbinet)](https://github.com/bbinet "1 total commits to the Home Assistant orga: 1 commit to hassio-build ") @@ -2601,6 +3545,9 @@ This page contains a list of people who have contributed in one way or another t - [Bruno Furtado (@bmfurtado)](https://github.com/bmfurtado "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Bruno Maia (@queimadus)](https://github.com/queimadus "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [Bryan Berg (@berg)](https://github.com/berg "1 total commits to the Home Assistant orga: 1 commit to operating-system ") @@ -2621,14 +3568,15 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to 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 +- [Brynley McDonald (@ZephireNZ)](https://github.com/ZephireNZ "18 total commits to the Home Assistant orga: +8 commits to core +6 commits to home-assistant.io +3 commits to frontend 1 commit to brands ") -- [bsmappee (@bsmappee)](https://github.com/bsmappee "21 total commits to the Home Assistant orga: -17 commits to core -3 commits to home-assistant.io +- [bsmappee (@bsmappee)](https://github.com/bsmappee "35 total commits to the Home Assistant orga: +29 commits to core +5 commits to home-assistant.io 1 commit to brands ") - [Burningstone91 (@Burningstone91)](https://github.com/Burningstone91 "1 total commits to the Home Assistant orga: @@ -2644,15 +3592,31 @@ This page contains a list of people who have contributed in one way or another t 4 commits to home-assistant.io 1 commit to hassio-build ") +- [bvweerd (@bvweerd)](https://github.com/bvweerd "2 total commits to the Home Assistant orga: +2 commits to core +") - [bw3 (@bw3)](https://github.com/bw3 "1 total commits to the Home Assistant orga: 1 commit to core ") +- [bwduncan (@bwduncan)](https://github.com/bwduncan "4 total commits to the Home Assistant orga: +3 commits to core +1 commit to developers.home-assistant +") - [byte\-bender (@byte-bender)](https://github.com/byte-bender "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Béla Becker (@micsurin)](https://github.com/micsurin "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Børge Nordli (@bnordli)](https://github.com/bnordli "2 total commits to the Home Assistant orga: +2 commits to core +") - [Błażej Sowa (@bjsowa)](https://github.com/bjsowa "3 total commits to the Home Assistant orga: 3 commits to pi-gen ") +- [c0ffeeca7 (@c0ffeeca7)](https://github.com/c0ffeeca7 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [c727 (@c727)](https://github.com/c727 "244 total commits to the Home Assistant orga: 157 commits to frontend 54 commits to home-assistant.io @@ -2668,53 +3632,92 @@ This page contains a list of people who have contributed in one way or another t - [Cadi (@cadihowley)](https://github.com/cadihowley "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Cadsters (@Cadsters)](https://github.com/Cadsters "1 total commits to the Home Assistant orga: +1 commit to brands +") - [cadwal (@cadwal)](https://github.com/cadwal "1 total commits to the Home Assistant orga: 1 commit to supervisor ") - [cagnulein (@cagnulein)](https://github.com/cagnulein "6 total commits to the Home Assistant orga: 6 commits to core ") -- [caiosweet (@caiosweet)](https://github.com/caiosweet "3 total commits to the Home Assistant orga: -2 commits to brands +- [caiosweet (@caiosweet)](https://github.com/caiosweet "4 total commits to the Home Assistant orga: +3 commits to brands 1 commit to wheels-custom-integrations ") - [caius (@caiuspb)](https://github.com/caiuspb "3 total commits to the Home Assistant orga: 3 commits to core ") -- [Caleb (@finish06)](https://github.com/finish06 "9 total commits to the Home Assistant orga: -8 commits to core -1 commit to home-assistant.io -") - [Caleb (@calebhfaber)](https://github.com/calebhfaber "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Caleb Mah (@calebmah)](https://github.com/calebmah "9 total commits to the Home Assistant orga: -9 commits to home-assistant.io +- [Caleb Dunn (@finish06)](https://github.com/finish06 "9 total commits to the Home Assistant orga: +8 commits to core +1 commit to home-assistant.io +") +- [Caleb Mah (@calebmah)](https://github.com/calebmah "13 total commits to the Home Assistant orga: +12 commits to home-assistant.io +1 commit to core +") +- [Calin Crisan (@ccrisan)](https://github.com/ccrisan "3 total commits to the Home Assistant orga: +3 commits to buildroot ") - [callifo (@callifo)](https://github.com/callifo "1 total commits to the Home Assistant orga: 1 commit to frontend ") +- [Callum Powell (@Callum0x50)](https://github.com/Callum0x50 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Calvin (@VR29)](https://github.com/VR29 "2 total commits to the Home Assistant orga: 1 commit to developers.home-assistant 1 commit to home-assistant.io ") -- [Cameron Bulock (@cbulock)](https://github.com/cbulock "5 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Calvin Vette (@calvinvette)](https://github.com/calvinvette "1 total commits to the Home Assistant orga: +1 commit to operating-system +") +- [Cam Hutchison (@camh-)](https://github.com/camh- "12 total commits to the Home Assistant orga: +12 commits to buildroot +") +- [Cam Mannett (@cmannett85)](https://github.com/cmannett85 "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Cameron Bulock (@cbulock)](https://github.com/cbulock "4 total commits to the Home Assistant orga: 2 commits to core -1 commit to netdisco +2 commits to home-assistant.io ") - [Cameron Llewellyn (@camrun91)](https://github.com/camrun91 "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [Cameron Maclean (@BowsiePup)](https://github.com/BowsiePup "1 total commits to the Home Assistant orga: +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 core ") -- [capstan1 (@capstan1)](https://github.com/capstan1 "3 total commits to the Home Assistant orga: -2 commits to operating-system +- [Cameron Smith (@camcs1)](https://github.com/camcs1 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Can Geliş (@cangelis)](https://github.com/cangelis "1 total commits to the Home Assistant orga: +1 commit to core +") +- [candreacchio (@candreacchio)](https://github.com/candreacchio "1 total commits to the Home Assistant orga: +1 commit to core +") +- [cansl (@cansl)](https://github.com/cansl "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [CantankerousBullMoose (@CantankerousBullMoose)](https://github.com/CantankerousBullMoose "1 total commits to the Home Assistant orga: +1 commit to core +") +- [capstan1 (@capstan1)](https://github.com/capstan1 "4 total commits to the Home Assistant orga: +3 commits to operating-system +1 commit to home-assistant.io +") +- [Captain Haddock (@ca-haddock)](https://github.com/ca-haddock "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Captone Habiyaremye (@Liopun)](https://github.com/Liopun "1 total commits to the Home Assistant orga: @@ -2727,41 +3730,69 @@ This page contains a list of people who have contributed in one way or another t - [Carl Johnson (@carlivar)](https://github.com/carlivar "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Carlo Costanzo (@CCOSTAN)](https://github.com/CCOSTAN "103 total commits to the Home Assistant orga: -95 commits to home-assistant.io -5 commits to core -1 commit to homebridge-homeassistant -1 commit to hassbian-scripts -1 commit to fabric-home-assistant +- [Carl Sutton (@dogmatic69)](https://github.com/dogmatic69 "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Carlo Caione (@carlocaione)](https://github.com/carlocaione "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [Carlo Costanzo (@CCOSTAN)](https://github.com/CCOSTAN "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [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 Garcia Saura (@CarlosGS)](https://github.com/CarlosGS "6 total commits to the Home Assistant orga: +3 commits to frontend +2 commits to home-assistant.io +1 commit to addons +") - [Carlos Giraldo (@cgiraldo)](https://github.com/cgiraldo "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Carlos Gomes (@cgomesu)](https://github.com/cgomesu "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +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 Quijano (@cquijano)](https://github.com/cquijano "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Carlos Rodríguez (@crguez)](https://github.com/crguez "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Carlos Santos (@casantos)](https://github.com/casantos "108 total commits to the Home Assistant orga: +108 commits to buildroot +") - [carlosmgr (@carlosmgr)](https://github.com/carlosmgr "6 total commits to the Home Assistant orga: 6 commits to core ") +- [Carmen Sanchez (@soundch3z)](https://github.com/soundch3z "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Carolin (@linsvensson)](https://github.com/linsvensson "1 total commits to the Home Assistant orga: +1 commit to brands +") - [carras (@carras)](https://github.com/carras "1 total commits to the Home Assistant orga: 1 commit to operating-system ") - [Carsten Igel (@carstencodes)](https://github.com/carstencodes "1 total commits to the Home Assistant orga: 1 commit to docker ") -- [carstenschroeder (@carstenschroeder)](https://github.com/carstenschroeder "17 total commits to the Home Assistant orga: -14 commits to core +- [Carsten Schoenert (@tijuca)](https://github.com/tijuca "109 total commits to the Home Assistant orga: +106 commits to libcoap +3 commits to buildroot +") +- [carstenschroeder (@carstenschroeder)](https://github.com/carstenschroeder "25 total commits to the Home Assistant orga: +21 commits to core +2 commits to home-assistant.io 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 @@ -2770,8 +3801,8 @@ This page contains a list of people who have contributed in one way or another t - [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 "4 total commits to the Home Assistant orga: -2 commits to supervisor +- [Casper (@casperklein)](https://github.com/casperklein "5 total commits to the Home Assistant orga: +3 commits to supervisor 1 commit to core 1 commit to home-assistant.io ") @@ -2779,15 +3810,18 @@ This page contains a list of people who have contributed in one way or another t 1 commit to brands 1 commit to home-assistant.io ") -- [Casper Weiss Bang (@C0DK)](https://github.com/C0DK "1 total commits to the Home Assistant orga: -1 commit to core -") - [Caswell1000 (@Caswell1000)](https://github.com/Caswell1000 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Cathy M (@AddMoreLimes)](https://github.com/AddMoreLimes "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [caz0075 (@caz0075)](https://github.com/caz0075 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [cbhiii (@cbhiii)](https://github.com/cbhiii "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") - [cburgess (@cburgess)](https://github.com/cburgess "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -2795,10 +3829,16 @@ 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 ") -- [cdheiser (@cdheiser)](https://github.com/cdheiser "5 total commits to the Home Assistant orga: -4 commits to core +- [cdheiser (@cdheiser)](https://github.com/cdheiser "7 total commits to the Home Assistant orga: +6 commits to core 1 commit to home-assistant.io ") +- [cdnninja (@cdnninja)](https://github.com/cdnninja "1 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +") +- [cdpuk (@cdpuk)](https://github.com/cdpuk "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Cedric Gatay (@CedricGatay)](https://github.com/CedricGatay "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -2834,6 +3874,9 @@ This page contains a list of people who have contributed in one way or another t - [Cezar Sá Espinola (@cezarsa)](https://github.com/cezarsa "2 total commits to the Home Assistant orga: 2 commits to core ") +- [cfreeze (@cfreeze)](https://github.com/cfreeze "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Chad (@chadlyy)](https://github.com/chadlyy "1 total commits to the Home Assistant orga: 1 commit to brands ") @@ -2849,12 +3892,18 @@ This page contains a list of people who have contributed in one way or another t - [Chaly Flavour (@ChalyFlavour)](https://github.com/ChalyFlavour "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [chammp (@chammp)](https://github.com/chammp "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 core ") - [chanders (@chanders)](https://github.com/chanders "2 total commits to the Home Assistant orga: 2 commits to hadashboard ") +- [Changming Huang (@huangcm0101)](https://github.com/huangcm0101 "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Chao (@chaoranxie)](https://github.com/chaoranxie "2 total commits to the Home Assistant orga: 2 commits to core ") @@ -2868,22 +3917,45 @@ This page contains a list of people who have contributed in one way or another t 12 commits to core 7 commits to home-assistant.io ") -- [Charles Garwood (@cgarwood)](https://github.com/cgarwood "126 total commits to the Home Assistant orga: -60 commits to core -34 commits to frontend -26 commits to home-assistant.io +- [Charles Duffy (@charles-dyfis-net)](https://github.com/charles-dyfis-net "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Charles Garwood (@cgarwood)](https://github.com/cgarwood "171 total commits to the Home Assistant orga: +72 commits to core +58 commits to frontend +32 commits to home-assistant.io +3 commits to brands 2 commits to addons -2 commits to brands 1 commit to people 1 commit to wheels-custom-integrations +1 commit to alerts.home-assistant.io +1 commit to developers.home-assistant +") +- [Charles Hardin (@ckhardin)](https://github.com/ckhardin "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Charles Manning (@cdhmanning)](https://github.com/cdhmanning "7 total commits to the Home Assistant orga: +7 commits to buildroot ") - [Charles Spirakis (@srcLurker)](https://github.com/srcLurker "8 total commits to the Home Assistant orga: 5 commits to core 3 commits to home-assistant.io ") +- [CharlesGillanders (@CharlesGillanders)](https://github.com/CharlesGillanders "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Charlie Fish (@fishcharlie)](https://github.com/fishcharlie "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Charlie Turner (@charlie-ht)](https://github.com/charlie-ht "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [Chase (@ab3lson)](https://github.com/ab3lson "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") +- [ChaseCares (@ChaseCares)](https://github.com/ChaseCares "1 total commits to the Home Assistant orga: +1 commit 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 ") @@ -2893,9 +3965,25 @@ This page contains a list of people who have contributed in one way or another t - [Chema García (@sch3m4)](https://github.com/sch3m4 "1 total commits to the Home Assistant orga: 1 commit to core ") +- [chemaaa (@chemaaa)](https://github.com/chemaaa "3 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core +1 commit to home-assistant.io +") +- [Chen\-IL (@Chen-IL)](https://github.com/Chen-IL "6 total commits to the Home Assistant orga: +5 commits to core +1 commit to home-assistant.io +") +- [cheng2wei (@cheng2wei)](https://github.com/cheng2wei "2 total commits to the Home Assistant orga: +2 commits to core +") - [Cheong Yip (@wingy3181)](https://github.com/wingy3181 "1 total commits to the Home Assistant orga: 1 commit to core ") +- [ChevySSinSD (@ChevySSinSD)](https://github.com/ChevySSinSD "55 total commits to the Home Assistant orga: +34 commits to brands +21 commits to home-assistant.io +") - [chewbh (@chewbh)](https://github.com/chewbh "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -2908,35 +3996,49 @@ This page contains a list of people who have contributed in one way or another t - [chierichetto (@erlendsellie)](https://github.com/erlendsellie "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Chih\-Min Chao (@cmchao)](https://github.com/cmchao "25 total commits to the Home Assistant orga: +25 commits to buildroot +") +- [chises (@chises)](https://github.com/chises "1 total commits to the Home Assistant orga: +1 commit to brands +") - [chknetsc (@chknetsc)](https://github.com/chknetsc "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [chocomega (@chocomega)](https://github.com/chocomega "1 total commits to the Home Assistant orga: 1 commit to core ") +- [ChopperRob (@ChopperRob)](https://github.com/ChopperRob "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [choss (@choss)](https://github.com/choss "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io 2 commits to core ") -- [chpego (@chpego)](https://github.com/chpego "5 total commits to the Home Assistant orga: -2 commits to core +- [Chouffy (@Chouffy)](https://github.com/Chouffy "5 total commits to the Home Assistant orga: +3 commits to wheels-custom-integrations +2 commits to brands +") +- [chpego (@chpego)](https://github.com/chpego "13 total commits to the Home Assistant orga: +10 commits to core 2 commits to home-assistant.io 1 commit to companion.home-assistant ") -- [Chris (@firstof9)](https://github.com/firstof9 "34 total commits to the Home Assistant orga: -24 commits to core +- [Chris (@firstof9)](https://github.com/firstof9 "55 total commits to the Home Assistant orga: +42 commits to core 7 commits to home-assistant.io -2 commits to brands -1 commit to wheels-custom-integrations +3 commits to wheels-custom-integrations +3 commits to brands ") -- [Chris (@darthsebulba04)](https://github.com/darthsebulba04 "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Chris (@pandabear41)](https://github.com/pandabear41 "3 total commits to the Home Assistant orga: +2 commits to developers.home-assistant +1 commit to home-assistant.io ") - [Chris (@digitallyserviced)](https://github.com/digitallyserviced "2 total commits to the Home Assistant orga: 2 commits to core ") -- [Chris (@pandabear41)](https://github.com/pandabear41 "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 @@ -2951,6 +4053,15 @@ This page contains a list of people who have contributed in one way or another t - [Chris Baumgartner (@mchrisb03)](https://github.com/mchrisb03 "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Chris Brandt (@seebe)](https://github.com/seebe "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [Chris Browet (@koying)](https://github.com/koying "34 total commits to the Home Assistant orga: +14 commits to home-assistant.io +10 commits to core +8 commits to brands +2 commits to wheels-custom-integrations +") - [Chris Caron (@caronc)](https://github.com/caronc "12 total commits to the Home Assistant orga: 8 commits to core 2 commits to brands @@ -2975,6 +4086,9 @@ 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 Frederick (@cdf123)](https://github.com/cdf123 "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [Chris Halls (@challs)](https://github.com/challs "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -2984,12 +4098,12 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [Chris Helming (@CWhits)](https://github.com/CWhits "12 total commits to the Home Assistant orga: 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: -1 commit to netdisco +- [Chris Helming (@chelming)](https://github.com/chelming "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Chris Johnston (@Chris-Johnston)](https://github.com/Chris-Johnston "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io @@ -3009,6 +4123,9 @@ 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 Lesiak (@ChrisLesiak)](https://github.com/ChrisLesiak "8 total commits to the Home Assistant orga: +8 commits to buildroot +") - [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 @@ -3022,10 +4139,17 @@ This page contains a list of people who have contributed in one way or another t - [Chris Mulder (@chrisvis)](https://github.com/chrisvis "2 total commits to the Home Assistant orga: 2 commits to core ") -- [Chris Nesbitt\-Smith (@chrisns)](https://github.com/chrisns "3 total commits to the Home Assistant orga: +- [Chris Nesbitt\-Smith (@chrisns)](https://github.com/chrisns "4 total commits to the Home Assistant orga: 3 commits to open-zwave +1 commit to home-assistant.io ") -- [Chris Reichel (@creichel)](https://github.com/creichel "1 total commits to the Home Assistant orga: +- [Chris Packham (@cpackham)](https://github.com/cpackham "67 total commits to the Home Assistant orga: +67 commits to buildroot +") +- [Chris Petersen (@ex-nerd)](https://github.com/ex-nerd "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Chris Reichel (@xu-chris)](https://github.com/xu-chris "1 total commits to the Home Assistant orga: 1 commit to core ") - [Chris Romp (@ChrisRomp)](https://github.com/ChrisRomp "4 total commits to the Home Assistant orga: @@ -3036,19 +4160,19 @@ This page contains a list of people who have contributed in one way or another t - [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 "6 total commits to the Home Assistant orga: -6 commits to home-assistant.io +- [Chris Smart (@csmart)](https://github.com/csmart "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [Chris Soyars (@ctso)](https://github.com/ctso "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Chris Talkington (@ctalkington)](https://github.com/ctalkington "200 total commits to the Home Assistant orga: -178 commits to core -15 commits to home-assistant.io +- [Chris Talkington (@ctalkington)](https://github.com/ctalkington "260 total commits to the Home Assistant orga: +229 commits to core +24 commits to home-assistant.io 3 commits to brands 2 commits to developers.home-assistant -1 commit to architecture 1 commit to frontend +1 commit to architecture ") - [Chris Thorn (@chris-thorn)](https://github.com/chris-thorn "7 total commits to the Home Assistant orga: 7 commits to home-assistant.io @@ -3057,9 +4181,15 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Chris Turra (@cturra)](https://github.com/cturra "5 total commits to the Home Assistant orga: +5 commits to home-assistant.io +") - [Chris Van Humbeeck (@humbeecc)](https://github.com/humbeecc "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Chris van Marle (@qistoph)](https://github.com/qistoph "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Chris Vanclercq (@Vanclec)](https://github.com/Vanclec "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -3069,6 +4199,9 @@ This page contains a list of people who have contributed in one way or another t - [Chris Weiss (@chrwei)](https://github.com/chrwei "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Chris Zankel (@czankel)](https://github.com/czankel "12 total commits to the Home Assistant orga: +12 commits to buildroot +") - [chris669 (@chris669)](https://github.com/chris669 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -3076,15 +4209,19 @@ This page contains a list of people who have contributed in one way or another t 6 commits to core 5 commits to home-assistant.io ") +- [ChrisHaPunkt (@ChrisHaPunkt)](https://github.com/ChrisHaPunkt "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [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 "30 total commits to the Home Assistant orga: -21 commits to android +- [chriss158 (@chriss158)](https://github.com/chriss158 "61 total commits to the Home Assistant orga: +48 commits to android +5 commits to frontend 4 commits to mobile-apps-fcm-push -3 commits to frontend -1 commit to companion.home-assistant -1 commit to core +2 commits to companion.home-assistant +2 commits to core ") - [ChrisS85 (@ChrisS85)](https://github.com/ChrisS85 "1 total commits to the Home Assistant orga: 1 commit to hassio-build @@ -3092,6 +4229,10 @@ This page contains a list of people who have contributed in one way or another t - [ChrisTBarnes (@ChrisTBarnes)](https://github.com/ChrisTBarnes "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Christer Vestermark (@crallian)](https://github.com/crallian "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") - [christerr (@christerr)](https://github.com/christerr "3 total commits to the Home Assistant orga: 3 commits to open-zwave ") @@ -3106,12 +4247,15 @@ This page contains a list of people who have contributed in one way or another t - [Christian (@cwildt)](https://github.com/cwildt "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Christian Artin (@gravufo)](https://github.com/gravufo "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Christian Biamont (@chrillux)](https://github.com/chrillux "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to home-assistant.io ") -- [Christian Bilevits (@chrillebile)](https://github.com/chrillebile "7 total commits to the Home Assistant orga: -7 commits to core +- [Christian Bilevits (@chrillebile)](https://github.com/chrillebile "8 total commits to the Home Assistant orga: +8 commits to core ") - [Christian Brædstrup (@LinuxChristian)](https://github.com/LinuxChristian "9 total commits to the Home Assistant orga: 8 commits to core @@ -3122,21 +4266,24 @@ This page contains a list of people who have contributed in one way or another t 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 +2 commits to home-assistant.io ") - [Christian Häussler (@cniweb)](https://github.com/cniweb "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Christian Kuhn (@lolli42)](https://github.com/lolli42 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Christian Knittl\-Frank (@lcnittl)](https://github.com/lcnittl "1 total commits to the Home Assistant orga: +1 commit to operating-system ") -- [Christian Lahme (@krys1976)](https://github.com/krys1976 "1 total commits to the Home Assistant orga: +- [Christian Kuhn (@lolli42)](https://github.com/lolli42 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Christian Lasarczyk (@ChrisLasar)](https://github.com/ChrisLasar "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Christian Manivong (@chrismanivong)](https://github.com/chrismanivong "3 total commits to the Home Assistant orga: +3 commits to core +") - [Christian Muck (@cmuck)](https://github.com/cmuck "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -3146,9 +4293,25 @@ 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 Schneider (@christianschneider89)](https://github.com/christianschneider89 "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 Schwinne (@Aircoookie)](https://github.com/Aircoookie "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Christian Soltenborn (@csoltenborn)](https://github.com/csoltenborn "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Christian Stangier (@c-st)](https://github.com/c-st "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Christian Stewart (@paralin)](https://github.com/paralin "149 total commits to the Home Assistant orga: +149 commits to buildroot +") - [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 @@ -3171,10 +4334,22 @@ This page contains a list of people who have contributed in one way or another t - [Christoffer Kylvåg (@christoe)](https://github.com/christoe "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Christoph Engelbert (@noctarius)](https://github.com/noctarius "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Christoph Gerneth (@c7h)](https://github.com/c7h "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io 2 commits to core ") +- [Christoph Kisfeld (@chk1)](https://github.com/chk1 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Christoph Müllner (@cmuellner)](https://github.com/cmuellner "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Christoph Settgast (@csett86)](https://github.com/csett86 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [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 core @@ -3185,38 +4360,73 @@ This page contains a list of people who have contributed in one way or another t - [Christophe Fergeau (@cfergeau)](https://github.com/cfergeau "1 total commits to the Home Assistant orga: 1 commit to addons ") -- [Christophe Painchaud (@cpainchaud)](https://github.com/cpainchaud "1 total commits to the Home Assistant orga: -1 commit to core +- [Christophe Painchaud (@cpainchaud)](https://github.com/cpainchaud "4 total commits to the Home Assistant orga: +3 commits to core +1 commit to home-assistant.io ") - [Christophe Trefois (@Trefex)](https://github.com/Trefex "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Christophe Vu\-Brugier (@cvubrugier)](https://github.com/cvubrugier "2 total commits to the Home Assistant orga: +- [Christophe Vu\-Brugier (@cvubrugier)](https://github.com/cvubrugier "25 total commits to the Home Assistant orga: +23 commits to buildroot 2 commits to open-zwave ") - [christopheBfr (@christopheBfr)](https://github.com/christopheBfr "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Christopher Bailey (@AngellusMortis)](https://github.com/AngellusMortis "69 total commits to the Home Assistant orga: +46 commits to core +23 commits to home-assistant.io +") - [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 Gozdziewski (@Chrisgozd)](https://github.com/Chrisgozd "1 total commits to the Home Assistant orga: -1 commit to core +- [Christopher Gozdziewski (@Chrisgozd)](https://github.com/Chrisgozd "2 total commits to the Home Assistant orga: +2 commits to core ") - [Christopher Gramberg (@chrisgramberg678)](https://github.com/chrisgramberg678 "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Christopher Masto (@masto)](https://github.com/masto "2 total commits to the Home Assistant orga: -2 commits to frontend +- [Christopher Kochan (@crkochan)](https://github.com/crkochan "4 total commits to the Home Assistant orga: +3 commits to core +1 commit to home-assistant.io ") -- [Christopher Nethercott (@chriscn)](https://github.com/chriscn "2 total commits to the Home Assistant orga: +- [Christopher Loessl (@hashier)](https://github.com/hashier "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Christopher Masto (@masto)](https://github.com/masto "8 total commits to the Home Assistant orga: +4 commits to core +2 commits to frontend 2 commits to home-assistant.io ") -- [Christopher Rosset (@chrisrosset)](https://github.com/chrisrosset "2 total commits to the Home Assistant orga: +- [Christopher McCrory (@chrismcc-elc)](https://github.com/chrismcc-elc "68 total commits to the Home Assistant orga: +68 commits to buildroot +") +- [Christopher Nethercott (@chriscn)](https://github.com/chriscn "5 total commits to the Home Assistant orga: +4 commits to home-assistant.io +1 commit to addons +") +- [Christopher Pelloux (@chp-io)](https://github.com/chp-io "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Christopher Rosset (@chrisrosset)](https://github.com/chrisrosset "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io 1 commit to core +") +- [Christopher Sacca (@csacca)](https://github.com/csacca "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Christopher Svensson (@stoffus)](https://github.com/stoffus "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Christopher Thornton (@cthornton)](https://github.com/cthornton "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Christopher Toth (@ctoth)](https://github.com/ctoth "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [Christopher Vella (@chrisvella)](https://github.com/chrisvella "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -3250,6 +4460,9 @@ This page contains a list of people who have contributed in one way or another t - [Ciquattro (@CiquattroFPV)](https://github.com/CiquattroFPV "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") +- [Ciro Santilli (@cirosantilli)](https://github.com/cirosantilli "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [citruz (@citruz)](https://github.com/citruz "5 total commits to the Home Assistant orga: 4 commits to core 1 commit to home-assistant.io @@ -3257,11 +4470,12 @@ This page contains a list of people who have contributed in one way or another t - [ckesc (@ckesc)](https://github.com/ckesc "1 total commits to the Home Assistant orga: 1 commit to addons ") -- [cklagenberg (@cklagenberg)](https://github.com/cklagenberg "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [cklagenberg (@cklagenberg)](https://github.com/cklagenberg "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to core ") -- [clach04 (@clach04)](https://github.com/clach04 "7 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [clach04 (@clach04)](https://github.com/clach04 "8 total commits to the Home Assistant orga: +5 commits to home-assistant.io 2 commits to core 1 commit to hassbian-scripts ") @@ -3272,6 +4486,9 @@ This page contains a list of people who have contributed in one way or another t - [clamel77 (@clamel77)](https://github.com/clamel77 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Clark Rawlins (@crawlins)](https://github.com/crawlins "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [clarkewd (@clarkewd)](https://github.com/clarkewd "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -3299,6 +4516,9 @@ This page contains a list of people who have contributed in one way or another t - [claughinghouse (@claughinghouse)](https://github.com/claughinghouse "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") +- [claurita (@claurita)](https://github.com/claurita "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Claus F\. Strasburger (@cfstras)](https://github.com/cfstras "5 total commits to the Home Assistant orga: 5 commits to pi-gen ") @@ -3312,39 +4532,74 @@ This page contains a list of people who have contributed in one way or another t - [Clayton O'Neill (@claytono)](https://github.com/claytono "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [clem\-bcc (@clem-bcc)](https://github.com/clem-bcc "1 total commits to the Home Assistant orga: -1 commit to open-zwave +- [Clayton Shotwell (@clshotwe)](https://github.com/clshotwe "37 total commits to the Home Assistant orga: +37 commits to buildroot +") +- [Clemens (@cvaliente)](https://github.com/cvaliente "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Clemens @ Elektor (@ClemensAtElektor)](https://github.com/ClemensAtElektor "1 total commits to the Home Assistant orga: +1 commit to addons ") - [Clemens Wolff (@c-w)](https://github.com/c-w "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Clifford Roche (@cmroche)](https://github.com/cmroche "15 total commits to the Home Assistant orga: -12 commits to core -2 commits to home-assistant.io +- [Cliffano Subagio (@cliffano)](https://github.com/cliffano "1 total commits to the Home Assistant orga: +1 commit to core +") +- [cliffjao (@cliffjao)](https://github.com/cliffjao "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Clifford Roche (@cmroche)](https://github.com/cmroche "35 total commits to the Home Assistant orga: +31 commits to core +3 commits to home-assistant.io 1 commit to brands ") -- [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 +- [Clifford W\. Hansen (@cliffordwhansen)](https://github.com/cliffordwhansen "11 total commits to the Home Assistant orga: +5 commits to core +5 commits to home-assistant.io 1 commit to developers.home-assistant ") -- [clssn (@clssn)](https://github.com/clssn "4 total commits to the Home Assistant orga: -2 commits to core +- [clipman (@clipman)](https://github.com/clipman "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [clssn (@clssn)](https://github.com/clssn "5 total commits to the Home Assistant orga: +3 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 ") -- [cnico (@cnico)](https://github.com/cnico "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Clément Leger (@clementleger)](https://github.com/clementleger "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Clément P\. (@clementprevot)](https://github.com/clementprevot "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Clément Péron (@clementperon)](https://github.com/clementperon "7 total commits to the Home Assistant orga: +7 commits to buildroot +") +- [cnico (@cnico)](https://github.com/cnico "13 total commits to the Home Assistant orga: +8 commits to core +4 commits to home-assistant.io +1 commit to brands +") +- [cnstudio (@cnstudio)](https://github.com/cnstudio "1 total commits to the Home Assistant orga: +1 commit to brands ") - [Coby Fleener (@coby)](https://github.com/coby "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [cockroach (@cockroach)](https://github.com/cockroach "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [coco (@k0rventen)](https://github.com/k0rventen "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") +- [code\-review\-doctor (@code-review-doctor)](https://github.com/code-review-doctor "1 total commits to the Home Assistant orga: +1 commit to core +") - [codeavenger07 (@codeavenger07)](https://github.com/codeavenger07 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -3354,14 +4609,18 @@ 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 ") +- [Cody Schafer (@jmesmon)](https://github.com/jmesmon "9 total commits to the Home Assistant orga: +9 commits to buildroot +") - [codypet (@codypet)](https://github.com/codypet "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Colby Rome (@cisasteelersfan)](https://github.com/cisasteelersfan "7 total commits to the Home Assistant orga: -4 commits to core -3 commits to home-assistant.io +- [Colby Rome (@cisasteelersfan)](https://github.com/cisasteelersfan "9 total commits to the Home Assistant orga: +5 commits to core +4 commits to home-assistant.io ") -- [colemamd (@colemamd)](https://github.com/colemamd "1 total commits to the Home Assistant orga: +- [colemamd (@colemamd)](https://github.com/colemamd "2 total commits to the Home Assistant orga: +1 commit to brands 1 commit to home-assistant.io ") - [Colin Cachia (@colincachia)](https://github.com/colincachia "2 total commits to the Home Assistant orga: @@ -3375,26 +4634,30 @@ This page contains a list of people who have contributed in one way or another t 6 commits to home-assistant.io 2 commits to addons 2 commits to developers.home-assistant -1 commit to architecture 1 commit to frontend +1 commit to architecture ") - [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 "36 total commits to the Home Assistant orga: -20 commits to core -15 commits to home-assistant.io +- [Colin O'Dell (@colinodell)](https://github.com/colinodell "41 total commits to the Home Assistant orga: +24 commits to core +16 commits to home-assistant.io 1 commit to python-openzwave ") -- [Colin Robbins (@ColinRobbins)](https://github.com/ColinRobbins "7 total commits to the Home Assistant orga: -4 commits to core -3 commits to home-assistant.io +- [Colin Robbins (@ColinRobbins)](https://github.com/ColinRobbins "17 total commits to the Home Assistant orga: +11 commits to core +5 commits to home-assistant.io +1 commit to brands ") -- [Colin Teubner (@netopiax)](https://github.com/netopiax "6 total commits to the Home Assistant orga: +- [Colin Teubner (@netopiax)](https://github.com/netopiax "7 total commits to the Home Assistant orga: +4 commits to home-assistant.io 3 commits to open-zwave -3 commits to home-assistant.io +") +- [Colleen (@ctwitty)](https://github.com/ctwitty "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [Comic Chang (@comicchang)](https://github.com/comicchang "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -3403,6 +4666,12 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io 1 commit to core ") +- [Conall O'Brien (@conallob)](https://github.com/conallob "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [conflipper (@conflipper)](https://github.com/conflipper "1 total commits to the Home Assistant orga: +1 commit to core +") - [Conrad Juhl Andersen (@cnrd)](https://github.com/cnrd "19 total commits to the Home Assistant orga: 10 commits to core 6 commits to home-assistant.io @@ -3415,16 +4684,19 @@ This page contains a list of people who have contributed in one way or another t - [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 "11 total commits to the Home Assistant orga: -10 commits to home-assistant.io +- [Cooper Dale (@Cooper-Dale)](https://github.com/Cooper-Dale "13 total commits to the Home Assistant orga: +11 commits to home-assistant.io +2 commits to core +") +- [copykatze (@copykatze)](https://github.com/copykatze "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Corban Mailloux (@corbanmailloux)](https://github.com/corbanmailloux "20 total commits to the Home Assistant orga: +19 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 core -") -- [Corbeno (@Corbeno)](https://github.com/Corbeno "1 total commits to the Home Assistant orga: -1 commit to core +- [Corbeno (@Corbeno)](https://github.com/Corbeno "2 total commits to the Home Assistant orga: +2 commits to core ") - [coreGreenberet (@coreGreenberet)](https://github.com/coreGreenberet "2 total commits to the Home Assistant orga: 2 commits to core @@ -3443,9 +4715,10 @@ This page contains a list of people who have contributed in one way or another t - [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 core -1 commit to home-assistant.io +- [corneyl (@corneyl)](https://github.com/corneyl "17 total commits to the Home Assistant orga: +12 commits to core +4 commits to home-assistant.io +1 commit to brands ") - [Costas (@costastf)](https://github.com/costastf "2 total commits to the Home Assistant orga: 1 commit to core @@ -3464,12 +4737,18 @@ This page contains a list of people who have contributed in one way or another t - [cpgifford (@cpgifford)](https://github.com/cpgifford "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [cpolhout (@cpolhout)](https://github.com/cpolhout "1 total commits to the Home Assistant orga: +1 commit to brands +") - [cpopp (@cpopp)](https://github.com/cpopp "4 total commits to the Home Assistant orga: 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 core +- [cpriouzeau (@cpriouzeau)](https://github.com/cpriouzeau "7 total commits to the Home Assistant orga: +7 commits to buildroot +") +- [cpw (@cpw)](https://github.com/cpw "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 @@ -3483,15 +4762,15 @@ This page contains a list of people who have contributed in one way or another t - [Craig Huckabee (@huckabeec)](https://github.com/huckabeec "1 total commits to the Home Assistant orga: 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 core +- [Craig J\. Midwinter (@craigjmidwinter)](https://github.com/craigjmidwinter "31 total commits to the Home Assistant orga: +24 commits to core 7 commits to home-assistant.io ") -- [craiggenner (@craiggenner)](https://github.com/craiggenner "1 total commits to the Home Assistant orga: +- [craiggenner (@craiggenner)](https://github.com/craiggenner "2 total commits to the Home Assistant orga: +1 commit to frontend 1 commit to core ") -- [crallian (@crallian)](https://github.com/crallian "2 total commits to the Home Assistant orga: -1 commit to core +- [craigmcgowan (@craigmcgowan)](https://github.com/craigmcgowan "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Crash (@CrashWorksLLC)](https://github.com/CrashWorksLLC "2 total commits to the Home Assistant orga: @@ -3501,6 +4780,10 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to core ") +- [Creasol (@CreasolTech)](https://github.com/CreasolTech "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [Cristian Asenjo (@casenjo)](https://github.com/casenjo "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -3517,6 +4800,9 @@ This page contains a list of people who have contributed in one way or another t - [cryptelli (@cryptelli)](https://github.com/cryptelli "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [csgitmeup (@csgitmeup)](https://github.com/csgitmeup "1 total commits to the Home Assistant orga: +1 commit to core +") - [ctborg (@ctborg)](https://github.com/ctborg "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io 2 commits to core @@ -3528,25 +4814,35 @@ This page contains a list of people who have contributed in one way or another t - [CtrlZvi (@CtrlZvi)](https://github.com/CtrlZvi "1 total commits to the Home Assistant orga: 1 commit to core ") +- [culssw (@culssw)](https://github.com/culssw "955 total commits to the Home Assistant orga: +955 commits to buildroot +") +- [CupertinoGeek (@CupertinoGeek)](https://github.com/CupertinoGeek "1 total commits to the Home Assistant orga: +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 ") - [curlydingo (@curlydingo)](https://github.com/curlydingo "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [CurrentThread (@CurrentThread)](https://github.com/CurrentThread "10 total commits to the Home Assistant orga: -10 commits to core -") - [Curtis Gibby (@curtisgibby)](https://github.com/curtisgibby "1 total commits to the Home Assistant orga: 1 commit to supervisor ") +- [Curtis Kennington (@Curtisjk)](https://github.com/Curtisjk "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [CV (@dagobert)](https://github.com/dagobert "17 total commits to the Home Assistant orga: 13 commits to home-assistant.io 4 commits to core ") -- [cvwillegen (@cvwillegen)](https://github.com/cvwillegen "5 total commits to the Home Assistant orga: +- [cvroque (@cvroque)](https://github.com/cvroque "3 total commits to the Home Assistant orga: +3 commits to core +") +- [cvwillegen (@cvwillegen)](https://github.com/cvwillegen "6 total commits to the Home Assistant orga: 3 commits to home-assistant.io -2 commits to core +3 commits to core ") - [cweakland (@cweakland)](https://github.com/cweakland "2 total commits to the Home Assistant orga: 2 commits to open-zwave @@ -3561,30 +4857,59 @@ This page contains a list of people who have contributed in one way or another t - [cydia2020 (@cydia2020)](https://github.com/cydia2020 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Cyril Bur (@cyrilbur-ibm)](https://github.com/cyrilbur-ibm "9 total commits to the Home Assistant orga: +9 commits to buildroot +") +- [Cyril Perrin (@cyrilperrin)](https://github.com/cyrilperrin "1 total commits to the Home Assistant orga: +1 commit to core +") - [Cyro (@cyrosy)](https://github.com/cyrosy "4 total commits to the Home Assistant orga: 4 commits to core ") -- [Czapla (@Antoni-Czaplicki)](https://github.com/Antoni-Czaplicki "5 total commits to the Home Assistant orga: -4 commits to brands -1 commit to core -") - [czechmark (@czechmark)](https://github.com/czechmark "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Cédric Chépied (@chep)](https://github.com/chep "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [D34DC3N73R (@D34DC3N73R)](https://github.com/D34DC3N73R "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [da\-anda (@da-anda)](https://github.com/da-anda "1 total commits to the Home Assistant orga: +- [D3v01dZA (@D3v01dZA)](https://github.com/D3v01dZA "2 total commits to the Home Assistant orga: +2 commits to core +") +- [d3wy (@d3wy)](https://github.com/d3wy "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [d6e (@d6e)](https://github.com/d6e "1 total commits to the Home Assistant orga: 1 commit to core ") +- [d8ahazard (@d8ahazard)](https://github.com/d8ahazard "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [D\. Olsson (@dickolsson)](https://github.com/dickolsson "41 total commits to the Home Assistant orga: +41 commits to buildroot +") +- [da\-anda (@da-anda)](https://github.com/da-anda "3 total commits to the Home Assistant orga: +3 commits to core +") - [DaCoD (@dacod)](https://github.com/dacod "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [dacwe (@dacwe)](https://github.com/dacwe "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Dagg Stompler (@daggs1)](https://github.com/daggs1 "35 total commits to the Home Assistant orga: +35 commits to buildroot +") +- [dailow (@dailow)](https://github.com/dailow "2 total commits to the Home Assistant orga: +2 commits to core +") - [Dale Higgs (@dale3h)](https://github.com/dale3h "48 total commits to the Home Assistant orga: 35 commits to home-assistant.io 11 commits to core -1 commit to homebridge-homeassistant 1 commit to hassbot +1 commit to homebridge-homeassistant ") - [daleye (@daleye)](https://github.com/daleye "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -3595,16 +4920,29 @@ This page contains a list of people who have contributed in one way or another t - [damarco (@damarco)](https://github.com/damarco "26 total commits to the Home Assistant orga: 26 commits to core ") -- [Damian Nowak (@Nowaker)](https://github.com/Nowaker "1 total commits to the Home Assistant orga: +- [Damian Nowak (@Nowaker)](https://github.com/Nowaker "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Damien Duboeuf (@Smeagolworms4)](https://github.com/Smeagolworms4 "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") +- [Damien Le Moal (@damien-lemoal)](https://github.com/damien-lemoal "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Damien Levin (@damienlevin)](https://github.com/damienlevin "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Damien Riegel (@d-k-c)](https://github.com/d-k-c "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Dan (@danieljkemp)](https://github.com/danieljkemp "23 total commits to the Home Assistant orga: 16 commits to core 7 commits to home-assistant.io ") +- [Dan (@dcs8)](https://github.com/dcs8 "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Dan Burke (@danburke)](https://github.com/danburke "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -3638,11 +4976,12 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") -- [Dan Klaffenbach (@klada)](https://github.com/klada "11 total commits to the Home Assistant orga: -7 commits to core -4 commits to home-assistant.io +- [Dan Klaffenbach (@klada)](https://github.com/klada "17 total commits to the Home Assistant orga: +9 commits to core +7 commits to home-assistant.io +1 commit to developers.home-assistant ") -- [Dan Lehman (@DanTLehman)](https://github.com/DanTLehman "2 total commits to the Home Assistant orga: +- [Dan Lehman (@DeltaTangoLima)](https://github.com/DeltaTangoLima "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: @@ -3658,6 +4997,9 @@ This page contains a list of people who have contributed in one way or another t - [Dan Olson (@danielolson13)](https://github.com/danielolson13 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Dan Pattison (@SirDan1963)](https://github.com/SirDan1963 "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Dan Ponte (@amigan)](https://github.com/amigan "2 total commits to the Home Assistant orga: 1 commit to open-zwave 1 commit to core @@ -3667,6 +5009,9 @@ This page contains a list of people who have contributed in one way or another t 5 commits to core 1 commit to home-assistant.io ") +- [Dan Riegsecker (@danriegsecker)](https://github.com/danriegsecker "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Dan Sarginson (@dansarginson)](https://github.com/dansarginson "2 total commits to the Home Assistant orga: 2 commits to core ") @@ -3682,6 +5027,9 @@ This page contains a list of people who have contributed in one way or another t - [Dan Trevino (@dantrevino)](https://github.com/dantrevino "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Dan Walkes (@dwalkes)](https://github.com/dwalkes "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [danbishop (@danbishop)](https://github.com/danbishop "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to home-assistant.io @@ -3696,7 +5044,7 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [dangyuluo (@t0ny-peng)](https://github.com/t0ny-peng "1 total commits to the Home Assistant orga: 1 commit to core ") - [Dani (@danichispa)](https://github.com/danichispa "9 total commits to the Home Assistant orga: @@ -3705,8 +5053,15 @@ This page contains a list of people who have contributed in one way or another t - [Daniel (@da-snap)](https://github.com/da-snap "1 total commits to the Home Assistant orga: 1 commit to frontend ") -- [Daniel (@azrael783)](https://github.com/azrael783 "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Daniel (@danieldotnl)](https://github.com/danieldotnl "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Daniel (@djansen1987)](https://github.com/djansen1987 "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Daniel (@azrael783)](https://github.com/azrael783 "5 total commits to the Home Assistant orga: +5 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 @@ -3720,21 +5075,20 @@ This page contains a list of people who have contributed in one way or another t - [Daniel (@danielbrunt57)](https://github.com/danielbrunt57 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Daniel (@danimtb)](https://github.com/danimtb "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io -") - [Daniel (@ConsoleCriminal)](https://github.com/ConsoleCriminal "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 (@danimtb)](https://github.com/danimtb "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: +- [Daniel Bowman (@vrih)](https://github.com/vrih "4 total commits to the Home Assistant orga: 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 core @@ -3746,6 +5100,9 @@ This page contains a list of people who have contributed in one way or another t - [Daniel Correa Lobato (@dclobato)](https://github.com/dclobato "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Daniel D'Abate (@danieldabate)](https://github.com/danieldabate "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Daniel de Jong (@daniel-jong)](https://github.com/daniel-jong "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -3753,19 +5110,18 @@ This page contains a list of people who have contributed in one way or another t - [Daniel Escoz (@Darkhogg)](https://github.com/Darkhogg "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Daniel Fahlgren (@fahlgren)](https://github.com/fahlgren "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [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 "546 total commits to the Home Assistant orga: -401 commits to core -137 commits to home-assistant.io -4 commits to brands -3 commits to frontend -1 commit to people -") - [Daniel Hyles (@DotNetDann)](https://github.com/DotNetDann "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Daniel J\. Leach (@DanielJLeach)](https://github.com/DanielJLeach "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Daniel Jost (@PxlBuzzard)](https://github.com/PxlBuzzard "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -3787,6 +5143,9 @@ This page contains a list of people who have contributed in one way or another t - [Daniel Lintott (@dlintott)](https://github.com/dlintott "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Daniel Mack (@zonque)](https://github.com/zonque "19 total commits to the Home Assistant orga: +19 commits to buildroot +") - [Daniel Martin Gonzalez (@danimart1991)](https://github.com/danimart1991 "7 total commits to the Home Assistant orga: 4 commits to home-assistant.io 3 commits to frontend @@ -3799,21 +5158,28 @@ This page contains a list of people who have contributed in one way or another t 1 commit to wheels-custom-integrations 1 commit to brands ") -- [Daniel O'Connor (@CloCkWeRX)](https://github.com/CloCkWeRX "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Daniel Nelson (@sigpwr)](https://github.com/sigpwr "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Daniel Nicoletti (@dantti)](https://github.com/dantti "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [Daniel O'Connor (@CloCkWeRX)](https://github.com/CloCkWeRX "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to developers.home-assistant ") - [Daniel Pereira (@kriansa)](https://github.com/kriansa "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Daniel Perna (@danielperna84)](https://github.com/danielperna84 "155 total commits to the Home Assistant orga: -90 commits to core +- [Daniel Perna (@danielperna84)](https://github.com/danielperna84 "164 total commits to the Home Assistant orga: +98 commits to core 48 commits to home-assistant.io -15 commits to addons +16 commits to 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 Pervan (@danielpervan)](https://github.com/danielpervan "2 total commits to the Home Assistant orga: +2 commits to core ") - [Daniel Peukert (@dpeukert)](https://github.com/dpeukert "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -3822,24 +5188,40 @@ This page contains a list of people who have contributed in one way or another t - [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 Price (@danielbprice)](https://github.com/danielbprice "3 total commits to the Home Assistant orga: +3 commits to buildroot ") -- [Daniel Rheinbay (@danielrheinbay)](https://github.com/danielrheinbay "7 total commits to the Home Assistant orga: -6 commits to home-assistant.io +- [Daniel Reimer (@dreimer1986)](https://github.com/dreimer1986 "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io 1 commit to core ") +- [Daniel Rheinbay (@danielrheinbay)](https://github.com/danielrheinbay "11 total commits to the Home Assistant orga: +8 commits to home-assistant.io +3 commits to core +") +- [Daniel Sack (@DanielTheCoder)](https://github.com/DanielTheCoder "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Daniel Sangue (@mrdasa)](https://github.com/mrdasa "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Daniel Schaal (@schaal)](https://github.com/schaal "2 total commits to the Home Assistant orga: 2 commits to core ") -- [Daniel Shokouhi (@dshokouhi)](https://github.com/dshokouhi "426 total commits to the Home Assistant orga: -174 commits to android -130 commits to companion.home-assistant -57 commits to core -55 commits to home-assistant.io -6 commits to mobile-apps-fcm-push +- [Daniel Schröder (@MesserschmittX)](https://github.com/MesserschmittX "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Daniel Serpell (@dmsc)](https://github.com/dmsc "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Daniel Shokouhi (@dshokouhi)](https://github.com/dshokouhi "733 total commits to the Home Assistant orga: +381 commits to android +208 commits to companion.home-assistant +65 commits to home-assistant.io +59 commits to core +15 commits to mobile-apps-fcm-push +3 commits to alerts.home-assistant.io 2 commits to developers.home-assistant -2 commits to alerts.home-assistant.io ") - [Daniel Stockhausen (@daniel-stockhausen)](https://github.com/daniel-stockhausen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -3847,9 +5229,9 @@ This page contains a list of people who have contributed in one way or another t - [Daniel Stone (@daniel-stoneuk)](https://github.com/daniel-stoneuk "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Daniel Sörlöv (@DSorlov)](https://github.com/DSorlov "6 total commits to the Home Assistant orga: +- [Daniel Sörlöv (@DSorlov)](https://github.com/DSorlov "7 total commits to the Home Assistant orga: +4 commits to brands 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 core @@ -3867,6 +5249,17 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Daniele Salvatore Albano (@danielealbano)](https://github.com/danielealbano "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Danielhiversen (@Danielhiversen)](https://github.com/Danielhiversen "762 total commits to the Home Assistant orga: +599 commits to core +152 commits to home-assistant.io +6 commits to brands +3 commits to frontend +1 commit to people +1 commit to wheels-custom-integrations +") - [danielpodwysocki (@danielpodwysocki)](https://github.com/danielpodwysocki "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -3877,6 +5270,9 @@ This page contains a list of people who have contributed in one way or another t - [Danijel Stojnic (@danijelst)](https://github.com/danijelst "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Danilo Bargen (@dbrgn)](https://github.com/dbrgn "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Daniyar Yeralin (@yeralin)](https://github.com/yeralin "6 total commits to the Home Assistant orga: 3 commits to core 2 commits to home-assistant.io @@ -3888,18 +5284,24 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [Danny Gershman (@dgershman)](https://github.com/dgershman "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") - [Danny Murphy (@Dmurph24)](https://github.com/Dmurph24 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Danny Tsang (@dannytsang)](https://github.com/dannytsang "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Danny Tsang (@dannytsang)](https://github.com/dannytsang "17 total commits to the Home Assistant orga: +17 commits to home-assistant.io ") - [DannyHg (@DannyHg)](https://github.com/DannyHg "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [danomi (@danomi)](https://github.com/danomi "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [danomimanchego123 (@danomimanchego123)](https://github.com/danomimanchego123 "162 total commits to the Home Assistant orga: +162 commits to buildroot +") - [DanPatten (@DanPatten)](https://github.com/DanPatten "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -3922,13 +5324,22 @@ This page contains a list of people who have contributed in one way or another t - [Dara Adib (@daradib)](https://github.com/daradib "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") +- [Dario Binacchi (@passgat)](https://github.com/passgat "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [Dario Iacampo (@JackNova)](https://github.com/JackNova "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to core ") +- [Darius Augulis (@adarius)](https://github.com/adarius "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [DarkPark (@DarkPark)](https://github.com/DarkPark "1 total commits to the Home Assistant orga: 1 commit to brands ") +- [Darrell (@DTTerastar)](https://github.com/DTTerastar "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Darren Foo (@stonith)](https://github.com/stonith "2 total commits to the Home Assistant orga: 2 commits to core ") @@ -3947,10 +5358,12 @@ This page contains a list of people who have contributed in one way or another t - [Dash Winterson (@dashdanw)](https://github.com/dashdanw "1 total commits to the Home Assistant orga: 1 commit to hassbian-scripts ") -- [dasos (@dasos)](https://github.com/dasos "11 total commits to the Home Assistant orga: +- [dasos (@dasos)](https://github.com/dasos "10 total commits to the Home Assistant orga: 7 commits to core 3 commits to home-assistant.io -1 commit to netdisco +") +- [DataBitz (@DataBitz)](https://github.com/DataBitz "3 total commits to the Home Assistant orga: +3 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 @@ -3972,6 +5385,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Dave Code (@dave-code-ruiz)](https://github.com/dave-code-ruiz "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Dave Eddy (@bahamas10)](https://github.com/bahamas10 "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") @@ -3985,13 +5401,20 @@ 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 Pearce (@UrbanDave)](https://github.com/UrbanDave "1 total commits to the Home Assistant orga: +- [Dave Lowper (@davelowper)](https://github.com/davelowper "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Dave Pearce (@UrbanDave)](https://github.com/UrbanDave "2 total commits to the Home Assistant orga: +1 commit to brands 1 commit to core ") -- [Dave T (@davet2001)](https://github.com/davet2001 "18 total commits to the Home Assistant orga: -9 commits to core -5 commits to home-assistant.io -4 commits to developers.home-assistant +- [Dave Skok (@blanco-ether)](https://github.com/blanco-ether "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Dave T (@davet2001)](https://github.com/davet2001 "128 total commits to the Home Assistant orga: +109 commits to core +10 commits to home-assistant.io +9 commits to developers.home-assistant ") - [DAVe3283 (@DAVe3283)](https://github.com/DAVe3283 "1 total commits to the Home Assistant orga: 1 commit to open-zwave @@ -4016,12 +5439,18 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [David (@DaveCo1701)](https://github.com/DaveCo1701 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [David (@dschoorisse)](https://github.com/dschoorisse "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [David (@DaveCo1701)](https://github.com/DaveCo1701 "1 total commits to the Home Assistant orga: +- [David A\. Bell (@dabell-cc)](https://github.com/dabell-cc "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [David Barbion (@david-barbion)](https://github.com/david-barbion "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [David Barnett (@dbarnett)](https://github.com/dbarnett "50 total commits to the Home Assistant orga: 50 commits to open-zwave ") @@ -4033,22 +5462,28 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") -- [David Beitey (@davidjb)](https://github.com/davidjb "15 total commits to the Home Assistant orga: -8 commits to home-assistant.io +- [David Beitey (@davidjb)](https://github.com/davidjb "24 total commits to the Home Assistant orga: +15 commits to home-assistant.io 3 commits to developers.home-assistant +3 commits to core 1 commit to example-custom-config 1 commit to .github 1 commit to frontend -1 commit to core +") +- [David Bender (@codehero)](https://github.com/codehero "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [David Bilay (@dYalib)](https://github.com/dYalib "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") -- [David Bonnes (@zxdavb)](https://github.com/zxdavb "120 total commits to the Home Assistant orga: -91 commits to core +- [David Bonnes (@zxdavb)](https://github.com/zxdavb "125 total commits to the Home Assistant orga: +96 commits to core 29 commits to home-assistant.io ") +- [David Boslee (@dboslee)](https://github.com/dboslee "1 total commits to the Home Assistant orga: +1 commit to core +") - [David Broadfoot (@dlbroadfoot)](https://github.com/dlbroadfoot "6 total commits to the Home Assistant orga: 5 commits to core 1 commit to home-assistant.io @@ -4059,19 +5494,29 @@ This page contains a list of people who have contributed in one way or another t - [David Conley (@conleydg)](https://github.com/conleydg "2 total commits to the Home Assistant orga: 2 commits to core ") -- [David Cramer (@dcramer)](https://github.com/dcramer "3 total commits to the Home Assistant orga: +- [David Cramer (@dcramer)](https://github.com/dcramer "4 total commits to the Home Assistant orga: 1 commit to frontend +1 commit to brands 1 commit to core 1 commit to home-assistant.io ") -- [David De Sloovere (@DavidDeSloovere)](https://github.com/DavidDeSloovere "23 total commits to the Home Assistant orga: +- [David Danssaert (@ddanssaert)](https://github.com/ddanssaert "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [David De Grave \(Essensium/Mind\) (@ledav-net)](https://github.com/ledav-net "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [David De Sloovere (@DavidDeSloovere)](https://github.com/DavidDeSloovere "24 total commits to the Home Assistant orga: 19 commits to home-assistant.io 3 commits to developers.home-assistant +2 commits to core +") +- [David Dix (@WizBangCrash)](https://github.com/WizBangCrash "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io 1 commit to core ") -- [David Dix (@WizBangCrash)](https://github.com/WizBangCrash "2 total commits to the Home Assistant orga: -1 commit to core -1 commit to home-assistant.io +- [David du Colombier (@0intro)](https://github.com/0intro "11 total commits to the Home Assistant orga: +11 commits to buildroot ") - [David Edmondson (@dme)](https://github.com/dme "1 total commits to the Home Assistant orga: 1 commit to feedparser @@ -4080,10 +5525,10 @@ This page contains a list of people who have contributed in one way or another t 4 commits to core 3 commits to home-assistant.io ") -- [David F\. Mulcahey (@dmulcahey)](https://github.com/dmulcahey "293 total commits to the Home Assistant orga: -236 commits to core -51 commits to frontend -4 commits to home-assistant.io +- [David F\. Mulcahey (@dmulcahey)](https://github.com/dmulcahey "374 total commits to the Home Assistant orga: +303 commits to core +61 commits to frontend +8 commits to home-assistant.io 1 commit to people 1 commit to brands ") @@ -4094,19 +5539,46 @@ This page contains a list of people who have contributed in one way or another t - [David Gibbons (@davidgibbons)](https://github.com/davidgibbons "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [David Glessner (@dg-rc)](https://github.com/dg-rc "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [David Grant (@davegravy)](https://github.com/davegravy "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io 2 commits to core ") +- [David Graziano (@davidgraz)](https://github.com/davidgraz "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [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 "5 total commits to the Home Assistant orga: 5 commits to core ") -- [David Le Brun (@davidlb)](https://github.com/davidlb "1 total commits to the Home Assistant orga: +- [David K Turner (@dkt01)](https://github.com/dkt01 "1 total commits to the Home Assistant orga: +1 commit to core +") +- [David Keijser (@keis)](https://github.com/keis "1 total commits to the Home Assistant orga: +1 commit to core +") +- [David Kendall (@BottlecapDave)](https://github.com/BottlecapDave "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [David Kessler (@DJKessler)](https://github.com/DJKessler "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [David Langerman \| Onyx Zero Software (@dlangerm)](https://github.com/dlangerm "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [David Le Brun (@davidlb)](https://github.com/davidlb "5 total commits to the Home Assistant orga: +4 commits to core 1 commit to brands ") +- [David Lechner (@dlech)](https://github.com/dlech "17 total commits to the Home Assistant orga: +17 commits to buildroot +") - [David Lie (@davidlie)](https://github.com/davidlie "3 total commits to the Home Assistant orga: 3 commits to core ") @@ -4117,16 +5589,22 @@ This page contains a list of people who have contributed in one way or another t - [David Luhmer (@David-Development)](https://github.com/David-Development "1 total commits to the Home Assistant orga: 1 commit to android ") +- [David Martin (@3ative)](https://github.com/3ative "1 total commits to the Home Assistant orga: +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 McClosky (@dmcc)](https://github.com/dmcc "9 total commits to the Home Assistant orga: +9 commits to core +") - [David McNett (@nugget)](https://github.com/nugget "14 total commits to the Home Assistant orga: 8 commits to core 5 commits to home-assistant.io 1 commit to supervisor ") -- [David Nielsen (@dcnielsen90)](https://github.com/dcnielsen90 "11 total commits to the Home Assistant orga: -10 commits to core +- [David Nielsen (@dcnielsen90)](https://github.com/dcnielsen90 "12 total commits to the Home Assistant orga: +11 commits to core 1 commit to home-assistant.io ") - [David Noren (@dcnoren)](https://github.com/dcnoren "1 total commits to the Home Assistant orga: @@ -4139,18 +5617,44 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") -- [David Radcliffe (@dwradcliffe)](https://github.com/dwradcliffe "5 total commits to the Home Assistant orga: +- [David Pierret (@Galadrin)](https://github.com/Galadrin "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [David Postle (@DMailMan)](https://github.com/DMailMan "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [David Purdy (@davygravy)](https://github.com/davygravy "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [David Radcliffe (@dwradcliffe)](https://github.com/dwradcliffe "6 total commits to the Home Assistant orga: 3 commits to home-assistant.io 1 commit to companion.home-assistant +1 commit to developers.home-assistant 1 commit to core ") -- [David Roberts (@drobtravels)](https://github.com/drobtravels "3 total commits to the Home Assistant orga: +- [David Raeman (@draeman)](https://github.com/draeman "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [David Ramiro (@davidramiro)](https://github.com/davidramiro "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [david reid (@zathras777)](https://github.com/zathras777 "2 total commits to the Home Assistant orga: +2 commits to core +") +- [David Roberts (@drobtravels)](https://github.com/drobtravels "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io +1 commit to developers.home-assistant 1 commit to core ") +- [David Rocharz (@davidrocharz)](https://github.com/davidrocharz "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [David Rosca (@nowrep)](https://github.com/nowrep "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [David Ryan (@ptcryan)](https://github.com/ptcryan "4 total commits to the Home Assistant orga: -2 commits to home-assistant.io 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 @@ -4191,10 +5695,13 @@ This page contains a list of people who have contributed in one way or another t 2 commits to hassio-build 1 commit to core ") -- [David Zhu (@PotatoDrug)](https://github.com/PotatoDrug "2 total commits to the Home Assistant orga: +- [David Zhu (@Dethada)](https://github.com/Dethada "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [David Zidar (@DavidZidar)](https://github.com/DavidZidar "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [david81 (@david81)](https://github.com/david81 "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -4213,16 +5720,25 @@ This page contains a list of people who have contributed in one way or another t 1 commit to frontend 1 commit to home-assistant.io ") +- [Davide Viti (@zinosat)](https://github.com/zinosat "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [DavidFW1960 (@DavidFW1960)](https://github.com/DavidFW1960 "6 total commits to the Home Assistant orga: 5 commits to home-assistant.io 1 commit to addons ") +- [davidlang42 (@davidlang42)](https://github.com/davidlang42 "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [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 ") +- [Davor Val Vega (@slovenec88)](https://github.com/slovenec88 "1 total commits to the Home Assistant orga: +1 commit to core +") - [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 @@ -4230,6 +5746,9 @@ This page contains a list of people who have contributed in one way or another t - [dayofdoom (@dayofdoom)](https://github.com/dayofdoom "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [dbachelart (@dbachelart)](https://github.com/dbachelart "13 total commits to the Home Assistant orga: +13 commits to buildroot +") - [DBCL (@DB-CL)](https://github.com/DB-CL "2 total commits to the Home Assistant orga: 2 commits to frontend ") @@ -4242,30 +5761,51 @@ This page contains a list of people who have contributed in one way or another t - [dcharbonnier (@dcharbonnier)](https://github.com/dcharbonnier "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [dckiller51 (@dckiller51)](https://github.com/dckiller51 "1 total commits to the Home Assistant orga: +1 commit to brands +") - [dcrusader (@dcrusader)](https://github.com/dcrusader "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [DeadEnd (@DeadEnded)](https://github.com/DeadEnded "1 total commits to the Home Assistant orga: +- [DDanii (@DDanii)](https://github.com/DDanii "1 total commits to the Home Assistant orga: 1 commit to core ") +- [DeadEnd (@DeadEnded)](https://github.com/DeadEnded "4 total commits to the Home Assistant orga: +2 commits to core +1 commit to wheels-custom-integrations +1 commit to brands +") - [Dean (@FreekingDean)](https://github.com/FreekingDean "1 total commits to the Home Assistant orga: 1 commit to core ") - [Dean Camera (@abcminiuser)](https://github.com/abcminiuser "4 total commits to the Home Assistant orga: -2 commits to home-assistant.io 2 commits to core +2 commits to home-assistant.io +") +- [Dean Kroker (@deankroker)](https://github.com/deankroker "1 total commits to the Home Assistant orga: +1 commit to newsletter-ghost-theme ") - [deddc23efb (@deddc23efb)](https://github.com/deddc23efb "1 total commits to the Home Assistant orga: 1 commit to addons ") +- [DeepCoreSystem (@DeepCoreSystem)](https://github.com/DeepCoreSystem "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Deez73 (@Deez73)](https://github.com/Deez73 "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [definitio (@definitio)](https://github.com/definitio "15 total commits to the Home Assistant orga: -9 commits to core -4 commits to home-assistant.io +- [definitio (@definitio)](https://github.com/definitio "20 total commits to the Home Assistant orga: +13 commits to core +5 commits to home-assistant.io 2 commits to brands ") +- [deftdawg (@deftdawg)](https://github.com/deftdawg "20 total commits to the Home Assistant orga: +15 commits to core +5 commits to home-assistant.io +") +- [degorius (@degorius)](https://github.com/degorius "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [deisi (@deisi)](https://github.com/deisi "12 total commits to the Home Assistant orga: 10 commits to core 2 commits to home-assistant.io @@ -4292,9 +5832,28 @@ This page contains a list of people who have contributed in one way or another t - [denes44 (@denes44)](https://github.com/denes44 "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Denilson Sá Maia (@denilsonsa)](https://github.com/denilsonsa "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") +- [Denis Bodor (@0xDRRB)](https://github.com/0xDRRB "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Denis Generalov (@giantlock)](https://github.com/giantlock "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Denis Milanović (@denismilanovic)](https://github.com/denismilanovic "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Denis Mingulov (@mingulov)](https://github.com/mingulov "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Denis Osterland (@OsterlaD)](https://github.com/OsterlaD "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Denise Yu (@deniseyu)](https://github.com/deniseyu "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Denix (@denics)](https://github.com/denics "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io 1 commit to addons-development @@ -4309,14 +5868,13 @@ This page contains a list of people who have contributed in one way or another t - [Dennis Gilmore (@ausil)](https://github.com/ausil "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Dennis Ham (@denniswham)](https://github.com/denniswham "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Dennis Ham (@denniswham)](https://github.com/denniswham "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") -- [Dennis Karpienski (@TheRealLink)](https://github.com/TheRealLink "24 total commits to the Home Assistant orga: +- [Dennis Karpienski (@TheRealLink)](https://github.com/TheRealLink "23 total commits to the Home Assistant orga: 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 core @@ -4324,9 +5882,9 @@ This page contains a list of people who have contributed in one way or another t - [Dennis Modig (@techdude200)](https://github.com/techdude200 "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [Dennis Schroer (@denniss17)](https://github.com/denniss17 "3 total commits to the Home Assistant orga: +- [Dennis Schroer (@dennisschroer)](https://github.com/dennisschroer "4 total commits to the Home Assistant orga: +2 commits to core 1 commit to brands -1 commit to core 1 commit to home-assistant.io ") - [Dennis Sutch (@sutch)](https://github.com/sutch "2 total commits to the Home Assistant orga: @@ -4344,9 +5902,14 @@ This page contains a list of people who have contributed in one way or another t - [denverpilot (@denverpilot)](https://github.com/denverpilot "1 total commits to the Home Assistant orga: 1 commit to addons ") -- [Denys Dovhan (@denysdovhan)](https://github.com/denysdovhan "1 total commits to the Home Assistant orga: +- [Denys Dovhan (@denysdovhan)](https://github.com/denysdovhan "2 total commits to the Home Assistant orga: +1 commit to companion.home-assistant 1 commit to core ") +- [deosrc (@deosrc)](https://github.com/deosrc "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Department G33k (@department-g33k)](https://github.com/department-g33k "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -4359,15 +5922,22 @@ This page contains a list of people who have contributed in one way or another t - [Derek (@KrunchMuffin)](https://github.com/KrunchMuffin "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Derek Atkins (@derekatkins)](https://github.com/derekatkins "1 total commits to the Home Assistant orga: +1 commit to addons +") - [Derek Brooks (@broox)](https://github.com/broox "40 total commits to the Home Assistant orga: 30 commits to core 9 commits to home-assistant.io 1 commit to open-zwave ") -- [Dermot Duffy (@dermotduffy)](https://github.com/dermotduffy "21 total commits to the Home Assistant orga: -15 commits to core -4 commits to home-assistant.io -2 commits to brands +- [Dermot Duffy (@dermotduffy)](https://github.com/dermotduffy "68 total commits to the Home Assistant orga: +51 commits to core +11 commits to home-assistant.io +5 commits to brands +1 commit to wheels-custom-integrations +") +- [Derrick Lyndon Pallas (@pallas)](https://github.com/pallas "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [dersger (@dersger)](https://github.com/dersger "4 total commits to the Home Assistant orga: 3 commits to core @@ -4383,14 +5953,23 @@ This page contains a list of people who have contributed in one way or another t - [DetroitEE (@DetroitEE)](https://github.com/DetroitEE "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [devbf (@devbf)](https://github.com/devbf "1 total commits to the Home Assistant orga: +1 commit 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 core 4 commits to homebridge-homeassistant ") +- [devianceluka (@devianceluka)](https://github.com/devianceluka "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [DeviantEng (@DeviantEng)](https://github.com/DeviantEng "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [Devin Sevilla (@dasevilla)](https://github.com/dasevilla "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [DeviousPenguin (@DeviousPenguin)](https://github.com/DeviousPenguin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -4403,6 +5982,12 @@ This page contains a list of people who have contributed in one way or another t - [Devon Peet (@dpeet)](https://github.com/dpeet "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") +- [dewdrop (@dewdropawoo)](https://github.com/dewdropawoo "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Dewet Diener (@dewet22)](https://github.com/dewet22 "1 total commits to the Home Assistant orga: +1 commit to core +") - [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 ") @@ -4412,9 +5997,18 @@ This page contains a list of people who have contributed in one way or another t - [Dezorian (@Dezorian)](https://github.com/Dezorian "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [dfigus (@dfigus)](https://github.com/dfigus "1 total commits to the Home Assistant orga: +1 commit to core +") - [dfournie (@dfournie)](https://github.com/dfournie "2 total commits to the Home Assistant orga: 2 commits to core ") +- [dgorti (@dgorti)](https://github.com/dgorti "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") +- [dgouarin (@dgouarin)](https://github.com/dgouarin "6 total commits to the Home Assistant orga: +6 commits to buildroot +") - [dgtal1 (@dgtal1)](https://github.com/dgtal1 "2 total commits to the Home Assistant orga: 1 commit to developers.home-assistant 1 commit to brands @@ -4434,24 +6028,24 @@ This page contains a list of people who have contributed in one way or another t - [Didgeridrew (@Didgeridrew)](https://github.com/Didgeridrew "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Diede van Marle (@Cyanogenbot)](https://github.com/Cyanogenbot "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Diederik van den Burger (@DiederikvandenB)](https://github.com/DiederikvandenB "2 total commits to the Home Assistant orga: 2 commits to core ") -- [Diefferson Koderer Môro (@djpremier)](https://github.com/djpremier "114 total commits to the Home Assistant orga: +- [Diefferson Koderer Môro (@djpremier)](https://github.com/djpremier "118 total commits to the Home Assistant orga: 84 commits to core -19 commits to brands -11 commits to home-assistant.io +21 commits to brands +13 commits to home-assistant.io ") -- [Diego Ambrosanio (@snakuzzo)](https://github.com/snakuzzo "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Diego Ambrosanio (@snakuzzo)](https://github.com/snakuzzo "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io ") -- [Diego Elio Pettenò (@Flameeyes)](https://github.com/Flameeyes "2 total commits to the Home Assistant orga: -1 commit to core +- [Diego Elio Pettenò (@Flameeyes)](https://github.com/Flameeyes "7 total commits to the Home Assistant orga: +6 commits to core 1 commit to home-assistant.io ") -- [dieselrabbit (@dieselrabbit)](https://github.com/dieselrabbit "1 total commits to the Home Assistant orga: -1 commit to core -") - [digiblur (@digiblur)](https://github.com/digiblur "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -4463,32 +6057,51 @@ This page contains a list of people who have contributed in one way or another t 6 commits to home-assistant.io 2 commits to core ") +- [Dima Boger (@b0g3r)](https://github.com/b0g3r "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Dima Goltsman (@dimagoltsman)](https://github.com/dimagoltsman "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [Dima Zavin (@thecynic)](https://github.com/thecynic "7 total commits to the Home Assistant orga: 6 commits to core 1 commit to home-assistant.io ") -- [Dimitri Prybysh (@dmand)](https://github.com/dmand "1 total commits to the Home Assistant orga: +- [Dimiter Geelen (@Didel)](https://github.com/Didel "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Dimitri Prybysh (@dimp-gh)](https://github.com/dimp-gh "1 total commits to the Home Assistant orga: 1 commit to operating-system ") +- [Dimitrij Kotrev (@nooploop)](https://github.com/nooploop "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Dimitrios Siganos (@dsiganos)](https://github.com/dsiganos "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [dimitripb (@dimitripb)](https://github.com/dimitripb "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [Dimitris (@karate)](https://github.com/karate "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Dimitry Golubovsky (@dmgolubovsky)](https://github.com/dmgolubovsky "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [dinoaus (@dinoaus)](https://github.com/dinoaus "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [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 "173 total commits to the Home Assistant orga: -117 commits to core -40 commits to home-assistant.io -7 commits to brands +- [Diogo Gomes (@dgomes)](https://github.com/dgomes "253 total commits to the Home Assistant orga: +174 commits to core +57 commits to home-assistant.io +12 commits to brands 3 commits to assets +3 commits to wheels-custom-integrations 2 commits to developers.home-assistant -2 commits to wheels-custom-integrations 1 commit to people 1 commit to frontend ") @@ -4500,9 +6113,20 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to core ") +- [Dirk (@dm82m)](https://github.com/dm82m "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [djaydev (@djaydev)](https://github.com/djaydev "1 total commits to the Home Assistant orga: 1 commit to docker ") +- [djerik (@djerik)](https://github.com/djerik "3 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +1 commit to brands +") +- [DJJo14 (@DJJo14)](https://github.com/DJJo14 "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [djm300 (@djm300)](https://github.com/djm300 "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -4510,14 +6134,14 @@ This page contains a list of people who have contributed in one way or another t - [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 +- [Djowie (@Djowie)](https://github.com/Djowie "1 total commits to the Home Assistant orga: +1 commit to core ") -- [djtimca (@djtimca)](https://github.com/djtimca "22 total commits to the Home Assistant orga: -11 commits to core +- [djtimca (@djtimca)](https://github.com/djtimca "30 total commits to the Home Assistant orga: +17 commits to core 5 commits to brands 4 commits to wheels-custom-integrations -2 commits to home-assistant.io +4 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 @@ -4528,7 +6152,7 @@ This page contains a list of people who have contributed in one way or another t - [dklemm (@dklemm)](https://github.com/dklemm "2 total commits to the Home Assistant orga: 2 commits to frontend ") -- [dkramer74 (@dkramer74)](https://github.com/dkramer74 "1 total commits to the Home Assistant orga: +- [dkramer74 (@Swanky-Bubbles)](https://github.com/Swanky-Bubbles "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Dmitriy (@marcellus00)](https://github.com/marcellus00 "2 total commits to the Home Assistant orga: @@ -4544,13 +6168,23 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Dmitry Katsubo (@dmak)](https://github.com/dmak "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Dmitry Kosenkov (@Junker)](https://github.com/Junker "1 total commits to the Home Assistant orga: +1 commit to core +") - [Dmitry Krasnoukhov (@krasnoukhov)](https://github.com/krasnoukhov "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Dmitry Mamontov (@dmamontov)](https://github.com/dmamontov "2 total commits to the Home Assistant orga: +2 commits to brands +") - [Dmitry Tretyakov (@dtretyakov)](https://github.com/dtretyakov "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Dmitry Vasilyev (@slydiman)](https://github.com/slydiman "1 total commits to the Home Assistant orga: +- [Dmitry Vasilyev (@slydiman)](https://github.com/slydiman "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") - [dmonego (@dmonego)](https://github.com/dmonego "4 total commits to the Home Assistant orga: @@ -4569,6 +6203,9 @@ This page contains a list of people who have contributed in one way or another t - [Dmytro Kytsmen (@Kietzmann)](https://github.com/Kietzmann "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Dmytro Milinevskyy (@niamster)](https://github.com/niamster "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Dmytro Shvaika (@DmytryS)](https://github.com/DmytryS "1 total commits to the Home Assistant orga: 1 commit to supervised-installer ") @@ -4616,31 +6253,42 @@ 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 "35 total commits to the Home Assistant orga: -28 commits to frontend +- [Donnie (@donkawechico)](https://github.com/donkawechico "42 total commits to the Home Assistant orga: +35 commits to frontend 4 commits to home-assistant.io 3 commits to core ") - [doogstar (@doogstar)](https://github.com/doogstar "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") +- [Doomic (@Doomic)](https://github.com/Doomic "1 total commits to the Home Assistant orga: +1 commit to core +") - [Doug (@douglasbeck)](https://github.com/douglasbeck "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [Doug Hoffman (@doug-hoffman)](https://github.com/doug-hoffman "2 total commits to the Home Assistant orga: +- [Doug Hoffman (@doug-hoffman)](https://github.com/doug-hoffman "4 total commits to the Home Assistant orga: +3 commits to core 1 commit to brands -1 commit to core ") - [Doug Ollerenshaw (@dougollerenshaw)](https://github.com/dougollerenshaw "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Doug Schaapveld (@djschaap)](https://github.com/djschaap "2 total commits to the Home Assistant orga: +2 commits to open-zwave +") - [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 addons ") -- [Douglas Paz (@dougppaz)](https://github.com/dougppaz "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [dougiteixeira (@dougiteixeira)](https://github.com/dougiteixeira "26 total commits to the Home Assistant orga: +16 commits to core +9 commits to brands +1 commit to home-assistant.io +") +- [Douglas RAILLARD (@DouglasRaillard)](https://github.com/DouglasRaillard "2 total commits to the Home Assistant orga: +2 commits to buildroot ") - [dozminic (@dozminic)](https://github.com/dozminic "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -4651,7 +6299,12 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [Dr John Tunnicliffe (@DrJohnT)](https://github.com/DrJohnT "3 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +1 commit to home-assistant.io +") +- [drahdiwaberl (@drahdiwaberl)](https://github.com/drahdiwaberl "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: @@ -4665,9 +6318,11 @@ This page contains a list of people who have contributed in one way or another t 1 commit to data.home-assistant 1 commit to home-assistant.io ") -- [dreed47 (@dreed47)](https://github.com/dreed47 "9 total commits to the Home Assistant orga: +- [dreed47 (@dreed47)](https://github.com/dreed47 "11 total commits to the Home Assistant orga: 8 commits to core +1 commit to wheels-custom-integrations 1 commit to developers.home-assistant +1 commit to brands ") - [dreizehnelf (@dreizehnelf)](https://github.com/dreizehnelf "1 total commits to the Home Assistant orga: 1 commit to core @@ -4678,16 +6333,30 @@ This page contains a list of people who have contributed in one way or another t - [Drew Budwin (@dbudwin)](https://github.com/dbudwin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Drew Fustini (@pdp7)](https://github.com/pdp7 "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Drew Skwiers\-Koballa (@dzsquared)](https://github.com/dzsquared "8 total commits to the Home Assistant orga: 8 commits to home-assistant.io ") - [Drew Wells (@drewwells)](https://github.com/drewwells "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [drfinn15 (@drfinn15)](https://github.com/drfinn15 "1 total commits to the Home Assistant orga: +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 core 1 commit to home-assistant.io ") +- [drinfernoo (@drinfernoo)](https://github.com/drinfernoo "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") +- [drizzle1 (@drizzle1)](https://github.com/drizzle1 "2 total commits to the Home Assistant orga: +1 commit 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 core 1 commit to home-assistant.io @@ -4701,20 +6370,26 @@ This page contains a list of people who have contributed in one way or another t - [drop table USERS; \-\- (@hudashot)](https://github.com/hudashot "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Dror Eiger (@deiger)](https://github.com/deiger "1 total commits to the Home Assistant orga: -1 commit to core +- [Dror Eiger (@deiger)](https://github.com/deiger "3 total commits to the Home Assistant orga: +3 commits to core +") +- [drosoCode (@drosoCode)](https://github.com/drosoCode "1 total commits to the Home Assistant orga: +1 commit to brands ") - [drphungky (@drphungky)](https://github.com/drphungky "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Drzony (@drzony)](https://github.com/drzony "1 total commits to the Home Assistant orga: +1 commit to core +") - [DrZzs (@Snipercaine)](https://github.com/Snipercaine "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [dtorner (@dtorner)](https://github.com/dtorner "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Dubh Ad (@DubhAd)](https://github.com/DubhAd "671 total commits to the Home Assistant orga: -659 commits to home-assistant.io +- [Dubh Ad (@DubhAd)](https://github.com/DubhAd "675 total commits to the Home Assistant orga: +663 commits to home-assistant.io 3 commits to developers.home-assistant 3 commits to alerts.home-assistant.io 3 commits to core @@ -4724,13 +6399,28 @@ This page contains a list of people who have contributed in one way or another t - [DuchkPy (@DuchkPy)](https://github.com/DuchkPy "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Duco Sebel (@DCSBL)](https://github.com/DCSBL "5 total commits to the Home Assistant orga: -3 commits to wheels-custom-integrations -2 commits to brands +- [dugurs (@dugurs)](https://github.com/dugurs "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [dummylabs (@dummylabs)](https://github.com/dummylabs "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Duncan Elliot (@dmelliot)](https://github.com/dmelliot "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Duncan Findlay (@duncf)](https://github.com/duncf "1 total commits to the Home Assistant orga: +1 commit to android ") - [Duncan Leo (@duncanleo)](https://github.com/duncanleo "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [duncanvanzyl (@duncanvanzyl)](https://github.com/duncanvanzyl "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [dunkelz (@dunkelz)](https://github.com/dunkelz "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [dunstad (@dunstad)](https://github.com/dunstad "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -4738,14 +6428,23 @@ This page contains a list of people who have contributed in one way or another t 6 commits to home-assistant.io 5 commits to core ") +- [DUPONCHEEL Sébastien (@sduponch)](https://github.com/sduponch "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [dupondje (@dupondje)](https://github.com/dupondje "4 total commits to the Home Assistant orga: 3 commits to core 1 commit to home-assistant.io ") +- [Dushara Jayasinghe (@nidujay)](https://github.com/nidujay "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Dustin Essington (@aetaric)](https://github.com/aetaric "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io 2 commits to core ") +- [Dustin Johnson (@drjson)](https://github.com/drjson "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Dustin Rue (@dustinrue)](https://github.com/dustinrue "2 total commits to the Home Assistant orga: 1 commit to developers.home-assistant 1 commit to home-assistant.io @@ -4764,21 +6463,40 @@ This page contains a list of people who have contributed in one way or another t - [dvz (@dvz)](https://github.com/dvz "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Dwain Scheeren (@dwainscheeren)](https://github.com/dwainscheeren "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Dwight Holman (@anonfunc)](https://github.com/anonfunc "6 total commits to the Home Assistant orga: 6 commits to pyharmony ") - [dwinnnspeaks (@dwinnnspeaks)](https://github.com/dwinnnspeaks "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Dycelll (@Dycelll)](https://github.com/Dycelll "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Dylan (@DSAutomations)](https://github.com/DSAutomations "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [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: +- [Dylan Do Amaral (@dylandoamaral)](https://github.com/dylandoamaral "1 total commits to the Home Assistant orga: 1 commit to brands ") +- [Dylan Gore (@DylanGore)](https://github.com/DylanGore "5 total commits to the Home Assistant orga: +3 commits to core +1 commit to brands +1 commit to home-assistant.io +") +- [dynasticorpheus (@dynasticorpheus)](https://github.com/dynasticorpheus "3 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core +1 commit to home-assistant.io +") +- [dywisor (@dywisor)](https://github.com/dywisor "7 total commits to the Home Assistant orga: +7 commits to buildroot +") - [dzukero (@dzukero)](https://github.com/dzukero "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -4789,6 +6507,13 @@ This page contains a list of people who have contributed in one way or another t - [earaya (@earaya)](https://github.com/earaya "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [ec\-blaster (@ec-blaster)](https://github.com/ec-blaster "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [echoromeo (@echoromeo)](https://github.com/echoromeo "2 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +") - [ecksun (@ecksun)](https://github.com/ecksun "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -4798,16 +6523,39 @@ This page contains a list of people who have contributed in one way or another t 1 commit to wheels-custom-integrations 1 commit to brands ") +- [Ed Coen (@ecoen66)](https://github.com/ecoen66 "2 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core +") - [Ed Marshall (@logic)](https://github.com/logic "2 total commits to the Home Assistant orga: 1 commit to open-zwave 1 commit to core ") +- [Ed Spiridonov (@edo1)](https://github.com/edo1 "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [ed\-blake1 (@ed-blake1)](https://github.com/ed-blake1 "7 total commits to the Home Assistant orga: +7 commits to buildroot +") +- [edAndy (@Vip0r)](https://github.com/Vip0r "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Eddie Chiang (@eddie-chiang)](https://github.com/eddie-chiang "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Eddy G (@eddyg)](https://github.com/eddyg "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [EddyK69 (@EddyK69)](https://github.com/EddyK69 "2 total commits to the Home Assistant orga: +2 commits to core +") - [eddyliao (@eddyliao)](https://github.com/eddyliao "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Edgar Bonet (@edgar-bonet)](https://github.com/edgar-bonet "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [Edgardo Ramírez (@SoldierCorp)](https://github.com/SoldierCorp "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -4817,22 +6565,28 @@ This page contains a list of people who have contributed in one way or another t - [edif30 (@edif30)](https://github.com/edif30 "3 total commits to the Home Assistant orga: 3 commits to core ") +- [Edmundo Ferreira (@edmundoferreira)](https://github.com/edmundoferreira "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [edomat (@edomat)](https://github.com/edomat "1 total commits to the Home Assistant orga: 1 commit 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 "16 total commits to the Home Assistant orga: -7 commits to core -6 commits to home-assistant.io +- [Eduard van Valkenburg (@eavanvalkenburg)](https://github.com/eavanvalkenburg "56 total commits to the Home Assistant orga: +40 commits to core +12 commits to home-assistant.io +2 commits to brands 1 commit to wheels-custom-integrations 1 commit to developers.home-assistant -1 commit to brands ") - [Eduardo Fonseca (@ebfio)](https://github.com/ebfio "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Eduardo Roldan (@eroldan)](https://github.com/eroldan "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Edward Knight (@Edward-Knight)](https://github.com/Edward-Knight "2 total commits to the Home Assistant orga: 2 commits to core ") @@ -4845,6 +6599,9 @@ This page contains a list of people who have contributed in one way or another t - [Edward Thomson (@ethomson)](https://github.com/ethomson "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Edwin Martin (@edwinm)](https://github.com/edwinm "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Edwin Smulders (@Dutchy-)](https://github.com/Dutchy- "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io 2 commits to core @@ -4852,9 +6609,13 @@ This page contains a list of people who have contributed in one way or another t - [EdwinEngelen (@EdwinEngelen)](https://github.com/EdwinEngelen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Ee W\. Durbin III (@ewdurbin)](https://github.com/ewdurbin "2 total commits to the Home Assistant orga: +- [Ee Durbin (@ewdurbin)](https://github.com/ewdurbin "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") +- [Eelco Bode (@eelcob)](https://github.com/eelcob "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [eelcohn (@eelcohn)](https://github.com/eelcohn "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -4862,14 +6623,17 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [EetuRasilainen (@EetuRasilainen)](https://github.com/EetuRasilainen "1 total commits to the Home Assistant orga: +1 commit to core +") - [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 "11 total commits to the Home Assistant orga: -11 commits to home-assistant.io +- [EgonMarmol (@EgonMarmol)](https://github.com/EgonMarmol "13 total commits to the Home Assistant orga: +13 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 @@ -4881,16 +6645,28 @@ This page contains a list of people who have contributed in one way or another t 9 commits to core 3 commits to home-assistant.io ") -- [ehendrix23 (@ehendrix23)](https://github.com/ehendrix23 "62 total commits to the Home Assistant orga: -54 commits to core -5 commits to home-assistant.io +- [ehendrix23 (@ehendrix23)](https://github.com/ehendrix23 "76 total commits to the Home Assistant orga: +65 commits to core +8 commits to home-assistant.io 1 commit to pyharmony -1 commit to wheels-custom-integrations 1 commit to frontend +1 commit to wheels-custom-integrations ") - [eieste (@eieste)](https://github.com/eieste "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Eiko Wagenknecht (@eikowagenknecht)](https://github.com/eikowagenknecht "10 total commits to the Home Assistant orga: +9 commits to home-assistant.io +1 commit to architecture +") +- [Einar Jón (@einarjon)](https://github.com/einarjon "5 total commits to the Home Assistant orga: +5 commits to buildroot +") +- [einarhauks (@einarhauks)](https://github.com/einarhauks "13 total commits to the Home Assistant orga: +10 commits to core +2 commits to home-assistant.io +1 commit to brands +") - [einschmidt (@einschmidt)](https://github.com/einschmidt "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to builder @@ -4898,29 +6674,33 @@ This page contains a list of people who have contributed in one way or another t - [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 "23 total commits to the Home Assistant orga: -20 commits to home-assistant.io +- [Eirik Z (@atxbyea)](https://github.com/atxbyea "29 total commits to the Home Assistant orga: +26 commits to home-assistant.io 3 commits to brands ") - [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: +- [Eitan Mosenkis (@emosenkis)](https://github.com/emosenkis "5 total commits to the Home Assistant orga: 3 commits to core 2 commits to home-assistant.io -1 commit to netdisco ") -- [ejars (@ejars)](https://github.com/ejars "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [ejars (@ejars)](https://github.com/ejars "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [ejaviga (@ejaviga)](https://github.com/ejaviga "1 total commits to the Home Assistant orga: 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 +- [ekutner (@ekutner)](https://github.com/ekutner "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Elad Bar (@elad-bar)](https://github.com/elad-bar "5 total commits to the Home Assistant orga: +4 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: +- [Elahd Bar\-Shai (@elahd)](https://github.com/elahd "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 ") @@ -4931,11 +6711,8 @@ This page contains a list of people who have contributed in one way or another t 1 commit to homebridge-homeassistant ") - [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 +3 commits to home-assistant.io ") - [Elena Rogleva (@erogleva)](https://github.com/erogleva "3 total commits to the Home Assistant orga: 3 commits to core @@ -4959,14 +6736,29 @@ This page contains a list of people who have contributed in one way or another t 9 commits to home-assistant.io 1 commit to brands ") +- [Elliot Morales Solé (@elliotmoso)](https://github.com/elliotmoso "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Ellis Michael (@emichael)](https://github.com/emichael "1 total commits to the Home Assistant orga: +1 commit to core +") - [Ellis Percival (@flyte)](https://github.com/flyte "31 total commits to the Home Assistant orga: 25 commits to core 6 commits to home-assistant.io ") +- [ElmaxSrl (@ElmaxSrl)](https://github.com/ElmaxSrl "1 total commits to the Home Assistant orga: +1 commit to brands +") - [elmurato (@elmurato)](https://github.com/elmurato "5 total commits to the Home Assistant orga: 4 commits to core 1 commit to home-assistant.io ") +- [Eloi Bail (@ebail)](https://github.com/ebail "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [elschnert (@elschnert)](https://github.com/elschnert "1 total commits to the Home Assistant orga: +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 ") @@ -4979,6 +6771,10 @@ This page contains a list of people who have contributed in one way or another t - [elyesa (@ssl)](https://github.com/ssl "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [elyobelyob (@elyobelyob)](https://github.com/elyobelyob "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to core +") - [Em (@esciara)](https://github.com/esciara "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") @@ -5012,16 +6808,13 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [Emil Nildersen (@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 "7 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Emil Stjerneman (@bratanon)](https://github.com/bratanon "8 total commits to the Home Assistant orga: 3 commits to core -1 commit to frontend -") -- [Emil Walser (@emme1444)](https://github.com/emme1444 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +3 commits to home-assistant.io +2 commits to frontend ") - [emil\-e (@emil-e)](https://github.com/emil-e "1 total commits to the Home Assistant orga: 1 commit to python-openzwave @@ -5029,15 +6822,15 @@ 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 "12 total commits to the Home Assistant orga: -10 commits to core +- [Emilv2 (@Emilv2)](https://github.com/Emilv2 "14 total commits to the Home Assistant orga: +12 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 "388 total commits to the Home Assistant orga: -209 commits to core +- [Emily Mills (@emlove)](https://github.com/emlove "391 total commits to the Home Assistant orga: +212 commits to core 97 commits to frontend 68 commits to home-assistant.io 4 commits to developers.home-assistant @@ -5067,11 +6860,14 @@ This page contains a list of people who have contributed in one way or another t - [EmmanuelLM (@EmmanuelLM)](https://github.com/EmmanuelLM "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Emory Penney (@ejpenney)](https://github.com/ejpenney "2 total commits to the Home Assistant orga: +2 commits to core +") - [Emre Saglam (@emresaglam)](https://github.com/emresaglam "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [emufan (@emufan)](https://github.com/emufan "3 total commits to the Home Assistant orga: -2 commits to core +- [emufan (@emufan)](https://github.com/emufan "4 total commits to the Home Assistant orga: +3 commits to core 1 commit to home-assistant.io ") - [endor (@endor-force)](https://github.com/endor-force "24 total commits to the Home Assistant orga: @@ -5081,6 +6877,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to hassio-build 1 commit to brands ") +- [enegaard (@enegaard)](https://github.com/enegaard "2 total commits to the Home Assistant orga: +2 commits to core +") - [Enrico Battistella (@battistaar)](https://github.com/battistaar "1 total commits to the Home Assistant orga: 1 commit to homebridge-homeassistant ") @@ -5091,28 +6890,41 @@ This page contains a list of people who have contributed in one way or another t - [Enrique Gonzalez (@enriquegh)](https://github.com/enriquegh "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Enrique Ocaña González (@eocanha)](https://github.com/eocanha "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Enu Rist (@enurist)](https://github.com/enurist "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [epenet (@epenet)](https://github.com/epenet "42 total commits to the Home Assistant orga: -32 commits to core -6 commits to home-assistant.io -2 commits to frontend +- [eparla774 (@eparla774)](https://github.com/eparla774 "1 total commits to the Home Assistant orga: +1 commit to supervisor +") +- [epenet (@epenet)](https://github.com/epenet "1425 total commits to the Home Assistant orga: +1384 commits to core +23 commits to home-assistant.io +8 commits to developers.home-assistant +5 commits to brands +4 commits to frontend 1 commit to wheels-custom-integrations -1 commit to brands ") - [eracknaphobia (@eracknaphobia)](https://github.com/eracknaphobia "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Erdem MEYDANLI (@meerd)](https://github.com/meerd "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [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 +- [erffrfez (@erffrfez)](https://github.com/erffrfez "5 total commits to the Home Assistant orga: +5 commits to home-assistant.io ") - [Eric Clymer (@ericwclymer)](https://github.com/ericwclymer "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Eric Coffman (@ericbrian)](https://github.com/ericbrian "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Eric Hagan (@ehagan)](https://github.com/ehagan "5 total commits to the Home Assistant orga: 3 commits to core 1 commit to frontend @@ -5133,6 +6945,15 @@ This page contains a list of people who have contributed in one way or another t - [Eric Jansen (@ej81)](https://github.com/ej81 "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Eric Jarrige (@jorasse)](https://github.com/jorasse "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Eric Le Bihan (@elebihan)](https://github.com/elebihan "206 total commits to the Home Assistant orga: +206 commits to buildroot +") +- [Eric Mai (@ericmai624)](https://github.com/ericmai624 "1 total commits to the Home Assistant orga: +1 commit to core +") - [Eric Matte (@ericmatte)](https://github.com/ericmatte "3 total commits to the Home Assistant orga: 3 commits to addons ") @@ -5143,6 +6964,9 @@ This page contains a list of people who have contributed in one way or another t 15 commits to core 4 commits to home-assistant.io ") +- [Eric Nelson (@ericnelsonaz)](https://github.com/ericnelsonaz "6 total commits to the Home Assistant orga: +6 commits to buildroot +") - [Eric Oosting (@eoosting)](https://github.com/eoosting "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") @@ -5156,8 +6980,16 @@ This page contains a list of people who have contributed in one way or another t - [Eric Rolf (@xrolfex)](https://github.com/xrolfex "13 total commits to the Home Assistant orga: 13 commits to core ") -- [Eric Severance (@esev)](https://github.com/esev "20 total commits to the Home Assistant orga: -20 commits to core +- [Eric Severance (@esev)](https://github.com/esev "74 total commits to the Home Assistant orga: +71 commits to core +2 commits to home-assistant.io +1 commit to frontend +") +- [Eric Stern (@Stormalong)](https://github.com/Stormalong "2 total commits to the Home Assistant orga: +2 commits to frontend +") +- [Eric Svärd (@ulmerkott)](https://github.com/ulmerkott "1 total commits to the Home Assistant orga: +1 commit to core ") - [Eric Thomas (@et)](https://github.com/et "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant @@ -5168,45 +7000,66 @@ This page contains a list of people who have contributed in one way or another t - [ericgingras (@e850205)](https://github.com/e850205 "1 total commits to the Home Assistant orga: 1 commit to core ") -- [ericvb (@ericvb)](https://github.com/ericvb "1 total commits to the Home Assistant orga: +- [Erico Nunes (@enunes)](https://github.com/enunes "51 total commits to the Home Assistant orga: +51 commits to buildroot +") +- [ericvb (@ericvb)](https://github.com/ericvb "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") - [ericvitale (@ericvitale)](https://github.com/ericvitale "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Erik (@edekeijzer)](https://github.com/edekeijzer "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [Erik A (@erikarenhill)](https://github.com/erikarenhill "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Erik B Andersen (@ErikBAndersen)](https://github.com/ErikBAndersen "1163 total commits to the Home Assistant orga: +1163 commits to buildroot +") - [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: +- [Erik Eriksson (@molobrakos)](https://github.com/molobrakos "123 total commits to the Home Assistant orga: 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 J\. Olson (@arychj)](https://github.com/arychj "2 total commits to the Home Assistant orga: -1 commit to core +- [Erik J\. Olson (@arychj)](https://github.com/arychj "3 total commits to the Home Assistant orga: +2 commits to core 1 commit to home-assistant.io ") -- [Erik Kastelec (@erikkastelec)](https://github.com/erikkastelec "1 total commits to the Home Assistant orga: +- [Erik Kastelec (@erikkastelec)](https://github.com/erikkastelec "3 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands 1 commit to core ") -- [Erik Montnemery (@emontnemery)](https://github.com/emontnemery "662 total commits to the Home Assistant orga: -507 commits to core -114 commits to home-assistant.io -28 commits to frontend -10 commits to developers.home-assistant -2 commits to alerts.home-assistant.io +- [Erik Larsson (@ortogonal)](https://github.com/ortogonal "11 total commits to the Home Assistant orga: +11 commits to buildroot +") +- [Erik Montnemery (@emontnemery)](https://github.com/emontnemery "2044 total commits to the Home Assistant orga: +1708 commits to core +208 commits to home-assistant.io +61 commits to developers.home-assistant +58 commits to frontend +3 commits to alerts.home-assistant.io +2 commits to architecture +2 commits to data.home-assistant +1 commit to home-assistant-js-websocket 1 commit to people ") - [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 Stromdahl (@erstrom)](https://github.com/erstrom "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Erik van Paassen (@evpaassen)](https://github.com/evpaassen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -5220,16 +7073,17 @@ This page contains a list of people who have contributed in one way or another t - [Erkka Tahvanainen (@tahvane1)](https://github.com/tahvane1 "1 total commits to the Home Assistant orga: 1 commit to brands ") -- [erlendmoland (@erlendmoland)](https://github.com/erlendmoland "8 total commits to the Home Assistant orga: -8 commits to home-assistant.io +- [erlendmoland (@erlendmoland)](https://github.com/erlendmoland "12 total commits to the Home Assistant orga: +12 commits to home-assistant.io ") - [Ermanno Baschiera (@ebaschiera)](https://github.com/ebaschiera "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Ernst Klamer (@Ernst79)](https://github.com/Ernst79 "18 total commits to the Home Assistant orga: -8 commits to core -6 commits to home-assistant.io +- [Ernst Klamer (@Ernst79)](https://github.com/Ernst79 "30 total commits to the Home Assistant orga: +16 commits to core +9 commits to home-assistant.io 2 commits to brands +1 commit to example-custom-config 1 commit to wheels-custom-integrations 1 commit to developers.home-assistant ") @@ -5239,17 +7093,25 @@ This page contains a list of people who have contributed in one way or another t - [ERovirosa (@ERovirosa)](https://github.com/ERovirosa "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Erwan Gautron (@ErwanGa)](https://github.com/ErwanGa "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Erwin B (@eblekkenhorst)](https://github.com/eblekkenhorst "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Erwin Oldenkamp (@Eernie)](https://github.com/Eernie "1 total commits to the Home Assistant orga: +1 commit to core +") - [Esben Damgaard (@Ebbe)](https://github.com/Ebbe "2 total commits to the Home Assistant orga: 1 commit to developers.home-assistant 1 commit to core ") -- [escoand (@escoand)](https://github.com/escoand "52 total commits to the Home Assistant orga: -39 commits to core +- [Esben Haabendal (@esben)](https://github.com/esben "10 total commits to the Home Assistant orga: +10 commits to buildroot +") +- [escoand (@escoand)](https://github.com/escoand "50 total commits to the Home Assistant orga: +40 commits to core 8 commits to home-assistant.io -3 commits to netdisco 1 commit to builder 1 commit to brands ") @@ -5263,12 +7125,18 @@ This page contains a list of people who have contributed in one way or another t 10 commits to core 4 commits to home-assistant.io ") +- [Etienne Carriere (@etienne-lms)](https://github.com/etienne-lms "50 total commits to the Home Assistant orga: +50 commits to buildroot +") +- [Etienne G (@egguy)](https://github.com/egguy "1 total commits to the Home Assistant orga: +1 commit to core +") +- [EtienneMD (@EtienneMD)](https://github.com/EtienneMD "1 total commits to the Home Assistant orga: +1 commit to core +") - [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 core -") - [Etzion Bar\-Noy (@ezaton)](https://github.com/ezaton "1 total commits to the Home Assistant orga: 1 commit to operating-system ") @@ -5277,6 +7145,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to home-assistant.io ") +- [Eugen Hristev (@ehristev)](https://github.com/ehristev "12 total commits to the Home Assistant orga: +12 commits to buildroot +") - [Eugene Kuzin (@kuzin2006)](https://github.com/kuzin2006 "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -5288,25 +7159,31 @@ This page contains a list of people who have contributed in one way or another t 4 commits to home-assistant.io 1 commit to brands ") +- [Eugene Tarassov (@eugene-tarassov)](https://github.com/eugene-tarassov "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [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 "101 total commits to the Home Assistant orga: -64 commits to core -27 commits to home-assistant.io +- [Eugenio Panadero (@azogue)](https://github.com/azogue "111 total commits to the Home Assistant orga: +73 commits to core +28 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 "13 total commits to the Home Assistant orga: -8 commits to core +- [Evan Bruhn (@evanjd)](https://github.com/evanjd "14 total commits to the Home Assistant orga: +9 commits to core 4 commits to home-assistant.io 1 commit to alerts.home-assistant.io ") - [Evan Morse (@RowdyDog12)](https://github.com/RowdyDog12 "10 total commits to the Home Assistant orga: 10 commits to home-assistant.io ") +- [Evan Zelkowitz (@ezelkow1)](https://github.com/ezelkow1 "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [everix1992 (@everix1992)](https://github.com/everix1992 "4 total commits to the Home Assistant orga: 2 commits to pyharmony 1 commit to core @@ -5315,12 +7192,15 @@ This page contains a list of people who have contributed in one way or another t - [Evert Van den Bruel (@Evertvandenbruel)](https://github.com/Evertvandenbruel "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [EvgeniiDidin (@EvgeniiDidin)](https://github.com/EvgeniiDidin "50 total commits to the Home Assistant orga: +50 commits to buildroot +") - [Evgeniy (@evgeniy-khatko)](https://github.com/evgeniy-khatko "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") -- [Evgeny (@freekode)](https://github.com/freekode "8 total commits to the Home Assistant orga: -5 commits to core +- [Evgeny (@freekode)](https://github.com/freekode "11 total commits to the Home Assistant orga: +8 commits to core 3 commits to home-assistant.io ") - [evoblicec (@evoblicec)](https://github.com/evoblicec "1 total commits to the Home Assistant orga: @@ -5333,14 +7213,17 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [ews99 (@erwin-willems)](https://github.com/erwin-willems "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [explosivo22 (@explosivo22)](https://github.com/explosivo22 "2 total commits to the Home Assistant orga: +2 commits to brands +") - [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 "9 total commits to the Home Assistant orga: -5 commits to core +- [eyager1 (@eyager1)](https://github.com/eyager1 "10 total commits to the Home Assistant orga: +6 commits to core 3 commits to home-assistant.io 1 commit to frontend ") @@ -5351,17 +7234,22 @@ This page contains a list of people who have contributed in one way or another t - [Eyal Cohen (@eyalcha)](https://github.com/eyalcha "1 total commits to the Home Assistant orga: 1 commit to brands ") -- [Fabian Affolter (@fabaff)](https://github.com/fabaff "5747 total commits to the Home Assistant orga: -3384 commits to home-assistant.io -2125 commits to core -64 commits to developers.home-assistant +- [Ezequiel Garcia (@ezequielgarcia)](https://github.com/ezequielgarcia "52 total commits to the Home Assistant orga: +52 commits to buildroot +") +- [f8cfe@free\.fr (@fillods)](https://github.com/fillods "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Fabian Affolter (@fabaff)](https://github.com/fabaff "5800 total commits to the Home Assistant orga: +3395 commits to home-assistant.io +2177 commits to core +65 commits to developers.home-assistant 39 commits to home-assistant-notebooks 33 commits to assets 14 commits to operating-system 14 commits to data.home-assistant 12 commits to hassio-build 12 commits to frontend -11 commits to netdisco 9 commits to supervisor 7 commits to hass-release 7 commits to addons @@ -5381,6 +7269,9 @@ This page contains a list of people who have contributed in one way or another t - [Fabian Heredia Montiel (@fabianhjr)](https://github.com/fabianhjr "4 total commits to the Home Assistant orga: 4 commits to core ") +- [Fabian Mewes (@archi-tekt)](https://github.com/archi-tekt "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [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 @@ -5388,57 +7279,99 @@ This page contains a list of people who have contributed in one way or another t - [Fabian Rodriguez (@MagicFab)](https://github.com/MagicFab "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Fabian Seitz (@FaserF)](https://github.com/FaserF "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Fabian Zimmermann (@devfaz)](https://github.com/devfaz "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Fabien Marteau (@Martoni)](https://github.com/Martoni "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Fabien Parent (@Fabo)](https://github.com/Fabo "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Fabien Piuzzi (@reefab)](https://github.com/reefab "13 total commits to the Home Assistant orga: 8 commits to core 4 commits to home-assistant.io 1 commit to frontend ") +- [Fabio (@pagadrift85)](https://github.com/pagadrift85 "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") - [Fabio Fantoni (@Fantu)](https://github.com/Fantu "1 total commits to the Home Assistant orga: 1 commit to operating-system ") +- [Fabio Porcedda (@fabio-porcedda)](https://github.com/fabio-porcedda "198 total commits to the Home Assistant orga: +198 commits to buildroot +") +- [Fabio Porcedda (@telit-fabiopo)](https://github.com/telit-fabiopo "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Fabio Urquiza (@fabiorush)](https://github.com/fabiorush "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [fabiocastagnino (@fabiocastagnino)](https://github.com/fabiocastagnino "4 total commits to the Home Assistant orga: -1 commit to developers.home-assistant 1 commit to frontend +1 commit to developers.home-assistant 1 commit to core 1 commit to home-assistant.io ") -- [Fabrice Fontaine (@ffontaine)](https://github.com/ffontaine "7 total commits to the Home Assistant orga: +- [fabioestevam (@fabioestevam)](https://github.com/fabioestevam "369 total commits to the Home Assistant orga: +369 commits to buildroot +") +- [Fabrice Fontaine (@ffontaine)](https://github.com/ffontaine "4147 total commits to the Home Assistant orga: +4140 commits to buildroot 7 commits to open-zwave ") - [Fabrice Pipart (@fabricepipart)](https://github.com/fabricepipart "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Fabricio Avila (@fabricioavil)](https://github.com/fabricioavil "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Fabricio Avila (@fabricioavil)](https://github.com/fabricioavil "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io ") - [Fabrizio Furnari (@fabfurnari)](https://github.com/fabfurnari "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io 2 commits to core ") +- [Fabrizio Tarizzo (@bluviolin)](https://github.com/bluviolin "1 total commits to the Home Assistant orga: +1 commit to core +") - [fabtesta (@fabtesta)](https://github.com/fabtesta "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [Fairesoimeme (@fairecasoimeme)](https://github.com/fairecasoimeme "1 total commits to the Home Assistant orga: +1 commit to core +") - [fakezeta (@fakezeta)](https://github.com/fakezeta "8 total commits to the Home Assistant orga: 7 commits to core 1 commit to home-assistant.io ") +- [Falco Hyfing (@hyfing)](https://github.com/hyfing "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [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 "3 total commits to the Home Assistant orga: +- [Farid (@ooii)](https://github.com/ooii "4 total commits to the Home Assistant orga: 2 commits to core +1 commit to developers.home-assistant 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 +- [Farzad Noorian (@fnoorian)](https://github.com/fnoorian "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to core ") - [faster777 (@faster777)](https://github.com/faster777 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Fatih Aşıcı (@fatih-asici)](https://github.com/fatih-asici "54 total commits to the Home Assistant orga: +54 commits to buildroot +") - [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 @@ -5461,18 +7394,36 @@ This page contains a list of people who have contributed in one way or another t 5 commits to home-assistant.io 2 commits to core ") +- [Federico Pellegrin (@fedepell)](https://github.com/fedepell "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Federico Zivolo (@FezVrasta)](https://github.com/FezVrasta "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to core ") +- [Feliksas The Lion (@Feliksas)](https://github.com/Feliksas "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Felipe Contreras (@felipec)](https://github.com/felipec "9 total commits to the Home Assistant orga: +9 commits to buildroot +") - [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 "39 total commits to the Home Assistant orga: -31 commits to core +- [Felipe Martins Diel (@felipediel)](https://github.com/felipediel "62 total commits to the Home Assistant orga: +54 commits to core 7 commits to home-assistant.io 1 commit to developers.home-assistant ") +- [Felipe Santos (@felipecrs)](https://github.com/felipecrs "5 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to addons +1 commit to devcontainer +1 commit to core +") +- [Felix (@0xFelix)](https://github.com/0xFelix "2 total commits to the Home Assistant orga: +2 commits to core +") - [Felix (@vidschofelix)](https://github.com/vidschofelix "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -5499,9 +7450,19 @@ This page contains a list of people who have contributed in one way or another t - [Felix Stupp (@Zocker1999NET)](https://github.com/Zocker1999NET "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Felix Stürmer (@weltenwort)](https://github.com/weltenwort "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Felix Vollmer (@fvollmer)](https://github.com/fvollmer "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [fenner (@fenner)](https://github.com/fenner "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ferdinand (@Smitplaza)](https://github.com/Smitplaza "2 total commits to the Home Assistant orga: +2 commits to core +") - [ferdinand (@ferdinand)](https://github.com/ferdinand "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -5527,6 +7488,12 @@ This page contains a list of people who have contributed in one way or another t - [fhoekstra (@fhoekstra)](https://github.com/fhoekstra "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [fi\-sch (@fi-sch)](https://github.com/fi-sch "1 total commits to the Home Assistant orga: +1 commit to addons +") +- [FidgetyRat (@FidgetyRat)](https://github.com/FidgetyRat "1 total commits to the Home Assistant orga: +1 commit to core +") - [Fietspomp86 (@Fietspomp86)](https://github.com/Fietspomp86 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -5544,6 +7511,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Filip Skoneczny (@fsky3)](https://github.com/fsky3 "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Filip Van Ham (@filipvh)](https://github.com/filipvh "2 total commits to the Home Assistant orga: 1 commit to wheels-custom-integrations 1 commit to brands @@ -5551,23 +7521,35 @@ This page contains a list of people who have contributed in one way or another t - [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 ") +- [Filipe Pina (@fopina)](https://github.com/fopina "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Filippo Sironi (@filipposironi)](https://github.com/filipposironi "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [fillefilip8 (@fillefilip8)](https://github.com/fillefilip8 "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Finbarr Brady (@fbradyirl)](https://github.com/fbradyirl "54 total commits to the Home Assistant orga: +- [filmgarage (@filmgarage)](https://github.com/filmgarage "6 total commits to the Home Assistant orga: +6 commits to brands +") +- [Finbarr Brady (@fbradyirl)](https://github.com/fbradyirl "51 total commits to the Home Assistant orga: 38 commits to core 12 commits to home-assistant.io -3 commits to netdisco 1 commit to people ") - [fineemb (@fineemb)](https://github.com/fineemb "3 total commits to the Home Assistant orga: 3 commits to brands ") -- [finity69x2 (@finity69x2)](https://github.com/finity69x2 "6 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [finity69x2 (@finity69x2)](https://github.com/finity69x2 "7 total commits to the Home Assistant orga: +4 commits to home-assistant.io 2 commits to brands 1 commit to core ") +- [Finn (@F1nnM)](https://github.com/F1nnM "4 total commits to the Home Assistant orga: +4 commits to supervisor +") - [finnysamuel (@finnysamuel)](https://github.com/finnysamuel "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -5601,8 +7583,8 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to home-assistant.io ") -- [FlavorFx (@FlavorFx)](https://github.com/FlavorFx "3 total commits to the Home Assistant orga: -2 commits to core +- [FlavorFx (@FlavorFx)](https://github.com/FlavorFx "4 total commits to the Home Assistant orga: +3 commits to core 1 commit to home-assistant.io ") - [flebourse (@flebourse)](https://github.com/flebourse "1 total commits to the Home Assistant orga: @@ -5611,6 +7593,9 @@ This page contains a list of people who have contributed in one way or another t - [FletcherAU (@FletcherAU)](https://github.com/FletcherAU "1 total commits to the Home Assistant orga: 1 commit to core ") +- [flfue (@flfue)](https://github.com/flfue "2 total commits to the Home Assistant orga: +2 commits to core +") - [flinkebernt (@flinkebernt)](https://github.com/flinkebernt "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") @@ -5618,6 +7603,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [flixhsw (@flixhsw)](https://github.com/flixhsw "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Flo (@hiFloh)](https://github.com/hiFloh "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -5630,16 +7618,19 @@ This page contains a list of people who have contributed in one way or another t - [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 "20 total commits to the Home Assistant orga: -16 commits to core -4 commits to home-assistant.io -") -- [Florian (@1technophile)](https://github.com/1technophile "1 total commits to the Home Assistant orga: +- [Florent Thoumie (@flz)](https://github.com/flz "21 total commits to the Home Assistant orga: +20 commits to core 1 commit to home-assistant.io ") +- [florent valette (@fvalette)](https://github.com/fvalette "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Florian (@gador)](https://github.com/gador "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Florian (@1technophile)](https://github.com/1technophile "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Florian Bachmann (@baflo)](https://github.com/baflo "1 total commits to the Home Assistant orga: 1 commit to frontend ") @@ -5649,7 +7640,11 @@ This page contains a list of people who have contributed in one way or another t - [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 "6 total commits to the Home Assistant orga: +- [Florian Fainelli (@ffainelli)](https://github.com/ffainelli "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Florian Gareis (@TheZoker)](https://github.com/TheZoker "11 total commits to the Home Assistant orga: +5 commits to core 3 commits to frontend 1 commit to android 1 commit to developers.home-assistant @@ -5661,9 +7656,12 @@ 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 "9 total commits to the Home Assistant orga: +- [Florian Heilmann (@FHeilmann)](https://github.com/FHeilmann "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Florian Holzapfel (@florianholzapfel)](https://github.com/florianholzapfel "6 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 "42 total commits to the Home Assistant orga: @@ -5672,6 +7670,9 @@ This page contains a list of people who have contributed in one way or another t 4 commits to brands 2 commits to assets ") +- [Florian Lagg (@LaggAt)](https://github.com/LaggAt "1 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +") - [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 @@ -5706,21 +7707,34 @@ This page contains a list of people who have contributed in one way or another t - [fluzz (@fluzz)](https://github.com/fluzz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [flyize (@flyize)](https://github.com/flyize "1 total commits to the Home Assistant orga: +1 commit to core +") - [fmartens (@fmartens)](https://github.com/fmartens "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [fmartinou (@fmartinou)](https://github.com/fmartinou "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [FMKaiba (@FMKaiba)](https://github.com/FMKaiba "1 total commits to the Home Assistant orga: +1 commit to core +") - [fnurgel (@fnurgel)](https://github.com/fnurgel "2 total commits to the Home Assistant orga: 2 commits to core ") - [fodi666 (@fodi666)](https://github.com/fodi666 "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [fOmey (@fOmey)](https://github.com/fOmey "4 total commits to the Home Assistant orga: +4 commits to core +") - [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: +- [foreign\-sub (@foreign-sub)](https://github.com/foreign-sub "5 total commits to the Home Assistant orga: 4 commits to core +1 commit to supervisor ") - [Forte (@fortepc)](https://github.com/fortepc "8 total commits to the Home Assistant orga: 8 commits to home-assistant.io @@ -5732,69 +7746,110 @@ This page contains a list of people who have contributed in one way or another t - [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 "8 total commits to the Home Assistant orga: +- [foxy82 (@foxy82)](https://github.com/foxy82 "9 total commits to the Home Assistant orga: 4 commits to core 3 commits to home-assistant.io 1 commit to addons +1 commit to developers.home-assistant ") -- [Fran (@franfos)](https://github.com/franfos "2 total commits to the Home Assistant orga: -1 commit to core -1 commit to home-assistant.io +- [fprokop (@fprokop)](https://github.com/fprokop "2 total commits to the Home Assistant orga: +1 commit to alerts.home-assistant.io +1 commit to frontend ") - [fran1987 (@fran1987)](https://github.com/fran1987 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Frances Coronel (@FrancesCoronel)](https://github.com/FrancesCoronel "1 total commits to the Home Assistant orga: -1 commit to 1password-teams-open-source -") - [Francesco (@Leosirth)](https://github.com/Leosirth "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Francesco Negri (@dhinus)](https://github.com/dhinus "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Francesco Nwokeka (@nwoki)](https://github.com/nwoki "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Franchie (@Franchie)](https://github.com/Franchie "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Francis Mendes (@FrancisMendes)](https://github.com/FrancisMendes "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Francis Reyes (@fmr)](https://github.com/fmr "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Francisco Gonzalez Morell (@gzmorell)](https://github.com/gzmorell "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [francispoisson (@francispoisson)](https://github.com/francispoisson "1 total commits to the Home Assistant orga: 1 commit to brands ") -- [Franck Nijhof (@frenck)](https://github.com/frenck "2240 total commits to the Home Assistant orga: -893 commits to home-assistant.io -839 commits to core -127 commits to addons -88 commits to brands -62 commits to supervisor -56 commits to cli -51 commits to developers.home-assistant -25 commits to frontend -21 commits to docker-base -16 commits to alerts.home-assistant.io -9 commits to architecture -8 commits to plugin-cli +- [Franck Nijhof (@frenck)](https://github.com/frenck "4642 total commits to the Home Assistant orga: +2350 commits to core +1589 commits to home-assistant.io +149 commits to brands +141 commits to addons +93 commits to developers.home-assistant +75 commits to supervisor +57 commits to cli +55 commits to frontend +25 commits to docker-base +21 commits to alerts.home-assistant.io +11 commits to architecture +10 commits to plugin-cli +8 commits to ci-azure 7 commits to operating-system -4 commits to hass-release +5 commits to hass-release 4 commits to assets 4 commits to data.home-assistant +4 commits to wheels-custom-integrations 3 commits to iOS +3 commits to home-assistant-js-websocket 3 commits to actions -3 commits to wheels-custom-integrations -2 commits to home-assistant-js-websocket +3 commits to version +3 commits to os-agent +3 commits to my.home-assistant.io +2 commits to docker 2 commits to supervised-installer 2 commits to companion.home-assistant -2 commits to ci-azure 1 commit to hubot-home-assistant 1 commit to hassio-build 1 commit to custom-panel-starter-kit-react 1 commit to addons-development -1 commit to docker -1 commit to version +1 commit to .github 1 commit to android +1 commit to builder 1 commit to wheels-tensorflow +1 commit to my-upnp 1 commit to plugin-audio ") +- [Francois Chagnon (@EiNSTeiN-)](https://github.com/EiNSTeiN- "5 total commits to the Home Assistant orga: +4 commits to core +1 commit to home-assistant.io +") +- [Francois Gervais (@DC-fgervais)](https://github.com/DC-fgervais "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [Frank (@syphernl)](https://github.com/syphernl "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to frontend 1 commit to core ") +- [Frank (@BraveChicken1)](https://github.com/BraveChicken1 "5 total commits to the Home Assistant orga: +4 commits to core +1 commit to home-assistant.io +") +- [Frank Bakker (@FrankBakkerNl)](https://github.com/FrankBakkerNl "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Frank Bergmann (@frajasalo)](https://github.com/frajasalo "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Frank Burmo (@FrankBurmo)](https://github.com/FrankBurmo "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Frank Hunleth (@fhunleth)](https://github.com/fhunleth "109 total commits to the Home Assistant orga: +109 commits to buildroot +") - [Frank Niesten (@Frankniesten)](https://github.com/Frankniesten "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -5802,6 +7857,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Frank Vanbever (@frankvanbever)](https://github.com/frankvanbever "12 total commits to the Home Assistant orga: +12 commits to buildroot +") - [Frank Wickström (@frwickst)](https://github.com/frwickst "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -5811,14 +7869,13 @@ This page contains a list of people who have contributed in one way or another t - [Frankwin Hooglander (@Frankwin)](https://github.com/Frankwin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Frans Saris (@fsaris)](https://github.com/fsaris "2 total commits to the Home Assistant orga: -1 commit to wheels-custom-integrations -1 commit to brands +- [Frans Saris (@fsaris)](https://github.com/fsaris "4 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +2 commits to brands ") -- [Frantz (@rofrantz)](https://github.com/rofrantz "17 total commits to the Home Assistant orga: +- [Frantz (@rofrantz)](https://github.com/rofrantz "14 total commits to the Home Assistant orga: 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: @@ -5827,7 +7884,13 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [François Perrad (@fperrad)](https://github.com/fperrad "1205 total commits to the Home Assistant orga: +1205 commits to buildroot +") +- [François\-Olivier Devaux (@fodevaux)](https://github.com/fodevaux "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [frasskungin (@mlauhalu)](https://github.com/mlauhalu "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [frazierjason (@frazierjason)](https://github.com/frazierjason "4 total commits to the Home Assistant orga: @@ -5836,9 +7899,6 @@ This page contains a list of people who have contributed in one way or another t - [Fred Oranje (@fred-oranje)](https://github.com/fred-oranje "1 total commits to the Home Assistant orga: 1 commit to brands ") -- [Fred Smith (@fredsmith)](https://github.com/fredsmith "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io -") - [Freddie Leeman (@freddieleeman)](https://github.com/freddieleeman "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -5848,11 +7908,14 @@ 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 ") +- [Frederic Seiler (@fredericseiler)](https://github.com/fredericseiler "1 total commits to the Home Assistant orga: +1 commit to core +") - [Frederick Henderson (@frederickjh)](https://github.com/frederickjh "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [fredericks1982 (@fredericks1982)](https://github.com/fredericks1982 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [fredericks1982 (@fredericks1982)](https://github.com/fredericks1982 "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [FredericMa (@FredericMa)](https://github.com/FredericMa "3 total commits to the Home Assistant orga: 2 commits to core @@ -5862,8 +7925,8 @@ This page contains a list of people who have contributed in one way or another t 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 core +- [Frederik Bolding (@FrederikBolding)](https://github.com/FrederikBolding "9 total commits to the Home Assistant orga: +7 commits to core 2 commits to home-assistant.io ") - [Frederik Gladhorn (@gladhorn)](https://github.com/gladhorn "9 total commits to the Home Assistant orga: @@ -5871,23 +7934,33 @@ 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 frontend ") +- [Frederik Vannoote (@frederikvannoote)](https://github.com/frederikvannoote "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [fredespi (@fredespi)](https://github.com/fredespi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Fredric Palmgren (@Sha-Darim)](https://github.com/Sha-Darim "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Fredrik (@fohlsso2)](https://github.com/fohlsso2 "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Fredrik Baberg (@fredrikbaberg)](https://github.com/fredrikbaberg "11 total commits to the Home Assistant orga: +- [Fredrik Andersson (@glyph-se)](https://github.com/glyph-se "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Fredrik Baberg (@fredrikbaberg)](https://github.com/fredrikbaberg "12 total commits to the Home Assistant orga: 8 commits to home-assistant.io -2 commits to developers.home-assistant +3 commits to developers.home-assistant 1 commit to core ") -- [Fredrik Erlandsson (@fredrike)](https://github.com/fredrike "140 total commits to the Home Assistant orga: -105 commits to core -29 commits to home-assistant.io +- [Fredrik Erlandsson (@fredrike)](https://github.com/fredrike "160 total commits to the Home Assistant orga: +121 commits to core +32 commits to home-assistant.io 2 commits to supervisor 2 commits to developers.home-assistant 2 commits to brands +1 commit to operating-system ") - [Fredrik Fjeld (@fredrikfjeld)](https://github.com/fredrikfjeld "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -5895,9 +7968,15 @@ This page contains a list of people who have contributed in one way or another t - [Fredrik Haglund (@PetitCircuitLab)](https://github.com/PetitCircuitLab "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Fredrik Oterholt (@k1rd3rf)](https://github.com/k1rd3rf "1 total commits to the Home Assistant orga: +1 commit to core +") - [Fredrik Rambris (@fredrik-rambris)](https://github.com/fredrik-rambris "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Fredrik Tuomas (@tuomaz)](https://github.com/tuomaz "1 total commits to the Home Assistant orga: +1 commit to core +") - [Fredrik Wendt (@FredrikWendt)](https://github.com/FredrikWendt "2 total commits to the Home Assistant orga: 1 commit to addons 1 commit to developers.home-assistant @@ -5908,9 +7987,12 @@ This page contains a list of people who have contributed in one way or another t - [freekeys (@freekeys)](https://github.com/freekeys "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [freol35241 (@freol35241)](https://github.com/freol35241 "4 total commits to the Home Assistant orga: +- [freol35241 (@freol35241)](https://github.com/freol35241 "5 total commits to the Home Assistant orga: 3 commits to core -1 commit to wheels-custom-integrations +2 commits to wheels-custom-integrations +") +- [Friedrieck (@Friedrieck)](https://github.com/Friedrieck "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Fritiof Hedman (@zyberzero)](https://github.com/zyberzero "1 total commits to the Home Assistant orga: 1 commit to core @@ -5941,15 +8023,19 @@ This page contains a list of people who have contributed in one way or another t - [fuga2136 (@fuga2136)](https://github.com/fuga2136 "13 total commits to the Home Assistant orga: 13 commits to home-assistant.io ") -- [functionpointer (@functionpointer)](https://github.com/functionpointer "1 total commits to the Home Assistant orga: -1 commit to core +- [functionpointer (@functionpointer)](https://github.com/functionpointer "4 total commits to the Home Assistant orga: +3 commits to core +1 commit to home-assistant.io +") +- [Funtastix (@funtastix)](https://github.com/funtastix "1 total commits to the Home Assistant orga: +1 commit to brands ") - [FutureTense (@FutureTense)](https://github.com/FutureTense "2 total commits to the Home Assistant orga: 2 commits to brands ") - [Fuzzy (@FuzzyMistborn)](https://github.com/FuzzyMistborn "4 total commits to the Home Assistant orga: -2 commits to home-assistant.io 2 commits to core +2 commits to home-assistant.io ") - [fwestenberg (@fwestenberg)](https://github.com/fwestenberg "4 total commits to the Home Assistant orga: 2 commits to core @@ -5958,8 +8044,14 @@ This page contains a list of people who have contributed in one way or another t - [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 "2 total commits to the Home Assistant orga: -2 commits to brands +- [G Johansson (@gjohansson-ST)](https://github.com/gjohansson-ST "142 total commits to the Home Assistant orga: +120 commits to core +17 commits to home-assistant.io +4 commits to brands +1 commit to example-custom-config +") +- [g00dd00d (@g00dd00d)](https://github.com/g00dd00d "4 total commits to the Home Assistant orga: +4 commits to open-zwave ") - [G\. Hussain Chinoy (@ghchinoy)](https://github.com/ghchinoy "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source @@ -5976,6 +8068,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to home-assistant.io ") +- [gabrialdestruir (@gabrialdestruir)](https://github.com/gabrialdestruir "1 total commits to the Home Assistant orga: +1 commit to core +") - [Gabriel Barceló Soteras (@gabrielgbs97)](https://github.com/gabrielgbs97 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -5985,20 +8080,39 @@ This page contains a list of people who have contributed in one way or another t 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 +- [Gabriel Potter (@gpotter2)](https://github.com/gpotter2 "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Gabriel Rauter (@rautesamtr)](https://github.com/rautesamtr "3 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core +1 commit to home-assistant.io +") +- [Gabriel Visser (@gvssr)](https://github.com/gvssr "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [gadget\-man (@gadget-man)](https://github.com/gadget-man "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [gadgetmobile (@gadgetmobile)](https://github.com/gadgetmobile "19 total commits to the Home Assistant orga: +12 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 core ") -- [Gaetan Semet (@gsemet)](https://github.com/gsemet "2 total commits to the Home Assistant orga: +- [Gaetan Semet (@gsemet)](https://github.com/gsemet "3 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 +") +- [Gage Benne (@gagebenne)](https://github.com/gagebenne "10 total commits to the Home Assistant orga: +6 commits to core +3 commits to home-assistant.io +1 commit to brands +") +- [Galen Richards (@tangerinehuge)](https://github.com/tangerinehuge "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [galex80 (@galex80)](https://github.com/galex80 "1 total commits to the Home Assistant orga: @@ -6013,6 +8127,15 @@ This page contains a list of people who have contributed in one way or another t - [Ganesh Hegde (@xgt001)](https://github.com/xgt001 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ganey (@ganey)](https://github.com/ganey "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Gao Liang (@gaoliang)](https://github.com/gaoliang "2 total commits to the Home Assistant orga: +2 commits to brands +") +- [Gao Xiang (@hsiangkao)](https://github.com/hsiangkao "8 total commits to the Home Assistant orga: +8 commits to buildroot +") - [Garen Torikian (@gjtorikian)](https://github.com/gjtorikian "1 total commits to the Home Assistant orga: 1 commit to gu-who ") @@ -6025,12 +8148,32 @@ This page contains a list of people who have contributed in one way or another t - [Garret Heaton (@powdahound)](https://github.com/powdahound "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Garret Kelly (@gkelly)](https://github.com/gkelly "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Garrett (@G-Two)](https://github.com/G-Two "9 total commits to the Home Assistant orga: +5 commits to core +2 commits to brands +2 commits to home-assistant.io +") +- [Garrett Welson (@garrettwelson)](https://github.com/garrettwelson "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [garrettbeachy (@garrettbeachy)](https://github.com/garrettbeachy "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Gary Barclay (@Bodge-IT)](https://github.com/Bodge-IT "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Gary Bisson (@gibsson)](https://github.com/gibsson "213 total commits to the Home Assistant orga: +213 commits to buildroot +") +- [Gary Cobb (@gcobb321)](https://github.com/gcobb321 "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Gary Coulbourne (@ursine)](https://github.com/ursine "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Gary Yendell (@GDYendell)](https://github.com/GDYendell "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -6057,6 +8200,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to core ") +- [Gavin Ni (@widewing)](https://github.com/widewing "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Gavin Staniforth (@gsdevme)](https://github.com/gsdevme "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -6067,6 +8213,12 @@ This page contains a list of people who have contributed in one way or another t - [gazoscalvertos (@gazoscalvertos)](https://github.com/gazoscalvertos "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [Gaël PORTAY (@gportay)](https://github.com/gportay "78 total commits to the Home Assistant orga: +78 commits to buildroot +") +- [gde79 (@gde79)](https://github.com/gde79 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Gedde (@raygoat)](https://github.com/raygoat "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") @@ -6087,6 +8239,12 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to core ") +- [Geert Visser (@GeertVisser)](https://github.com/GeertVisser "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [geftactics (@geftactics)](https://github.com/geftactics "1 total commits to the Home Assistant orga: +1 commit to operating-system +") - [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 @@ -6094,22 +8252,38 @@ This page contains a list of people who have contributed in one way or another t - [gemolnar (@gemolnar)](https://github.com/gemolnar "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [gentoo\-root (@gentoo-root)](https://github.com/gentoo-root "12 total commits to the Home Assistant orga: +12 commits to buildroot +") +- [Geo Maciolek (@GeoffMaciolek)](https://github.com/GeoffMaciolek "1 total commits to the Home Assistant orga: +1 commit to addons +") - [Geoff Davis (@geoffdavis)](https://github.com/geoffdavis "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Geoff Levand (@glevand)](https://github.com/glevand "20 total commits to the Home Assistant orga: +20 commits to buildroot +") - [Geoff Norton (@kangaroo)](https://github.com/kangaroo "14 total commits to the Home Assistant orga: 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 "7 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [GeoffAtHome (@GeoffAtHome)](https://github.com/GeoffAtHome "8 total commits to the Home Assistant orga: +5 commits to home-assistant.io 3 commits to core ") -- [Geoffrey Lagaisse (@geoffreylagaisse)](https://github.com/geoffreylagaisse "1 total commits to the Home Assistant orga: +- [Geoffrey (@maschel)](https://github.com/maschel "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Geoffrey Lagaisse (@geoffreylagaisse)](https://github.com/geoffreylagaisse "2 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core +") +- [Geoffrey Ragot (@gfyrag)](https://github.com/gfyrag "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Geoffrey Westhoff (@GeoffreyWesthoff)](https://github.com/GeoffreyWesthoff "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -6118,13 +8292,22 @@ This page contains a list of people who have contributed in one way or another t 1 commit to addons 1 commit to core ") +- [George Redivo (@redivo)](https://github.com/redivo "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [George Vedamanickam (@intractve)](https://github.com/intractve "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [George Zhao (@georgezhao2010)](https://github.com/georgezhao2010 "7 total commits to the Home Assistant orga: +7 commits to brands +") - [George\.M (@nodinosaur)](https://github.com/nodinosaur "8 total commits to the Home Assistant orga: 6 commits to home-assistant.io 2 commits to core ") +- [Georges Savoundararadj (@manoj23)](https://github.com/manoj23 "6 total commits to the Home Assistant orga: +6 commits to buildroot +") - [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 @@ -6153,9 +8336,9 @@ This page contains a list of people who have contributed in one way or another t - [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 "62 total commits to the Home Assistant orga: -35 commits to home-assistant.io -21 commits to core +- [Gerard (@gerard33)](https://github.com/gerard33 "70 total commits to the Home Assistant orga: +38 commits to home-assistant.io +26 commits to core 2 commits to addons 2 commits to developers.home-assistant 1 commit to wheels-custom-integrations @@ -6172,8 +8355,9 @@ This page contains a list of people who have contributed in one way or another t 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: +- [Gergely Imreh (@imrehg)](https://github.com/imrehg "23 total commits to the Home Assistant orga: 11 commits to core +7 commits to buildroot 5 commits to home-assistant.io ") - [Gergely Peidl (@geripgeri)](https://github.com/geripgeri "1 total commits to the Home Assistant orga: @@ -6200,6 +8384,18 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to home-assistant.io ") +- [gevans (@gevans)](https://github.com/gevans "35 total commits to the Home Assistant orga: +35 commits to buildroot +") +- [Ghannes (@Ghannes)](https://github.com/Ghannes "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [ghermant (@ghermant)](https://github.com/ghermant "19 total commits to the Home Assistant orga: +19 commits to buildroot +") +- [Gian Klug (@gianklug)](https://github.com/gianklug "1 total commits to the Home Assistant orga: +1 commit to core +") - [giangvo (@giangvo)](https://github.com/giangvo "4 total commits to the Home Assistant orga: 2 commits to core 2 commits to home-assistant.io @@ -6227,9 +8423,9 @@ This page contains a list of people who have contributed in one way or another t - [gibwar (@gibwar)](https://github.com/gibwar "1 total commits to the Home Assistant orga: 1 commit to frontend ") -- [Gido (@GidoHakvoort)](https://github.com/GidoHakvoort "10 total commits to the Home Assistant orga: +- [Gido (@GidoHakvoort)](https://github.com/GidoHakvoort "11 total commits to the Home Assistant orga: +6 commits to core 5 commits to home-assistant.io -5 commits to core ") - [giefca (@giefca)](https://github.com/giefca "4 total commits to the Home Assistant orga: 4 commits to core @@ -6238,6 +8434,12 @@ This page contains a list of people who have contributed in one way or another t 6 commits to core 3 commits to home-assistant.io ") +- [Giel van Schijndel (@muggenhor)](https://github.com/muggenhor "1 total commits to the Home Assistant orga: +1 commit to core +") +- [gigatexel (@gigatexel)](https://github.com/gigatexel "1 total commits to the Home Assistant orga: +1 commit to core +") - [Gijs Reichert (@GGeezes)](https://github.com/GGeezes "3 total commits to the Home Assistant orga: 3 commits to core ") @@ -6245,13 +8447,22 @@ This page contains a list of people who have contributed in one way or another t 9 commits to home-assistant.io 9 commits to core ") +- [Gilad Ben\-Yossef (@gby)](https://github.com/gby "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Gilad Peleg (@pgilad)](https://github.com/pgilad "2 total commits to the Home Assistant orga: 2 commits to core ") - [Gilles Margerie (@Gilles95)](https://github.com/Gilles95 "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Gilson Marquato Júnior (@gilsonmandalogo)](https://github.com/gilsonmandalogo "3 total commits to the Home Assistant orga: +- [Gilles TALIS (@gtalis)](https://github.com/gtalis "132 total commits to the Home Assistant orga: +132 commits to buildroot +") +- [gilles\-chanteperdrix (@gilles-chanteperdrix)](https://github.com/gilles-chanteperdrix "7 total commits to the Home Assistant orga: +7 commits to buildroot +") +- [Gilson Júnior (@gilsonmandalogo)](https://github.com/gilsonmandalogo "3 total commits to the Home Assistant orga: 2 commits to frontend 1 commit to brands ") @@ -6265,18 +8476,19 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to core ") -- [Giovanni Campagna (@gcampax)](https://github.com/gcampax "2 total commits to the Home Assistant orga: -2 commits to addons +- [Giovanni Campagna (@gcampax)](https://github.com/gcampax "3 total commits to the Home Assistant orga: +3 commits to addons ") -- [Giovanni Iachello (@giachello)](https://github.com/giachello "2 total commits to the Home Assistant orga: +- [Giovanni Iachello (@giachello)](https://github.com/giachello "3 total commits to the Home Assistant orga: +2 commits to brands 1 commit to wheels-custom-integrations -1 commit to brands ") - [GitBook Bot (@gitbook-bot)](https://github.com/gitbook-bot "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") -- [GitHub Action (@GitHub-Action)](https://github.com/GitHub-Action "21 total commits to the Home Assistant orga: -21 commits to frontend +- [GitHub Action (@GitHub-Action)](https://github.com/GitHub-Action "442 total commits to the Home Assistant orga: +284 commits to core +158 commits to frontend ") - [githubbuh (@githubbuh)](https://github.com/githubbuh "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io @@ -6291,37 +8503,64 @@ This page contains a list of people who have contributed in one way or another t - [gitolicious (@gitolicious)](https://github.com/gitolicious "1 total commits to the Home Assistant orga: 1 commit to addons ") -- [gitwazza (@gitwazza)](https://github.com/gitwazza "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [gitvb (@gitvb)](https://github.com/gitvb "16 total commits to the Home Assistant orga: +16 commits to buildroot +") +- [gitwazza (@gitwazza)](https://github.com/gitwazza "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") +- [Giulio Benetti (@giuliobenetti)](https://github.com/giuliobenetti "228 total commits to the Home Assistant orga: +228 commits to buildroot ") - [Giuseppe (@glpatcern)](https://github.com/glpatcern "8 total commits to the Home Assistant orga: 6 commits to core 2 commits to home-assistant.io ") +- [Giuseppe Iannello (@giannello)](https://github.com/giannello "2 total commits to the Home Assistant orga: +2 commits to core +") - [gizmocuz (@gizmocuz)](https://github.com/gizmocuz "21 total commits to the Home Assistant orga: 21 commits to open-zwave ") -- [Gleb Sinyavskiy (@zhulik)](https://github.com/zhulik "4 total commits to the Home Assistant orga: -3 commits to core +- [GJH (@OpenMyDog)](https://github.com/OpenMyDog "1 total commits to the Home Assistant orga: +1 commit to core +") +- [gjong (@gjong)](https://github.com/gjong "17 total commits to the Home Assistant orga: +15 commits to core +2 commits to home-assistant.io +") +- [glcos (@glcos)](https://github.com/glcos "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Gleb Mazovetskiy (@glebm)](https://github.com/glebm "10 total commits to the Home Assistant orga: +10 commits to buildroot +") +- [Gleb Sinyavskiy (@zhulik)](https://github.com/zhulik "14 total commits to the Home Assistant orga: +7 commits to core +4 commits to home-assistant.io +3 commits to brands +") +- [Gleekop (@Gleekop)](https://github.com/Gleekop "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Glen Buktenica (@gbuktenica)](https://github.com/gbuktenica "3 total commits to the Home Assistant orga: 2 commits to open-zwave 1 commit to home-assistant.io ") +- [Glen Eustace (@geustace)](https://github.com/geustace "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [Glen Takahashi (@glentakahashi)](https://github.com/glentakahashi "4 total commits to the Home Assistant orga: 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 Morrison (@atomicpapa)](https://github.com/atomicpapa "11 total commits to the Home Assistant orga: +11 commits to home-assistant.io ") -- [Glenn Waters (@gwww)](https://github.com/gwww "47 total commits to the Home Assistant orga: -30 commits to core -14 commits to home-assistant.io -1 commit to frontend -1 commit to developers.home-assistant -1 commit to brands +- [Glenn Waters (@gwww)](https://github.com/gwww "16 total commits to the Home Assistant orga: +15 commits to core +1 commit to home-assistant.io ") - [glenn20 (@glenn20)](https://github.com/glenn20 "2 total commits to the Home Assistant orga: 1 commit to core @@ -6342,6 +8581,10 @@ This page contains a list of people who have contributed in one way or another t - [GMFalka (@GMFalka)](https://github.com/GMFalka "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [gmlupatelli (@gmlupatelli)](https://github.com/gmlupatelli "2 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +1 commit to home-assistant.io +") - [gngj (@gngj)](https://github.com/gngj "7 total commits to the Home Assistant orga: 5 commits to core 2 commits to home-assistant.io @@ -6353,6 +8596,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Goncalo Salazar (@glbsalazar)](https://github.com/glbsalazar "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [GoNzCiD (@GoNzCiD)](https://github.com/GoNzCiD "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to home-assistant.io @@ -6391,13 +8637,29 @@ This page contains a list of people who have contributed in one way or another t - [Graeme Smith (@Instagraeme)](https://github.com/Instagraeme "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Graham Arthur Blair (@grablair)](https://github.com/grablair "2 total commits to the Home Assistant orga: +2 commits to core +") - [Graham Christensen (@grahamc)](https://github.com/grahamc "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Graham Holland (@gmholland)](https://github.com/gmholland "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Graham Rogers (@TastyPi)](https://github.com/TastyPi "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Graham Wetzler (@grahamwetzler)](https://github.com/grahamwetzler "6 total commits to the Home Assistant orga: 2 commits to brands -2 commits to home-assistant.io 2 commits to core +2 commits to home-assistant.io +") +- [grandwolf (@grandwolf)](https://github.com/grandwolf "19 total commits to the Home Assistant orga: +19 commits to buildroot +") +- [Grant Edwards (@GrantEdwards)](https://github.com/GrantEdwards "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [Grant Emsley (@grantemsley)](https://github.com/grantemsley "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -6405,6 +8667,9 @@ This page contains a list of people who have contributed in one way or another t - [Grant Russell (@ukgrant)](https://github.com/ukgrant "3 total commits to the Home Assistant orga: 3 commits to iOS ") +- [Grayson Adams (@GraysonCAdams)](https://github.com/GraysonCAdams "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [grdnkln (@grdnkln)](https://github.com/grdnkln "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -6415,10 +8680,13 @@ This page contains a list of people who have contributed in one way or another t 75 commits to home-assistant.io 8 commits to core ") -- [Greg (@gtdiehl)](https://github.com/gtdiehl "17 total commits to the Home Assistant orga: -13 commits to core -3 commits to home-assistant.io -1 commit to brands +- [Greg (@gtdiehl)](https://github.com/gtdiehl "24 total commits to the Home Assistant orga: +17 commits to core +5 commits to home-assistant.io +2 commits to brands +") +- [Greg (@oziee)](https://github.com/oziee "2 total commits to the Home Assistant orga: +2 commits to brands ") - [Greg (@theCMack)](https://github.com/theCMack "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -6430,10 +8698,9 @@ This page contains a list of people who have contributed in one way or another t - [Greg Barker (@fletchowns)](https://github.com/fletchowns "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Greg Dowling (@pavoni)](https://github.com/pavoni "245 total commits to the Home Assistant orga: -212 commits to core -29 commits to home-assistant.io -1 commit to netdisco +- [Greg Dowling (@pavoni)](https://github.com/pavoni "259 total commits to the Home Assistant orga: +223 commits to core +33 commits to home-assistant.io 1 commit to people 1 commit to companion.home-assistant 1 commit to brands @@ -6441,6 +8708,9 @@ This page contains a list of people who have contributed in one way or another t - [Greg Johnson (@notgwj)](https://github.com/notgwj "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Greg Kroah\-Hartman (@gregkh)](https://github.com/gregkh "1 total commits to the Home Assistant orga: +1 commit to cli +") - [Greg Laabs (@OverloadUT)](https://github.com/OverloadUT "33 total commits to the Home Assistant orga: 27 commits to core 5 commits to home-assistant.io @@ -6460,11 +8730,14 @@ This page contains a list of people who have contributed in one way or another t - [Greg Schwartz (@gregschwartz)](https://github.com/gregschwartz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [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: +- [Greg Sheremeta (@gregsheremeta)](https://github.com/gregsheremeta "1 total commits to the Home Assistant orga: 1 commit to core +") +- [Greg Stevenson (@gstevenson)](https://github.com/gstevenson "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io +") +- [Greg Thornton (@xdissent)](https://github.com/xdissent "4 total commits to the Home Assistant orga: +3 commits to core 1 commit to home-assistant.io ") - [Greg Troxel (@gdt)](https://github.com/gdt "1 total commits to the Home Assistant orga: @@ -6490,6 +8763,12 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to open-zwave ") +- [Gregory Clement (@gclement)](https://github.com/gclement "11 total commits to the Home Assistant orga: +11 commits to buildroot +") +- [Gregory D (@gregd72002)](https://github.com/gregd72002 "7 total commits to the Home Assistant orga: +7 commits to buildroot +") - [Gregory Dosh (@GregoryDosh)](https://github.com/GregoryDosh "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -6506,6 +8785,9 @@ This page contains a list of people who have contributed in one way or another t - [griddyadmin (@griddyadmin)](https://github.com/griddyadmin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [grimlock (@milezmilez)](https://github.com/milezmilez "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Grodesh (@Grodesh)](https://github.com/Grodesh "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -6516,9 +8798,18 @@ This page contains a list of people who have contributed in one way or another t - [groth\-its (@groth-its)](https://github.com/groth-its "2 total commits to the Home Assistant orga: 2 commits to core ") +- [gryzli133 (@gryzli133)](https://github.com/gryzli133 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Grzegorz Blach (@gblach)](https://github.com/gblach "86 total commits to the Home Assistant orga: +86 commits to buildroot +") - [Grzegorz Matyszczak (@gmatyszczak)](https://github.com/gmatyszczak "1 total commits to the Home Assistant orga: 1 commit to android ") +- [Grégoire Delattre (@gregdel)](https://github.com/gregdel "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [Grégoire M\. (@M-Gregoire)](https://github.com/M-Gregoire "1 total commits to the Home Assistant orga: 1 commit to supervised-installer ") @@ -6535,10 +8826,20 @@ 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 "30 total commits to the Home Assistant orga: -20 commits to core -9 commits to home-assistant.io -1 commit to brands +- [Guess (@mynameisdaniel32)](https://github.com/mynameisdaniel32 "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Guglielmo De Concini (@cr0wbar)](https://github.com/cr0wbar "2 total commits to the Home Assistant orga: +2 commits to operating-system +") +- [GuGu927 (@GuGu927)](https://github.com/GuGu927 "7 total commits to the Home Assistant orga: +5 commits to brands +2 commits to wheels-custom-integrations +") +- [Guido Schmitz (@Shutgun)](https://github.com/Shutgun "72 total commits to the Home Assistant orga: +58 commits to core +12 commits to home-assistant.io +2 commits to brands ") - [Guilherme Conti Teixeira (@guiconti)](https://github.com/guiconti "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -6550,14 +8851,21 @@ This page contains a list of people who have contributed in one way or another t - [Guillaume Duveau (@guix77)](https://github.com/guix77 "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Guillaume Rischard (@grischard)](https://github.com/grischard "3 total commits to the Home Assistant orga: +- [Guillaume Gardet (@ggardet)](https://github.com/ggardet "9 total commits to the Home Assistant orga: +9 commits to buildroot +") +- [Guillaume Rischard (@grischard)](https://github.com/grischard "4 total commits to the Home Assistant orga: 1 commit to frontend +1 commit to developers.home-assistant 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 core ") +- [Guillaume Smith (@gusmith)](https://github.com/gusmith "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Guillaume Zin (@guillaumezin)](https://github.com/guillaumezin "6 total commits to the Home Assistant orga: 6 commits to open-zwave ") @@ -6571,8 +8879,17 @@ This page contains a list of people who have contributed in one way or another t 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 +- [Guillermo A\. Amaral (@gamaral)](https://github.com/gamaral "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Guillermo González (@GuilleGF)](https://github.com/GuilleGF "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Guillermo Ruffino (@glmnet)](https://github.com/glmnet "3 total commits to the Home Assistant orga: +3 commits to core +") +- [GuISm0 (@GuISm0)](https://github.com/GuISm0 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [GuitarSkater (@GuitarSkater)](https://github.com/GuitarSkater "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -6583,36 +8900,61 @@ This page contains a list of people who have contributed in one way or another t - [Gummientchen (@Gummientchen)](https://github.com/Gummientchen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Gunnar Klauberg (@Aeroid)](https://github.com/Aeroid "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Guo Ren (@guoren83)](https://github.com/guoren83 "21 total commits to the Home Assistant orga: +21 commits to buildroot +") - [Gustav Ahlberg (@Gyran)](https://github.com/Gyran "20 total commits to the Home Assistant orga: 20 commits to core ") +- [Gustavo Pimentel (@gustavoSNPS)](https://github.com/gustavoSNPS "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Gustavo Sverzut Barbieri (@barbieri)](https://github.com/barbieri "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [Gustavo Zacarias (@gustavoz)](https://github.com/gustavoz "5610 total commits to the Home Assistant orga: +5610 commits to buildroot +") - [Guus Hutschemaekers (@Guus-H)](https://github.com/Guus-H "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Guy Khmelnitsky (@GuyKh)](https://github.com/GuyKh "12 total commits to the Home Assistant orga: +- [Guy Khmelnitsky (@GuyKh)](https://github.com/GuyKh "14 total commits to the Home Assistant orga: 9 commits to home-assistant.io -3 commits to core +5 commits to core ") -- [Guy Lewin (@GuyLewin)](https://github.com/GuyLewin "1 total commits to the Home Assistant orga: -1 commit to brands +- [Guy Lewin (@GuyLewin)](https://github.com/GuyLewin "2 total commits to the Home Assistant orga: +2 commits to brands ") - [Guy Parisi (@Guyanthalas)](https://github.com/Guyanthalas "7 total commits to the Home Assistant orga: 7 commits to home-assistant.io ") +- [Guy Sheffer (@guysoft)](https://github.com/guysoft "1 total commits to the Home Assistant orga: +1 commit 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: +- [guygma (@guyest)](https://github.com/guyest "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Guyohms (@Guyohms)](https://github.com/Guyohms "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to companion.home-assistant ") +- [gwbres (@gwbres)](https://github.com/gwbres "19 total commits to the Home Assistant orga: +19 commits to buildroot +") - [gwendalg (@gwendalg)](https://github.com/gwendalg "4 total commits to the Home Assistant orga: 3 commits to core 1 commit to home-assistant.io ") +- [Gwenhael (@trabucayre)](https://github.com/trabucayre "104 total commits to the Home Assistant orga: +104 commits to buildroot +") - [gwhiteCL (@gwhiteCL)](https://github.com/gwhiteCL "5 total commits to the Home Assistant orga: 4 commits to home-assistant.io 1 commit to core @@ -6623,6 +8965,15 @@ This page contains a list of people who have contributed in one way or another t - [Gábor Frank (@frankyhun)](https://github.com/frankyhun "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Gábor Kiss (@g-kiss)](https://github.com/g-kiss "2 total commits to the Home Assistant orga: +2 commits to core +") +- [h1tch007 (@h1tch007)](https://github.com/h1tch007 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [h2zero (@h2zero)](https://github.com/h2zero "2 total commits to the Home Assistant orga: +2 commits to core +") - [h3ndrik (@h3ndrik)](https://github.com/h3ndrik "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -6630,9 +8981,21 @@ This page contains a list of people who have contributed in one way or another t - [h4ckNinja (@h4ckninja)](https://github.com/h4ckninja "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [ha0y (@ha0y)](https://github.com/ha0y "2 total commits to the Home Assistant orga: +- [H\. Árkosi Róbert (@nagyrobi)](https://github.com/nagyrobi "7 total commits to the Home Assistant orga: +2 commits to frontend +2 commits to brands 1 commit to wheels-custom-integrations -1 commit to brands +1 commit to home-assistant.io +1 commit to core +") +- [H\.Abraham (@abrahamh)](https://github.com/abrahamh "5 total commits to the Home Assistant orga: +5 commits to buildroot +") +- [ha0y (@ha0y)](https://github.com/ha0y "5 total commits to the Home Assistant orga: +2 commits to brands +1 commit to wheels-custom-integrations +1 commit to core +1 commit to home-assistant.io ") - [ha14937 (@clandestine-avocado)](https://github.com/clandestine-avocado "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -6646,6 +9009,15 @@ This page contains a list of people who have contributed in one way or another t - [Hadi Victorya (@hadipsy27)](https://github.com/hadipsy27 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Hadrien Boutteville (@Eksel)](https://github.com/Eksel "16 total commits to the Home Assistant orga: +16 commits to buildroot +") +- [Hadrien Milano (@hmil)](https://github.com/hmil "1 total commits to the Home Assistant orga: +1 commit to addons +") +- [HAEdwin (@HAEdwin)](https://github.com/HAEdwin "2 total commits to the Home Assistant orga: +2 commits to brands +") - [Haemish Kyd (@haemishkyd)](https://github.com/haemishkyd "6 total commits to the Home Assistant orga: 4 commits to core 1 commit to brands @@ -6665,19 +9037,27 @@ This page contains a list of people who have contributed in one way or another t - [Hamid Elaosta (@hamid-elaosta)](https://github.com/hamid-elaosta "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Hans Bulfone (@bulf1)](https://github.com/bulf1 "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Hans Knöchel (@hansemannn)](https://github.com/hansemannn "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") -- [Hans Kröner (@hanskroner)](https://github.com/hanskroner "1 total commits to the Home Assistant orga: +- [Hans Kröner (@hanskroner)](https://github.com/hanskroner "6 total commits to the Home Assistant orga: +4 commits to core 1 commit to open-zwave +1 commit to home-assistant.io ") -- [Hans Oischinger (@oischinger)](https://github.com/oischinger "13 total commits to the Home Assistant orga: -10 commits to core -3 commits to home-assistant.io +- [Hans Oischinger (@oischinger)](https://github.com/oischinger "49 total commits to the Home Assistant orga: +40 commits to core +9 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 ") +- [Hans\-Christian Otto (@hco)](https://github.com/hco "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [hanzoh (@hanzoh)](https://github.com/hanzoh "6 total commits to the Home Assistant orga: 5 commits to core 1 commit to home-assistant.io @@ -6708,6 +9088,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to home-assistant.io ") +- [Harrison Cook (@HCookie)](https://github.com/HCookie "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Harrison Pace (@thehaxxa)](https://github.com/thehaxxa "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to home-assistant.io @@ -6721,6 +9104,9 @@ This page contains a list of people who have contributed in one way or another t - [Harsh Kevadia (@harshjk)](https://github.com/harshjk "1 total commits to the Home Assistant orga: 1 commit to operating-system ") +- [Harshit Sanghvi (@sanghviharshit)](https://github.com/sanghviharshit "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Harvtronix (@Harvtronix)](https://github.com/Harvtronix "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -6730,13 +9116,16 @@ This page contains a list of people who have contributed in one way or another t - [Hate\-Usernames (@Hate-Usernames)](https://github.com/Hate-Usernames "3 total commits to the Home Assistant orga: 3 commits to core ") +- [havmind (@havmind)](https://github.com/havmind "8 total commits to the Home Assistant orga: +8 commits to buildroot +") - [hawk259 (@hawk259)](https://github.com/hawk259 "14 total commits to the Home Assistant orga: 7 commits to core 5 commits to home-assistant.io 1 commit to open-zwave 1 commit to frontend ") -- [haXs (@haXs)](https://github.com/haXs "1 total commits to the Home Assistant orga: +- [haXs (@JayBkr)](https://github.com/JayBkr "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: @@ -6750,36 +9139,62 @@ This page contains a list of people who have contributed in one way or another t - [hblaschka (@hblaschka)](https://github.com/hblaschka "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [hboulakhrif (@hboulakhrif)](https://github.com/hboulakhrif "1 total commits to the Home Assistant orga: +1 commit to brands +") - [hcoohb (@hcoohb)](https://github.com/hcoohb "3 total commits to the Home Assistant orga: 2 commits to wheels-custom-integrations 1 commit to brands ") -- [hcooper (@hcooper)](https://github.com/hcooper "9 total commits to the Home Assistant orga: +- [hcooper (@hcooper)](https://github.com/hcooper "10 total commits to the Home Assistant orga: 6 commits to home-assistant.io 2 commits to open-zwave +1 commit to developers.home-assistant 1 commit to core ") +- [He Chunhui (@hchunhui)](https://github.com/hchunhui "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Heath Paddock (@heathbar)](https://github.com/heathbar "6 total commits to the Home Assistant orga: 6 commits to core ") -- [Hedda (@Hedda)](https://github.com/Hedda "21 total commits to the Home Assistant orga: -19 commits to home-assistant.io -2 commits to core +- [Hebezo (@Kannix2005)](https://github.com/Kannix2005 "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Hector Kesari (@hkesari)](https://github.com/hkesari "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Hector Oron (@zumbi)](https://github.com/zumbi "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Hedda (@Hedda)](https://github.com/Hedda "43 total commits to the Home Assistant orga: +40 commits to home-assistant.io +3 commits to core ") - [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 Helmle (@netzwer2)](https://github.com/netzwer2 "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [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: +- [Heiko Stuebner (@mmind)](https://github.com/mmind "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Heiko Thiery (@hthiery)](https://github.com/hthiery "212 total commits to the Home Assistant orga: +201 commits to buildroot 6 commits to core 5 commits to home-assistant.io ") -- [Heine Furubotten (@hfurubotten)](https://github.com/hfurubotten "23 total commits to the Home Assistant orga: -11 commits to core +- [HeimdallMidgard (@HeimdallMidgard)](https://github.com/HeimdallMidgard "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Heine Furubotten (@hfurubotten)](https://github.com/hfurubotten "24 total commits to the Home Assistant orga: +12 commits to core 7 commits to home-assistant.io 4 commits to brands 1 commit to developers.home-assistant @@ -6787,13 +9202,7 @@ This page contains a list of people who have contributed in one way or another t - [Heinrich Dahms (@htdahms)](https://github.com/htdahms "1 total commits to the Home Assistant orga: 1 commit to iOS ") -- [Heisenberg (@elbueno222)](https://github.com/elbueno222 "1 total commits to the Home Assistant orga: -1 commit to core -") -- [Hellowlol (@Hellowlol)](https://github.com/Hellowlol "7 total commits to the Home Assistant orga: -3 commits to netdisco -1 commit to wheels-custom-integrations -1 commit to brands +- [Heisenberg (@Heisenberg2980)](https://github.com/Heisenberg2980 "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") @@ -6809,6 +9218,15 @@ This page contains a list of people who have contributed in one way or another t - [Henning Dickten (@hensing)](https://github.com/hensing "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Henri Bragge (@hbragge)](https://github.com/hbragge "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Henri Roosen (@roosen)](https://github.com/roosen "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Henrik (@werkstrom)](https://github.com/werkstrom "1 total commits to the Home Assistant orga: +1 commit to core +") - [Henrik Aronsson (@heennkkee)](https://github.com/heennkkee "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -6819,6 +9237,12 @@ This page contains a list of people who have contributed in one way or another t 8 commits to core 2 commits to home-assistant.io ") +- [Henrik Sozzi (@energywave)](https://github.com/energywave "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Henrique Camargo (@henriqueqc)](https://github.com/henriqueqc "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Henry Ou (@henryouly)](https://github.com/henryouly "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -6838,9 +9262,20 @@ This page contains a list of people who have contributed in one way or another t - [Hernán (@hmronline)](https://github.com/hmronline "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Herr Frei (@herrfrei)](https://github.com/herrfrei "1 total commits to the Home Assistant orga: +1 commit to operating-system +") - [Hessel Bierma (@hesje)](https://github.com/hesje "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [hesselonline (@hesselonline)](https://github.com/hesselonline "18 total commits to the Home Assistant orga: +13 commits to core +4 commits to home-assistant.io +1 commit to brands +") +- [hexxter (@hexxter)](https://github.com/hexxter "8 total commits to the Home Assistant orga: +8 commits to core +") - [heyajohnny (@heyajohnny)](https://github.com/heyajohnny "1 total commits to the Home Assistant orga: 1 commit to brands ") @@ -6858,6 +9293,21 @@ This page contains a list of people who have contributed in one way or another t - [HFeenstra (@HFeenstra)](https://github.com/HFeenstra "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [hg1337 (@hg1337)](https://github.com/hg1337 "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [hieptv (@hiep2902)](https://github.com/hiep2902 "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [hif2k1 (@hif2k1)](https://github.com/hif2k1 "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [HighOnMikey (@HighOnMikey)](https://github.com/HighOnMikey "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Hikaru Wada (@sugoi-wada)](https://github.com/sugoi-wada "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Hilbrand Bouwkamp (@Hilbrand)](https://github.com/Hilbrand "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -6870,24 +9320,41 @@ This page contains a list of people who have contributed in one way or another t - [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 "65 total commits to the Home Assistant orga: -46 commits to home-assistant.io -18 commits to core +- [hiveai (@hiveai)](https://github.com/hiveai "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Hmmbob (@hmmbob)](https://github.com/hmmbob "85 total commits to the Home Assistant orga: +60 commits to home-assistant.io +24 commits to core 1 commit to frontend ") +- [Hoang Tran (@hoangtran)](https://github.com/hoangtran "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [hojland (@Hojland)](https://github.com/Hojland "4 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +2 commits to brands +") - [hokagegano (@hokagegano)](https://github.com/hokagegano "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [holdestmade (@holdestmade)](https://github.com/holdestmade "1 total commits to the Home Assistant orga: +- [holdestmade (@holdestmade)](https://github.com/holdestmade "2 total commits to the Home Assistant orga: +1 commit to brands 1 commit to home-assistant.io ") - [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 "778 total commits to the Home Assistant orga: -421 commits to core +- [Hollis Blanchard (@slightlyunconventional)](https://github.com/slightlyunconventional "9 total commits to the Home Assistant orga: +9 commits to buildroot +") +- [HollyFredD (@HollyFredD)](https://github.com/HollyFredD "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Home Assistant Bot (@homeassistant)](https://github.com/homeassistant "856 total commits to the Home Assistant orga: +498 commits to core 338 commits to frontend -17 commits to android +18 commits to android 1 commit to companion.home-assistant 1 commit to developers.home-assistant ") @@ -6909,6 +9376,9 @@ This page contains a list of people who have contributed in one way or another t - [HoppingMonk (@HoppingMonk)](https://github.com/HoppingMonk "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") +- [HoratiuVultur (@HoratiuVultur)](https://github.com/HoratiuVultur "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [horga83 (@horga83)](https://github.com/horga83 "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -6924,9 +9394,19 @@ This page contains a list of people who have contributed in one way or another t 1 commit to frontend 1 commit to home-assistant.io ") +- [Hristo Atanasov (@hristo-atanasov)](https://github.com/hristo-atanasov "1 total commits to the Home Assistant orga: +1 commit to core +") - [hSATAC (@hSATAC)](https://github.com/hSATAC "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [htcheroportugal (@htcheroportugal)](https://github.com/htcheroportugal "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [htmltiger (@htmltiger)](https://github.com/htmltiger "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to brands +") - [Hu Hao (@howiehu)](https://github.com/howiehu "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -6937,6 +9417,13 @@ This page contains a list of people who have contributed in one way or another t 8 commits to core 7 commits to home-assistant.io ") +- [hubbergit (@hubbergit)](https://github.com/hubbergit "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Hubert Lacote (@hubert-lacote-yv)](https://github.com/hubert-lacote-yv "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [hubertbanas (@hubertbanas)](https://github.com/hubertbanas "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") @@ -6960,19 +9447,31 @@ This page contains a list of people who have contributed in one way or another t - [Hugues Granger (@Wohlraj)](https://github.com/Wohlraj "2 total commits to the Home Assistant orga: 2 commits to core ") +- [huimang2 (@huimang2)](https://github.com/huimang2 "1 total commits to the Home Assistant orga: +1 commit to brands +") - [hulkhaugen (@hulkhaugen)](https://github.com/hulkhaugen "2 total commits to the Home Assistant orga: 1 commit to frontend 1 commit to home-assistant.io ") +- [hultenvp (@hultenvp)](https://github.com/hultenvp "2 total commits to the Home Assistant orga: +2 commits to brands +") - [Hung Le (@hungle)](https://github.com/hungle "1 total commits to the Home Assistant orga: 1 commit to libcoap ") -- [hung2kgithub (@hung2kgithub)](https://github.com/hung2kgithub "1 total commits to the Home Assistant orga: +- [Hung Nguyen (@hungnguyenm)](https://github.com/hungnguyenm "1 total commits to the Home Assistant orga: 1 commit to core ") +- [hung2kgithub (@aes-alienrip)](https://github.com/aes-alienrip "2 total commits to the Home Assistant orga: +2 commits to core +") - [Hunter Horsman (@kariudo)](https://github.com/kariudo "1 total commits to the Home Assistant orga: 1 commit to core ") +- [HunterX86 (@HunterX86)](https://github.com/HunterX86 "1 total commits to the Home Assistant orga: +1 commit to android +") - [Huon Wilson (@huonw)](https://github.com/huonw "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -6983,9 +9482,15 @@ This page contains a list of people who have contributed in one way or another t - [Huw Davies (@beardedgeek)](https://github.com/beardedgeek "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Huwee2 (@Huwee2)](https://github.com/Huwee2 "1 total commits to the Home Assistant orga: +1 commit 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 "2 total commits to the Home Assistant orga: +2 commits to brands +") - [hybridparadigm (@hybridparadigm)](https://github.com/hybridparadigm "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -6993,17 +9498,19 @@ This page contains a list of people who have contributed in one way or another t 34 commits to core 12 commits to home-assistant.io ") +- [Hypnos (@Hypnos3)](https://github.com/Hypnos3 "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [hypnosiss (@hypnosiss)](https://github.com/hypnosiss "1 total commits to the Home Assistant orga: +1 commit to core +") - [Håkan Åkerberg (@hakana)](https://github.com/hakana "1 total commits to the Home Assistant orga: 1 commit to wheels-custom-integrations ") - [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 core -5 commits to home-assistant.io -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 core ") @@ -7016,13 +9523,16 @@ 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 "5 total commits to the Home Assistant orga: -4 commits to core +- [Ian (@ViViDboarder)](https://github.com/ViViDboarder "8 total commits to the Home Assistant orga: +7 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 (@TheBassEngineer)](https://github.com/TheBassEngineer "1 total commits to the Home Assistant orga: +1 commit to core +") - [Ian (@ianperrin)](https://github.com/ianperrin "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -7039,13 +9549,23 @@ This page contains a list of people who have contributed in one way or another t - [Ian Duffy (@imduffy15)](https://github.com/imduffy15 "3 total commits to the Home Assistant orga: 3 commits to core ") -- [Ian Harcombe (@MrHarcombe)](https://github.com/MrHarcombe "2 total commits to the Home Assistant orga: -1 commit to core +- [Ian Foster (@lanrat)](https://github.com/lanrat "4 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io +") +- [Ian Gibbs (@realflash)](https://github.com/realflash "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Ian Richardson (@iantrich)](https://github.com/iantrich "401 total commits to the Home Assistant orga: +- [Ian Harcombe (@MrHarcombe)](https://github.com/MrHarcombe "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") +- [Ian Haylock (@haylocki)](https://github.com/haylocki "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Ian Richardson (@iantrich)](https://github.com/iantrich "402 total commits to the Home Assistant orga: 296 commits to frontend -92 commits to home-assistant.io +93 commits to home-assistant.io 7 commits to core 2 commits to ui-schema 2 commits to developers.home-assistant @@ -7055,6 +9575,9 @@ This page contains a list of people who have contributed in one way or another t - [Ian Slinger (@ianjs)](https://github.com/ianjs "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Ian T\. Wright (@IanTWright)](https://github.com/IanTWright "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Ian Tewksbury (@itewk)](https://github.com/itewk "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -7067,15 +9590,29 @@ This page contains a list of people who have contributed in one way or another t - [ic3cool (@ic3cool)](https://github.com/ic3cool "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") +- [IceBotYT (@IceBotYT)](https://github.com/IceBotYT "10 total commits to the Home Assistant orga: +5 commits to core +2 commits to developers.home-assistant +2 commits to home-assistant.io +1 commit to brands +") - [IceEyz (@IceEyz)](https://github.com/IceEyz "1 total commits to the Home Assistant orga: 1 commit to addons ") +- [icemanch (@icemanch)](https://github.com/icemanch "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") - [IceOnly (@IceOnly)](https://github.com/IceOnly "1 total commits to the Home Assistant orga: 1 commit to addons ") +- [Icexist (@Icexist)](https://github.com/Icexist "3 total commits to the Home Assistant orga: +2 commits to alerts.home-assistant.io +1 commit to home-assistant.io +") - [icovada (@icovada)](https://github.com/icovada "6 total commits to the Home Assistant orga: -3 commits to home-assistant.io 3 commits to core +3 commits to home-assistant.io ") - [idfxken (@idfxken)](https://github.com/idfxken "5 total commits to the Home Assistant orga: 4 commits to open-zwave @@ -7084,8 +9621,11 @@ 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 "2 total commits to the Home Assistant orga: -1 commit to brands +- [Ignacy Gawędzki (@iazz)](https://github.com/iazz "16 total commits to the Home Assistant orga: +16 commits to buildroot +") +- [Igor (@IATkachenko)](https://github.com/IATkachenko "3 total commits to the Home Assistant orga: +2 commits to brands 1 commit to core ") - [Igor Bernstein (@igorbernstein2)](https://github.com/igorbernstein2 "3 total commits to the Home Assistant orga: @@ -7095,6 +9635,9 @@ This page contains a list of people who have contributed in one way or another t - [Igor Gocalinski (@grogi)](https://github.com/grogi "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Igor Loborec (@Bikonja)](https://github.com/Bikonja "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Igor Magès (@igormages)](https://github.com/igormages "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") @@ -7102,6 +9645,25 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to core ") +- [Igor Pakhomov (@Kirmas)](https://github.com/Kirmas "9 total commits to the Home Assistant orga: +5 commits to core +4 commits to home-assistant.io +") +- [Igor Santos (@igorsantos07)](https://github.com/igorsantos07 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Igor Shults (@ishults)](https://github.com/ishults "12 total commits to the Home Assistant orga: +6 commits to core +5 commits to home-assistant.io +1 commit to frontend +") +- [Ihor Kostiuk (@ki0ki0)](https://github.com/ki0ki0 "3 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +1 commit to brands +") +- [Ikko Ashimine (@eltociear)](https://github.com/eltociear "1 total commits to the Home Assistant orga: +1 commit to core +") - [ikonixx (@ikonixx)](https://github.com/ikonixx "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -7111,27 +9673,54 @@ This page contains a list of people who have contributed in one way or another t - [ikucuze (@ikucuze)](https://github.com/ikucuze "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Ilia Sotnikov (@hostcc)](https://github.com/hostcc "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Ilias Apalodimas (@apalos)](https://github.com/apalos "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [iliketoprogram14 (@iliketoprogram14)](https://github.com/iliketoprogram14 "3 total commits to the Home Assistant orga: 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: +- [Ilja Leiko (@leikoilja)](https://github.com/leikoilja "3 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to core 1 commit to home-assistant.io ") +- [Illia Grybkov (@igrybkov)](https://github.com/igrybkov "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") +- [Ilya Averyanov (@a1ien)](https://github.com/a1ien "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [Ilya Kuzmich (@ikv)](https://github.com/ikv "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Ilya Lipnitskiy (@lipnitsk)](https://github.com/lipnitsk "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [iLyas Bakouch (@isbkch)](https://github.com/isbkch "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Indu Prakash (@iprak)](https://github.com/iprak "8 total commits to the Home Assistant orga: +- [indexample (@indexample)](https://github.com/indexample "5 total commits to the Home Assistant orga: +3 commits to data.home-assistant +2 commits to home-assistant.io +") +- [Indu Prakash (@iprak)](https://github.com/iprak "9 total commits to the Home Assistant orga: +3 commits to brands 3 commits to home-assistant.io -2 commits to brands 2 commits to core 1 commit to wheels-custom-integrations ") -- [indykoning (@indykoning)](https://github.com/indykoning "7 total commits to the Home Assistant orga: -4 commits to core -2 commits to home-assistant.io +- [indykoning (@indykoning)](https://github.com/indykoning "12 total commits to the Home Assistant orga: +8 commits to core +3 commits to home-assistant.io 1 commit to brands ") +- [infeeeee (@infeeeee)](https://github.com/infeeeee "1 total commits to the Home Assistant orga: +1 commit to core +") - [Ing\. Jaroslav Šafka (@jedi7)](https://github.com/jedi7 "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to frontend @@ -7142,8 +9731,9 @@ This page contains a list of people who have contributed in one way or another t - [Ingo Theiss (@itn3rd77)](https://github.com/itn3rd77 "1 total commits to the Home Assistant orga: 1 commit to core ") -- [InovelliUSA (@InovelliUSA)](https://github.com/InovelliUSA "2 total commits to the Home Assistant orga: +- [Inovelli (@InovelliUSA)](https://github.com/InovelliUSA "3 total commits to the Home Assistant orga: 2 commits to open-zwave +1 commit to core ") - [inputd (@inputd)](https://github.com/inputd "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io @@ -7162,12 +9752,18 @@ This page contains a list of people who have contributed in one way or another t - [Ionut Popovici (@intelroman)](https://github.com/intelroman "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Ionuț Neagu (@IonutNeagu)](https://github.com/IonutNeagu "3 total commits to the Home Assistant orga: +3 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 ") - [ioull (@ioull)](https://github.com/ioull "1 total commits to the Home Assistant orga: 1 commit to core ") +- [ipetrovits (@ipetrovits)](https://github.com/ipetrovits "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [ipreston (@ipreston)](https://github.com/ipreston "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") @@ -7180,8 +9776,11 @@ This page contains a list of people who have contributed in one way or another t - [irvingwa (@irvingwa)](https://github.com/irvingwa "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Isabella Gross Alström (@isabellaalstrom)](https://github.com/isabellaalstrom "22 total commits to the Home Assistant orga: -15 commits to home-assistant.io +- [Isaac I\.Y\. Saito (@130s)](https://github.com/130s "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Isabella Gross Alström (@isabellaalstrom)](https://github.com/isabellaalstrom "23 total commits to the Home Assistant orga: +16 commits to home-assistant.io 3 commits to core 2 commits to wheels-custom-integrations 2 commits to brands @@ -7189,18 +9788,28 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [Ismael Luceno (@ismaell)](https://github.com/ismaell "14 total commits to the Home Assistant orga: +14 commits to buildroot +") +- [Issac (@issacg)](https://github.com/issacg "14 total commits to the Home Assistant orga: 7 commits to developers.home-assistant 2 commits to addons 1 commit to supervisor 1 commit to builder +1 commit to devcontainer 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 core ") -- [Itamar Dori (@doriitamar)](https://github.com/doriitamar "1 total commits to the Home Assistant orga: +- [iStitch07 (@iStitch07)](https://github.com/iStitch07 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [itairaz1 (@itairaz1)](https://github.com/itairaz1 "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Itamar Dori (@itamarbareket)](https://github.com/itamarbareket "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [itchannel (@itchannel)](https://github.com/itchannel "4 total commits to the Home Assistant orga: @@ -7210,8 +9819,12 @@ 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 ") -- [Iulian Onofrei (@revolter)](https://github.com/revolter "6 total commits to the Home Assistant orga: +- [iTitou (@titouanc)](https://github.com/titouanc "17 total commits to the Home Assistant orga: +17 commits to buildroot +") +- [Iulian Onofrei (@revolter)](https://github.com/revolter "8 total commits to the Home Assistant orga: 3 commits to home-assistant.io +2 commits to buildroot 1 commit to supervisor 1 commit to supervised-installer 1 commit to frontend @@ -7220,24 +9833,41 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") -- [Ivan Belokobylskiy (@devbis)](https://github.com/devbis "4 total commits to the Home Assistant orga: -3 commits to core +- [Ivan Belokobylskiy (@devbis)](https://github.com/devbis "6 total commits to the Home Assistant orga: +5 commits to core 1 commit to home-assistant.io ") -- [Ivan Bessarabov (@bessarabov)](https://github.com/bessarabov "7 total commits to the Home Assistant orga: -7 commits to home-assistant.io +- [Ivan Bessarabov (@bessarabov)](https://github.com/bessarabov "11 total commits to the Home Assistant orga: +9 commits to home-assistant.io +1 commit to analytics.home-assistant.io +1 commit to developers.home-assistant ") - [Ivan Dyedov (@idyedov)](https://github.com/idyedov "2 total commits to the Home Assistant orga: 1 commit to open-zwave 1 commit to core ") +- [Ivan Herrera (@Klievan)](https://github.com/Klievan "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") +- [IVEEL (@iveelco)](https://github.com/iveelco "3 total commits to the Home Assistant orga: +3 commits to newsletter-ghost-theme +") +- [Ivo Slanina (@buben19)](https://github.com/buben19 "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [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: +- [J Evans (@g40)](https://github.com/g40 "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [j james (@julijames)](https://github.com/julijames "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [J M H (@jay-em-Ach)](https://github.com/jay-em-Ach "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [J3n50m4t (@J3n50m4t)](https://github.com/J3n50m4t "1 total commits to the Home Assistant orga: @@ -7246,41 +9876,71 @@ This page contains a list of people who have contributed in one way or another t - [J4nsen (@J4nsen)](https://github.com/J4nsen "1 total commits to the Home Assistant orga: 1 commit to core ") +- [j\-a\-n (@j-a-n)](https://github.com/j-a-n "5 total commits to the Home Assistant orga: +3 commits to core +1 commit to brands +1 commit to home-assistant.io +") - [J\-CMartin (@J-CMartin)](https://github.com/J-CMartin "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [J\-Lindvig (@J-Lindvig)](https://github.com/J-Lindvig "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [j\-stienstra (@j-stienstra)](https://github.com/j-stienstra "6 total commits to the Home Assistant orga: +3 commits to core +2 commits to home-assistant.io +1 commit to brands +") - [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 "1185 total commits to the Home Assistant orga: -1002 commits to core -112 commits to home-assistant.io -35 commits to frontend -24 commits to brands -8 commits to developers.home-assistant -2 commits to netdisco -2 commits to data.home-assistant +- [J\. Nick Koston (@bdraco)](https://github.com/bdraco "2967 total commits to the Home Assistant orga: +2592 commits to core +226 commits to home-assistant.io +60 commits to frontend +47 commits to developers.home-assistant +32 commits to brands +8 commits to data.home-assistant +1 commit to home-assistant-js-websocket +1 commit to alerts.home-assistant.io +") +- [J\. Tang (@devnull42)](https://github.com/devnull42 "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [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 "10 total commits to the Home Assistant orga: -8 commits to core +- [J\.C\. Woltz (@jcwoltz)](https://github.com/jcwoltz "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [J\.P\. Hutchins (@JPHutchins)](https://github.com/JPHutchins "11 total commits to the Home Assistant orga: +9 commits to core 1 commit to brands 1 commit to home-assistant.io ") -- [J\.P\. Krauss (@asymworks)](https://github.com/asymworks "3 total commits to the Home Assistant orga: +- [J\.P\. Krauss (@asymworks)](https://github.com/asymworks "4 total commits to the Home Assistant orga: +2 commits to core 1 commit to brands -1 commit to core 1 commit to home-assistant.io ") - [Jaak Laineste (@jaakla)](https://github.com/jaakla "1 total commits to the Home Assistant orga: 1 commit to frontend ") +- [Jaap Crezee (@jaapcrezee)](https://github.com/jaapcrezee "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [jaburges (@jaburges)](https://github.com/jaburges "5 total commits to the Home Assistant orga: 4 commits to home-assistant.io 1 commit to core ") +- [Jacek Kończewski (@jacekk015)](https://github.com/jacekk015 "1 total commits to the Home Assistant orga: +1 commit to core +") +- [jacekpaszkowski (@jacekpaszkowski)](https://github.com/jacekpaszkowski "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Jacen (@jacen92)](https://github.com/jacen92 "2 total commits to the Home Assistant orga: 2 commits to pi-gen ") @@ -7294,19 +9954,22 @@ This page contains a list of people who have contributed in one way or another t 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: +- [Jack Chapple (@jbroadice)](https://github.com/jbroadice "2 total commits to the Home Assistant orga: 2 commits to core ") - [Jack Fan (@JackWindows)](https://github.com/JackWindows "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Jack Kao (@jackzzjack)](https://github.com/jackzzjack "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Jack Minardi (@jminardi)](https://github.com/jminardi "9 total commits to the Home Assistant orga: 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: +- [Jack Wilsdon (@jackwilsdon)](https://github.com/jackwilsdon "7 total commits to the Home Assistant orga: +3 commits to frontend 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: @@ -7318,7 +9981,10 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [Jaco Kok (@jacokok)](https://github.com/jacokok "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Jacob Mansfield (@girlpunk)](https://github.com/girlpunk "9 total commits to the Home Assistant orga: 5 commits to core 4 commits to home-assistant.io ") @@ -7332,6 +9998,10 @@ This page contains a list of people who have contributed in one way or another t - [Jacob Penderworth (@Penderworth)](https://github.com/Penderworth "17 total commits to the Home Assistant orga: 17 commits to 1password-teams-open-source ") +- [Jacob Shufro (@jshufro)](https://github.com/jshufro "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Jacob Siverskog (@jsiverskog)](https://github.com/jsiverskog "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") @@ -7348,10 +10018,21 @@ This page contains a list of people who have contributed in one way or another t - [Jacques\-D\. Piguet (@jdpiguet)](https://github.com/jdpiguet "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jadson Santos (@jadson179)](https://github.com/jadson179 "4 total commits to the Home Assistant orga: +3 commits to brands +1 commit to wheels-custom-integrations +") +- [jafar\-atili (@jafar-atili)](https://github.com/jafar-atili "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Jagan Teki (@openedev)](https://github.com/openedev "44 total commits to the Home Assistant orga: +44 commits to buildroot +") - [jagjordi (@jagjordi)](https://github.com/jagjordi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jaimyn Mayer (@jabelone)](https://github.com/jabelone "1 total commits to the Home Assistant orga: +- [Jaimyn Mayer (@jabelone)](https://github.com/jabelone "2 total commits to the Home Assistant orga: +1 commit to addons 1 commit to hassbian-scripts ") - [Jake McCrary (@jakemcc)](https://github.com/jakemcc "2 total commits to the Home Assistant orga: @@ -7367,26 +10048,33 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Jakob Schlyter (@jschlyter)](https://github.com/jschlyter "6 total commits to the Home Assistant orga: -2 commits to home-assistant.io 2 commits to core +2 commits to home-assistant.io 1 commit to wheels-custom-integrations 1 commit to brands ") - [Jakub (@lenisko)](https://github.com/lenisko "1 total commits to the Home Assistant orga: 1 commit to supervisor ") -- [Jakub Bartkowiak (@gralin)](https://github.com/gralin "1 total commits to the Home Assistant orga: +- [Jakub Bartkowiak (@gralin)](https://github.com/gralin "2 total commits to the Home Assistant orga: 1 commit to operating-system +1 commit to core ") - [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: +- [Jakub Cabak (@jcabak)](https://github.com/jcabak "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Jakub Dąbrowski (@dabku)](https://github.com/dabku "2 total commits to the Home Assistant orga: 2 commits to frontend ") - [Jakub Kolář (@LordBoos)](https://github.com/LordBoos "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Jakub Piasecki (@zaporylie)](https://github.com/zaporylie "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Jakub Schmidtke (@sjakub)](https://github.com/sjakub "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -7396,12 +10084,24 @@ This page contains a list of people who have contributed in one way or another t - [jakubradziwon (@jakubradziwon)](https://github.com/jakubradziwon "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [jambees (@jambees)](https://github.com/jambees "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [James (@jimbob1001)](https://github.com/jimbob1001 "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") +- [James (@EnochPrime)](https://github.com/EnochPrime "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [James Balean (@slicen)](https://github.com/slicen "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [James Callaghan (@jcallaghan)](https://github.com/jcallaghan "1 total commits to the Home Assistant orga: 1 commit to core ") +- [James Chaloupka (@SirGoodenough)](https://github.com/SirGoodenough "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [James Clancey (@Clancey)](https://github.com/Clancey "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") @@ -7415,11 +10115,31 @@ 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 "9 total commits to the Home Assistant orga: +- [James Grant (@jamesg-nz)](https://github.com/jamesg-nz "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [James Hebden (@devec0)](https://github.com/devec0 "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [James Hewitt (@Jamstah)](https://github.com/Jamstah "4 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io +") +- [James Hilliard (@jameshilliard)](https://github.com/jameshilliard "374 total commits to the Home Assistant orga: +365 commits to buildroot 6 commits to core 2 commits to home-assistant.io 1 commit to brands ") +- [James Hodgkinson (@yaleman)](https://github.com/yaleman "2 total commits to the Home Assistant orga: +2 commits to core +") +- [James Kiefer (@zinefer)](https://github.com/zinefer "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [James Knight (@jdknight)](https://github.com/jdknight "7 total commits to the Home Assistant orga: +7 commits to buildroot +") - [James Marsh (@doctorjames)](https://github.com/doctorjames "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to home-assistant.io @@ -7427,16 +10147,29 @@ This page contains a list of people who have contributed in one way or another t - [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 Myatt (@jamesmyatt)](https://github.com/jamesmyatt "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [James Nimmo (@jnimmo)](https://github.com/jnimmo "14 total commits to the Home Assistant orga: +9 commits to core +4 commits to home-assistant.io +1 commit to brands ") - [James Ruan (@jamesruan)](https://github.com/jamesruan "2 total commits to the Home Assistant orga: 2 commits to pi-gen ") +- [James Stroud (@strouja)](https://github.com/strouja "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [James Sun (@sun16)](https://github.com/sun16 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [James Szalay (@jgissend10)](https://github.com/jgissend10 "2 total commits to the Home Assistant orga: +2 commits to core +") +- [James Taylor (@jt-nti)](https://github.com/jt-nti "1 total commits to the Home Assistant orga: +1 commit to core +") - [James Warne (@bebleo)](https://github.com/bebleo "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -7458,9 +10191,16 @@ This page contains a list of people who have contributed in one way or another t - [jamesthomas128 (@jamesthomas128)](https://github.com/jamesthomas128 "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [JamesW\-AU (@JamesW-AU)](https://github.com/JamesW-AU "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [JamesWong9 (@JamesWong9)](https://github.com/JamesWong9 "1 total commits to the Home Assistant orga: 1 commit to android ") +- [Jamie Macdonald (@sidequestboy)](https://github.com/sidequestboy "2 total commits to the Home Assistant orga: +1 commit to android +1 commit to companion.home-assistant +") - [Jamie Shaw (@jamieshaw)](https://github.com/jamieshaw "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -7469,8 +10209,8 @@ This page contains a list of people who have contributed in one way or another t 1 commit to iOS 1 commit to people ") -- [Jamie Weston (@jlweston)](https://github.com/jlweston "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Jamie Weston (@jlweston)](https://github.com/jlweston "9 total commits to the Home Assistant orga: +9 commits to home-assistant.io ") - [Jamin Collins (@jamincollins)](https://github.com/jamincollins "1 total commits to the Home Assistant orga: 1 commit to core @@ -7482,14 +10222,25 @@ This page contains a list of people who have contributed in one way or another t - [Jan (@jevermeister)](https://github.com/jevermeister "1 total commits to the Home Assistant orga: 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 (@jnxxx)](https://github.com/jnxxx "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Jan (@js94x)](https://github.com/js94x "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Jan (@climblinne)](https://github.com/climblinne "1 total commits to the Home Assistant orga: +1 commit to core ") - [Jan Almeroth (@jalmeroth)](https://github.com/jalmeroth "8 total commits to the Home Assistant orga: 5 commits to core 2 commits to home-assistant.io 1 commit to frontend ") +- [Jan Bouwhuis (@jbouwh)](https://github.com/jbouwh "151 total commits to the Home Assistant orga: +102 commits to core +48 commits to home-assistant.io +1 commit to developers.home-assistant +") - [Jan Castermans (@pprazzi)](https://github.com/pprazzi "2 total commits to the Home Assistant orga: 1 commit to frontend 1 commit to home-assistant.io @@ -7500,23 +10251,43 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [Jan Dohl (@polygon)](https://github.com/polygon "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Jan Harkes (@jaharkes)](https://github.com/jaharkes "102 total commits to the Home Assistant orga: 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 "33 total commits to the Home Assistant orga: -31 commits to core -2 commits to home-assistant.io +- [Jan Heylen (@heyleke)](https://github.com/heyleke "9 total commits to the Home Assistant orga: +9 commits to buildroot +") +- [jan iversen (@janiversen)](https://github.com/janiversen "354 total commits to the Home Assistant orga: +317 commits to core +37 commits to home-assistant.io +") +- [Jan Jurča (@janjurca)](https://github.com/janjurca "1 total commits to the Home Assistant orga: +1 commit to core ") - [Jan Keith Darunday (@jkcdarunday)](https://github.com/jkcdarunday "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jan Kiszka (@jan-kiszka)](https://github.com/jan-kiszka "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [Jan Kraval (@jkraval)](https://github.com/jkraval "6 total commits to the Home Assistant orga: +6 commits to buildroot +") +- [Jan Kundrát (@jktjkt)](https://github.com/jktjkt "11 total commits to the Home Assistant orga: +11 commits to buildroot +") - [Jan Losinski (@janLo)](https://github.com/janLo "22 total commits to the Home Assistant orga: 16 commits to core 6 commits to home-assistant.io ") +- [Jan Löffler (@jan-loeffler)](https://github.com/jan-loeffler "1 total commits to the Home Assistant orga: +1 commit to core +") - [Jan Nylund (@jannylund)](https://github.com/jannylund "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -7525,6 +10296,9 @@ This page contains a list of people who have contributed in one way or another t 4 commits to home-assistant.io 1 commit to iOS ") +- [Jan Pedersen (@jp-embedded)](https://github.com/jp-embedded "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Jan Peer Stöcklmair (@JPeer264)](https://github.com/JPeer264 "3 total commits to the Home Assistant orga: 3 commits to 1password-teams-open-source ") @@ -7534,19 +10308,32 @@ This page contains a list of people who have contributed in one way or another t - [Jan Seidl (@jseidl)](https://github.com/jseidl "1 total commits to the Home Assistant orga: 1 commit to brands ") -- [Jan Sepke (@jansepke)](https://github.com/jansepke "1 total commits to the Home Assistant orga: +- [Jan Sepke (@jansepke)](https://github.com/jansepke "2 total commits to the Home Assistant orga: +1 commit to cli 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.io 2 commits to core +2 commits to home-assistant.io +") +- [Jan Viktorin (@jviki)](https://github.com/jviki "18 total commits to the Home Assistant orga: +18 commits to buildroot +") +- [Jan Willem Janssen (@jawi)](https://github.com/jawi "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [Jan Willhaus (@janw)](https://github.com/janw "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") +- [Jan\-Philipp Litza (@jplitza)](https://github.com/jplitza "1 total commits to the Home Assistant orga: +1 commit to core +") - [Jan\-Preben Mossin (@jpmossin)](https://github.com/jpmossin "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Jan\-Willem Mulder (@jwnmulder)](https://github.com/jwnmulder "1 total commits to the Home Assistant orga: +1 commit to core +") - [Janis Jansons (@Janhouse)](https://github.com/Janhouse "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -7554,6 +10341,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [janlugt (@janlugt)](https://github.com/janlugt "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Janne Grunau (@jannau)](https://github.com/jannau "6 total commits to the Home Assistant orga: 4 commits to core 2 commits to home-assistant.io @@ -7561,6 +10351,9 @@ This page contains a list of people who have contributed in one way or another t - [Jannik Beyerstedt (@jbeyerstedt)](https://github.com/jbeyerstedt "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Jannis Göing (@jannis3005)](https://github.com/jannis3005 "1 total commits to the Home Assistant orga: +1 commit to android +") - [Janos Racz (@rczjns)](https://github.com/rczjns "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -7573,11 +10366,18 @@ This page contains a list of people who have contributed in one way or another t 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.io 2 commits to core +2 commits to home-assistant.io ") -- [Jared J (@jjensn)](https://github.com/jjensn "2 total commits to the Home Assistant orga: -1 commit to netdisco +- [Jared Bents (@jmbents)](https://github.com/jmbents "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Jared Hobbs (@jaredhobbs)](https://github.com/jaredhobbs "3 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +1 commit to core +") +- [Jared J (@jjensn)](https://github.com/jjensn "1 total commits to the Home Assistant orga: 1 commit to core ") - [Jared Quinn (@jaredquinn)](https://github.com/jaredquinn "2 total commits to the Home Assistant orga: @@ -7594,11 +10394,15 @@ This page contains a list of people who have contributed in one way or another t - [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 "13 total commits to the Home Assistant orga: -8 commits to frontend -3 commits to core +- [Jarod Wilson (@jarodwilson)](https://github.com/jarodwilson "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Jaroslav Hanslík (@kukulich)](https://github.com/kukulich "23 total commits to the Home Assistant orga: +13 commits to frontend +5 commits to core +2 commits to developers.home-assistant +2 commits to home-assistant.io 1 commit to brands -1 commit to home-assistant.io ") - [Jarosław Salwa (@armata007)](https://github.com/armata007 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -7607,8 +10411,12 @@ This page contains a list of people who have contributed in one way or another t 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 (@zachowj)](https://github.com/zachowj "4 total commits to the Home Assistant orga: +3 commits to home-assistant-js-websocket +1 commit to core +") +- [Jason A\. Donenfeld (@zx2c4)](https://github.com/zx2c4 "3 total commits to the Home Assistant orga: +3 commits to buildroot ") - [Jason Albert (@thejta)](https://github.com/thejta "1 total commits to the Home Assistant orga: 1 commit to core @@ -7629,13 +10437,16 @@ This page contains a list of people who have contributed in one way or another t 1 commit to developers.home-assistant 1 commit to core ") +- [Jason Fowler (@jsnfwlr)](https://github.com/jsnfwlr "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Jason Heddings (@jheddings)](https://github.com/jheddings "1 total commits to the Home Assistant orga: 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: +- [Jason Hu (@awarecan)](https://github.com/awarecan "290 total commits to the Home Assistant orga: 200 commits to core 41 commits to home-assistant.io 34 commits to frontend @@ -7643,13 +10454,12 @@ This page contains a list of people who have contributed in one way or another t 2 commits to android 1 commit to LabelBot 1 commit to home-assistant-js-websocket -1 commit to netdisco 1 commit to people ") -- [Jason Hunter (@hunterjm)](https://github.com/hunterjm "119 total commits to the Home Assistant orga: -89 commits to core -22 commits to home-assistant.io -3 commits to frontend +- [Jason Hunter (@hunterjm)](https://github.com/hunterjm "134 total commits to the Home Assistant orga: +101 commits to core +24 commits to home-assistant.io +4 commits to frontend 2 commits to brands 1 commit to actions 1 commit to people @@ -7673,19 +10483,29 @@ This page contains a list of people who have contributed in one way or another t 1 commit to frontend 1 commit to home-assistant.io ") -- [Jason Lawrence (@jjlawren)](https://github.com/jjlawren "240 total commits to the Home Assistant orga: -189 commits to core -43 commits to home-assistant.io +- [Jason Lawrence (@jjlawren)](https://github.com/jjlawren "537 total commits to the Home Assistant orga: +460 commits to core +68 commits to home-assistant.io 7 commits to iOS 1 commit to developers.home-assistant +1 commit to brands ") -- [Jason Madigan (@jasonmadigan)](https://github.com/jasonmadigan "4 total commits to the Home Assistant orga: -4 commits to core +- [Jason Madigan (@jasonmadigan)](https://github.com/jasonmadigan "5 total commits to the Home Assistant orga: +5 commits to core +") +- [Jason Maners (@jlmaners)](https://github.com/jlmaners "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Jason Nader (@ammgws)](https://github.com/ammgws "1 total commits to the Home Assistant orga: +1 commit to core ") - [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 Pruitt (@jrspruitt)](https://github.com/jrspruitt "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Jason Rebelo (@igotinfected)](https://github.com/igotinfected "2 total commits to the Home Assistant orga: 2 commits to core ") @@ -7693,7 +10513,8 @@ This page contains a list of people who have contributed in one way or another t 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: +- [Jason Rumney (@make-all)](https://github.com/make-all "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations 1 commit to brands ") - [Jason Schollenberger (@jschollenberger)](https://github.com/jschollenberger "1 total commits to the Home Assistant orga: @@ -7702,11 +10523,11 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [Jason Swails (@swails)](https://github.com/swails "10 total commits to the Home Assistant orga: 7 commits to core -2 commits to home-assistant.io +3 commits to home-assistant.io ") -- [Jason Wells (@singularitycoder)](https://github.com/singularitycoder "3 total commits to the Home Assistant orga: +- [Jason Wells (@sentientapp)](https://github.com/sentientapp "3 total commits to the Home Assistant orga: 3 commits to open-zwave ") - [Jason White (@jdwhite)](https://github.com/jdwhite "1 total commits to the Home Assistant orga: @@ -7732,18 +10553,30 @@ This page contains a list of people who have contributed in one way or another t - [Jasper Slits (@jasperslits)](https://github.com/jasperslits "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Jasper Smulders (@JasperS2307)](https://github.com/JasperS2307 "1 total commits to the Home Assistant orga: +1 commit to core +") - [Jasper van der Neut \- Stulen (@jvanderneutstulen)](https://github.com/jvanderneutstulen "12 total commits to the Home Assistant orga: 8 commits to operating-system 3 commits to core 1 commit to people ") +- [JasperPlant (@JasperPlant)](https://github.com/JasperPlant "3 total commits to the Home Assistant orga: +3 commits to core +") - [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 "31 total commits to the Home Assistant orga: -16 commits to core -15 commits to home-assistant.io +- [Jatin Desai (@jdesai61)](https://github.com/jdesai61 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [javicalle (@javicalle)](https://github.com/javicalle "40 total commits to the Home Assistant orga: +23 commits to core +17 commits to home-assistant.io +") +- [Javier Domingo Cansino (@txomon)](https://github.com/txomon "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [Javier Gonel (@graffic)](https://github.com/graffic "2 total commits to the Home Assistant orga: 2 commits to core @@ -7752,12 +10585,19 @@ This page contains a list of people who have contributed in one way or another t 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: +- [Javier Lopez (@muniter)](https://github.com/muniter "2 total commits to the Home Assistant orga: +1 commit to companion.home-assistant 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 ") +- [Javier Viguera (@jviguera)](https://github.com/jviguera "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [javixuwi (@javixuwi)](https://github.com/javixuwi "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Jaxom Nutt (@JaxomCS)](https://github.com/JaxomCS "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to home-assistant.io @@ -7797,6 +10637,9 @@ This page contains a list of people who have contributed in one way or another t - [JAYMAN\-ATX (@JAYMAN-ATX)](https://github.com/JAYMAN-ATX "2 total commits to the Home Assistant orga: 2 commits to homebridge-homeassistant ") +- [JayOne73 (@JayOne73)](https://github.com/JayOne73 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [jazzaj (@jazzaj)](https://github.com/jazzaj "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -7820,15 +10663,19 @@ This page contains a list of people who have contributed in one way or another t 7 commits to home-assistant.io 6 commits to core ") -- [Jc2k (@Jc2k)](https://github.com/Jc2k "142 total commits to the Home Assistant orga: -129 commits to core -11 commits to home-assistant.io -2 commits to frontend +- [Jc2k (@Jc2k)](https://github.com/Jc2k "212 total commits to the Home Assistant orga: +192 commits to core +14 commits to home-assistant.io +4 commits to frontend +2 commits to developers.home-assistant +") +- [jcEcaSinters (@jcEcaSinters)](https://github.com/jcEcaSinters "26 total commits to the Home Assistant orga: +26 commits to buildroot ") - [jchasey (@jchasey)](https://github.com/jchasey "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") -- [jchus\-dot\-id (@jchus-dot-id)](https://github.com/jchus-dot-id "1 total commits to the Home Assistant orga: +- [jchus\-dot\-id (@jchus-id)](https://github.com/jchus-id "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [jcoetsie (@jcoetsie)](https://github.com/jcoetsie "2 total commits to the Home Assistant orga: @@ -7837,6 +10684,9 @@ This page contains a list of people who have contributed in one way or another t - [jcrowegitHu8 (@jcrowegitHu8)](https://github.com/jcrowegitHu8 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [jdeath (@jdeath)](https://github.com/jdeath "1 total commits to the Home Assistant orga: +1 commit to core +") - [jdelaney72 (@jdelaney72)](https://github.com/jdelaney72 "2 total commits to the Home Assistant orga: 1 commit to companion.home-assistant 1 commit to core @@ -7857,6 +10707,12 @@ This page contains a list of people who have contributed in one way or another t 2 commits to brands 1 commit to wheels-custom-integrations ") +- [Jean\-Christophe DUBOIS (@jcdubois)](https://github.com/jcdubois "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Jean\-Christophe PLAGNIOL\-VILLARD (@plagnioj)](https://github.com/plagnioj "13 total commits to the Home Assistant orga: +13 commits to buildroot +") - [Jean\-François Auger (@nechry)](https://github.com/nechry "980 total commits to the Home Assistant orga: 974 commits to open-zwave 6 commits to python-openzwave @@ -7867,6 +10723,9 @@ This page contains a list of people who have contributed in one way or another t - [Jean\-Michel Ruiz (@coolcow)](https://github.com/coolcow "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Jean\-Paul Etienne (@fractalclone)](https://github.com/fractalclone "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Jean\-Paul van Ravensberg (@DevSecNinja)](https://github.com/DevSecNinja "9 total commits to the Home Assistant orga: 6 commits to home-assistant.io 1 commit to addons @@ -7881,8 +10740,12 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") -- [Jean\-Yves Avenard (@jyavenard)](https://github.com/jyavenard "3 total commits to the Home Assistant orga: -3 commits to core +- [Jean\-pierre Cartal (@jeanpierrecartal)](https://github.com/jeanpierrecartal "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Jean\-Yves Avenard (@jyavenard)](https://github.com/jyavenard "8 total commits to the Home Assistant orga: +6 commits to core +2 commits to home-assistant.io ") - [Jed Lippold (@jlippold)](https://github.com/jlippold "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -7891,8 +10754,13 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to home-assistant.io ") -- [JeeCee1 (@JeeCee1)](https://github.com/JeeCee1 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [JeeCee1 (@JeeCee1)](https://github.com/JeeCee1 "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Jeef (@jeeftor)](https://github.com/jeeftor "23 total commits to the Home Assistant orga: +15 commits to core +6 commits to home-assistant.io +2 commits to brands ") - [Jeena Paradies (@jeena)](https://github.com/jeena "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -7901,18 +10769,27 @@ This page contains a list of people who have contributed in one way or another t 3 commits to core 2 commits to home-assistant.io ") +- [Jeff (@jumbledbytes)](https://github.com/jumbledbytes "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Jeff Bailey (@kaladron)](https://github.com/kaladron "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Jeff Basso (@Jjbasso)](https://github.com/Jjbasso "1 total commits to the Home Assistant orga: +1 commit to core +") - [Jeff Boothe (@jboothe)](https://github.com/jboothe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Jeff Cutsinger (@jeffcutsinger)](https://github.com/jeffcutsinger "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jeff H (@jeffaudio)](https://github.com/jeffaudio "1 total commits to the Home Assistant orga: +- [Jeff H (@jeffhentschel)](https://github.com/jeffhentschel "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Jeff Irion (@JeffLIrion)](https://github.com/JeffLIrion "124 total commits to the Home Assistant orga: -87 commits to core -36 commits to home-assistant.io +- [Jeff Irion (@JeffLIrion)](https://github.com/JeffLIrion "144 total commits to the Home Assistant orga: +105 commits to core +38 commits to home-assistant.io 1 commit to developers.home-assistant ") - [Jeff Koenig (@TheJefe)](https://github.com/TheJefe "1 total commits to the Home Assistant orga: @@ -7925,11 +10802,12 @@ This page contains a list of people who have contributed in one way or another t 4 commits to core 1 commit to home-assistant.io ") -- [Jeff Rescignano (@JeffResc)](https://github.com/JeffResc "47 total commits to the Home Assistant orga: -22 commits to home-assistant.io -17 commits to developers.home-assistant +- [Jeff Rescignano (@JeffResc)](https://github.com/JeffResc "56 total commits to the Home Assistant orga: +28 commits to home-assistant.io +18 commits to developers.home-assistant 4 commits to companion.home-assistant 3 commits to data.home-assistant +2 commits to core 1 commit to frontend ") - [Jeff Schroeder (@SEJeff)](https://github.com/SEJeff "18 total commits to the Home Assistant orga: @@ -7950,9 +10828,15 @@ This page contains a list of people who have contributed in one way or another t 6 commits to home-assistant.io 2 commits to pyharmony ") +- [Jeff Zignego (@HED-jzignego)](https://github.com/HED-jzignego "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [jeff\-h (@jeff-h)](https://github.com/jeff-h "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Jefferson Bledsoe (@JeffersonBledsoe)](https://github.com/JeffersonBledsoe "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [Jeffery To (@jefferyto)](https://github.com/jefferyto "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -7962,6 +10846,9 @@ This page contains a list of people who have contributed in one way or another t - [Jeffrey (@Sjeff)](https://github.com/Sjeff "14 total commits to the Home Assistant orga: 14 commits to home-assistant.io ") +- [Jeffrey (@theglus)](https://github.com/theglus "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 core 1 commit to home-assistant.io @@ -7973,6 +10860,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to frontend 1 commit to core ") +- [Jelle Sels (@jellesels)](https://github.com/jellesels "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Jelle Spijker (@jellespijker)](https://github.com/jellespijker "1 total commits to the Home Assistant orga: 1 commit to brands ") @@ -7982,6 +10872,12 @@ This page contains a list of people who have contributed in one way or another t - [Jelmer van der Stel (@steljwagh)](https://github.com/steljwagh "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [jelmerkk (@jelmerkk)](https://github.com/jelmerkk "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Jelte Zeilstra (@J3173)](https://github.com/J3173 "2 total commits to the Home Assistant orga: +2 commits to core +") - [Jenny (@pinkywafer)](https://github.com/pinkywafer "10 total commits to the Home Assistant orga: 4 commits to home-assistant.io 3 commits to core @@ -7999,22 +10895,26 @@ 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 Maus (@jens-maus)](https://github.com/jens-maus "12 total commits to the Home Assistant orga: +7 commits to operating-system +4 commits to addons +1 commit to buildroot +") - [Jens Mazzanti\-Myretyr (@jm-73)](https://github.com/jm-73 "2 total commits to the Home Assistant orga: 1 commit to wheels-custom-integrations 1 commit to brands ") -- [Jens Nistler (@lociii)](https://github.com/lociii "6 total commits to the Home Assistant orga: +- [Jens Nistler (@lociii)](https://github.com/lociii "5 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 frontend ") -- [Jens Østergaard Nielsen (@dingusdk)](https://github.com/dingusdk "13 total commits to the Home Assistant orga: -8 commits to core -4 commits to home-assistant.io +- [Jens Østergaard Nielsen (@dingusdk)](https://github.com/dingusdk "20 total commits to the Home Assistant orga: +14 commits to core +5 commits to home-assistant.io 1 commit to brands ") - [jensjakob (@jensjakob)](https://github.com/jensjakob "1 total commits to the Home Assistant orga: @@ -8053,6 +10953,9 @@ This page contains a list of people who have contributed in one way or another t - [Jeremy Hettenhouser (@borland502)](https://github.com/borland502 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jeremy Kerr (@jk-ozlabs)](https://github.com/jk-ozlabs "13 total commits to the Home Assistant orga: +13 commits to buildroot +") - [Jeremy Klein (@jeremydk)](https://github.com/jeremydk "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io 2 commits to core @@ -8077,9 +10980,15 @@ This page contains a list of people who have contributed in one way or another t - [jeremywillans (@jeremywillans)](https://github.com/jeremywillans "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jerin Jacob (@jerinjacobk)](https://github.com/jerinjacobk "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Jerod Santo (@jerodsanto)](https://github.com/jerodsanto "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jeroen Peters (@Heronimonimo)](https://github.com/Heronimonimo "1 total commits to the Home Assistant orga: +1 commit to core +") - [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 @@ -8093,6 +11002,9 @@ This page contains a list of people who have contributed in one way or another t - [Jeroen Van den Keybus (@vdkeybus)](https://github.com/vdkeybus "2 total commits to the Home Assistant orga: 2 commits to core ") +- [JeroenTuinstra (@JeroenTuinstra)](https://github.com/JeroenTuinstra "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 ") @@ -8101,7 +11013,7 @@ This page contains a list of people who have contributed in one way or another t 1 commit to brands 1 commit to home-assistant.io ") -- [Jerrod Lankford (@Jerrkawz)](https://github.com/Jerrkawz "1 total commits to the Home Assistant orga: +- [Jerrod Lankford (@jerrod-lankford)](https://github.com/jerrod-lankford "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Jerry Chong (@zanglang)](https://github.com/zanglang "2 total commits to the Home Assistant orga: @@ -8111,19 +11023,23 @@ This page contains a list of people who have contributed in one way or another t - [Jerry Workman (@JerryWorkman)](https://github.com/JerryWorkman "9 total commits to the Home Assistant orga: 9 commits to home-assistant.io ") +- [Jerônimo Lopes (@lopesjeronimo)](https://github.com/lopesjeronimo "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [Jess (@castaway)](https://github.com/castaway "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") -- [Jesse Campbell (@jcam)](https://github.com/jcam "4 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Jesse Campbell (@jcam)](https://github.com/jcam "8 total commits to the Home Assistant orga: +4 commits to core +3 commits to home-assistant.io 1 commit to addons -1 commit to core ") -- [Jesse Hills (@jesserockz)](https://github.com/jesserockz "24 total commits to the Home Assistant orga: -18 commits to core -4 commits to home-assistant.io -2 commits to brands +- [Jesse Hills (@jesserockz)](https://github.com/jesserockz "66 total commits to the Home Assistant orga: +57 commits to core +5 commits to home-assistant.io +3 commits to brands +1 commit to frontend ") - [Jesse Newland (@jnewland)](https://github.com/jnewland "2 total commits to the Home Assistant orga: 2 commits to core @@ -8141,9 +11057,6 @@ This page contains a list of people who have contributed in one way or another t - [Jesse van Leth (@jessevl)](https://github.com/jessevl "1 total commits to the Home Assistant orga: 1 commit to brands ") -- [Jesse Zoldak (@jzoldak)](https://github.com/jzoldak "1 total commits to the Home Assistant orga: -1 commit to core -") - [JessePrater (@JessePrater)](https://github.com/JessePrater "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -8154,8 +11067,8 @@ This page contains a list of people who have contributed in one way or another t - [jessyjones (@jessyjones)](https://github.com/jessyjones "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jevgeni Kiski (@yozik04)](https://github.com/yozik04 "2 total commits to the Home Assistant orga: -1 commit to core +- [Jevgeni Kiski (@yozik04)](https://github.com/yozik04 "3 total commits to the Home Assistant orga: +2 commits to core 1 commit to home-assistant.io ") - [jey burrows (@jeyrb)](https://github.com/jeyrb "2 total commits to the Home Assistant orga: @@ -8173,9 +11086,9 @@ This page contains a list of people who have contributed in one way or another t - [jfette (@jfette)](https://github.com/jfette "1 total commits to the Home Assistant orga: 1 commit to addons ") -- [jgriff2 (@jgriff2)](https://github.com/jgriff2 "10 total commits to the Home Assistant orga: +- [jgriff2 (@jgriff2)](https://github.com/jgriff2 "12 total commits to the Home Assistant orga: 7 commits to home-assistant.io -3 commits to core +5 commits to core ") - [jgrob1 (@jgrob1)](https://github.com/jgrob1 "1 total commits to the Home Assistant orga: 1 commit to core @@ -8190,12 +11103,24 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") -- [Jim Ekman (@blejdfist)](https://github.com/blejdfist "1 total commits to the Home Assistant orga: -1 commit to core +- [Jianhui Zhao (@zhaojh329)](https://github.com/zhaojh329 "26 total commits to the Home Assistant orga: +26 commits to buildroot +") +- [Jim Brennan (@jbrennan-impinj)](https://github.com/jbrennan-impinj "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Jim Ekman (@blejdfist)](https://github.com/blejdfist "2 total commits to the Home Assistant orga: +2 commits to core ") - [Jim Rollenhagen (@jimrollenhagen)](https://github.com/jimrollenhagen "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Jim Shank (@jshank)](https://github.com/jshank "2 total commits to the Home Assistant orga: +2 commits to core +") +- [jim\-granger (@jim-granger)](https://github.com/jim-granger "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [JimBoCA (@jimboca)](https://github.com/jimboca "3 total commits to the Home Assistant orga: 3 commits to pyharmony ") @@ -8210,16 +11135,31 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [jingsno (@jingsno)](https://github.com/jingsno "1 total commits to the Home Assistant orga: +1 commit to core +") - [Jiri Cincura ↹ (@cincuranet)](https://github.com/cincuranet "13 total commits to the Home Assistant orga: 13 commits to open-zwave ") -- [Jiri Urbasek (@ibru)](https://github.com/ibru "1 total commits to the Home Assistant orga: -1 commit to iOS +- [Jiri Novotny (@jiri-novotny)](https://github.com/jiri-novotny "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Jiri Urbasek (@ibru)](https://github.com/ibru "2 total commits to the Home Assistant orga: +2 commits to iOS ") - [JJdeVries (@JJdeVries)](https://github.com/JJdeVries "6 total commits to the Home Assistant orga: 5 commits to core 1 commit to home-assistant.io ") +- [jkuettner (@jkuettner)](https://github.com/jkuettner "4 total commits to the Home Assistant orga: +4 commits to core +") +- [jlijssen (@jlijssen)](https://github.com/jlijssen "16 total commits to the Home Assistant orga: +16 commits to buildroot +") +- [jlmaroto (@jlmaroto)](https://github.com/jlmaroto "1 total commits to the Home Assistant orga: +1 commit to brands +") - [jlrgraham (@jlrgraham)](https://github.com/jlrgraham "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -8244,9 +11184,12 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [jo89lin (@invalidarg)](https://github.com/invalidarg "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Joachim Wiberg (@troglobit)](https://github.com/troglobit "23 total commits to the Home Assistant orga: +23 commits to buildroot +") - [Joakim af Sandeberg (@jotunacorn)](https://github.com/jotunacorn "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -8254,59 +11197,87 @@ This page contains a list of people who have contributed in one way or another t - [Joakim Lindbom (@JoakimLindbom)](https://github.com/JoakimLindbom "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Joakim Plate (@elupus)](https://github.com/elupus "141 total commits to the Home Assistant orga: -112 commits to core -16 commits to home-assistant.io +- [Joakim Olsson (@argoyle)](https://github.com/argoyle "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Joakim Plate (@elupus)](https://github.com/elupus "221 total commits to the Home Assistant orga: +181 commits to core +26 commits to home-assistant.io 9 commits to frontend 3 commits to developers.home-assistant 1 commit to people +1 commit to brands ") - [Joakim Syk (@jockesyk)](https://github.com/jockesyk "1 total commits to the Home Assistant orga: 1 commit to brands ") -- [Joakim Sørensen (@ludeeus)](https://github.com/ludeeus "980 total commits to the Home Assistant orga: +- [Joakim Sørensen (@ludeeus)](https://github.com/ludeeus "2106 total commits to the Home Assistant orga: +459 commits to frontend +411 commits to core 262 commits to hassbian-scripts -197 commits to frontend -122 commits to supervisor -119 commits to core -80 commits to home-assistant.io -28 commits to wheels-custom-integrations -23 commits to actions -22 commits to addons -21 commits to probot-home-assistant -17 commits to developers.home-assistant -11 commits to version -11 commits to wheels -8 commits to builder -8 commits to plugin-observer -7 commits to landingpage +248 commits to supervisor +199 commits to home-assistant.io +108 commits to analytics.home-assistant.io +46 commits to developers.home-assistant +40 commits to addons +39 commits to actions +32 commits to wheels-custom-integrations +28 commits to version +28 commits to probot-home-assistant +21 commits to services.home-assistant.io +16 commits to wheels +14 commits to addons-example +14 commits to builder +11 commits to plugin-observer +11 commits to brands +11 commits to my.home-assistant.io +11 commits to devcontainer +10 commits to alerts.home-assistant.io +9 commits to docker +9 commits to landingpage +9 commits to deployments +8 commits to cli 7 commits to bot -6 commits to docker -6 commits to alerts.home-assistant.io +5 commits to docker-base 5 commits to supervised-installer +5 commits to tempio +5 commits to wheels-scipy +4 commits to addons-development +4 commits to architecture 3 commits to plugin-multicast -2 commits to cli -2 commits to docker-base +2 commits to example-custom-config 2 commits to plugin-cli -2 commits to tempio 2 commits to plugin-dns 2 commits to plugin-audio -1 commit to cla-bot -1 commit to architecture -1 commit to addons-development -1 commit to addons-example +1 commit to operating-system +1 commit to mobile-apps-fcm-push 1 commit to people +1 commit to companion.home-assistant +1 commit to wheels-opencv +1 commit to wheels-tensorflow +") +- [joakim\-tjernlund (@joakim-tjernlund)](https://github.com/joakim-tjernlund "7 total commits to the Home Assistant orga: +7 commits to buildroot ") - [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: +- [Joao Pedro Pinto (@joaopmpinto)](https://github.com/joaopmpinto "9 total commits to the Home Assistant orga: +9 commits to buildroot +") +- [Joaquín (@joa-queen)](https://github.com/joa-queen "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Job van Koeveringe (@jobvk)](https://github.com/jobvk "1 total commits to the Home Assistant orga: +1 commit to brands +") - [jobhh (@jobhh)](https://github.com/jobhh "1 total commits to the Home Assistant orga: 1 commit to android ") +- [Jochen Baltes (@jbaltes)](https://github.com/jbaltes "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Jochen Martin Eppler (@jougs)](https://github.com/jougs "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -8333,6 +11304,9 @@ This page contains a list of people who have contributed in one way or another t - [Joe Lee (@xnoodle)](https://github.com/xnoodle "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Joe Lin (@xlcwu)](https://github.com/xlcwu "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [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 @@ -8363,29 +11337,47 @@ This page contains a list of people who have contributed in one way or another t - [Joel Brun (@jobr97)](https://github.com/jobr97 "1 total commits to the Home Assistant orga: 1 commit to hassbian-scripts ") +- [Joel Carlson (@JoelsonCarl)](https://github.com/JoelsonCarl "9 total commits to the Home Assistant orga: +9 commits to buildroot +") - [Joel Clermont (@joelclermont)](https://github.com/joelclermont "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Joel Fernandes (@jrfernandes)](https://github.com/jrfernandes "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Joel Fischer (@joeljfischer)](https://github.com/joeljfischer "1 total commits to the Home Assistant orga: 1 commit to Iconic ") +- [Joel Midstjärna (@midstar)](https://github.com/midstar "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [Joel Spiers (@joelspiers15)](https://github.com/joelspiers15 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Joel Stanley (@shenki)](https://github.com/shenki "37 total commits to the Home Assistant orga: +37 commits to buildroot +") - [Joeri (@yurnih)](https://github.com/yurnih "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Joeri Colman (@depuits)](https://github.com/depuits "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [joggs (@joggs)](https://github.com/joggs "1 total commits to the Home Assistant orga: 1 commit to brands ") -- [Johan Bloemberg (@aequitas)](https://github.com/aequitas "46 total commits to the Home Assistant orga: +- [Johan Bloemberg (@aequitas)](https://github.com/aequitas "45 total commits to the Home Assistant orga: 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 core ") +- [Johan Derycke (@jhdr-barco)](https://github.com/jhdr-barco "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [Johan Eliasson (@jeliasson)](https://github.com/jeliasson "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -8402,20 +11394,33 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") -- [Johan Isacsson (@CJNE)](https://github.com/CJNE "2 total commits to the Home Assistant orga: -1 commit to wheels-custom-integrations -1 commit to brands +- [Johan Isacsson (@CJNE)](https://github.com/CJNE "8 total commits to the Home Assistant orga: +4 commits to wheels-custom-integrations +4 commits to brands +") +- [Johan Josua Storm (@Melantrix)](https://github.com/Melantrix "2 total commits to the Home Assistant orga: +2 commits to core ") - [Johan Klintberg (@moogblob)](https://github.com/moogblob "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Johan Lindström (@bhaap)](https://github.com/bhaap "1 total commits to the Home Assistant orga: +- [Johan Lindell (@lindell)](https://github.com/lindell "3 total commits to the Home Assistant orga: +2 commits to brands +1 commit to wheels-custom-integrations +") +- [Johan Lindström (@JohanLeirnes)](https://github.com/JohanLeirnes "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Johan Nenzén (@JohNan)](https://github.com/JohNan "6 total commits to the Home Assistant orga: -4 commits to core -1 commit to brands -1 commit to home-assistant.io +- [Johan Nenzén (@JohNan)](https://github.com/JohNan "14 total commits to the Home Assistant orga: +10 commits to core +2 commits to brands +2 commits to home-assistant.io +") +- [Johan Oudinet (@joudinet)](https://github.com/joudinet "148 total commits to the Home Assistant orga: +148 commits to buildroot +") +- [Johan Smits (@johansmitsnl)](https://github.com/johansmitsnl "1 total commits to the Home Assistant orga: +1 commit to core ") - [Johan Ström (@stromnet)](https://github.com/stromnet "13 total commits to the Home Assistant orga: 13 commits to open-zwave @@ -8423,11 +11428,17 @@ 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 Thelin (@e8johan)](https://github.com/e8johan "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Johan van der Kuijl (@johanvanderkuijl)](https://github.com/johanvanderkuijl "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [johanf85 (@johanf85)](https://github.com/johanf85 "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Johan von Forstner (@johan12345)](https://github.com/johan12345 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [johanf85 (@johanf85)](https://github.com/johanf85 "6 total commits to the Home Assistant orga: +6 commits to home-assistant.io ") - [Johann Bauer (@bauerj)](https://github.com/bauerj "1 total commits to the Home Assistant orga: 1 commit to core @@ -8439,6 +11450,10 @@ This page contains a list of people who have contributed in one way or another t 1 commit to developers.home-assistant 1 commit to brands ") +- [Johann Vanackere (@vanackej)](https://github.com/vanackej "6 total commits to the Home Assistant orga: +5 commits to core +1 commit to frontend +") - [Johannes Dahlgren (@jdahlgren)](https://github.com/jdahlgren "1 total commits to the Home Assistant orga: 1 commit to cli ") @@ -8449,12 +11464,27 @@ This page contains a list of people who have contributed in one way or another t - [Johannes K (@roadrash2108)](https://github.com/roadrash2108 "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") +- [Johannes la Poutre (@squio)](https://github.com/squio "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Johannes Schmitz (@johschmitz)](https://github.com/johschmitz "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Johannes Truschnigg (@jtru)](https://github.com/jtru "4 total commits to the Home Assistant orga: 4 commits to operating-system ") +- [John (@j0hnby)](https://github.com/j0hnby "1 total commits to the Home Assistant orga: +1 commit to addons +") - [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 (@CircuitSetup)](https://github.com/CircuitSetup "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [John (@john30)](https://github.com/john30 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [John Allen (@jra3)](https://github.com/jra3 "2 total commits to the Home Assistant orga: 2 commits to core ") @@ -8480,13 +11510,25 @@ This page contains a list of people who have contributed in one way or another t 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 +- [John Faith (@jfaith-impinj)](https://github.com/jfaith-impinj "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [John Hollowell (@jhollowe)](https://github.com/jhollowe "11 total commits to the Home Assistant orga: +7 commits to home-assistant.io 4 commits to core ") +- [John Howard (@howardjohn)](https://github.com/howardjohn "1 total commits to the Home Assistant orga: +1 commit to core +") +- [John James Jacoby (@JJJ)](https://github.com/JJJ "1 total commits to the Home Assistant orga: +1 commit to core +") - [John K\. Luebs (@jkl1337)](https://github.com/jkl1337 "1 total commits to the Home Assistant orga: 1 commit to core ") +- [John Keeping (@johnkeeping)](https://github.com/johnkeeping "26 total commits to the Home Assistant orga: +26 commits to buildroot +") - [John L (@jplafonta)](https://github.com/jplafonta "24 total commits to the Home Assistant orga: 24 commits to open-zwave ") @@ -8501,6 +11543,15 @@ This page contains a list of people who have contributed in one way or another t - [John McLaughlin (@loghound)](https://github.com/loghound "2 total commits to the Home Assistant orga: 2 commits to core ") +- [John O'Nolan (@JohnONolan)](https://github.com/JohnONolan "2 total commits to the Home Assistant orga: +2 commits to newsletter-ghost-theme +") +- [John Parchem (@jparchem)](https://github.com/jparchem "1 total commits to the Home Assistant orga: +1 commit to core +") +- [John Pavlecich (@jmpavlec)](https://github.com/jmpavlec "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [John Raahauge (@AZDane)](https://github.com/AZDane "4 total commits to the Home Assistant orga: 3 commits to core 1 commit to home-assistant.io @@ -8508,6 +11559,9 @@ This page contains a list of people who have contributed in one way or another t - [John Shahawy (@JohnShahawy)](https://github.com/JohnShahawy "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [John Stile (@johstile)](https://github.com/johstile "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [John W\. Long (@jlong)](https://github.com/jlong "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -8520,6 +11574,9 @@ This page contains a list of people who have contributed in one way or another t - [JohnClay (@JohnClay)](https://github.com/JohnClay "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source ") +- [Johnny (@Johnny-Malizia)](https://github.com/Johnny-Malizia "1 total commits to the Home Assistant orga: +1 commit to android +") - [Johnny Bretz (@FindingJohnny)](https://github.com/FindingJohnny "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") @@ -8533,6 +11590,9 @@ This page contains a list of people who have contributed in one way or another t - [Johnny Walker (@jwalker343)](https://github.com/jwalker343 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Johnny Willemsen (@jwillemsen)](https://github.com/jwillemsen "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [JohnnyCAPSLOCK (@JohnnyCAPSLOCK)](https://github.com/JohnnyCAPSLOCK "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -8554,12 +11614,16 @@ This page contains a list of people who have contributed in one way or another t - [Jon Banafato (@jonafato)](https://github.com/jonafato "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Jon Bloom (@jonbloom)](https://github.com/jonbloom "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Jon Calderín Goñi (@jcalderin)](https://github.com/jcalderin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Jon Caruana (@joncar)](https://github.com/joncar "7 total commits to the Home Assistant orga: -4 commits to core -3 commits to home-assistant.io +- [Jon Caruana (@joncar)](https://github.com/joncar "11 total commits to the Home Assistant orga: +6 commits to core +4 commits to home-assistant.io +1 commit to wheels-custom-integrations ") - [Jon Evans (@craftyjon)](https://github.com/craftyjon "1 total commits to the Home Assistant orga: 1 commit to core @@ -8570,10 +11634,10 @@ 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 "22 total commits to the Home Assistant orga: -11 commits to home-assistant.io +- [Jon Gilmore (@JonGilmore)](https://github.com/JonGilmore "25 total commits to the Home Assistant orga: +12 commits to home-assistant.io 7 commits to brands -4 commits to core +6 commits to core ") - [Jon Gilmore (@jon102034050)](https://github.com/jon102034050 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -8581,6 +11645,10 @@ This page contains a list of people who have contributed in one way or another t - [Jon Griffith (@arretx)](https://github.com/arretx "16 total commits to the Home Assistant orga: 16 commits to home-assistant.io ") +- [Jon Kristian (@jonkristian)](https://github.com/jonkristian "5 total commits to the Home Assistant orga: +3 commits to brands +2 commits to wheels-custom-integrations +") - [Jon Maddox (@maddox)](https://github.com/maddox "108 total commits to the Home Assistant orga: 82 commits to core 16 commits to homebridge-homeassistant @@ -8596,16 +11664,16 @@ This page contains a list of people who have contributed in one way or another t - [Jonas (@jonasem)](https://github.com/jonasem "3 total commits to the Home Assistant orga: 3 commits to addons ") -- [Jonas (@K4ds3)](https://github.com/K4ds3 "2 total commits to the Home Assistant orga: -1 commit to core +- [Jonas (@k4ds3)](https://github.com/k4ds3 "3 total commits to the Home Assistant orga: +2 commits to core 1 commit to home-assistant.io ") - [Jonas Bröms (@jonasbroms)](https://github.com/jonasbroms "1 total commits to the Home Assistant orga: 1 commit to frontend ") -- [Jonas Janz (@PixelJonas)](https://github.com/PixelJonas "4 total commits to the Home Assistant orga: -2 commits to core +- [Jonas Janz (@PixelJonas)](https://github.com/PixelJonas "3 total commits to the Home Assistant orga: 1 commit to hassio-build +1 commit to core 1 commit to home-assistant.io ") - [Jonas Kohlbrenner (@cepresso)](https://github.com/cepresso "1 total commits to the Home Assistant orga: @@ -8614,9 +11682,9 @@ This page contains a list of people who have contributed in one way or another t - [Jonas Lundberg (@lundberg)](https://github.com/lundberg "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: +- [Jonas Pedersen (@JonasPed)](https://github.com/JonasPed "11 total commits to the Home Assistant orga: 5 commits to home-assistant.io -4 commits to core +5 commits to core 1 commit to developers.home-assistant ") - [Jonas Skoogh (@hAmpzter)](https://github.com/hAmpzter "7 total commits to the Home Assistant orga: @@ -8627,6 +11695,12 @@ This page contains a list of people who have contributed in one way or another t 4 commits to home-assistant.io 2 commits to core ") +- [JonasClever (@JonasClever)](https://github.com/JonasClever "1 total commits to the Home Assistant orga: +1 commit to core +") +- [jonasgustavsson (@jonasgustavsson)](https://github.com/jonasgustavsson "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Jonatan Castro (@jcastro)](https://github.com/jcastro "7 total commits to the Home Assistant orga: 7 commits to home-assistant.io ") @@ -8645,6 +11719,9 @@ This page contains a list of people who have contributed in one way or another t - [Jonathan Batchelor (@jmb)](https://github.com/jmb "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jonathan Ben\-Avraham (@benavrhm)](https://github.com/benavrhm "15 total commits to the Home Assistant orga: +15 commits to buildroot +") - [Jonathan DEKHTIAR (@DEKHTIARJonathan)](https://github.com/DEKHTIARJonathan "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") @@ -8657,17 +11734,25 @@ This page contains a list of people who have contributed in one way or another t - [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 "25 total commits to the Home Assistant orga: -18 commits to core +- [Jonathan Keljo (@jkeljo)](https://github.com/jkeljo "40 total commits to the Home Assistant orga: +32 commits to core 7 commits to home-assistant.io +1 commit to developers.home-assistant +") +- [Jonathan Keslin (@decompil3d)](https://github.com/decompil3d "10 total commits to the Home Assistant orga: +7 commits to core +3 commits to home-assistant.io +") +- [Jonathan Liu (@net147)](https://github.com/net147 "13 total commits to the Home Assistant orga: +13 commits to buildroot ") - [Jonathan Martens (@jmartens)](https://github.com/jmartens "4 total commits to the Home Assistant orga: 2 commits to developers.home-assistant 2 commits to home-assistant.io ") - [Jonathan McDowell (@u1f35c)](https://github.com/u1f35c "4 total commits to the Home Assistant orga: -2 commits to core 2 commits to home-assistant.io +2 commits to core ") - [Jonathan Tran (@jonathanmtran)](https://github.com/jonathanmtran "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -8691,8 +11776,11 @@ This page contains a list of people who have contributed in one way or another t - [jonudewux (@jonudewux)](https://github.com/jonudewux "3 total commits to the Home Assistant orga: 3 commits to core ") -- [jonwaland (@jonwaland)](https://github.com/jonwaland "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [jonwaland (@jonwaland)](https://github.com/jonwaland "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io +") +- [JoomlaStats (@JoomlaStats)](https://github.com/JoomlaStats "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [joopster (@joopert)](https://github.com/joopert "7 total commits to the Home Assistant orga: 6 commits to core @@ -8704,6 +11792,9 @@ This page contains a list of people who have contributed in one way or another t - [Joost D (@jmjdamen)](https://github.com/jmjdamen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Joost Lekkerkerker (@joostlek)](https://github.com/joostlek "1 total commits to the Home Assistant orga: +1 commit to android +") - [Jordan Hotmann (@jhotmann)](https://github.com/jhotmann "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -8711,6 +11802,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Jordan Kueh (@jkueh)](https://github.com/jkueh "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Jordan Speicher (@uSpike)](https://github.com/uSpike "8 total commits to the Home Assistant orga: 3 commits to core 2 commits to addons @@ -8718,6 +11812,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to developers.home-assistant 1 commit to home-assistant.io ") +- [Jordan Yelloz (@jyelloz)](https://github.com/jyelloz "6 total commits to the Home Assistant orga: +6 commits to buildroot +") - [jordaosoft (@jordaosoft)](https://github.com/jordaosoft "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -8732,15 +11829,15 @@ This page contains a list of people who have contributed in one way or another t 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 +- [Jorge Cruz\-Lambert (@jscruz)](https://github.com/jscruz "3 total commits to the Home Assistant orga: +2 commits 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 +- [Jorge Martínez López (@jorgeml)](https://github.com/jorgeml "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") -- [jorgror (@jorgror)](https://github.com/jorgror "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Jorijn Schrijvershof (@Jorijn)](https://github.com/Jorijn "1 total commits to the Home Assistant orga: +1 commit to newsletter-ghost-theme ") - [Jorim Tielemans (@tjorim)](https://github.com/tjorim "98 total commits to the Home Assistant orga: 81 commits to home-assistant.io @@ -8751,6 +11848,16 @@ This page contains a list of people who have contributed in one way or another t 2 commits to cli 1 commit to hassio-build ") +- [Joris Offouga (@jorisoffouga)](https://github.com/jorisoffouga "25 total commits to the Home Assistant orga: +25 commits to buildroot +") +- [Joris Pelgröm (@jpelgrom)](https://github.com/jpelgrom "79 total commits to the Home Assistant orga: +65 commits to android +14 commits to companion.home-assistant +") +- [Joris Roovers (@jorisroovers)](https://github.com/jorisroovers "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [joris1989 (@joris1989)](https://github.com/joris1989 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -8781,18 +11888,24 @@ This page contains a list of people who have contributed in one way or another t - [Joseph Amalfitano (@CanDoAnything)](https://github.com/CanDoAnything "1 total commits to the Home Assistant orga: 1 commit to addons ") -- [Joseph Carter (@iKarith)](https://github.com/iKarith "9 total commits to the Home Assistant orga: -9 commits to pi-gen +- [Joseph Carter (@knghtbrd)](https://github.com/knghtbrd "3 total commits to the Home Assistant orga: +3 commits to pi-gen ") - [Joseph Hassell (@poster983)](https://github.com/poster983 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Joseph Kogut (@jakogut)](https://github.com/jakogut "58 total commits to the Home Assistant orga: +58 commits to buildroot +") - [Joseph Perera (@jpere039)](https://github.com/jpere039 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Joseph Piron (@wookiesh)](https://github.com/wookiesh "3 total commits to the Home Assistant orga: 3 commits to core ") +- [josephnad (@josephnad)](https://github.com/josephnad "1 total commits to the Home Assistant orga: +1 commit to core +") - [Josh (@karlw00t)](https://github.com/karlw00t "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to home-assistant.io @@ -8813,25 +11926,34 @@ This page contains a list of people who have contributed in one way or another t 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 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 "17 total commits to the Home Assistant orga: -14 commits to frontend -3 commits to home-assistant.io +- [Josh McCarty (@joshmcrty)](https://github.com/joshmcrty "26 total commits to the Home Assistant orga: +21 commits to frontend +4 commits to home-assistant.io +1 commit to home-assistant-js-websocket +") +- [Josh Moore (@tycrek)](https://github.com/tycrek "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Josh Nichols (@technicalpickles)](https://github.com/technicalpickles "28 total commits to the Home Assistant orga: 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 core +- [Josh Ross (@spinydelta)](https://github.com/spinydelta "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Josh Shoemaker (@shoejosh)](https://github.com/shoejosh "6 total commits to the Home Assistant orga: +4 commits to core 2 commits to home-assistant.io ") +- [Josh Soref (@jsoref)](https://github.com/jsoref "47 total commits to the Home Assistant orga: +47 commits to core +") +- [Josh Willox (@jcwillox)](https://github.com/jcwillox "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Josh Wright (@JshWright)](https://github.com/JshWright "30 total commits to the Home Assistant orga: 21 commits to core 8 commits to home-assistant.io @@ -8840,18 +11962,38 @@ This page contains a list of people who have contributed in one way or another t - [Josh Wyse (@jwyse)](https://github.com/jwyse "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Joshi (@Joshi425)](https://github.com/Joshi425 "2 total commits to the Home Assistant orga: +- [Josh\.Wu (@JoshWu)](https://github.com/JoshWu "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Joshi (@Joshi425)](https://github.com/Joshi425 "4 total commits to the Home Assistant orga: +4 commits to core +") +- [joshs85 (@joshs85)](https://github.com/joshs85 "3 total commits to the Home Assistant orga: 2 commits to core +1 commit to home-assistant.io ") - [Joshua (@JoshuaGarrison27)](https://github.com/JoshuaGarrison27 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Joshua Henderson (@joshua-henderson)](https://github.com/joshua-henderson "22 total commits to the Home Assistant orga: +22 commits to buildroot +") +- [Joshua Henderson (@digitalpeer)](https://github.com/digitalpeer "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Joshua Jack (@joshuaja)](https://github.com/joshuaja "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Joshua M\. Boniface (@joshuaboniface)](https://github.com/joshuaboniface "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Joshua Mulliken (@JoshuaMulliken)](https://github.com/JoshuaMulliken "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Joshua Roys (@roysjosh)](https://github.com/roysjosh "3 total commits to the Home Assistant orga: +3 commits to core +") - [joshua stein (@jcs)](https://github.com/jcs "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -8864,30 +12006,44 @@ 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 ") +- [José Luis Salvador Rufo (@jlsalvador)](https://github.com/jlsalvador "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [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 "5 total commits to the Home Assistant orga: -5 commits to core +- [João Gabriel (@joogps)](https://github.com/joogps "8 total commits to the Home Assistant orga: +6 commits to core +2 commits to home-assistant.io +") +- [João Henriques (@jfhenriques)](https://github.com/jfhenriques "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [João Pedro Hickmann (@joaophi)](https://github.com/joaophi "2 total commits to the Home Assistant orga: +2 commits to core ") - [jpcomtois (@jpcomtois)](https://github.com/jpcomtois "1 total commits to the Home Assistant orga: 1 commit to libcoap ") -- [jpcornil\-git (@jpcornil-git)](https://github.com/jpcornil-git "2 total commits to the Home Assistant orga: -1 commit to brands +- [jpcornil\-git (@jpcornil-git)](https://github.com/jpcornil-git "4 total commits to the Home Assistant orga: +2 commits to brands +1 commit to wheels-custom-integrations 1 commit to core ") -- [Jpsy (@Jpsy)](https://github.com/Jpsy "4 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [jpearl (@jpearl)](https://github.com/jpearl "1 total commits to the Home Assistant orga: +1 commit to frontend +") +- [Jpsy (@Jpsy)](https://github.com/Jpsy "5 total commits to the Home Assistant orga: +5 commits to home-assistant.io ") - [jrel17 (@jrel17)](https://github.com/jrel17 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [jrester (@jrester)](https://github.com/jrester "11 total commits to the Home Assistant orga: -11 commits to core +- [jrester (@jrester)](https://github.com/jrester "14 total commits to the Home Assistant orga: +14 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 @@ -8902,12 +12058,15 @@ This page contains a list of people who have contributed in one way or another t - [JSprengard (@JSprengard)](https://github.com/JSprengard "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [jtaseff (@jtaseff)](https://github.com/jtaseff "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [jtaseff (@jtaseff)](https://github.com/jtaseff "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [JTimNolan (@JTimNolan)](https://github.com/JTimNolan "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [jtitley (@jtitley)](https://github.com/jtitley "1 total commits to the Home Assistant orga: +1 commit to core +") - [JTruj1ll0923 (@JTruj1ll0923)](https://github.com/JTruj1ll0923 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -8921,6 +12080,12 @@ This page contains a list of people who have contributed in one way or another t 2 commits to addons 2 commits to home-assistant.io ") +- [Juan Carlos Mendez\-Garcia (@jcmendez)](https://github.com/jcmendez "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Juan Jesús García de Soria (@skandalfo)](https://github.com/skandalfo "1 total commits to the Home Assistant orga: +1 commit to core +") - [Juan Manuel Rey (@bulju)](https://github.com/bulju "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -8930,6 +12095,13 @@ This page contains a list of people who have contributed in one way or another t - [Juan Martín (@nauj27)](https://github.com/nauj27 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Juan María Laó Ramos (@juanlao)](https://github.com/juanlao "1 total commits to the Home Assistant orga: +1 commit to iOS +") +- [Juan Pablo de Castro (@juacas)](https://github.com/juacas "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [JudgeDredd (@JudgeDreddKLC)](https://github.com/JudgeDreddKLC "22 total commits to the Home Assistant orga: 12 commits to home-assistant.io 8 commits to open-zwave @@ -8943,17 +12115,28 @@ This page contains a list of people who have contributed in one way or another t - [juggie (@juggie)](https://github.com/juggie "1 total commits to the Home Assistant orga: 1 commit to core ") -- [jugla (@jugla)](https://github.com/jugla "2 total commits to the Home Assistant orga: -1 commit to brands -1 commit to home-assistant.io +- [jugla (@jugla)](https://github.com/jugla "14 total commits to the Home Assistant orga: +5 commits to core +4 commits to brands +4 commits to home-assistant.io +1 commit to wheels-custom-integrations +") +- [Jugurtha BELKALEM (@jugurthab)](https://github.com/jugurthab "22 total commits to the Home Assistant orga: +22 commits to buildroot ") - [Juha Niemi (@juhaniemi)](https://github.com/juhaniemi "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to home-assistant.io ") +- [Juha Rantanen (@RanzQ)](https://github.com/RanzQ "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [juho20 (@juho20)](https://github.com/juho20 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Jules Maselbas (@jmaselbas)](https://github.com/jmaselbas "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [julesverhaeren (@julesverhaeren)](https://github.com/julesverhaeren "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -8964,6 +12147,9 @@ This page contains a list of people who have contributed in one way or another t - [Julian Engelhardt (@oxygen0211)](https://github.com/oxygen0211 "5 total commits to the Home Assistant orga: 5 commits to core ") +- [Julian Groß (@JulianGro)](https://github.com/JulianGro "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Julian Kaffke (@jaykay)](https://github.com/jaykay "1 total commits to the Home Assistant orga: 1 commit to addons ") @@ -8974,8 +12160,14 @@ This page contains a list of people who have contributed in one way or another t - [Julian Knauer (@jaypikay)](https://github.com/jaypikay "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Julian Löhr (@jloehr)](https://github.com/jloehr "1 total commits to the Home Assistant orga: -1 commit to core +- [Julian Lunz (@jlunz)](https://github.com/jlunz "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Julian Löhr (@jloehr)](https://github.com/jloehr "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Julian Scheel (@julianscheel)](https://github.com/julianscheel "9 total commits to the Home Assistant orga: +9 commits to buildroot ") - [Julian Schiavo (@julianschiavo)](https://github.com/julianschiavo "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source @@ -8983,9 +12175,16 @@ This page contains a list of people who have contributed in one way or another t - [Julian Waller (@Julusian)](https://github.com/Julusian "1 total commits to the Home Assistant orga: 1 commit to home-assistant-js-websocket ") -- [Julien "\_FrnchFrgg\_" Rivaud (@FrnchFrgg)](https://github.com/FrnchFrgg "1 total commits to the Home Assistant orga: +- [Julien (@julesxxl)](https://github.com/julesxxl "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Julien "\_FrnchFrgg\_" Rivaud (@FrnchFrgg)](https://github.com/FrnchFrgg "5 total commits to the Home Assistant orga: +4 commits to core +1 commit to home-assistant.io +") +- [Julien Boibessot (@artemysfr)](https://github.com/artemysfr "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [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 @@ -8996,20 +12195,38 @@ This page contains a list of people who have contributed in one way or another t - [Julien Debaru (@Debaru)](https://github.com/Debaru "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Julien Ehrhart (@Mincka)](https://github.com/Mincka "1 total commits to the Home Assistant orga: -1 commit to companion.home-assistant +- [Julien Ehrhart (@Mincka)](https://github.com/Mincka "4 total commits to the Home Assistant orga: +2 commits to companion.home-assistant +1 commit to android +1 commit to frontend ") -- [Julien Roy (@royto)](https://github.com/royto "3 total commits to the Home Assistant orga: +- [Julien Floret (@jfloret)](https://github.com/jfloret "83 total commits to the Home Assistant orga: +83 commits to buildroot +") +- [Julien Grossholtz (@JGrossholtz)](https://github.com/JGrossholtz "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Julien Olivain (@jolivain)](https://github.com/jolivain "49 total commits to the Home Assistant orga: +49 commits to buildroot +") +- [Julien Roy (@royto)](https://github.com/royto "4 total commits to the Home Assistant orga: 2 commits to core +1 commit to frontend 1 commit to home-assistant.io ") - [Julien Tant (@JulienTant)](https://github.com/JulienTant "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [Julien Viard de Galbert (@JulienVdG)](https://github.com/JulienVdG "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [Julien Wajsberg (@julienw)](https://github.com/julienw "8 total commits to the Home Assistant orga: 8 commits to open-zwave ") +- [Julius Kriukas (@fln)](https://github.com/fln "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [Julius Mittenzwei (@Julius2342)](https://github.com/Julius2342 "45 total commits to the Home Assistant orga: 37 commits to core 8 commits to home-assistant.io @@ -9018,9 +12235,8 @@ This page contains a list of people who have contributed in one way or another t 1 commit to wheels-custom-integrations 1 commit to brands ") -- [jumpkick (@deftdawg)](https://github.com/deftdawg "18 total commits to the Home Assistant orga: -14 commits to core -4 commits to home-assistant.io +- [JumpmanJunior (@JumpmanJunior)](https://github.com/JumpmanJunior "1 total commits to the Home Assistant orga: +1 commit to core ") - [Junian Triajianto (@junian)](https://github.com/junian "1 total commits to the Home Assistant orga: 1 commit to pi-gen @@ -9031,16 +12247,19 @@ This page contains a list of people who have contributed in one way or another t - [jurafxp (@jurafxp)](https://github.com/jurafxp "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Juraj Liso (@LiJu09)](https://github.com/LiJu09 "3 total commits to the Home Assistant orga: -2 commits to addons +- [Juraj Liso (@LiJu09)](https://github.com/LiJu09 "91 total commits to the Home Assistant orga: +82 commits to brands +3 commits to addons +3 commits to analytics.home-assistant.io +2 commits to home-assistant.io 1 commit to developers.home-assistant ") - [Juraj Nyíri (@JurajNyiri)](https://github.com/JurajNyiri "2 total commits to the Home Assistant orga: 1 commit to wheels-custom-integrations 1 commit to brands ") -- [Juri Calleri (@Nihvel)](https://github.com/Nihvel "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Juri Calleri (@Nihvel)](https://github.com/Nihvel "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Jurriaan Pruis (@jurriaan)](https://github.com/jurriaan "1 total commits to the Home Assistant orga: 1 commit to core @@ -9051,14 +12270,14 @@ This page contains a list of people who have contributed in one way or another t - [Justin (@ItsAGeekThing)](https://github.com/ItsAGeekThing "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Justin Bassett (@JBassett)](https://github.com/JBassett "211 total commits to the Home Assistant orga: -178 commits to android +- [Justin Bassett (@JBassett)](https://github.com/JBassett "268 total commits to the Home Assistant orga: +233 commits to android 21 commits to mobile-apps-fcm-push -5 commits to home-assistant.io +6 commits to home-assistant.io +3 commits to companion.home-assistant 3 commits to core -2 commits to companion.home-assistant -1 commit to developers.home-assistant 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 @@ -9067,9 +12286,16 @@ This page contains a list of people who have contributed in one way or another t 8 commits to home-assistant.io 2 commits to core ") -- [Justin Goette (@jcgoette)](https://github.com/jcgoette "4 total commits to the Home Assistant orga: +- [Justin Edelson (@justinedelson)](https://github.com/justinedelson "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Justin Goette (@jcgoette)](https://github.com/jcgoette "11 total commits to the Home Assistant orga: +3 commits to wheels-custom-integrations +3 commits to brands 2 commits to example-custom-config -1 commit to brands +1 commit to devcontainer +1 commit to core 1 commit to home-assistant.io ") - [Justin Good (@justingood)](https://github.com/justingood "1 total commits to the Home Assistant orga: @@ -9087,11 +12313,14 @@ This page contains a list of people who have contributed in one way or another t - [Justin Loutsenhizer (@jloutsenhizer)](https://github.com/jloutsenhizer "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Justin Maggard (@jmaggard10)](https://github.com/jmaggard10 "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Justin Otherguy (@justinotherguy)](https://github.com/justinotherguy "1 total commits to the Home Assistant orga: 1 commit to operating-system ") -- [Justin Paupore (@blueshiftlabs)](https://github.com/blueshiftlabs "3 total commits to the Home Assistant orga: -3 commits to core +- [Justin Paupore (@blueshiftlabs)](https://github.com/blueshiftlabs "5 total commits to the Home Assistant orga: +5 commits to core ") - [Justin Vallelonga (@jlvallelonga)](https://github.com/jlvallelonga "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -9111,9 +12340,6 @@ This page contains a list of people who have contributed in one way or another t - [JustinDwy (@JustinDwy)](https://github.com/JustinDwy "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [justinedelson (@justinedelson)](https://github.com/justinedelson "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io -") - [Justyn Shull (@justyns)](https://github.com/justyns "7 total commits to the Home Assistant orga: 6 commits to core 1 commit to home-assistant.io @@ -9131,6 +12357,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to core ") +- [jwildman16 (@jwildman16)](https://github.com/jwildman16 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [jwin32 (@jwin32)](https://github.com/jwin32 "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") @@ -9151,15 +12380,35 @@ This page contains a list of people who have contributed in one way or another t - [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 "5 total commits to the Home Assistant orga: -3 commits to core +- [Jérémy Rosen (@boucman)](https://github.com/boucman "20 total commits to the Home Assistant orga: +20 commits to buildroot +") +- [Jérôme Oufella (@joufellasfl)](https://github.com/joufellasfl "5 total commits to the Home Assistant orga: +5 commits to buildroot +") +- [Jérôme Pouiller (@jerome-pouiller)](https://github.com/jerome-pouiller "118 total commits to the Home Assistant orga: +118 commits to buildroot +") +- [Jérôme W (@RomRider)](https://github.com/RomRider "8 total commits to the Home Assistant orga: +5 commits to core 1 commit to frontend +1 commit to brands 1 commit to home-assistant.io ") +- [József Kertész (@zentale)](https://github.com/zentale "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Jörg Krause (@joerg-krause)](https://github.com/joerg-krause "522 total commits to the Home Assistant orga: +522 commits to buildroot +") - [Jörg Thalheim (@Mic92)](https://github.com/Mic92 "6 total commits to the Home Assistant orga: 5 commits to core 1 commit to android ") +- [Jørgen Rørvik (@jorgror)](https://github.com/jorgror "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") - [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 @@ -9171,9 +12420,15 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to home-assistant.io ") +- [k3mpaxl (@k3mpaxl)](https://github.com/k3mpaxl "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 ") +- [kaareseras (@kaareseras)](https://github.com/kaareseras "1 total commits to the Home Assistant orga: +1 commit to core +") - [Kacper Krupa (@pagenoare)](https://github.com/pagenoare "2 total commits to the Home Assistant orga: 1 commit to developers.home-assistant 1 commit to core @@ -9185,6 +12440,13 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to core ") +- [Kai Bepperling (@Lyr3x)](https://github.com/Lyr3x "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Kai Hendrik Behrends (@kbehren)](https://github.com/kbehren "1 total commits to the Home Assistant orga: +1 commit to addons +") - [Kai Willadsen (@kaiw)](https://github.com/kaiw "1 total commits to the Home Assistant orga: 1 commit to addons ") @@ -9194,6 +12456,9 @@ This page contains a list of people who have contributed in one way or another t - [kaiomatico (@kaiomatico)](https://github.com/kaiomatico "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Kal42 (@Kal42)](https://github.com/Kal42 "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [Kalen Johnson (@kalenjohnson)](https://github.com/kalenjohnson "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -9203,21 +12468,40 @@ This page contains a list of people who have contributed in one way or another t - [Kallum Burgin (@Kallb123)](https://github.com/Kallb123 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Kamahat (@kamahat)](https://github.com/kamahat "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [KAMAL AWASTHI (@KamalAwasthi)](https://github.com/KamalAwasthi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Kame (@tobiasgraf)](https://github.com/tobiasgraf "14 total commits to the Home Assistant orga: 14 commits to open-zwave ") +- [Kamel Bouhara (@kamel-bouhara)](https://github.com/kamel-bouhara "6 total commits to the Home Assistant orga: +6 commits to buildroot +") +- [Kamil (@luntain)](https://github.com/luntain "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Kamil Doległo (@kamildoleglo)](https://github.com/kamildoleglo "1 total commits to the Home Assistant orga: +1 commit to core +") - [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 "4 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [Kanga\-Who (@Kanga-Who)](https://github.com/Kanga-Who "6 total commits to the Home Assistant orga: +5 commits to home-assistant.io +1 commit to supervised-installer ") - [Kanishka Samarasinghe (@Kanishkaz)](https://github.com/Kanishkaz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Kapernicus (@Kapernicus)](https://github.com/Kapernicus "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Kaptensanders (@Kaptensanders)](https://github.com/Kaptensanders "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Kareem Straker (@KptnKMan)](https://github.com/KptnKMan "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -9232,8 +12516,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to core ") -- [Karim Roukoz (@kkr16)](https://github.com/kkr16 "2 total commits to the Home Assistant orga: +- [Karim Roukoz (@kkr16)](https://github.com/kkr16 "3 total commits to the Home Assistant orga: 2 commits to core +1 commit to home-assistant.io ") - [Karl (@KarlKl)](https://github.com/KarlKl "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -9247,6 +12532,11 @@ This page contains a list of people who have contributed in one way or another t 1 commit to wheels-custom-integrations 1 commit to brands ") +- [karliemeads (@karliemeads)](https://github.com/karliemeads "9 total commits to the Home Assistant orga: +4 commits to core +3 commits to home-assistant.io +2 commits to developers.home-assistant +") - [karlkar (@karlkar)](https://github.com/karlkar "18 total commits to the Home Assistant orga: 13 commits to core 5 commits to home-assistant.io @@ -9254,9 +12544,19 @@ This page contains a list of people who have contributed in one way or another t - [Karol Babioch (@kbabioch)](https://github.com/kbabioch "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Karol Będkowski (@carlo497)](https://github.com/carlo497 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Karol Stosik (@KarolStosik)](https://github.com/KarolStosik "2 total commits to the Home Assistant orga: +1 commit to operating-system +1 commit to home-assistant.io +") - [Karsten Nerdinger (@Piratonym)](https://github.com/Piratonym "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Karthik T (@ktaragorn)](https://github.com/ktaragorn "2 total commits to the Home Assistant orga: +2 commits to core +") - [Karthikeyan Singaravelan (@tirkarthi)](https://github.com/tirkarthi "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -9271,6 +12571,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to core ") +- [kayge (@kayge)](https://github.com/kayge "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [KD4SIR (@scotthibbs)](https://github.com/scotthibbs "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -9278,9 +12581,6 @@ This page contains a list of people who have contributed in one way or another t 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 core 1 commit to home-assistant.io @@ -9298,9 +12598,9 @@ This page contains a list of people who have contributed in one way or another t - [keesak (@cdkonecny)](https://github.com/cdkonecny "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Keilin Bickar (@kbickar)](https://github.com/kbickar "24 total commits to the Home Assistant orga: -17 commits to core -7 commits to home-assistant.io +- [Keilin Bickar (@kbickar)](https://github.com/kbickar "51 total commits to the Home Assistant orga: +39 commits to core +12 commits to home-assistant.io ") - [Keiran S (@keirans)](https://github.com/keirans "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -9316,18 +12616,22 @@ This page contains a list of people who have contributed in one way or another t - [Keith Bentrup (@keithbentrup)](https://github.com/keithbentrup "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Keith Lamprecht (@Nixon506E)](https://github.com/Nixon506E "3 total commits to the Home Assistant orga: +- [Keith Lamprecht (@Nixon506E)](https://github.com/Nixon506E "4 total commits to the Home Assistant orga: 3 commits to core +1 commit to home-assistant.io ") -- [Keith Pine (@kpine)](https://github.com/kpine "13 total commits to the Home Assistant orga: -5 commits to home-assistant.io -4 commits to core -3 commits to open-zwave -1 commit to developers.home-assistant +- [Keith Mok (@ek9852)](https://github.com/ek9852 "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Kelly (@SpudGunMan)](https://github.com/SpudGunMan "14 total commits to the Home Assistant orga: +14 commits to open-zwave ") - [Kelly Burke (@klyburke)](https://github.com/klyburke "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Kelvin Cheung (@kelvincheung)](https://github.com/kelvincheung "20 total commits to the Home Assistant orga: +20 commits to buildroot +") - [Ken Bannister (@kb2ma)](https://github.com/kb2ma "1 total commits to the Home Assistant orga: 1 commit to libcoap ") @@ -9340,24 +12644,24 @@ This page contains a list of people who have contributed in one way or another t - [Ken Guest (@kenguest)](https://github.com/kenguest "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Kendell R (@KTibow)](https://github.com/KTibow "33 total commits to the Home Assistant orga: -14 commits to frontend -11 commits to home-assistant.io +- [Kendell R (@KTibow)](https://github.com/KTibow "39 total commits to the Home Assistant orga: +16 commits to frontend +13 commits to home-assistant.io 4 commits to core -2 commits to wheels-custom-integrations +3 commits to wheels-custom-integrations +2 commits to brands 1 commit to developers.home-assistant -1 commit to brands ") -- [kennedyshead (@kennedyshead)](https://github.com/kennedyshead "62 total commits to the Home Assistant orga: -55 commits to core +- [kennedyshead (@kennedyshead)](https://github.com/kennedyshead "64 total commits to the Home Assistant orga: +57 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 core +- [Kenny Millington (@kmdm)](https://github.com/kmdm "3 total commits to the Home Assistant orga: +3 commits to core ") - [Kent Fenwick (@kent)](https://github.com/kent "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -9372,10 +12676,6 @@ This page contains a list of people who have contributed in one way or another t 7 commits to home-assistant.io 4 commits to frontend ") -- [Kerwin Bryant (@ileler)](https://github.com/ileler "3 total commits to the Home Assistant orga: -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 ") @@ -9383,21 +12683,31 @@ This page contains a list of people who have contributed in one way or another t 1 commit to wheels-custom-integrations 1 commit to brands ") -- [Ketil Moland Olsen (@ketilmo)](https://github.com/ketilmo "15 total commits to the Home Assistant orga: -15 commits to home-assistant.io +- [Ketil Moland Olsen (@ketilmo)](https://github.com/ketilmo "19 total commits to the Home Assistant orga: +19 commits to home-assistant.io ") - [kevank (@kevank)](https://github.com/kevank "1 total commits to the Home Assistant orga: 1 commit to core ") +- [kevdliu (@kevdliu)](https://github.com/kevdliu "4 total commits to the Home Assistant orga: +4 commits to core +") - [Kevin (@Mister-Espria)](https://github.com/Mister-Espria "2 total commits to the Home Assistant orga: 2 commits to core ") - [Kevin (@roofuskit)](https://github.com/roofuskit "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Kevin Anthony (@kdanthony)](https://github.com/kdanthony "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Kevin Cathcart (@KevinCathcart)](https://github.com/KevinCathcart "4 total commits to the Home Assistant orga: 4 commits to core ") +- [Kevin Cernekee (@cernekee)](https://github.com/cernekee "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Kevin Christensen (@nivekmai)](https://github.com/nivekmai "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -9407,18 +12717,11 @@ 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 "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 "63 total commits to the Home Assistant orga: -43 commits to core +- [Kevin Fronczak (@fronzbot)](https://github.com/fronzbot "66 total commits to the Home Assistant orga: +46 commits to core 20 commits to home-assistant.io ") - [Kevin Goff (@kevindgoff)](https://github.com/kevindgoff "1 total commits to the Home Assistant orga: @@ -9431,8 +12734,13 @@ This page contains a list of people who have contributed in one way or another t - [Kevin Haffner (@khaffner)](https://github.com/khaffner "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Kevin Hellemun (@OGKevin)](https://github.com/OGKevin "1 total commits to the Home Assistant orga: -1 commit to core +- [Kevin Hellemun (@OGKevin)](https://github.com/OGKevin "22 total commits to the Home Assistant orga: +18 commits to core +4 commits to home-assistant.io +") +- [Kevin Händel (@kevinhaendel)](https://github.com/kevinhaendel "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands ") - [Kevin Köck (@kevinkk525)](https://github.com/kevinkk525 "2 total commits to the Home Assistant orga: 1 commit to core @@ -9456,6 +12764,13 @@ This page contains a list of people who have contributed in one way or another t 4 commits to core 3 commits to home-assistant.io ") +- [Kevin Stillhammer (@eifinger)](https://github.com/eifinger "60 total commits to the Home Assistant orga: +40 commits to core +10 commits to home-assistant.io +4 commits to wheels-custom-integrations +4 commits to brands +2 commits to developers.home-assistant +") - [Kevin T\. Berstene (@KBerstene)](https://github.com/KBerstene "9 total commits to the Home Assistant orga: 9 commits to android ") @@ -9466,9 +12781,17 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 2 commits to home-assistant.io ") +- [Kevin Van den Abeele (@beele)](https://github.com/beele "1 total commits to the Home Assistant orga: +1 commit to core +") - [Kevin W\. Gisi (@gisikw)](https://github.com/gisikw "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") +- [Kevin Worrel (@dieselrabbit)](https://github.com/dieselrabbit "24 total commits to the Home Assistant orga: +20 commits to core +3 commits to home-assistant.io +1 commit to brands +") - [kevinpanaro (@kevinpanaro)](https://github.com/kevinpanaro "2 total commits to the Home Assistant orga: 2 commits to core ") @@ -9481,6 +12804,9 @@ This page contains a list of people who have contributed in one way or another t - [Keyasha Brothern (@KMBrothern)](https://github.com/KMBrothern "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") +- [kezziny (@kezziny)](https://github.com/kezziny "1 total commits to the Home Assistant orga: +1 commit to core +") - [kfcook (@kfcook)](https://github.com/kfcook "4 total commits to the Home Assistant orga: 3 commits to core 1 commit to home-assistant.io @@ -9495,20 +12821,30 @@ This page contains a list of people who have contributed in one way or another t 4 commits to core 1 commit to home-assistant.io ") -- [Khole (@KJonline)](https://github.com/KJonline "18 total commits to the Home Assistant orga: -12 commits to core -5 commits to home-assistant.io -1 commit to wheels-custom-integrations +- [Khem Raj (@kraj)](https://github.com/kraj "3 total commits to the Home Assistant orga: +3 commits to buildroot ") - [Kiall Mac Innes (@kiall)](https://github.com/kiall "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") -- [Kim Frellsen (@kimfrellsen)](https://github.com/kimfrellsen "3 total commits to the Home Assistant orga: -1 commit to brands -1 commit to core +- [Kieran Bingham (@kbingham)](https://github.com/kbingham "6 total commits to the Home Assistant orga: +6 commits to buildroot +") +- [kifort (@kifort)](https://github.com/kifort "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Kilian Lackhove (@crabmanX)](https://github.com/crabmanX "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Kim De Mey (@kdeme)](https://github.com/kdeme "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Kim Frellsen (@kimfrellsen)](https://github.com/kimfrellsen "7 total commits to the Home Assistant orga: +3 commits to home-assistant.io +3 commits to core +1 commit to brands +") - [kimvonmullen (@kimvonmullen)](https://github.com/kimvonmullen "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -9521,6 +12857,12 @@ 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 ") +- [Kiril Peyanski (@peyanski)](https://github.com/peyanski "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [kirilldem (@kirilldem)](https://github.com/kirilldem "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Kit Klein (@kit-klein)](https://github.com/kit-klein "24 total commits to the Home Assistant orga: 17 commits to core 6 commits to home-assistant.io @@ -9535,19 +12877,24 @@ This page contains a list of people who have contributed in one way or another t - [Kjetil (@kjetilmjos)](https://github.com/kjetilmjos "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [kkasza (@kkasza)](https://github.com/kkasza "33 total commits to the Home Assistant orga: +33 commits to buildroot +") - [Klaas Hoekema (@KlaasH)](https://github.com/KlaasH "12 total commits to the Home Assistant orga: 5 commits to home-assistant.io 5 commits to core 2 commits to frontend ") -- [Klaas Schoute (@klaasnicolaas)](https://github.com/klaasnicolaas "583 total commits to the Home Assistant orga: -568 commits to home-assistant.io -4 commits to addons +- [Klaas Schoute (@klaasnicolaas)](https://github.com/klaasnicolaas "651 total commits to the Home Assistant orga: +601 commits to home-assistant.io +29 commits to core +8 commits to addons +4 commits to brands 3 commits to developers.home-assistant -3 commits to core 2 commits to alerts.home-assistant.io -1 commit to android 1 commit to people +1 commit to android +1 commit to wheels-custom-integrations 1 commit to probot-home-assistant ") - [Klaudiusz Staniek (@kstaniek)](https://github.com/kstaniek "9 total commits to the Home Assistant orga: @@ -9555,33 +12902,55 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to supervisor ") +- [Klaus Aengenvoort (@klacol)](https://github.com/klacol "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io +1 commit to brands +") +- [Klaus Schwarzkopf (@Klaus-schwarzkopf)](https://github.com/Klaus-schwarzkopf "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [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 "5 total commits to the Home Assistant orga: -5 commits to home-assistant.io +- [kloggy (@kloggy)](https://github.com/kloggy "7 total commits to the Home Assistant orga: +7 commits to home-assistant.io ") - [Knapoc (@Knapoc)](https://github.com/Knapoc "5 total commits to the Home Assistant orga: 5 commits to core ") +- [Knodd (@Knodd)](https://github.com/Knodd "2 total commits to the Home Assistant orga: +2 commits to core +") - [knottyau75 (@knottyau75)](https://github.com/knottyau75 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [KNXBroker (@KNXBroker)](https://github.com/KNXBroker "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [KNXBroker (@KNXBroker)](https://github.com/KNXBroker "11 total commits to the Home Assistant orga: +8 commits to home-assistant.io +2 commits to core +1 commit to addons ") - [Kocsen Chung (@kocsenc)](https://github.com/kocsenc "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [kodsnutten (@kodsnutten)](https://github.com/kodsnutten "2 total commits to the Home Assistant orga: +2 commits to core +") - [Koen Beckers (@K-4U)](https://github.com/K-4U "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Koen Ekelschot (@peckham)](https://github.com/peckham "2 total commits to the Home Assistant orga: +- [Koen Ekelschot (@koenekelschot)](https://github.com/koenekelschot "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") -- [Koen Kanters (@Koenkk)](https://github.com/Koenkk "2 total commits to the Home Assistant orga: +- [Koen Hendriks (@koenhendriks)](https://github.com/koenhendriks "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Koen Kanters (@Koenkk)](https://github.com/Koenkk "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io +1 commit to core +") +- [Koen Martens (@sonologic)](https://github.com/sonologic "7 total commits to the Home Assistant orga: +7 commits to buildroot ") - [koen01 (@koen01)](https://github.com/koen01 "1 total commits to the Home Assistant orga: 1 commit to core @@ -9590,17 +12959,23 @@ This page contains a list of people who have contributed in one way or another t 3 commits to wheels-custom-integrations 3 commits to brands ") -- [kongo09 (@kongo09)](https://github.com/kongo09 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [kongo09 (@kongo09)](https://github.com/kongo09 "16 total commits to the Home Assistant orga: +10 commits to brands +4 commits to home-assistant.io +1 commit to cli +1 commit to developers.home-assistant ") -- [Konpon96 (@Konpon96)](https://github.com/Konpon96 "1 total commits to the Home Assistant orga: +- [Konrad Ponichtera (@kponichtera)](https://github.com/kponichtera "1 total commits to the Home Assistant orga: 1 commit to operating-system ") +- [Konrad Schwarz (@konrad-schwarz)](https://github.com/konrad-schwarz "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Konstantin (@konstantib)](https://github.com/konstantib "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Konstantin Antselovich (@kantselovich)](https://github.com/kantselovich "2 total commits to the Home Assistant orga: -1 commit to core +- [Konstantin Antselovich (@kantselovich)](https://github.com/kantselovich "4 total commits to the Home Assistant orga: +3 commits to core 1 commit to home-assistant.io ") - [Konstantin Belyalov (@belyalov)](https://github.com/belyalov "2 total commits to the Home Assistant orga: @@ -9611,45 +12986,73 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") -- [koolsb (@koolsb)](https://github.com/koolsb "8 total commits to the Home Assistant orga: +- [koolsb (@koolsb)](https://github.com/koolsb "9 total commits to the Home Assistant orga: 5 commits to core 3 commits to home-assistant.io +1 commit to brands ") - [koomik (@koomik)](https://github.com/koomik "1 total commits to the Home Assistant orga: 1 commit to core ") -- [kophinos (@sfr0st)](https://github.com/sfr0st "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 core 1 commit to home-assistant.io ") +- [Korn (@k-korn)](https://github.com/k-korn "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Kory Maincent (@kmaincent)](https://github.com/kmaincent "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Kory Prince (@korylprince)](https://github.com/korylprince "4 total commits to the Home Assistant orga: 4 commits to frontend ") - [Kosh42 (@Kosh42)](https://github.com/Kosh42 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [kotborealis (@kotborealis)](https://github.com/kotborealis "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [kounelii (@kounelii)](https://github.com/kounelii "1 total commits to the Home Assistant orga: +1 commit to companion.home-assistant +") - [kozerskil (@kozerskil)](https://github.com/kozerskil "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [kozoke (@kozoke)](https://github.com/kozoke "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [kpine (@kpine)](https://github.com/kpine "23 total commits to the Home Assistant orga: +10 commits to core +8 commits to home-assistant.io +3 commits to open-zwave +1 commit to frontend +1 commit to developers.home-assistant +") - [kplachecki (@kplachecki)](https://github.com/kplachecki "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [krahabb (@krahabb)](https://github.com/krahabb "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Krasimir Chariyski (@Chariyski)](https://github.com/Chariyski "5 total commits to the Home Assistant orga: 4 commits to home-assistant.io 1 commit to core ") -- [Krasimir Zhelev (@zhelev)](https://github.com/zhelev "5 total commits to the Home Assistant orga: +- [Krasimir Zhelev (@zhelev)](https://github.com/zhelev "4 total commits to the Home Assistant orga: 3 commits to core -1 commit to netdisco 1 commit to home-assistant.io ") +- [krazos (@krazos)](https://github.com/krazos "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [kreegahbundolo (@kreegahbundolo)](https://github.com/kreegahbundolo "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [kreene1987 (@kreene1987)](https://github.com/kreene1987 "1 total commits to the Home Assistant orga: +1 commit to core +") - [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 @@ -9658,9 +13061,10 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") -- [Krisjanis Lejejs (@klejejs)](https://github.com/klejejs "6 total commits to the Home Assistant orga: +- [Krisjanis Lejejs (@klejejs)](https://github.com/klejejs "7 total commits to the Home Assistant orga: 5 commits to android 1 commit to frontend +1 commit to brands ") - [Krisjanis Rijnieks (@kr15h)](https://github.com/kr15h "1 total commits to the Home Assistant orga: 1 commit to pi-gen @@ -9668,35 +13072,57 @@ This page contains a list of people who have contributed in one way or another t - [Kristian (@krisnyse)](https://github.com/krisnyse "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Kristian Heljas (@kristianheljas)](https://github.com/kristianheljas "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [KristjanLaane (@KristjanLaane)](https://github.com/KristjanLaane "8 total commits to the Home Assistant orga: 8 commits to open-zwave ") +- [Kristján Bjarni (@kristjanbjarni)](https://github.com/kristjanbjarni "1 total commits to the Home Assistant orga: +1 commit to core +") - [Kristof Krenn (@KrennKristof)](https://github.com/KrennKristof "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Kriszta Matyi (@matyikriszta)](https://github.com/matyikriszta "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [kroimon (@kroimon)](https://github.com/kroimon "2 total commits to the Home Assistant orga: -1 commit to netdisco -1 commit to addons -") - [krygal (@krygal)](https://github.com/krygal "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [Krzysztof Karol (@KrzysztofKarol)](https://github.com/KrzysztofKarol "1 total commits to the Home Assistant orga: +1 commit to operating-system +") +- [Krzysztof Konopko (@kkonopko)](https://github.com/kkonopko "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Krzysztof Kotlenga (@pocek)](https://github.com/pocek "6 total commits to the Home Assistant orga: +6 commits to open-zwave +") - [ktnrg45 (@ktnrg45)](https://github.com/ktnrg45 "38 total commits to the Home Assistant orga: 29 commits to core 7 commits to home-assistant.io -1 commit to developers.home-assistant 1 commit to frontend +1 commit to developers.home-assistant ") - [ktownsend\-personal (@ktownsend-personal)](https://github.com/ktownsend-personal "1 total commits to the Home Assistant orga: 1 commit to core ") -- [kuchel77 (@kuchel77)](https://github.com/kuchel77 "4 total commits to the Home Assistant orga: +- [Kuba Orasiński (@korasinski)](https://github.com/korasinski "3 total commits to the Home Assistant orga: +2 commits to brands +1 commit to wheels-custom-integrations +") +- [Kuba Wolanin (@kubawolanin)](https://github.com/kubawolanin "12 total commits to the Home Assistant orga: +5 commits to frontend +3 commits to brands +2 commits to wheels-custom-integrations +2 commits to core +") +- [kuchel77 (@kuchel77)](https://github.com/kuchel77 "5 total commits to the Home Assistant orga: +3 commits to home-assistant.io 2 commits to core -2 commits to home-assistant.io ") - [Kumar Gala (@galak)](https://github.com/galak "1 total commits to the Home Assistant orga: 1 commit to core @@ -9713,27 +13139,49 @@ This page contains a list of people who have contributed in one way or another t - [Kurt McKee (@kurtmckee)](https://github.com/kurtmckee "260 total commits to the Home Assistant orga: 260 commits to feedparser ") +- [Kurt Van Dijck (@kurt-vd)](https://github.com/kurt-vd "9 total commits to the Home Assistant orga: +9 commits to buildroot +") +- [Kuzj (@Kuzj)](https://github.com/Kuzj "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [kvanhoorn (@kvanhoorn)](https://github.com/kvanhoorn "1 total commits to the Home Assistant orga: 1 commit to core ") +- [kyak (@kyak)](https://github.com/kyak "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [kyangk (@kyangk)](https://github.com/kyangk "1 total commits to the Home Assistant orga: +1 commit to operating-system +") - [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 "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") +- [Kyle Hasegawa (@kylehase)](https://github.com/kylehase "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [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 Hildebrandt (@kylehild)](https://github.com/kylehild "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Kyle Hoermann (@kdhoermann)](https://github.com/kdhoermann "1 total commits to the Home Assistant orga: +1 commit to operating-system +") - [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 "8 total commits to the Home Assistant orga: -4 commits to core +- [Kyle Niewiada (@aav7fl)](https://github.com/aav7fl "12 total commits to the Home Assistant orga: +5 commits to core +4 commits to frontend 3 commits to home-assistant.io -1 commit to frontend ") - [Kyle Pinette (@sowelie)](https://github.com/sowelie "1 total commits to the Home Assistant orga: 1 commit to core @@ -9747,14 +13195,38 @@ 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.io +1 commit to core +") +- [l3nticular (@l3nticular)](https://github.com/l3nticular "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [L\-I\-Am (@L-I-Am)](https://github.com/L-I-Am "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [LAB02 Administrator (@LAB02-Admin)](https://github.com/LAB02-Admin "3 total commits to the Home Assistant orga: +2 commits to brands +1 commit 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 core ") -- [lambtho (@lambtho12)](https://github.com/lambtho12 "1 total commits to the Home Assistant orga: +- [Lahoudere Fabien (@aragua)](https://github.com/aragua "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Laine Walker\-Avina (@lwalkera)](https://github.com/lwalkera "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [lambtho (@lambtho12)](https://github.com/lambtho12 "4 total commits to the Home Assistant orga: 1 commit to addons +1 commit to brands +1 commit to core +1 commit to home-assistant.io ") - [lamiskin (@lamiskin)](https://github.com/lamiskin "8 total commits to the Home Assistant orga: 5 commits to home-assistant.io @@ -9770,10 +13242,6 @@ This page contains a list of people who have contributed in one way or another t - [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 ") @@ -9791,11 +13259,21 @@ This page contains a list of people who have contributed in one way or another t - [Laqoore (@Laqoore)](https://github.com/Laqoore "1 total commits to the Home Assistant orga: 1 commit to core ") +- [larena1 (@larena1)](https://github.com/larena1 "1 total commits to the Home Assistant orga: +1 commit to frontend +") +- [Larry (@larry-wong)](https://github.com/larry-wong "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Larry Gregory (@legrego)](https://github.com/legrego "2 total commits to the Home Assistant orga: 1 commit to wheels-custom-integrations 1 commit to brands ") -- [Lars (@flabbamann)](https://github.com/flabbamann "1 total commits to the Home Assistant orga: +- [Lars (@flabbamann)](https://github.com/flabbamann "9 total commits to the Home Assistant orga: +5 commits to core +4 commits to home-assistant.io +") +- [Lars (@LarsMichelsen)](https://github.com/LarsMichelsen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Lars Alexander Blumberg (@larsblumberg)](https://github.com/larsblumberg "1 total commits to the Home Assistant orga: @@ -9821,31 +13299,55 @@ This page contains a list of people who have contributed in one way or another t - [Larsen Vallecillo (@larsenv)](https://github.com/larsenv "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") -- [Lasath Fernando (@shocklateboy92)](https://github.com/shocklateboy92 "1 total commits to the Home Assistant orga: -1 commit to core +- [Lasath Fernando (@shocklateboy92)](https://github.com/shocklateboy92 "2 total commits to the Home Assistant orga: +2 commits to core ") - [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 +- [Lasse Rosenow (@LasseRosenow)](https://github.com/LasseRosenow "11 total commits to the Home Assistant orga: +8 commits to android +2 commits to frontend +1 commit to companion.home-assistant +") +- [Laszlo Jakab (@laszlojakab)](https://github.com/laszlojakab "7 total commits to the Home Assistant orga: +4 commits to wheels-custom-integrations 2 commits to brands 1 commit to core ") -- [Laszlo Magyar (@lmagyar)](https://github.com/lmagyar "3 total commits to the Home Assistant orga: -1 commit to addons +- [Laszlo Magyar (@lmagyar)](https://github.com/lmagyar "8 total commits to the Home Assistant orga: +4 commits to addons 1 commit to builder +1 commit to frontend 1 commit to developers.home-assistant +1 commit to core +") +- [Lau1406 (@Lau1406)](https://github.com/Lau1406 "1 total commits to the Home Assistant orga: +1 commit to core ") - [LaurensBot (@LaurensBot)](https://github.com/LaurensBot "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Laurent Bouriez (@lbouriez)](https://github.com/lbouriez "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to addons +") +- [Laurent Charpentier (@laurentchar)](https://github.com/laurentchar "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [laurent laffont (@lolgzs)](https://github.com/lolgzs "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [LaurentTrk (@LaurentTrk)](https://github.com/LaurentTrk "3 total commits to the Home Assistant orga: 3 commits to pyharmony ") - [LavaGlass (@LavaGlass)](https://github.com/LavaGlass "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Lawrence (@mindmelting)](https://github.com/mindmelting "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to wheels-custom-integrations +") - [lawtancool (@lawtancool)](https://github.com/lawtancool "6 total commits to the Home Assistant orga: 4 commits to core 1 commit to brands @@ -9854,9 +13356,8 @@ This page contains a list of people who have contributed in one way or another t - [Lazar Obradovic (@lobradov)](https://github.com/lobradov "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [lbouriez (@lbouriez)](https://github.com/lbouriez "2 total commits to the Home Assistant orga: -1 commit to addons -1 commit to home-assistant.io +- [lbdpy (@lbdpy)](https://github.com/lbdpy "1 total commits to the Home Assistant orga: +1 commit to brands ") - [lcersly (@lcersly)](https://github.com/lcersly "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -9864,12 +13365,21 @@ 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 addons ") +- [ldvc86 (@ldvc86)](https://github.com/ldvc86 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [LE LAY Olivier (@liollury)](https://github.com/liollury "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Leach\, Daniel J (@djleach-belcan)](https://github.com/djleach-belcan "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [leaen (@mossbanay)](https://github.com/mossbanay "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Leah Oswald (@leahoswald)](https://github.com/leahoswald "2 total commits to the Home Assistant orga: +2 commits to core +") - [Leandro (@leofuscaldi)](https://github.com/leofuscaldi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -9880,12 +13390,18 @@ This page contains a list of people who have contributed in one way or another t - [Lechu (@ShadeByLesio)](https://github.com/ShadeByLesio "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Lecopzer Chen (@lecopzer)](https://github.com/lecopzer "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [led\-spb (@led-spb)](https://github.com/led-spb "1 total commits to the Home Assistant orga: 1 commit to core ") - [Ledernacken6 (@Ledernacken6)](https://github.com/Ledernacken6 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Lee Jones (@lag-linaro)](https://github.com/lag-linaro "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [lee\-js (@lee-js)](https://github.com/lee-js "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") @@ -9895,6 +13411,10 @@ This page contains a list of people who have contributed in one way or another t - [Leif (@leifclaesson)](https://github.com/leifclaesson "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [LeighCurran (@LeighCurran)](https://github.com/LeighCurran "4 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +2 commits to brands +") - [lekobob (@lekobob)](https://github.com/lekobob "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -9925,9 +13445,15 @@ This page contains a list of people who have contributed in one way or another t 1 commit to wheels-custom-integrations 1 commit to brands ") +- [Leon Anavi (@leon-anavi)](https://github.com/leon-anavi "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [Leon Knauer (@reuank)](https://github.com/reuank "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Leon Richard (@leonDataNut)](https://github.com/leonDataNut "1 total commits to the Home Assistant orga: +1 commit to addons +") - [Leon99 (@Leon99)](https://github.com/Leon99 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -9938,13 +13464,13 @@ This page contains a list of people who have contributed in one way or another t 3 commits to core 1 commit to home-assistant.io ") -- [Leonardo Figueiro (@leofig-rj)](https://github.com/leofig-rj "8 total commits to the Home Assistant orga: -5 commits to core -2 commits to home-assistant.io +- [Leonardo Figueiro (@leofig-rj)](https://github.com/leofig-rj "10 total commits to the Home Assistant orga: +6 commits to core +3 commits to home-assistant.io 1 commit to brands ") -- [Leonardo Merza (@ljmerza)](https://github.com/ljmerza "14 total commits to the Home Assistant orga: -7 commits to core +- [Leonardo Merza (@ljmerza)](https://github.com/ljmerza "15 total commits to the Home Assistant orga: +8 commits to core 4 commits to home-assistant.io 2 commits to developers.home-assistant 1 commit to frontend @@ -9956,20 +13482,43 @@ This page contains a list of people who have contributed in one way or another t 1 commit to brands 1 commit to home-assistant.io ") +- [Leonid Yuriev (@erthink)](https://github.com/erthink "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Leonidas Loucas (@merc1031)](https://github.com/merc1031 "2 total commits to the Home Assistant orga: +1 commit to home-assistant.io +1 commit to core +") +- [leopal77 (@leopal77)](https://github.com/leopal77 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Leothlon (@leothlon)](https://github.com/leothlon "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to home-assistant.io ") +- [leoujz (@leoujz)](https://github.com/leoujz "2 total commits to the Home Assistant orga: +2 commits to developers.home-assistant +") +- [leranp (@leranp)](https://github.com/leranp "1 total commits to the Home Assistant orga: +1 commit to core +") - [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 ") -- [leroyboerefijn (@leroyboerefijn)](https://github.com/leroyboerefijn "1 total commits to the Home Assistant orga: -1 commit to android +- [leroyboerefijn (@leroyboerefijn)](https://github.com/leroyboerefijn "16 total commits to the Home Assistant orga: +13 commits to android +3 commits to companion.home-assistant ") - [leschekfm (@leschekfm)](https://github.com/leschekfm "3 total commits to the Home Assistant orga: 3 commits to hassbian-scripts ") +- [Lester Lo (@lesterlo)](https://github.com/lesterlo "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Leszek Swirski (@LeszekSwirski)](https://github.com/LeszekSwirski "1 total commits to the Home Assistant orga: +1 commit to core +") - [Lev Aronsky (@aronsky)](https://github.com/aronsky "17 total commits to the Home Assistant orga: 14 commits to core 3 commits to home-assistant.io @@ -9977,10 +13526,10 @@ This page contains a list of people who have contributed in one way or another t - [Levi Govaerts (@legovaer)](https://github.com/legovaer "1 total commits to the Home Assistant orga: 1 commit to core ") -- [lewei50 (@lewei50)](https://github.com/lewei50 "6 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [lewei50 (@lewei50)](https://github.com/lewei50 "9 total commits to the Home Assistant orga: +5 commits to home-assistant.io +2 commits to brands 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 core @@ -9988,15 +13537,29 @@ This page contains a list of people who have contributed in one way or another t 1 commit to people 1 commit to frontend ") +- [Lewis Roberts (@lwsrbrts)](https://github.com/lwsrbrts "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Lewys Martin (@CountParadox)](https://github.com/CountParadox "7 total commits to the Home Assistant orga: 7 commits to home-assistant.io ") - [leytpapas (@leytpapas)](https://github.com/leytpapas "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [lfelten (@lfelten)](https://github.com/lfelten "23 total commits to the Home Assistant orga: +23 commits to buildroot +") - [lhanneus (@lhanneus)](https://github.com/lhanneus "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [LHarta (@LHarta)](https://github.com/LHarta "10 total commits to the Home Assistant orga: +10 commits to buildroot +") +- [Li\-Huai \(Allan\) Lin (@qqaatw)](https://github.com/qqaatw "3 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +1 commit to core +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 ") @@ -10006,6 +13569,9 @@ This page contains a list of people who have contributed in one way or another t - [Liang Sun (@1e0ng)](https://github.com/1e0ng "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [liangleslie (@liangleslie)](https://github.com/liangleslie "1 total commits to the Home Assistant orga: +1 commit to brands +") - [libots (@libots)](https://github.com/libots "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to core @@ -10014,6 +13580,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 2 commits to home-assistant.io ") +- [Lieven Hollevoet (@hollie)](https://github.com/hollie "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [lifeisafractal (@lifeisafractal)](https://github.com/lifeisafractal "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -10026,12 +13595,15 @@ This page contains a list of people who have contributed in one way or another t - [Lily Williams (@runt2pb)](https://github.com/runt2pb "1 total commits to the Home Assistant orga: 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 core +- [limpens (@limpens)](https://github.com/limpens "6 total commits to the Home Assistant orga: +6 commits to buildroot +") +- [Lincoln Kirchoff (@Kirchoff)](https://github.com/Kirchoff "3 total commits to the Home Assistant orga: +2 commits to core 1 commit to home-assistant.io ") -- [Lindsay Ward (@lindsaymarkward)](https://github.com/lindsaymarkward "35 total commits to the Home Assistant orga: -22 commits to home-assistant.io +- [Lindsay Ward (@lindsaymarkward)](https://github.com/lindsaymarkward "37 total commits to the Home Assistant orga: +24 commits to home-assistant.io 10 commits to core 3 commits to developers.home-assistant ") @@ -10041,37 +13613,77 @@ This page contains a list of people who have contributed in one way or another t - [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 +- [lintaba (@lintaba)](https://github.com/lintaba "2 total commits to the Home Assistant orga: +2 commits to frontend +") +- [Linus H (@linus-ha)](https://github.com/linus-ha "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [linvinus (@linvinus)](https://github.com/linvinus "1 total commits to the Home Assistant orga: 1 commit to frontend ") +- [Lionel Flandrin (@simias)](https://github.com/simias "15 total commits to the Home Assistant orga: +15 commits to buildroot +") +- [Lionel Landwerlin (@djdeath)](https://github.com/djdeath "83 total commits to the Home Assistant orga: +83 commits to buildroot +") +- [Lionel Orry (@chickenkiller)](https://github.com/chickenkiller "9 total commits to the Home Assistant orga: +9 commits to buildroot +") - [Liran BG (@liranbg)](https://github.com/liranbg "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Liran Tal (@lirantal)](https://github.com/lirantal "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 "7 total commits to the Home Assistant orga: 7 commits to home-assistant.io ") -- [LJU (@LEJOUI)](https://github.com/LEJOUI "1 total commits to the Home Assistant orga: +- [LJU (@LEJOUI)](https://github.com/LEJOUI "7 total commits to the Home Assistant orga: +5 commits to core +1 commit to frontend +1 commit to home-assistant.io +") +- [Ljzd\-PRO (@Ljzd-PRO)](https://github.com/Ljzd-PRO "1 total commits to the Home Assistant orga: +1 commit to core +") +- [lk3de (@lk3de)](https://github.com/lk3de "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [llevering (@llevering)](https://github.com/llevering "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Loek Sangers (@LoekSangers)](https://github.com/LoekSangers "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") - [Logan Marchione (@loganmarchione)](https://github.com/loganmarchione "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [logan893 (@logan893)](https://github.com/logan893 "1 total commits to the Home Assistant orga: +1 commit to core +") +- [logicallyanime (@logicallyanime)](https://github.com/logicallyanime "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [lolouk44 (@lolouk44)](https://github.com/lolouk44 "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to wheels-custom-integrations 1 commit to brands ") +- [LonePurpleWolf (@LonePurpleWolf)](https://github.com/LonePurpleWolf "3 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core +1 commit to home-assistant.io +") - [longman391 (@longman391)](https://github.com/longman391 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Lopton (@Lopton)](https://github.com/Lopton "1 total commits to the Home Assistant orga: +- [Lopton (@Matt-PMCT)](https://github.com/Matt-PMCT "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [lordneon (@lordneon)](https://github.com/lordneon "1 total commits to the Home Assistant orga: @@ -10084,12 +13696,25 @@ This page contains a list of people who have contributed in one way or another t - [Lorenzo (@lorenzoraimondi)](https://github.com/lorenzoraimondi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Lorenzo Brescanzin (@br3sc4)](https://github.com/br3sc4 "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Lorenzo Catucci (@lmctv)](https://github.com/lmctv "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [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 ") +- [LorenzoVasi (@LorenzoVasi)](https://github.com/LorenzoVasi "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Louis Aussedat (@aussedatlo)](https://github.com/aussedatlo "16 total commits to the Home Assistant orga: +16 commits to buildroot +") - [Louis Laureys (@louis-lau)](https://github.com/louis-lau "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -10109,12 +13734,18 @@ This page contains a list of people who have contributed in one way or another t - [Louis\-Etienne (@ledor473)](https://github.com/ledor473 "1 total commits to the Home Assistant orga: 1 commit to core ") +- [LouisP (@lp35)](https://github.com/lp35 "13 total commits to the Home Assistant orga: +13 commits to buildroot +") - [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 core ") +- [ltx4jay (@ltx4jay)](https://github.com/ltx4jay "1 total commits to the Home Assistant orga: +1 commit to companion.home-assistant +") - [Luar Roji (@cyberplant)](https://github.com/cyberplant "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io 2 commits to core @@ -10122,9 +13753,11 @@ This page contains a list of people who have contributed in one way or another t - [LuBeDa (@lubeda)](https://github.com/lubeda "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Luc Touraille (@stilllman)](https://github.com/stilllman "5 total commits to the Home Assistant orga: +- [Lubomir Rintel (@lkundrak)](https://github.com/lkundrak "36 total commits to the Home Assistant orga: +36 commits to buildroot +") +- [Luc Touraille (@stilllman)](https://github.com/stilllman "4 total commits to the Home Assistant orga: 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: @@ -10135,6 +13768,18 @@ This page contains a list of people who have contributed in one way or another t 6 commits to core 1 commit to frontend ") +- [Luca Cavalli (@lcavalli)](https://github.com/lcavalli "1 total commits to the Home Assistant orga: +1 commit to frontend +") +- [Luca Ceresoli (@lucaceresoli)](https://github.com/lucaceresoli "261 total commits to the Home Assistant orga: +261 commits to buildroot +") +- [Luca De Rosa (@lrzdeveloper)](https://github.com/lrzdeveloper "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Luca Mannella (@Sarcares)](https://github.com/Sarcares "2 total commits to the Home Assistant orga: +2 commits to developers.home-assistant +") - [Luca Simonetti @Nohup (@luca-simonetti)](https://github.com/luca-simonetti "1 total commits to the Home Assistant orga: 1 commit to supervisor ") @@ -10148,6 +13793,9 @@ This page contains a list of people who have contributed in one way or another t - [lucagiove (@lucagiove)](https://github.com/lucagiove "2 total commits to the Home Assistant orga: 2 commits to operating-system ") +- [Lucas De Marchi (@lucasdemarchi)](https://github.com/lucasdemarchi "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Lucas Nussbaum (@lnussbaum)](https://github.com/lnussbaum "26 total commits to the Home Assistant orga: 26 commits to open-zwave ") @@ -10162,13 +13810,24 @@ This page contains a list of people who have contributed in one way or another t 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 core +- [Ludovic Desroches (@ldesroches)](https://github.com/ldesroches "51 total commits to the Home Assistant orga: +51 commits to buildroot +") +- [Ludovico de Nittis (@RyuzakiKK)](https://github.com/RyuzakiKK "19 total commits to the Home Assistant orga: +11 commits to core +7 commits to home-assistant.io +1 commit to brands ") - [Ludwig Hubert (@lud-hu)](https://github.com/lud-hu "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ludy (@Ludy87)](https://github.com/Ludy87 "4 total commits to the Home Assistant orga: +3 commits to brands +1 commit to wheels-custom-integrations +") +- [Luis Araneda (@luaraneda)](https://github.com/luaraneda "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [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 core @@ -10191,14 +13850,27 @@ This page contains a list of people who have contributed in one way or another t 6 commits to home-assistant.io 1 commit to frontend ") -- [Lukas Hetzenecker (@lukas-hetzenecker)](https://github.com/lukas-hetzenecker "17 total commits to the Home Assistant orga: -11 commits to core -5 commits to home-assistant.io +- [Lukas Hetzenecker (@lukas-hetzenecker)](https://github.com/lukas-hetzenecker "19 total commits to the Home Assistant orga: +12 commits to core +6 commits to home-assistant.io 1 commit to brands ") +- [Lukas Kempf (@lkempf)](https://github.com/lkempf "2 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +1 commit to core +") - [Lukas Porubcan (@Luc3as)](https://github.com/Luc3as "1 total commits to the Home Assistant orga: 1 commit to frontend ") +- [Lukasz Pulka (@luke4oxnet)](https://github.com/luke4oxnet "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Lukasz Tekieli (@ltekieli)](https://github.com/ltekieli "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Luke (@sunshinejr)](https://github.com/sunshinejr "3 total commits to the Home Assistant orga: +3 commits to 1password-teams-open-source +") - [Luke Armstrong (@lukearmstrong)](https://github.com/lukearmstrong "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") @@ -10213,6 +13885,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 2 commits to home-assistant.io ") +- [Luke Waite (@lukewaite)](https://github.com/lukewaite "1 total commits to the Home Assistant orga: +1 commit to core +") - [lukie80 (@lukie80)](https://github.com/lukie80 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10225,6 +13900,9 @@ This page contains a list of people who have contributed in one way or another t - [lundan (@lundan)](https://github.com/lundan "1 total commits to the Home Assistant orga: 1 commit to core ") +- [lunmay (@lunmay)](https://github.com/lunmay "2 total commits to the Home Assistant orga: +2 commits to core +") - [LuPa (@lupa18)](https://github.com/lupa18 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10232,6 +13910,10 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io 2 commits to core ") +- [Luuk (@luukd)](https://github.com/luukd "6 total commits to the Home Assistant orga: +4 commits to home-assistant.io +2 commits to core +") - [Luuk (@Maharball1)](https://github.com/Maharball1 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -10253,13 +13935,43 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io 1 commit to core ") +- [Lyle Franklin (@ljfranklin)](https://github.com/ljfranklin "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [lymanepp (@lymanepp)](https://github.com/lymanepp "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Lén (@renaiku)](https://github.com/renaiku "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Lévai Tamás (@levaitamas)](https://github.com/levaitamas "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [m1ckyb (@m1ckyb)](https://github.com/m1ckyb "1 total commits to the Home Assistant orga: +1 commit to brands +") - [m4dmin (@m4dmin)](https://github.com/m4dmin "1 total commits to the Home Assistant orga: 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 (@Tediore)](https://github.com/Tediore "25 total commits to the Home Assistant orga: +- [M4v3r1cK87 (@M4v3r1cK87)](https://github.com/M4v3r1cK87 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [M\-J\-W\-H (@M-J-W-H)](https://github.com/M-J-W-H "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [M\. Frister (@mfrister)](https://github.com/mfrister "2 total commits to the Home Assistant orga: +2 commits to core +") +- [M\. R\. (@m-roberts)](https://github.com/m-roberts "1 total commits to the Home Assistant orga: +1 commit to pi-gen +") +- [M\. Schrauwen (@yoflippo)](https://github.com/yoflippo "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") +- [M\.J\. Wydra \(Jay\) (@Tediore)](https://github.com/Tediore "25 total commits to the Home Assistant orga: 21 commits to home-assistant.io 3 commits to frontend 1 commit to brands @@ -10276,16 +13988,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 ") +- [Maarten ter Huurne (@mthuurne)](https://github.com/mthuurne "15 total commits to the Home Assistant orga: +15 commits to buildroot +") - [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 "177 total commits to the Home Assistant orga: -139 commits to core -17 commits to home-assistant.io +- [Maciej Bieniek (@bieniu)](https://github.com/bieniu "424 total commits to the Home Assistant orga: +353 commits to core +47 commits to home-assistant.io 12 commits to frontend -7 commits to brands -2 commits to wheels-custom-integrations +9 commits to brands +3 commits to wheels-custom-integrations ") - [Maciej Sokołowski (@matemaciek)](https://github.com/matemaciek "5 total commits to the Home Assistant orga: 4 commits to core @@ -10301,6 +14016,12 @@ This page contains a list of people who have contributed in one way or another t - [MacKaarstad (@MacKaarstad)](https://github.com/MacKaarstad "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") +- [macooper (@macooper)](https://github.com/macooper "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [macxq (@macxq)](https://github.com/macxq "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Madd\.is (@EyMaddis)](https://github.com/EyMaddis "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10332,18 +14053,17 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to home-assistant.io ") +- [Magnus Eldén (@elden1337)](https://github.com/elden1337 "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Magnus Hedemark (@magnus919)](https://github.com/magnus919 "1 total commits to the Home Assistant orga: 1 commit to iOS ") -- [Magnus Ihse Bursie (@magicus)](https://github.com/magicus "17 total commits to the Home Assistant orga: +- [Magnus Ihse Bursie (@magicus)](https://github.com/magicus "13 total commits to the Home Assistant orga: 9 commits to core -4 commits to netdisco 3 commits to home-assistant.io 1 commit to people ") -- [Magnus Lyckå (@magnus-lycka)](https://github.com/magnus-lycka "1 total commits to the Home Assistant orga: -1 commit to netdisco -") - [Magnus Månsson (@magma1447)](https://github.com/magma1447 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10367,12 +14087,15 @@ This page contains a list of people who have contributed in one way or another t - [maheus (@maheus)](https://github.com/maheus "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Mahyar Koshkouei (@deltabeard)](https://github.com/deltabeard "8 total commits to the Home Assistant orga: +8 commits to buildroot +") - [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 "45 total commits to the Home Assistant orga: -35 commits to core -10 commits to home-assistant.io +- [Maikel Punie (@Cereal2nd)](https://github.com/Cereal2nd "74 total commits to the Home Assistant orga: +63 commits to core +11 commits to home-assistant.io ") - [Maikel Wever (@maikelwever)](https://github.com/maikelwever "2 total commits to the Home Assistant orga: 2 commits to core @@ -10383,8 +14106,8 @@ This page contains a list of people who have contributed in one way or another t - [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 "13 total commits to the Home Assistant orga: -7 commits to core +- [majuss (@majuss)](https://github.com/majuss "15 total commits to the Home Assistant orga: +9 commits to core 5 commits to home-assistant.io 1 commit to brands ") @@ -10405,22 +14128,26 @@ This page contains a list of people who have contributed in one way or another t 3 commits to core 2 commits to home-assistant.io ") -- [Malachi Soord (@inverse)](https://github.com/inverse "7 total commits to the Home Assistant orga: +- [Malachi Soord (@inverse)](https://github.com/inverse "9 total commits to the Home Assistant orga: +4 commits to core 3 commits to home-assistant.io -3 commits to core +1 commit to operating-system 1 commit to developers.home-assistant ") - [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 "111 total commits to the Home Assistant orga: -71 commits to core +- [Malte Franken (@exxamalte)](https://github.com/exxamalte "124 total commits to the Home Assistant orga: +84 commits to core 27 commits to home-assistant.io 6 commits to frontend 5 commits to brands 1 commit to wheels-custom-integrations 1 commit to developers.home-assistant ") +- [Mamy Razafintsialonina (@nyandrianinamamy)](https://github.com/nyandrianinamamy "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [mandelflanders (@mandelflanders)](https://github.com/mandelflanders "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10454,6 +14181,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to addons ") +- [Manuel Vögele (@manuelVo)](https://github.com/manuelVo "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [Manuel Zubieta (@iautom8things)](https://github.com/iautom8things "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -10474,59 +14204,68 @@ This page contains a list of people who have contributed in one way or another t 1 commit to developers.home-assistant 1 commit to core ") -- [MarBra (@MarBra)](https://github.com/MarBra "1 total commits to the Home Assistant orga: -1 commit to core +- [MarBra (@MarBra)](https://github.com/MarBra "4 total commits to the Home Assistant orga: +3 commits to core +1 commit to home-assistant.io ") - [Marc (@B5r1oJ0A9G)](https://github.com/B5r1oJ0A9G "3 total commits to the Home Assistant orga: 2 commits to wheels-custom-integrations 1 commit to brands ") +- [Marc (@mandrebern)](https://github.com/mandrebern "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Marc (@marc-gist)](https://github.com/marc-gist "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Marc Billow (@mbillow)](https://github.com/mbillow "3 total commits to the Home Assistant orga: +2 commits to brands +1 commit to wheels-custom-integrations +") - [Marc Egli (@frog32)](https://github.com/frog32 "12 total commits to the Home Assistant orga: 8 commits to core 3 commits to home-assistant.io 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 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 core +- [Marc Hörsken (@mback2k)](https://github.com/mback2k "6 total commits to the Home Assistant orga: +3 commits to core +1 commit to frontend +1 commit to developers.home-assistant 1 commit to home-assistant.io ") +- [Marc Khouri (@mnkhouri)](https://github.com/mnkhouri "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Marc Kolly (@makuser)](https://github.com/makuser "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Marc Mueller (@cdce8p)](https://github.com/cdce8p "224 total commits to the Home Assistant orga: -142 commits to core -54 commits to home-assistant.io -16 commits to frontend -6 commits to developers.home-assistant +- [Marc Mueller (@cdce8p)](https://github.com/cdce8p "764 total commits to the Home Assistant orga: +665 commits to core +56 commits to home-assistant.io +23 commits to frontend +7 commits to developers.home-assistant 5 commits to hass-release +4 commits to analytics.home-assistant.io +3 commits to actions 1 commit to people ") -- [Marc Pabst (@marcpabst)](https://github.com/marcpabst "2 total commits to the Home Assistant orga: -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 core ") -- [Marc Randolph (@mrand)](https://github.com/mrand "6 total commits to the Home Assistant orga: -3 commits to frontend -3 commits to home-assistant.io +- [Marc Randolph (@mrand)](https://github.com/mrand "12 total commits to the Home Assistant orga: +7 commits to home-assistant.io +5 commits to frontend ") - [Marc Seeger (@rb2k)](https://github.com/rb2k "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Marc Smith (@mrmarcsmith)](https://github.com/mrmarcsmith "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Marc Vila (@LaQuay)](https://github.com/LaQuay "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10537,6 +14276,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to frontend 1 commit to home-assistant.io ") +- [Marcel de Haas (@mdehaas)](https://github.com/mdehaas "1 total commits to the Home Assistant orga: +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 ") @@ -10551,13 +14293,17 @@ This page contains a list of people who have contributed in one way or another t - [Marcel Neumann (@selmaohneh)](https://github.com/selmaohneh "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Marcel Patzlaff (@mcpat)](https://github.com/mcpat "7 total commits to the Home Assistant orga: +7 commits to buildroot +") - [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 "32 total commits to the Home Assistant orga: -25 commits to core -4 commits to addons -3 commits to home-assistant.io +- [Marcel van der Veldt (@marcelveldt)](https://github.com/marcelveldt "164 total commits to the Home Assistant orga: +148 commits to core +9 commits to home-assistant.io +5 commits to addons +2 commits to brands ") - [Marcel van Peer (@marcelvanpeer)](https://github.com/marcelvanpeer "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -10569,23 +14315,40 @@ This page contains a list of people who have contributed in one way or another t - [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 hassio-build 1 commit to assets +1 commit to hassio-build 1 commit to frontend ") - [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 Bis (@marcinbis)](https://github.com/marcinbis "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [Marcin Ciupak (@mciupak)](https://github.com/mciupak "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to docker +") - [Marcin Domański (@kabturek)](https://github.com/kabturek "2 total commits to the Home Assistant orga: 2 commits to developers.home-assistant ") +- [Marcin Jabrzyk (@bzyx)](https://github.com/bzyx "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Marcin Niestroj (@mniestroj)](https://github.com/mniestroj "111 total commits to the Home Assistant orga: +111 commits to buildroot +") +- [Marcin Nowakowski (@MJNowakowski)](https://github.com/MJNowakowski "15 total commits to the Home Assistant orga: +15 commits to buildroot +") - [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 ") -- [Marcio Granzotto Rodrigues (@marciogranzotto)](https://github.com/marciogranzotto "12 total commits to the Home Assistant orga: +- [Marcio Granzotto Rodrigues (@marciogranzotto)](https://github.com/marciogranzotto "13 total commits to the Home Assistant orga: 8 commits to core 2 commits to home-assistant.io +1 commit to addons-development 1 commit to android 1 commit to brands ") @@ -10622,7 +14385,8 @@ This page contains a list of people who have contributed in one way or another t 10 commits to core 4 commits to home-assistant.io ") -- [Marco Palazzetti (@marcopal74)](https://github.com/marcopal74 "1 total commits to the Home Assistant orga: +- [Marco Palazzetti (@marcopal74)](https://github.com/marcopal74 "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations 1 commit to brands ") - [Marco Sirabella (@mjsir911)](https://github.com/mjsir911 "2 total commits to the Home Assistant orga: @@ -10632,8 +14396,13 @@ This page contains a list of people who have contributed in one way or another t - [Marco Sousa (@marcomsousa)](https://github.com/marcomsousa "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Marco Trevisan (@3v1n0)](https://github.com/3v1n0 "1 total commits to the Home Assistant orga: +- [Marco Trevisan (@3v1n0)](https://github.com/3v1n0 "6 total commits to the Home Assistant orga: +1 commit to supervisor +1 commit to cli 1 commit to supervised-installer +1 commit to developers.home-assistant +1 commit to core +1 commit to home-assistant.io ") - [marcolertora (@marcolertora)](https://github.com/marcolertora "2 total commits to the Home Assistant orga: 1 commit to core @@ -10648,9 +14417,19 @@ This page contains a list of people who have contributed in one way or another t - [Marcus (@dgraye)](https://github.com/dgraye "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Marcus (@marcusds)](https://github.com/marcusds "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Marcus Folkesson (@marcusfolkesson)](https://github.com/marcusfolkesson "39 total commits to the Home Assistant orga: +39 commits to buildroot +") - [Marcus Fredlund (@mr-awk)](https://github.com/mr-awk "1 total commits to the Home Assistant orga: 1 commit to frontend ") +- [Marcus Lönnberg (@marcuslonnberg)](https://github.com/marcuslonnberg "2 total commits to the Home Assistant orga: +1 commit to android +1 commit to core +") - [Marcus Schmidt (@mar-schmidt)](https://github.com/mar-schmidt "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to home-assistant.io @@ -10658,14 +14437,18 @@ This page contains a list of people who have contributed in one way or another t - [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 "4 total commits to the Home Assistant orga: -3 commits to core +- [marecabo (@marecabo)](https://github.com/marecabo "6 total commits to the Home Assistant orga: +5 commits to core 1 commit to home-assistant.io ") +- [Marek Belisko (@nandra)](https://github.com/nandra "20 total commits to the Home Assistant orga: +20 commits to buildroot +") - [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 "2 total commits to the Home Assistant orga: +- [marengaz (@marengaz)](https://github.com/marengaz "3 total commits to the Home Assistant orga: +1 commit to operating-system 1 commit to developers.home-assistant 1 commit to core ") @@ -10687,19 +14470,38 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") -- [Mario Limonciello (@superm1)](https://github.com/superm1 "6 total commits to the Home Assistant orga: -3 commits to operating-system -1 commit to addons -1 commit to supervised-installer -1 commit to home-assistant.io +- [Mario Fink (@mario-fink)](https://github.com/mario-fink "2 total commits to the Home Assistant orga: +2 commits to buildroot ") -- [Mario Villavecchia (@lichtteil)](https://github.com/lichtteil "6 total commits to the Home Assistant orga: +- [Mario Lang (@mlang)](https://github.com/mlang "18 total commits to the Home Assistant orga: +18 commits to buildroot +") +- [Mario Limonciello (@superm1)](https://github.com/superm1 "7 total commits to the Home Assistant orga: 4 commits to home-assistant.io -2 commits to core +1 commit to addons +1 commit to operating-system +1 commit to core +") +- [Mario Mintel (@mintelm)](https://github.com/mintelm "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Mario Rugiero (@Oppen)](https://github.com/Oppen "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [Mario Villavecchia (@lichtteil)](https://github.com/lichtteil "5 total commits to the Home Assistant orga: +4 commits to home-assistant.io +1 commit to core ") - [Mario Wenzel (@maweki)](https://github.com/maweki "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Marius (@Mariusthvdb)](https://github.com/Mariusthvdb "57 total commits to the Home Assistant orga: +23 commits to home-assistant.io +18 commits to core +14 commits to frontend +1 commit to operating-system +1 commit to companion.home-assistant +") - [Marius (@ciotlosm)](https://github.com/ciotlosm "43 total commits to the Home Assistant orga: 14 commits to frontend 12 commits to home-assistant.io @@ -10708,11 +14510,6 @@ This page contains a list of people who have contributed in one way or another t 2 commits to ui-schema 1 commit to people ") -- [Marius (@Mariusthvdb)](https://github.com/Mariusthvdb "24 total commits to the Home Assistant orga: -12 commits to core -10 commits to home-assistant.io -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 ") @@ -10738,8 +14535,12 @@ This page contains a list of people who have contributed in one way or another t 1 commit to frontend 1 commit to home-assistant.io ") -- [mariwing (@mariwing)](https://github.com/mariwing "4 total commits to the Home Assistant orga: +- [mariwing (@mariwing)](https://github.com/mariwing "5 total commits to the Home Assistant orga: 4 commits to home-assistant.io +1 commit to core +") +- [Mark (@mwunderling)](https://github.com/mwunderling "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Mark (@scmmmh)](https://github.com/scmmmh "1 total commits to the Home Assistant orga: 1 commit to core @@ -10750,6 +14551,9 @@ This page contains a list of people who have contributed in one way or another t - [Mark (@markus99)](https://github.com/markus99 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Mark Adkins (@funkybunch)](https://github.com/funkybunch "1 total commits to the Home Assistant orga: +1 commit to core +") - [Mark Allanson (@markallanson)](https://github.com/markallanson "2 total commits to the Home Assistant orga: 2 commits to core ") @@ -10757,21 +14561,38 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Mark Breen (@markvader)](https://github.com/markvader "2 total commits to the Home Assistant orga: +1 commit to brands +1 commit to home-assistant.io +") +- [Mark Corbin (@markcorbinuk)](https://github.com/markcorbinuk "120 total commits to the Home Assistant orga: +120 commits to buildroot +") +- [Mark Dietzer (@Doridian)](https://github.com/Doridian "5 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io +1 commit to operating-system +") - [Mark Grimes (@mvgrimes)](https://github.com/mvgrimes "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Mark Grosen (@mgsb)](https://github.com/mgsb "2 total commits to the Home Assistant orga: -1 commit to netdisco +- [Mark Grosen (@mgsb)](https://github.com/mgsb "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Mark Harrison (@marksharrison)](https://github.com/marksharrison "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Mark Hirota (@sanseihappa)](https://github.com/sanseihappa "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Mark Hofmann (@MarkHofmann11)](https://github.com/MarkHofmann11 "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 Huson (@mehuman)](https://github.com/mehuman "12 total commits to the Home Assistant orga: +12 commits to home-assistant.io +") +- [Mark Ireland (@m4rkireland)](https://github.com/m4rkireland "1 total commits to the Home Assistant orga: +1 commit to core ") - [Mark Jozefiak (@ImEmJay)](https://github.com/ImEmJay "2 total commits to the Home Assistant orga: 1 commit to core @@ -10780,6 +14601,9 @@ This page contains a list of people who have contributed in one way or another t - [Mark King (@vemek)](https://github.com/vemek "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Mark Kovacs (@kovacsm)](https://github.com/kovacsm "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Mark Lagendijk (@marklagendijk)](https://github.com/marklagendijk "2 total commits to the Home Assistant orga: 2 commits to hassbian-scripts ") @@ -10789,12 +14613,16 @@ 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: +- [Mark Lopez (@Silvenga)](https://github.com/Silvenga "2 total commits to the Home Assistant orga: +1 commit to frontend 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 ") +- [Mark Mäkinen (@Z1ni)](https://github.com/Z1ni "2 total commits to the Home Assistant orga: +2 commits to core +") - [Mark Nichols (@zanshin)](https://github.com/zanshin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10815,6 +14643,9 @@ This page contains a list of people who have contributed in one way or another t - [Mark Remijn (@markisoke)](https://github.com/markisoke "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Mark Zachmann (@MZachmann)](https://github.com/MZachmann "1 total commits to the Home Assistant orga: +1 commit to core +") - [markcarline (@markcarline)](https://github.com/markcarline "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -10825,6 +14656,9 @@ This page contains a list of people who have contributed in one way or another t - [markharleman (@markharleman)](https://github.com/markharleman "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") +- [Marko Korhonen (@FunctionalHacker)](https://github.com/FunctionalHacker "1 total commits to the Home Assistant orga: +1 commit to core +") - [markterm (@markterm)](https://github.com/markterm "1 total commits to the Home Assistant orga: 1 commit to supervisor ") @@ -10836,35 +14670,40 @@ This page contains a list of people who have contributed in one way or another t - [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 "27 total commits to the Home Assistant orga: -26 commits to core +- [Markus Bong (@2Fake)](https://github.com/2Fake "29 total commits to the Home Assistant orga: +28 commits to core 1 commit to developers.home-assistant ") - [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 Friedli (@frimtec)](https://github.com/frimtec "2 total commits to the Home Assistant orga: +- [Markus Friedli (@frimtec)](https://github.com/frimtec "4 total commits to the Home Assistant orga: 1 commit to android 1 commit to companion.home-assistant +1 commit to wheels-custom-integrations +1 commit to brands ") - [Markus Haack (@mhaack)](https://github.com/mhaack "4 total commits to the Home Assistant orga: 3 commits to core 1 commit to home-assistant.io ") +- [Markus Heidelberg (@marcows)](https://github.com/marcows "6 total commits to the Home Assistant orga: +6 commits to buildroot +") - [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 "172 total commits to the Home Assistant orga: -123 commits to core +- [Markus Jankowski (@SukramJ)](https://github.com/SukramJ "181 total commits to the Home Assistant orga: +132 commits to core 42 commits to home-assistant.io 3 commits to developers.home-assistant 2 commits to frontend 1 commit to alerts.home-assistant.io 1 commit to brands ") -- [Markus Korbel (@markuskorbel)](https://github.com/markuskorbel "1 total commits to the Home Assistant orga: -1 commit to core +- [Markus Kaindl (@kaindl)](https://github.com/kaindl "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [Markus Meissner (@daringer)](https://github.com/daringer "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant @@ -10888,6 +14727,9 @@ This page contains a list of people who have contributed in one way or another t 4 commits to home-assistant.io 4 commits to core ") +- [Markus Steinhilber (@Markus-St)](https://github.com/Markus-St "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Markus Stenberg (@fingon)](https://github.com/fingon "6 total commits to the Home Assistant orga: 6 commits to core ") @@ -10907,23 +14749,45 @@ This page contains a list of people who have contributed in one way or another t - [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 +- [marthoc (@marthoc)](https://github.com/marthoc "40 total commits to the Home Assistant orga: +27 commits to core 7 commits to home-assistant.io 4 commits to open-zwave 1 commit to people +1 commit to brands +") +- [Martidjen (@Martidjen)](https://github.com/Martidjen "4 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io ") - [Martijn Baay (@baaym)](https://github.com/baaym "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [Martijn de Gouw (@martijndegouw)](https://github.com/martijndegouw "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Martijn Russchen (@martijnrusschen)](https://github.com/martijnrusschen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Martijn van Dijk (@martijnvandijk)](https://github.com/martijnvandijk "1 total commits to the Home Assistant orga: +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 "11 total commits to the Home Assistant orga: -8 commits to core +- [martijnvanduijneveldt (@martijnvanduijneveldt)](https://github.com/martijnvanduijneveldt "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Martin (@crazyfx1)](https://github.com/crazyfx1 "18 total commits to the Home Assistant orga: +12 commits to core +5 commits to home-assistant.io +1 commit to alerts.home-assistant.io +") +- [Martin (@CapricornZ)](https://github.com/CapricornZ "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Martin (@martin3000)](https://github.com/martin3000 "7 total commits to the Home Assistant orga: +4 commits to core 3 commits to home-assistant.io ") - [Martin (@xtools-at)](https://github.com/xtools-at "4 total commits to the Home Assistant orga: @@ -10932,10 +14796,6 @@ This page contains a list of people who have contributed in one way or another t - [Martin (@mrvanes)](https://github.com/mrvanes "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Martin (@martin3000)](https://github.com/martin3000 "4 total commits to the Home Assistant orga: -2 commits to home-assistant.io -2 commits to core -") - [Martin (@mtandersson)](https://github.com/mtandersson "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10945,6 +14805,12 @@ This page contains a list of people who have contributed in one way or another t - [Martin Banas (@bnsm)](https://github.com/bnsm "2 total commits to the Home Assistant orga: 2 commits to Iconic ") +- [Martin Banky (@MartinBanky)](https://github.com/MartinBanky "54 total commits to the Home Assistant orga: +54 commits to buildroot +") +- [Martin Bark (@martinbark)](https://github.com/martinbark "185 total commits to the Home Assistant orga: +185 commits to buildroot +") - [Martin Berg (@mbrrg)](https://github.com/mbrrg "12 total commits to the Home Assistant orga: 9 commits to core 3 commits to home-assistant.io @@ -10963,6 +14829,9 @@ This page contains a list of people who have contributed in one way or another t 8 commits to home-assistant.io 7 commits to core ") +- [Martin Elshuber (@melshuber)](https://github.com/melshuber "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Martin Elwin (@melwin)](https://github.com/melwin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -10979,25 +14848,34 @@ This page contains a list of people who have contributed in one way or another t - [Martin Gross (@pc-coholic)](https://github.com/pc-coholic "4 total commits to the Home Assistant orga: 4 commits to core ") -- [Martin Hjelmare (@MartinHjelmare)](https://github.com/MartinHjelmare "386 total commits to the Home Assistant orga: -300 commits to core -47 commits to home-assistant.io -13 commits to developers.home-assistant +- [Martin Hicks (@mohicks)](https://github.com/mohicks "6 total commits to the Home Assistant orga: +6 commits to buildroot +") +- [Martin Hjelmare (@MartinHjelmare)](https://github.com/MartinHjelmare "574 total commits to the Home Assistant orga: +464 commits to core +58 commits to home-assistant.io +18 commits to developers.home-assistant +10 commits to addons 6 commits to supervisor 4 commits to github-issue-maker -3 commits to addons 3 commits to wheels-custom-integrations 2 commits to example-custom-config +2 commits to frontend 2 commits to architecture 2 commits to brands 1 commit to actions 1 commit to people 1 commit to probot-home-assistant -1 commit to frontend +") +- [Martin Ilievski (@mxilievski)](https://github.com/mxilievski "2 total commits to the Home Assistant orga: +2 commits to core ") - [Martin J\. Laubach (@mjl)](https://github.com/mjl "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Martin Kepplinger (@merge)](https://github.com/merge "44 total commits to the Home Assistant orga: +44 commits to buildroot +") - [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 @@ -11009,6 +14887,9 @@ This page contains a list of people who have contributed in one way or another t - [Martin Nöhrer (@matrixx567)](https://github.com/matrixx567 "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Martin Otzen (@otzen)](https://github.com/otzen "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [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 @@ -11027,8 +14908,8 @@ This page contains a list of people who have contributed in one way or another t - [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 "28 total commits to the Home Assistant orga: -18 commits to core +- [Martin Weinelt (@mweinelt)](https://github.com/mweinelt "29 total commits to the Home Assistant orga: +19 commits to core 9 commits to home-assistant.io 1 commit to frontend ") @@ -11039,41 +14920,74 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 2 commits to home-assistant.io ") +- [Martino Papero (@martymarty004)](https://github.com/martymarty004 "1 total commits to the Home Assistant orga: +1 commit to addons +") - [MartinP (@mplinuxgeek)](https://github.com/mplinuxgeek "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [MartinT (@MartinTuroci)](https://github.com/MartinTuroci "4 total commits to the Home Assistant orga: +4 commits to frontend +") - [Martokk (@martokk)](https://github.com/martokk "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [martst (@martst)](https://github.com/martst "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Marty Zalega (@evilmarty)](https://github.com/evilmarty "1 total commits to the Home Assistant orga: +- [Marty Cochrane (@martycochrane)](https://github.com/martycochrane "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Marty Zalega (@evilmarty)](https://github.com/evilmarty "2 total commits to the Home Assistant orga: +1 commit to brands 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 "27 total commits to the Home Assistant orga: -18 commits to core -9 commits to home-assistant.io +- [Marvin ROGER (@marvinroger)](https://github.com/marvinroger "3 total commits to the Home Assistant orga: +2 commits to hass-release +1 commit to core +") +- [Marvin Wichmann (@marvin-w)](https://github.com/marvin-w "54 total commits to the Home Assistant orga: +43 commits to core +8 commits to home-assistant.io +2 commits to brands +1 commit to example-custom-config +") +- [Mas2112 (@Mas2112)](https://github.com/Mas2112 "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io ") - [Masahiro Kamata (@kamatari)](https://github.com/kamatari "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Masahiro Yamada (@masahir0y)](https://github.com/masahir0y "17 total commits to the Home Assistant orga: +17 commits to buildroot +") +- [Mask3007 (@Mask3007)](https://github.com/Mask3007 "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Mason Garrison (@smasongarrison)](https://github.com/smasongarrison "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Mason Stewart (@masondesu)](https://github.com/masondesu "1 total commits to the Home Assistant orga: +- [Mason Stewart (@mason-stewart)](https://github.com/mason-stewart "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Massimiliano Cannarozzo (@maxcanna)](https://github.com/maxcanna "6 total commits to the Home Assistant orga: -3 commits to home-assistant.io -3 commits to core +- [Massimiliano Cannarozzo (@maxcanna)](https://github.com/maxcanna "10 total commits to the Home Assistant orga: +5 commits to home-assistant.io +5 commits to core +") +- [Massimo Callegari (@mcallegari)](https://github.com/mcallegari "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [mastakebob (@mastakebob)](https://github.com/mastakebob "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Masteroshi430 (@Masteroshi430)](https://github.com/Masteroshi430 "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [masukomi (@masukomi)](https://github.com/masukomi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -11087,13 +15001,14 @@ This page contains a list of people who have contributed in one way or another t - [matchett808\-gh (@matchett808-gh)](https://github.com/matchett808-gh "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") -- [Matej Drobnič (@matejdro)](https://github.com/matejdro "3 total commits to the Home Assistant orga: +- [Matej Drobnič (@matejdro)](https://github.com/matejdro "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io +1 commit to companion.home-assistant 1 commit to core ") -- [Matej Plavevski (@MatejMecka)](https://github.com/MatejMecka "27 total commits to the Home Assistant orga: +- [Matej Plavevski (@MatejMecka)](https://github.com/MatejMecka "28 total commits to the Home Assistant orga: 24 commits to home-assistant.io -3 commits to core +4 commits to core ") - [Matej Sekoranja (@msekoranja)](https://github.com/msekoranja "2 total commits to the Home Assistant orga: 1 commit to wheels-custom-integrations @@ -11116,9 +15031,10 @@ This page contains a list of people who have contributed in one way or another t - [matgad (@matgad)](https://github.com/matgad "3 total commits to the Home Assistant orga: 3 commits to core ") -- [Matheson Steplock (@ikifar2012)](https://github.com/ikifar2012 "10 total commits to the Home Assistant orga: -8 commits to home-assistant.io -1 commit to supervisor +- [Matheson Steplock (@ikifar2012)](https://github.com/ikifar2012 "29 total commits to the Home Assistant orga: +13 commits to supervised-installer +13 commits to home-assistant.io +2 commits to supervisor 1 commit to developers.home-assistant ") - [matheus2308 (@matheus2308)](https://github.com/matheus2308 "1 total commits to the Home Assistant orga: @@ -11129,10 +15045,21 @@ This page contains a list of people who have contributed in one way or another t 1 commit to homebridge-homeassistant 1 commit to core ") -- [Mathieu Maret (@mmaret-geny)](https://github.com/mmaret-geny "1 total commits to the Home Assistant orga: +- [Mathew Verdouw (@madmat777)](https://github.com/madmat777 "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") -- [Mathieu Maret (@mmaret)](https://github.com/mmaret "1 total commits to the Home Assistant orga: +- [Mathias De Maré (@Mathiasdm)](https://github.com/Mathiasdm "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Mathieu Frappier (@matfra)](https://github.com/matfra "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Mathieu Maret (@mmaret)](https://github.com/mmaret "2 total commits to the Home Assistant orga: +1 commit to buildroot +1 commit to home-assistant.io +") +- [Mathieu Maret (@mmaret-geny)](https://github.com/mmaret-geny "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: @@ -11146,20 +15073,32 @@ This page contains a list of people who have contributed in one way or another t - [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 "15 total commits to the Home Assistant orga: -11 commits to core +- [MatsNl (@MatsNl)](https://github.com/MatsNl "17 total commits to the Home Assistant orga: +13 commits to core 3 commits to home-assistant.io 1 commit to brands ") +- [MATSUZAKI Tsuyoshi (@matsuza)](https://github.com/matsuza "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Matt (@mattmattmatt)](https://github.com/mattmattmatt "2 total commits to the Home Assistant orga: 2 commits to frontend ") +- [Matt (@mdawsonuk)](https://github.com/mdawsonuk "7 total commits to the Home Assistant orga: +7 commits to core +") - [Matt Bilodeau (@mattbilodeau)](https://github.com/mattbilodeau "2 total commits to the Home Assistant orga: 2 commits to core ") - [Matt Black (@mafrosis)](https://github.com/mafrosis "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Matt Blaha (@mattblaha)](https://github.com/mattblaha "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Matt Burke (@burkemw3)](https://github.com/burkemw3 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Matt Cahill (@matt-cahill)](https://github.com/matt-cahill "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -11173,6 +15112,10 @@ This page contains a list of people who have contributed in one way or another t - [Matt D (@matt1)](https://github.com/matt1 "1 total commits to the Home Assistant orga: 1 commit to cli ") +- [Matt Emerick\-Law (@emericklaw)](https://github.com/emericklaw "2 total commits to the Home Assistant orga: +1 commit to frontend +1 commit to home-assistant.io +") - [Matt Enright (@wickedshimmy)](https://github.com/wickedshimmy "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -11183,6 +15126,9 @@ This page contains a list of people who have contributed in one way or another t - [Matt Farmer (@m14t)](https://github.com/m14t "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Matt Flax (@flatmax)](https://github.com/flatmax "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [Matt Hall (@Neko22)](https://github.com/Neko22 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -11192,10 +15138,16 @@ This page contains a list of people who have contributed in one way or another t - [Matt Hamrick (@diminishedprime)](https://github.com/diminishedprime "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Matt Johnson (@mattjohnsonpint)](https://github.com/mattjohnsonpint "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Matt Kasa (@mattkasa)](https://github.com/mattkasa "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [Matt Krasowski (@mkrasowski)](https://github.com/mkrasowski "2 total commits to the Home Assistant orga: +2 commits to core +") - [Matt LeBrun (@mlebrun)](https://github.com/mlebrun "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -11211,6 +15163,9 @@ This page contains a list of people who have contributed in one way or another t - [Matt Olson (@olsoma13)](https://github.com/olsoma13 "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") +- [Matt Rayner (@mattrayner)](https://github.com/mattrayner "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Matt Robinson (@brimstone)](https://github.com/brimstone "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -11241,17 +15196,38 @@ This page contains a list of people who have contributed in one way or another t 7 commits to core 5 commits to home-assistant.io ") -- [Matte23 (@Matte23)](https://github.com/Matte23 "4 total commits to the Home Assistant orga: +- [Matt Wood (@mattwood2000)](https://github.com/mattwood2000 "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Matt Zimmerman (@mdz)](https://github.com/mdz "59 total commits to the Home Assistant orga: +49 commits to core +9 commits to home-assistant.io +1 commit to brands +") +- [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 core +2 commits to home-assistant.io ") - [MatteGary (@MatteGary)](https://github.com/MatteGary "6 total commits to the Home Assistant orga: 4 commits to core 2 commits to home-assistant.io ") -- [Matteo Agnoletto (@EPMatt)](https://github.com/EPMatt "2 total commits to the Home Assistant orga: +- [Matteo Agnoletto (@EPMatt)](https://github.com/EPMatt "3 total commits to the Home Assistant orga: 1 commit to frontend 1 commit to core +1 commit to home-assistant.io +") +- [Matteo Gheza (@MatteoGheza)](https://github.com/MatteoGheza "2 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +1 commit to home-assistant.io +") +- [Matteo Lampugnani (@t30)](https://github.com/t30 "8 total commits to the Home Assistant orga: +7 commits to home-assistant.io +1 commit to core ") - [Mattheus (@tioan)](https://github.com/tioan "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -11269,26 +15245,34 @@ This page contains a list of people who have contributed in one way or another t - [Matthew Breedlove (@sirmalloc)](https://github.com/sirmalloc "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Matthew Donoughe (@mdonoughe)](https://github.com/mdonoughe "17 total commits to the Home Assistant orga: +- [Matthew Donoughe (@mdonoughe)](https://github.com/mdonoughe "18 total commits to the Home Assistant orga: +9 commits to core 8 commits to home-assistant.io -8 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 "43 total commits to the Home Assistant orga: -32 commits to core -8 commits to home-assistant.io -2 commits to netdisco +- [Matthew Garrett (@mjg59)](https://github.com/mjg59 "35 total commits to the Home Assistant orga: +29 commits to core +5 commits to home-assistant.io 1 commit to people ") -- [Matthew Grimes (@cybergrimes)](https://github.com/cybergrimes "5 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [Matthew Gottlieb (@matthewgottlieb)](https://github.com/matthewgottlieb "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Matthew Grimes (@cybergrimes)](https://github.com/cybergrimes "6 total commits to the Home Assistant orga: +5 commits to home-assistant.io 1 commit to open-zwave ") -- [Matthew Hilton (@matt2005)](https://github.com/matt2005 "5 total commits to the Home Assistant orga: -3 commits to core +- [Matthew James Kraai (@kraai)](https://github.com/kraai "8 total commits to the Home Assistant orga: +8 commits to buildroot +") +- [Matthew LeMay (@mplemay)](https://github.com/mplemay "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Matthew Miller (@mattdm)](https://github.com/mattdm "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Matthew Parlane (@Parlane)](https://github.com/Parlane "1 total commits to the Home Assistant orga: @@ -11318,9 +15302,6 @@ This page contains a list of people who have contributed in one way or another t 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 core 1 commit to home-assistant.io @@ -11332,31 +15313,46 @@ This page contains a list of people who have contributed in one way or another t 15 commits to open-zwave 1 commit to core ") -- [MatthewFlamm (@MatthewFlamm)](https://github.com/MatthewFlamm "50 total commits to the Home Assistant orga: -30 commits to core -10 commits to home-assistant.io +- [MatthewFlamm (@MatthewFlamm)](https://github.com/MatthewFlamm "59 total commits to the Home Assistant orga: +38 commits to core +11 commits to home-assistant.io 4 commits to frontend 3 commits to wheels-custom-integrations 2 commits to developers.home-assistant 1 commit to architecture ") -- [Matthias Alphart (@farmio)](https://github.com/farmio "34 total commits to the Home Assistant orga: -22 commits to core -12 commits to home-assistant.io +- [Matthias Alphart (@farmio)](https://github.com/farmio "206 total commits to the Home Assistant orga: +163 commits to core +42 commits to home-assistant.io +1 commit to developers.home-assistant +") +- [Matthias de Baat (@matthiasdebaat)](https://github.com/matthiasdebaat "18 total commits to the Home Assistant orga: +15 commits to frontend +2 commits to home-assistant.io +1 commit to assets ") - [Matthias Dötsch (@brainexe)](https://github.com/brainexe "3 total commits to the Home Assistant orga: 2 commits to frontend 1 commit to core ") -- [Matthias Grawinkel (@meatz)](https://github.com/meatz "2 total commits to the Home Assistant orga: +- [Matthias Grawinkel (@Meatz)](https://github.com/Meatz "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [Matthias Gutjahr (@mattsches)](https://github.com/mattsches "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") +- [Matthias Lohr (@MatthiasLohr)](https://github.com/MatthiasLohr "18 total commits to the Home Assistant orga: +10 commits to core +7 commits to home-assistant.io +1 commit to brands +") - [Matthias Merz (@matt-gnu)](https://github.com/matt-gnu "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Matthias Pfefferle (@pfefferle)](https://github.com/pfefferle "1 total commits to the Home Assistant orga: -1 commit to addons +- [Matthias Pfefferle (@pfefferle)](https://github.com/pfefferle "4 total commits to the Home Assistant orga: +2 commits to addons +2 commits to home-assistant.io ") - [Matthias Urlichs (@smurfix)](https://github.com/smurfix "7 total commits to the Home Assistant orga: 6 commits to core @@ -11368,11 +15364,17 @@ This page contains a list of people who have contributed in one way or another t - [Matthias Weiss (@weissm)](https://github.com/weissm "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Matthias Weisser (@modbw)](https://github.com/modbw "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Matthieu (@d9pouces)](https://github.com/d9pouces "1 total commits to the Home Assistant orga: 1 commit to feedparser ") -- [Matthieu (@Aohzan)](https://github.com/Aohzan "2 total commits to the Home Assistant orga: -2 commits to brands +- [Matthieu (@Aohzan)](https://github.com/Aohzan "9 total commits to the Home Assistant orga: +4 commits to brands +3 commits to wheels-custom-integrations +1 commit to core +1 commit to home-assistant.io ") - [Matthieu DUVAL (@ptimatth)](https://github.com/ptimatth "2 total commits to the Home Assistant orga: 1 commit to wheels-custom-integrations @@ -11381,6 +15383,13 @@ This page contains a list of people who have contributed in one way or another t - [Matthijs (@pasibun)](https://github.com/pasibun "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Matthijs Logemann (@matthijs2704)](https://github.com/matthijs2704 "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Mattias Persson (@matt8707)](https://github.com/matt8707 "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [Mattias Ryrlén (@mattiasr)](https://github.com/mattiasr "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -11390,7 +15399,7 @@ This page contains a list of people who have contributed in one way or another t 1 commit to frontend ") - [MattiasC (@MattiasC)](https://github.com/MattiasC "1 total commits to the Home Assistant orga: -1 commit to brands +1 commit to home-assistant.io ") - [mattie47 (@mattie47)](https://github.com/mattie47 "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io @@ -11402,13 +15411,25 @@ This page contains a list of people who have contributed in one way or another t - [mattn (@mattn)](https://github.com/mattn "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [MattWestb (@MattWestb)](https://github.com/MattWestb "7 total commits to the Home Assistant orga: +7 commits to core +") - [mattwing (@mattwing)](https://github.com/mattwing "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [mattyteds (@mattyteds)](https://github.com/mattyteds "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [maurerle (@maurerle)](https://github.com/maurerle "1 total commits to the Home Assistant orga: +1 commit to core +") - [Maurice Kok (@mories76)](https://github.com/mories76 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Maurice van der Pot (@Griffon26)](https://github.com/Griffon26 "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Mauricio Bonani (@bonanitech)](https://github.com/bonanitech "21 total commits to the Home Assistant orga: 14 commits to home-assistant.io 6 commits to frontend @@ -11417,16 +15438,34 @@ This page contains a list of people who have contributed in one way or another t - [Mauricio Vidal (@MrMauro)](https://github.com/MrMauro "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Mauro Condarelli (@mcondarelli)](https://github.com/mcondarelli "27 total commits to the Home Assistant orga: +27 commits to buildroot +") +- [Mauro Meneghin (@mauro-youview)](https://github.com/mauro-youview "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Mauro Midolo (@mauro-midolo)](https://github.com/mauro-midolo "1 total commits to the Home Assistant orga: +1 commit to brands +") - [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 home-assistant.io 2 commits to core +2 commits to home-assistant.io ") - [Max (@maxjoehnk)](https://github.com/maxjoehnk "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Max Chodorowski (@maxwroc)](https://github.com/maxwroc "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Max Filippov (@jcmvbkbc)](https://github.com/jcmvbkbc "115 total commits to the Home Assistant orga: +115 commits to buildroot +") +- [Max Messner (@mamessner)](https://github.com/mamessner "1 total commits to the Home Assistant orga: +1 commit 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 ") @@ -11474,15 +15513,44 @@ This page contains a list of people who have contributed in one way or another t - [MaxG88 (@MaxG88)](https://github.com/MaxG88 "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Maxim Kochetkov (@fidomax)](https://github.com/fidomax "19 total commits to the Home Assistant orga: +19 commits to buildroot +") - [Maxim Krušina (@maximkrusina)](https://github.com/maximkrusina "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [maxim2405 (@maxim2405)](https://github.com/maxim2405 "8 total commits to the Home Assistant orga: +8 commits to buildroot +") +- [Maxime Brunelle (@madxime)](https://github.com/madxime "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Maxime Chevallier (@minimaxwell)](https://github.com/minimaxwell "23 total commits to the Home Assistant orga: +23 commits to buildroot +") +- [Maxime Coquelin (@mcoquelin-stm32)](https://github.com/mcoquelin-stm32 "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Maxime Hadjinlian (@maximeh)](https://github.com/maximeh "264 total commits to the Home Assistant orga: +264 commits to buildroot +") +- [Maxime Petazzoni (@mpetazzoni)](https://github.com/mpetazzoni "8 total commits to the Home Assistant orga: +8 commits to buildroot +") +- [Maxime Ripard (@mripard)](https://github.com/mripard "78 total commits to the Home Assistant orga: +78 commits to buildroot +") +- [Maximilian (@DeerMaximum)](https://github.com/DeerMaximum "17 total commits to the Home Assistant orga: +12 commits to core +4 commits to home-assistant.io +1 commit to brands +") - [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: +- [Maximilian Ertl (@Sirs0ri)](https://github.com/Sirs0ri "4 total commits to the Home Assistant orga: 2 commits to hassbian-scripts -1 commit to developers.home-assistant +2 commits to developers.home-assistant ") - [Maximilian Früh (@mfrueh)](https://github.com/mfrueh "2 total commits to the Home Assistant orga: 1 commit to core @@ -11495,18 +15563,26 @@ This page contains a list of people who have contributed in one way or another t 6 commits to core 3 commits to home-assistant.io ") +- [maxnet (@maxnet)](https://github.com/maxnet "41 total commits to the Home Assistant orga: +41 commits to buildroot +") - [Maël Kimmerlin (@maelk)](https://github.com/maelk "1 total commits to the Home Assistant orga: 1 commit to operating-system ") -- [mbo18 (@mbo18)](https://github.com/mbo18 "12 total commits to the Home Assistant orga: -5 commits to home-assistant.io -4 commits to core +- [mbo18 (@mbo18)](https://github.com/mbo18 "17 total commits to the Home Assistant orga: +6 commits to home-assistant.io +6 commits to core 2 commits to operating-system 1 commit to supervisor +1 commit to addons +1 commit to frontend ") - [mboeru (@mboeru)](https://github.com/mboeru "1 total commits to the Home Assistant orga: 1 commit to iOS ") +- [mburget (@mburget)](https://github.com/mburget "2 total commits to the Home Assistant orga: +2 commits to core +") - [mcc05 (@mcc05)](https://github.com/mcc05 "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -11516,8 +15592,8 @@ This page contains a list of people who have contributed in one way or another t - [mchen6 (@mchen6)](https://github.com/mchen6 "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [mckochan (@mckochan)](https://github.com/mckochan "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [mckochan (@mckochan)](https://github.com/mckochan "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [mclem (@mclem)](https://github.com/mclem "2 total commits to the Home Assistant orga: 1 commit to core @@ -11530,28 +15606,30 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to core ") -- [mdegat01 (@mdegat01)](https://github.com/mdegat01 "24 total commits to the Home Assistant orga: -14 commits to core -7 commits to home-assistant.io -1 commit to mobile-apps-fcm-push -1 commit to companion.home-assistant -1 commit to alerts.home-assistant.io +- [MDW (@mdeweerd)](https://github.com/mdeweerd "2 total commits to the Home Assistant orga: +2 commits to brands ") - [meatheadmike (@meatheadmike)](https://github.com/meatheadmike "2 total commits to the Home Assistant orga: 2 commits to core ") -- [Megachip (@Megachip)](https://github.com/Megachip "4 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [Megachip (@Megachip)](https://github.com/Megachip "5 total commits to the Home Assistant orga: +5 commits to home-assistant.io ") - [Megamannen (@Megamannen)](https://github.com/Megamannen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [MeIchthys (@meichthys)](https://github.com/meichthys "23 total commits to the Home Assistant orga: -15 commits to home-assistant.io -5 commits to core -1 commit to developers.home-assistant +- [MeganerdNL (@MeganerdNL)](https://github.com/MeganerdNL "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Mehmet Sami Tok (@samitok)](https://github.com/samitok "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [MeIchthys (@meichthys)](https://github.com/meichthys "29 total commits to the Home Assistant orga: +18 commits to home-assistant.io +7 commits to core +2 commits to brands 1 commit to frontend -1 commit to brands +1 commit to developers.home-assistant ") - [meijerwynand (@meijerwynand)](https://github.com/meijerwynand "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -11573,25 +15651,28 @@ This page contains a list of people who have contributed in one way or another t - [mendhak (@mendhak)](https://github.com/mendhak "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Menno Blom (@b10m)](https://github.com/b10m "7 total commits to the Home Assistant orga: +- [Menno Blom (@b10m)](https://github.com/b10m "6 total commits to the Home Assistant orga: 3 commits to home-assistant.io 2 commits to core -1 commit to netdisco 1 commit to alerts.home-assistant.io ") -- [Meow (@GrumpyMeow)](https://github.com/GrumpyMeow "2 total commits to the Home Assistant orga: +- [Meow (@GrumpyMeow)](https://github.com/GrumpyMeow "4 total commits to the Home Assistant orga: +2 commits to home-assistant.io 1 commit to brands -1 commit to home-assistant.io -") -- [merc1031 (@merc1031)](https://github.com/merc1031 "1 total commits to the Home Assistant orga: 1 commit to core ") -- [mertenats (@mertenats)](https://github.com/mertenats "4 total commits to the Home Assistant orga: +- [Meredith (@shieldmaiden95)](https://github.com/shieldmaiden95 "1 total commits to the Home Assistant orga: +1 commit to companion.home-assistant +") +- [Merlin Büge (@camoz)](https://github.com/camoz "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [mertenats (@smrtnt)](https://github.com/smrtnt "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") -- [mezz64 (@mezz64)](https://github.com/mezz64 "72 total commits to the Home Assistant orga: -57 commits to core -13 commits to home-assistant.io +- [mezz64 (@mezz64)](https://github.com/mezz64 "78 total commits to the Home Assistant orga: +61 commits to core +15 commits to home-assistant.io 1 commit to hadashboard 1 commit to frontend ") @@ -11608,9 +15689,16 @@ This page contains a list of people who have contributed in one way or another t - [mhorst314 (@mhorst314)](https://github.com/mhorst314 "1 total commits to the Home Assistant orga: 1 commit to core ") +- [MHV33 (@vdheijden)](https://github.com/vdheijden "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Micah Neal (@noxlux)](https://github.com/noxlux "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [micarex (@micarex)](https://github.com/micarex "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 @@ -11619,9 +15707,19 @@ This page contains a list of people who have contributed in one way or another t 3 commits to core 1 commit to home-assistant.io ") -- [Michael (@mib1185)](https://github.com/mib1185 "14 total commits to the Home Assistant orga: -12 commits to core -2 commits to home-assistant.io +- [micha91 (@micha91)](https://github.com/micha91 "24 total commits to the Home Assistant orga: +18 commits to core +6 commits to home-assistant.io +") +- [Micha\-Btz (@Micha-Btz)](https://github.com/Micha-Btz "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Michael (@mib1185)](https://github.com/mib1185 "219 total commits to the Home Assistant orga: +198 commits to core +14 commits to home-assistant.io +3 commits to frontend +3 commits to developers.home-assistant +1 commit to addons ") - [Michael (@hartmms)](https://github.com/hartmms "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io @@ -11633,8 +15731,8 @@ This page contains a list of people who have contributed in one way or another t - [Michael (@splunty)](https://github.com/splunty "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Michael A\. Alderete (@alderete)](https://github.com/alderete "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Michael A\. Alderete (@alderete)](https://github.com/alderete "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io ") - [Michael Auchter (@auchter)](https://github.com/auchter "14 total commits to the Home Assistant orga: 14 commits to core @@ -11645,8 +15743,11 @@ This page contains a list of people who have contributed in one way or another t - [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 "7 total commits to the Home Assistant orga: -6 commits to home-assistant.io +- [Michael Baudino (@michaelbaudino)](https://github.com/michaelbaudino "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Michael Bisbjerg (@LordMike)](https://github.com/LordMike "8 total commits to the Home Assistant orga: +7 commits to home-assistant.io 1 commit to core ") - [Michael Bravo (@mbravorus)](https://github.com/mbravorus "1 total commits to the Home Assistant orga: @@ -11658,20 +15759,31 @@ This page contains a list of people who have contributed in one way or another t - [Michael Chang (@micbase)](https://github.com/micbase "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Michael Chisholm (@chishm)](https://github.com/chishm "1 total commits to the Home Assistant orga: +- [Michael Chisholm (@chishm)](https://github.com/chishm "47 total commits to the Home Assistant orga: +37 commits to core +9 commits to home-assistant.io +1 commit to brands +") +- [Michael Cicogna (@miccico)](https://github.com/miccico "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Michael Davie (@michaeldavie)](https://github.com/michaeldavie "43 total commits to the Home Assistant orga: -30 commits to core -12 commits to home-assistant.io -1 commit to brands +- [Michael Davie (@michaeldavie)](https://github.com/michaeldavie "54 total commits to the Home Assistant orga: +38 commits to core +14 commits to home-assistant.io +2 commits to brands ") - [Michael Dokolin (@dokmic)](https://github.com/dokmic "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Michael Drake (@tlsa)](https://github.com/tlsa "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Michael Dubno (@dubnom)](https://github.com/dubnom "6 total commits to the Home Assistant orga: -3 commits to home-assistant.io 3 commits to core +3 commits to home-assistant.io +") +- [Michael Durrant (@michaeldurrant)](https://github.com/michaeldurrant "2 total commits to the Home Assistant orga: +2 commits to buildroot ") - [Michael Farrell (@micolous)](https://github.com/micolous "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -11689,27 +15801,40 @@ This page contains a list of people who have contributed in one way or another t - [Michael G\. Schwern (@schwern)](https://github.com/schwern "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Michael Gilbert (@Zyell)](https://github.com/Zyell "8 total commits to the Home Assistant orga: -8 commits to core +- [Michael Gorven (@mgorven)](https://github.com/mgorven "1 total commits to the Home Assistant orga: +1 commit to frontend ") - [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 "64 total commits to the Home Assistant orga: +58 commits to buildroot +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 core ") -- [Michael Irigoyen (@goyney)](https://github.com/goyney "6 total commits to the Home Assistant orga: -4 commits to frontend +- [Michael Irigoyen (@goyney)](https://github.com/goyney "14 total commits to the Home Assistant orga: +12 commits to frontend 1 commit to core 1 commit to home-assistant.io ") +- [Michael J\. Hammel (@mjhammel)](https://github.com/mjhammel "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [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 ") -- [Michael Kowalchuk (@mkowalchuk)](https://github.com/mkowalchuk "1 total commits to the Home Assistant orga: +- [Michael Klamminger (@m1ch)](https://github.com/m1ch "5 total commits to the Home Assistant orga: +3 commits to home-assistant.io +2 commits to core +") +- [Michael Kowalchuk (@mkowalchuk)](https://github.com/mkowalchuk "6 total commits to the Home Assistant orga: +5 commits to core 1 commit to open-zwave ") - [Michael Kutý (@michaelkuty)](https://github.com/michaelkuty "3 total commits to the Home Assistant orga: @@ -11729,9 +15854,12 @@ This page contains a list of people who have contributed in one way or another t - [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 core -2 commits to home-assistant.io +- [Michael Meli (@mjmeli)](https://github.com/mjmeli "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Michael Mior (@michaelmior)](https://github.com/michaelmior "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Michael Pereira (@MichaelPereira)](https://github.com/MichaelPereira "2 total commits to the Home Assistant orga: 2 commits to gu-who @@ -11754,6 +15882,12 @@ This page contains a list of people who have contributed in one way or another t - [Michael Requeny (@requenym)](https://github.com/requenym "17 total commits to the Home Assistant orga: 17 commits to home-assistant.io ") +- [Michael Rommel (@michaelrommel)](https://github.com/michaelrommel "6 total commits to the Home Assistant orga: +6 commits to buildroot +") +- [Michael Roth (@mrothNET)](https://github.com/mrothNET "24 total commits to the Home Assistant orga: +24 commits to buildroot +") - [Michael Scherer (@schmic)](https://github.com/schmic "5 total commits to the Home Assistant orga: 3 commits to frontend 2 commits to core @@ -11764,6 +15898,9 @@ This page contains a list of people who have contributed in one way or another t - [Michael Schulze (@michsch)](https://github.com/michsch "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Michael Senn (@Lavode)](https://github.com/Lavode "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Michael Shim (@shimeez)](https://github.com/shimeez "1 total commits to the Home Assistant orga: 1 commit to fabric-home-assistant ") @@ -11773,9 +15910,18 @@ This page contains a list of people who have contributed in one way or another t - [Michael Thingnes (@thimic)](https://github.com/thimic "6 total commits to the Home Assistant orga: 6 commits to core ") +- [Michael Trimarchi (@panicking)](https://github.com/panicking "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [Michael Varrieur (@mvarrieur)](https://github.com/mvarrieur "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Michael Vetter (@jubalh)](https://github.com/jubalh "20 total commits to the Home Assistant orga: +20 commits to buildroot +") +- [Michael Walle (@mwalle)](https://github.com/mwalle "26 total commits to the Home Assistant orga: +26 commits to buildroot +") - [Michael Wei (@no2chem)](https://github.com/no2chem "5 total commits to the Home Assistant orga: 3 commits to core 2 commits to home-assistant.io @@ -11786,6 +15932,9 @@ This page contains a list of people who have contributed in one way or another t - [Michael Writhe (@pironic)](https://github.com/pironic "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") +- [michael1413 (@michael1413)](https://github.com/michael1413 "16 total commits to the Home Assistant orga: +16 commits to buildroot +") - [MichaelSprague (@MichaelSprague)](https://github.com/MichaelSprague "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -11794,21 +15943,36 @@ This page contains a list of people who have contributed in one way or another t 1 commit to supervisor 1 commit to open-zwave ") +- [Michal Bartak (@michalk-k)](https://github.com/michalk-k "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Michal Knizek (@macrosak)](https://github.com/macrosak "1 total commits to the Home Assistant orga: +1 commit to core +") - [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 "93 total commits to the Home Assistant orga: -53 commits to core +- [Michaël Arnauts (@michaelarnauts)](https://github.com/michaelarnauts "94 total commits to the Home Assistant orga: +55 commits to core 33 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ël Bitard (@MichaelBitard)](https://github.com/MichaelBitard "1 total commits to the Home Assistant orga: +- [Michaël Bitard (@MichaelBitard)](https://github.com/MichaelBitard "2 total commits to the Home Assistant orga: 1 commit to developers.home-assistant +1 commit to brands +") +- [Michaël Burtin (@mburtin-netgem)](https://github.com/mburtin-netgem "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Michał Kalbarczyk (@fazibear)](https://github.com/fazibear "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Michał Leśniewski (@mlesniew)](https://github.com/mlesniew "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [Michał Mrozek (@Michsior14)](https://github.com/Michsior14 "32 total commits to the Home Assistant orga: 30 commits to core @@ -11816,39 +15980,64 @@ This page contains a list of people who have contributed in one way or another t 1 commit to home-assistant.io ") - [Michał Węgrzynek (@mwegrzynek)](https://github.com/mwegrzynek "4 total commits to the Home Assistant orga: -2 commits to home-assistant.io 2 commits to core +2 commits to home-assistant.io +") +- [Michał Łyszczek (@mlyszczek)](https://github.com/mlyszczek "15 total commits to the Home Assistant orga: +15 commits to buildroot +") +- [Michel Marti (@matoxp)](https://github.com/matoxp "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [Michel Settembrino (@Michel-Settembrino)](https://github.com/Michel-Settembrino "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Michel van de Wetering (@mvdwetering)](https://github.com/mvdwetering "2 total commits to the Home Assistant orga: +- [Michel Stempin (@Squonk42)](https://github.com/Squonk42 "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Michel van de Wetering (@mvdwetering)](https://github.com/mvdwetering "4 total commits to the Home Assistant orga: +2 commits to brands 1 commit to wheels-custom-integrations -1 commit to brands +1 commit to developers.home-assistant ") - [Michele Porelli (@porelli)](https://github.com/porelli "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Michelle Fuchs (@MichelleFuchs)](https://github.com/MichelleFuchs "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [Michi Lehenauer (@michiil)](https://github.com/michiil "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [Michiel Karnebeek (@mkarnebeek)](https://github.com/mkarnebeek "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [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 "10 total commits to the Home Assistant orga: -4 commits to core +- [Mick Vleeshouwer (@iMicknl)](https://github.com/iMicknl "113 total commits to the Home Assistant orga: +82 commits to core +14 commits to home-assistant.io +9 commits to brands +3 commits to frontend 2 commits to wheels-custom-integrations -1 commit to alerts.home-assistant.io -1 commit to frontend -1 commit to brands -1 commit to home-assistant.io +2 commits to alerts.home-assistant.io +1 commit to architecture ") - [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 Le Baillif (@demikl)](https://github.com/demikl "2 total commits to the Home Assistant orga: +1 commit to core +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 core ") +- [micronen (@micronen)](https://github.com/micronen "2 total commits to the Home Assistant orga: +1 commit to android +1 commit to companion.home-assistant +") - [micw (@micw)](https://github.com/micw "8 total commits to the Home Assistant orga: 5 commits to core 3 commits to home-assistant.io @@ -11859,34 +16048,49 @@ This page contains a list of people who have contributed in one way or another t - [migube (@migube)](https://github.com/migube "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Miguel Camba (@cibernox)](https://github.com/cibernox "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Miguel Gil Martínez (@miguelgilmartinez)](https://github.com/miguelgilmartinez "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Miguel Sánchez Villafán (@mig8447)](https://github.com/mig8447 "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 core ") +- [Mihail Morosan (@morosanmihail)](https://github.com/morosanmihail "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [mihailescu2m (@mihailescu2m)](https://github.com/mihailescu2m "1 total commits to the Home Assistant orga: +1 commit to brands +") - [mihalski (@mihalski)](https://github.com/mihalski "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") - [Mika Hiltunen (@saaste)](https://github.com/saaste "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Mikael Eliasson (@mikaelrobomagi)](https://github.com/mikaelrobomagi "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Mikael Svensson (@Nossnevs)](https://github.com/Nossnevs "4 total commits to the Home Assistant orga: -2 commits to home-assistant.io 2 commits to core +2 commits to home-assistant.io ") - [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 (@mike391)](https://github.com/mike391 "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io -") - [Mike (@mikedm139)](https://github.com/mikedm139 "3 total commits to the Home Assistant orga: 2 commits to core 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 ") @@ -11899,35 +16103,72 @@ This page contains a list of people who have contributed in one way or another t - [Mike Christianson (@MikeChristianson)](https://github.com/MikeChristianson "6 total commits to the Home Assistant orga: 6 commits to core ") -- [Mike Cousins (@mikecousins)](https://github.com/mikecousins "1 total commits to the Home Assistant orga: -1 commit to addons +- [Mike Crowe (@mikecrowe)](https://github.com/mikecrowe "2 total commits to the Home Assistant orga: +2 commits to buildroot ") - [Mike Dahlgren (@mikedahlgren)](https://github.com/mikedahlgren "1 total commits to the Home Assistant orga: 1 commit to docker-base ") +- [Mike Degatano (@mdegat01)](https://github.com/mdegat01 "94 total commits to the Home Assistant orga: +21 commits to core +20 commits to supervisor +14 commits to home-assistant.io +8 commits to addons +7 commits to plugin-dns +6 commits to developers.home-assistant +4 commits to actions +3 commits to builder +2 commits to version +2 commits to plugin-multicast +2 commits to devcontainer +1 commit to addons-example +1 commit to cli +1 commit to mobile-apps-fcm-push +1 commit to companion.home-assistant +1 commit to alerts.home-assistant.io +") - [Mike Edmunds (@medmunds)](https://github.com/medmunds "1 total commits to the Home Assistant orga: 1 commit to addons ") +- [Mike Eriksson (@swedishmike)](https://github.com/swedishmike "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Mike Frampton (@mikeframpo)](https://github.com/mikeframpo "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Mike Frysinger (@vapier)](https://github.com/vapier "437 total commits to the Home Assistant orga: +437 commits to buildroot +") +- [Mike Fugate (@mfugate1)](https://github.com/mfugate1 "16 total commits to the Home Assistant orga: +12 commits to core +4 commits to home-assistant.io +") - [Mike G Chambers (@mikegchambers)](https://github.com/mikegchambers "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Mike Harmony (@MikeHarmony)](https://github.com/MikeHarmony "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Mike Hennessy (@henworth)](https://github.com/henworth "1 total commits to the Home Assistant orga: 1 commit to core ") - [Mike Hershberger (@gentoosu)](https://github.com/gentoosu "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Mike Keesey (@mkeesey)](https://github.com/mkeesey "5 total commits to the Home Assistant orga: -3 commits to core +- [Mike Keesey (@mkeesey)](https://github.com/mkeesey "7 total commits to the Home Assistant orga: +5 commits to core 2 commits to home-assistant.io ") - [Mike Knudson (@mtgeekman)](https://github.com/mtgeekman "2 total commits to the Home Assistant orga: -1 commit to developers.home-assistant 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 Meessen (@netmikey)](https://github.com/netmikey "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 core 6 commits to home-assistant.io @@ -11945,12 +16186,9 @@ This page contains a list of people who have contributed in one way or another t - [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 "14 total commits to the Home Assistant orga: -9 commits to home-assistant.io -5 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 O'Driscoll (@mikeodr)](https://github.com/mikeodr "8 total commits to the Home Assistant orga: +5 commits to home-assistant.io +3 commits to core ") - [Mike Shaver (@shaver)](https://github.com/shaver "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -11961,6 +16199,9 @@ This page contains a list of people who have contributed in one way or another t - [Mike Thomas (@mt0321)](https://github.com/mt0321 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Mike Williams (@mikebwilliams)](https://github.com/mikebwilliams "29 total commits to the Home Assistant orga: +29 commits to buildroot +") - [mikebarris (@mikebarris)](https://github.com/mikebarris "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -11974,9 +16215,18 @@ This page contains a list of people who have contributed in one way or another t 1 commit to addons 1 commit to home-assistant.io ") +- [Miken Valabdas (@MValabdas)](https://github.com/MValabdas "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [MikeTsenatek (@MikeTsenatek)](https://github.com/MikeTsenatek "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Mikhail Boiko (@kurtis99)](https://github.com/kurtis99 "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Mikhail Diatchenko (@muxa)](https://github.com/muxa "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Mikhail Dronov (@dronov)](https://github.com/dronov "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") @@ -11992,12 +16242,23 @@ This page contains a list of people who have contributed in one way or another t - [Miklos Bagi (@miklosbagi)](https://github.com/miklosbagi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Miklos Szanyi (@swingerman)](https://github.com/swingerman "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Miklós (@kmikiy)](https://github.com/kmikiy "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Mikołaj Chwalisz (@mchwalisz)](https://github.com/mchwalisz "2 total commits to the Home Assistant orga: 1 commit to wheels-custom-integrations 1 commit to brands ") -- [Milan Meulemans (@milanmeu)](https://github.com/milanmeu "4 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [Milan Meulemans (@milanmeu)](https://github.com/milanmeu "139 total commits to the Home Assistant orga: +97 commits to core +26 commits to home-assistant.io +6 commits to brands +4 commits to developers.home-assistant +3 commits to frontend +3 commits to alerts.home-assistant.io ") - [Milan V (@milanvo)](https://github.com/milanvo "19 total commits to the Home Assistant orga: 10 commits to core @@ -12010,6 +16271,9 @@ This page contains a list of people who have contributed in one way or another t - [millallo (@millallo)](https://github.com/millallo "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [millerkyle72 (@InTheDaylight14)](https://github.com/InTheDaylight14 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [milothomas (@milothomas)](https://github.com/milothomas "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -12017,6 +16281,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Milton Soares Filho (@msoares1979)](https://github.com/msoares1979 "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Mimiix (@Mimiix)](https://github.com/Mimiix "2 total commits to the Home Assistant orga: 1 commit to addons 1 commit to home-assistant.io @@ -12027,10 +16294,6 @@ This page contains a list of people who have contributed in one way or another t - [mindakas (@mindakas)](https://github.com/mindakas "1 total commits to the Home Assistant orga: 1 commit to core ") -- [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 ") @@ -12038,13 +16301,20 @@ This page contains a list of people who have contributed in one way or another t 20 commits to core 7 commits to home-assistant.io ") -- [minida28 (@minida28)](https://github.com/minida28 "1 total commits to the Home Assistant orga: +- [minida28 (@miq28)](https://github.com/miq28 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Minims (@Minims)](https://github.com/Minims "7 total commits to the Home Assistant orga: 4 commits to core 3 commits to homebridge-homeassistant ") +- [Miquel Raynal (@miquelraynal)](https://github.com/miquelraynal "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Mirko Lenz (@mirkolenz)](https://github.com/mirkolenz "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [mirkster (@mirkster)](https://github.com/mirkster "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -12055,10 +16325,22 @@ This page contains a list of people who have contributed in one way or another t - [miroslawkrol (@miroslawkrol)](https://github.com/miroslawkrol "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Mirza Krak (@mirzak)](https://github.com/mirzak "18 total commits to the Home Assistant orga: +18 commits to buildroot +") - [Mischa Gruber (@GruberMischa)](https://github.com/GruberMischa "2 total commits to the Home Assistant orga: 1 commit to frontend 1 commit to core ") +- [Mischa Jonker (@mischajonker)](https://github.com/mischajonker "38 total commits to the Home Assistant orga: +38 commits to buildroot +") +- [Misha Komarovskiy (@zombah)](https://github.com/zombah "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [MishManners®™ (@mishmanners)](https://github.com/mishmanners "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [MissingDLL (@MissingDLL)](https://github.com/MissingDLL "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -12069,6 +16351,13 @@ This page contains a list of people who have contributed in one way or another t - [misterbenj34 (@misterbenj34)](https://github.com/misterbenj34 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [misza\-do (@misza-do)](https://github.com/misza-do "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Mitch (@mitch-dc)](https://github.com/mitch-dc "2 total commits to the Home Assistant orga: +1 commit to brands +1 commit to home-assistant.io +") - [Mitch Dempsey (@webdestroya)](https://github.com/webdestroya "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") @@ -12095,32 +16384,47 @@ This page contains a list of people who have contributed in one way or another t 8 commits to core 4 commits to home-assistant.io ") -- [miumida (@miumida)](https://github.com/miumida "4 total commits to the Home Assistant orga: -4 commits to brands +- [miumida (@miumida)](https://github.com/miumida "6 total commits to the Home Assistant orga: +6 commits to brands ") -- [MizterB (@MizterB)](https://github.com/MizterB "3 total commits to the Home Assistant orga: -3 commits to core +- [MizterB (@MizterB)](https://github.com/MizterB "4 total commits to the Home Assistant orga: +4 commits to core ") - [mje\-nz (@mje-nz)](https://github.com/mje-nz "2 total commits to the Home Assistant orga: 2 commits to core ") -- [MJJ (@mjj4791)](https://github.com/mjj4791 "25 total commits to the Home Assistant orga: +- [MJJ (@mjj4791)](https://github.com/mjj4791 "26 total commits to the Home Assistant orga: 16 commits to home-assistant.io -9 commits to core +10 commits to core +") +- [mjoshd (@mjoshd)](https://github.com/mjoshd "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Mk4242 (@Mk4242)](https://github.com/Mk4242 "2 total commits to the Home Assistant orga: +2 commits to core +") +- [mk\-maddin (@mk-maddin)](https://github.com/mk-maddin "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to brands ") - [mkfink (@mkfink)](https://github.com/mkfink "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to core ") +- [mkmer (@mkmer)](https://github.com/mkmer "1 total commits to the Home Assistant orga: +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 ") -- [mlemainque (@mlemainque)](https://github.com/mlemainque "4 total commits to the Home Assistant orga: -3 commits to core -1 commit to home-assistant.io +- [mlemainque (@mlemainque)](https://github.com/mlemainque "7 total commits to the Home Assistant orga: +4 commits to core +3 commits to home-assistant.io ") -- [mletenay (@mletenay)](https://github.com/mletenay "2 total commits to the Home Assistant orga: -2 commits to brands +- [mletenay (@mletenay)](https://github.com/mletenay "6 total commits to the Home Assistant orga: +3 commits to brands +2 commits to core +1 commit to home-assistant.io ") - [mmcnama4 (@mmcnama4)](https://github.com/mmcnama4 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -12142,6 +16446,9 @@ This page contains a list of people who have contributed in one way or another t - [mobcdi (@mobcdi)](https://github.com/mobcdi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [MoellerDi (@MoellerDi)](https://github.com/MoellerDi "2 total commits to the Home Assistant orga: +2 commits to core +") - [mogsub (@mogsub)](https://github.com/mogsub "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -12152,6 +16459,9 @@ This page contains a list of people who have contributed in one way or another t - [Mohammed Chotia (@mcchots)](https://github.com/mcchots "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Mohana Datta Yelugoti (@ymdatta)](https://github.com/ymdatta "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [mohmacht (@mohmacht)](https://github.com/mohmacht "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -12167,6 +16477,9 @@ This page contains a list of people who have contributed in one way or another t - [Momotica (@Momotica)](https://github.com/Momotica "5 total commits to the Home Assistant orga: 5 commits to open-zwave ") +- [Monkey • D • Code (@shaonianzhentan)](https://github.com/shaonianzhentan "2 total commits to the Home Assistant orga: +2 commits to brands +") - [monte\-monte (@monte-monte)](https://github.com/monte-monte "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -12180,6 +16493,10 @@ This page contains a list of people who have contributed in one way or another t - [Moos (@moos)](https://github.com/moos "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [moox\-it (@moox-it)](https://github.com/moox-it "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [Morgan Kesler (@keslerm)](https://github.com/keslerm "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to home-assistant.io @@ -12191,6 +16508,10 @@ This page contains a list of people who have contributed in one way or another t 5 commits to core 1 commit to addons ") +- [Moritz Glöckl (@moritzgloeckl)](https://github.com/moritzgloeckl "2 total commits to the Home Assistant orga: +1 commit to android +1 commit to companion.home-assistant +") - [Moritz Schmitz von Hülst (@boxcee)](https://github.com/boxcee "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -12209,12 +16530,6 @@ This page contains a list of people who have contributed in one way or another t - [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 "7 total commits to the Home Assistant orga: -3 commits to core -2 commits to home-assistant.io -1 commit to wheels-custom-integrations -1 commit to brands -") - [mortenmathiasen (@mortenmathiasen)](https://github.com/mortenmathiasen "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -12228,16 +16543,26 @@ This page contains a list of people who have contributed in one way or another t - [moskovskiy82 (@moskovskiy82)](https://github.com/moskovskiy82 "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") -- [mountainsandcode (@mountainsandcode)](https://github.com/mountainsandcode "10 total commits to the Home Assistant orga: -7 commits to home-assistant.io -3 commits to core +- [mountainsandcode (@mountainsandcode)](https://github.com/mountainsandcode "12 total commits to the Home Assistant orga: +8 commits to home-assistant.io +4 commits to core ") - [MPopti0n (@MPopti0n)](https://github.com/MPopti0n "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [mptei (@mptei)](https://github.com/mptei "3 total commits to the Home Assistant orga: +3 commits to core +") +- [Mr\-Groch (@Mr-Groch)](https://github.com/Mr-Groch "4 total commits to the Home Assistant orga: +4 commits to brands +") - [Mr\. Snyds (@mrsnyds)](https://github.com/mrsnyds "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [MrBartusek (@MrBartusek)](https://github.com/MrBartusek "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to brands +") - [MrDadoo (@MrDadoo)](https://github.com/MrDadoo "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -12258,12 +16583,18 @@ This page contains a list of people who have contributed in one way or another t - [MrRimmer (@MrRimmer)](https://github.com/MrRimmer "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Mrten (@Mrten)](https://github.com/Mrten "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [mrtncls (@mrtncls)](https://github.com/mrtncls "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [mruss (@mruss)](https://github.com/mruss "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [mrwhite31 (@mrwhite31)](https://github.com/mrwhite31 "2 total commits to the Home Assistant orga: +2 commits to core +") - [msvinth (@msvinth)](https://github.com/msvinth "5 total commits to the Home Assistant orga: 3 commits to core 2 commits to home-assistant.io @@ -12271,11 +16602,18 @@ This page contains a list of people who have contributed in one way or another t - [mtannertdev (@mtannertdev)](https://github.com/mtannertdev "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [mtarjoianu (@mtarjoianu)](https://github.com/mtarjoianu "1 total commits to the Home Assistant orga: +1 commit to brands +") - [MtK (@kochen)](https://github.com/kochen "1 total commits to the Home Assistant orga: 1 commit to core ") -- [mtl010957 (@mtl010957)](https://github.com/mtl010957 "3 total commits to the Home Assistant orga: -3 commits to core +- [mtl010957 (@mtl010957)](https://github.com/mtl010957 "5 total commits to the Home Assistant orga: +5 commits to core +") +- [muchtall (@muchtall)](https://github.com/muchtall "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io ") - [muerzi (@muerzi)](https://github.com/muerzi "4 total commits to the Home Assistant orga: 4 commits to open-zwave @@ -12291,15 +16629,36 @@ This page contains a list of people who have contributed in one way or another t - [Muhammed Saho (@muhasaho)](https://github.com/muhasaho "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Muhd Hakim (@Codestian)](https://github.com/Codestian "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [mukundv (@mukundv)](https://github.com/mukundv "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [mullerdavid (@mullerdavid)](https://github.com/mullerdavid "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [muppet3000 (@muppet3000)](https://github.com/muppet3000 "15 total commits to the Home Assistant orga: +14 commits to core +1 commit to home-assistant.io +") +- [Murat Demirten (@demirten)](https://github.com/demirten "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [mutantmonkey (@mutantmonkey)](https://github.com/mutantmonkey "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [MvdDonk (@MvdDonk)](https://github.com/MvdDonk "1 total commits to the Home Assistant orga: +1 commit to brands +") - [mvillarejo (@mvillarejo)](https://github.com/mvillarejo "1 total commits to the Home Assistant orga: 1 commit to core ") -- [mvn23 (@mvn23)](https://github.com/mvn23 "59 total commits to the Home Assistant orga: -40 commits to core -18 commits to home-assistant.io +- [mvn23 (@mvn23)](https://github.com/mvn23 "68 total commits to the Home Assistant orga: +46 commits to core +19 commits to home-assistant.io +1 commit to android +1 commit to companion.home-assistant 1 commit to brands ") - [mvnetbiz (@mvnetbiz)](https://github.com/mvnetbiz "1 total commits to the Home Assistant orga: @@ -12309,11 +16668,17 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to core ") +- [myhomeiot (@myhomeiot)](https://github.com/myhomeiot "2 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core +") - [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 "1 total commits to the Home Assistant orga: -1 commit to core +- [Myles Eftos (@madpilot)](https://github.com/madpilot "8 total commits to the Home Assistant orga: +4 commits to core +2 commits to brands +2 commits to home-assistant.io ") - [Myles K (@myleskeeffe)](https://github.com/myleskeeffe "1 total commits to the Home Assistant orga: 1 commit to frontend @@ -12330,16 +16695,13 @@ This page contains a list of people who have contributed in one way or another t - [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 ") -- [N1c093 (@N1c093)](https://github.com/N1c093 "15 total commits to the Home Assistant orga: -7 commits to home-assistant.io -6 commits to brands -2 commits to core +- [N1c093 (@N1c093)](https://github.com/N1c093 "21 total commits to the Home Assistant orga: +10 commits to home-assistant.io +8 commits to brands +3 commits to core ") - [N1nja98 (@N1nja98)](https://github.com/N1nja98 "1 total commits to the Home Assistant orga: 1 commit to core @@ -12348,17 +16710,14 @@ This page contains a list of people who have contributed in one way or another t 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 +- [NachtaktiverHalbaffe (@NachtaktiverHalbaffe)](https://github.com/NachtaktiverHalbaffe "1 total commits to the Home Assistant orga: +1 commit to frontend ") - [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 "5 total commits to the Home Assistant orga: -2 commits to brands -1 commit to wheels-custom-integrations -1 commit to frontend -1 commit to core +- [NanoSector (@NanoSector)](https://github.com/NanoSector "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Naomi C\. Bush (@naomicbush)](https://github.com/naomicbush "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source @@ -12373,14 +16732,17 @@ This page contains a list of people who have contributed in one way or another t 1 commit to alerts.home-assistant.io 1 commit to home-assistant.io ") -- [Nash Kaminski (@nkaminski)](https://github.com/nkaminski "6 total commits to the Home Assistant orga: -3 commits to core +- [Nash Kaminski (@nkaminski)](https://github.com/nkaminski "7 total commits to the Home Assistant orga: +4 commits to core 2 commits to home-assistant.io 1 commit to frontend ") - [nashant (@nashant)](https://github.com/nashant "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Nasser Afshin (@nasafix-nasser)](https://github.com/nasafix-nasser "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Nate (@BillyNate)](https://github.com/BillyNate "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to home-assistant.io @@ -12388,8 +16750,8 @@ This page contains a list of people who have contributed in one way or another t - [Nate (@nateww)](https://github.com/nateww "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Nate Clark (@heythisisnate)](https://github.com/heythisisnate "26 total commits to the Home Assistant orga: -18 commits to core +- [Nate Clark (@heythisisnate)](https://github.com/heythisisnate "28 total commits to the Home Assistant orga: +20 commits to core 8 commits to home-assistant.io ") - [Nate Harris (@nwithan8)](https://github.com/nwithan8 "1 total commits to the Home Assistant orga: @@ -12398,8 +16760,8 @@ This page contains a list of people who have contributed in one way or another t - [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 "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Nate Robinson (@NateRobinsonS)](https://github.com/NateRobinsonS "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io ") - [natemason (@natemason)](https://github.com/natemason "1 total commits to the Home Assistant orga: 1 commit to core @@ -12414,6 +16776,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to addons 1 commit to home-assistant.io ") +- [Nathan Ford (@wpt-nathan)](https://github.com/wpt-nathan "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [Nathan Freitas (@n8fr8)](https://github.com/n8fr8 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -12429,19 +16794,23 @@ This page contains a list of people who have contributed in one way or another t - [Nathan Long (@nathanl)](https://github.com/nathanl "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Nathan Orick (@cnorick)](https://github.com/cnorick "3 total commits to the Home Assistant orga: -3 commits to frontend +- [Nathan Lynch (@nathanlynch)](https://github.com/nathanlynch "15 total commits to the Home Assistant orga: +15 commits to buildroot ") -- [Nathan Spencer (@natekspencer)](https://github.com/natekspencer "8 total commits to the Home Assistant orga: -5 commits to brands +- [Nathan Orick (@cnorick)](https://github.com/cnorick "6 total commits to the Home Assistant orga: +6 commits to frontend +") +- [Nathan Spencer (@natekspencer)](https://github.com/natekspencer "42 total commits to the Home Assistant orga: +26 commits to core +8 commits to home-assistant.io +6 commits to brands 2 commits to wheels-custom-integrations -1 commit to core ") -- [Nathan Tilley (@ntilley905)](https://github.com/ntilley905 "9 total commits to the Home Assistant orga: -5 commits to home-assistant.io -2 commits to core +- [Nathan Tilley (@ntilley905)](https://github.com/ntilley905 "18 total commits to the Home Assistant orga: +8 commits to home-assistant.io +7 commits to core +2 commits to brands 1 commit to alerts.home-assistant.io -1 commit to brands ") - [Nathan W (@itsamenathan)](https://github.com/itsamenathan "3 total commits to the Home Assistant orga: 2 commits to addons @@ -12450,10 +16819,19 @@ This page contains a list of people who have contributed in one way or another t - [nau\-mll (@nau-tic)](https://github.com/nau-tic "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Nayna Jain (@naynajain)](https://github.com/naynajain "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [ndilieto (@ndilieto)](https://github.com/ndilieto "11 total commits to the Home Assistant orga: +11 commits to buildroot +") +- [Neil Armstrong (@superna9999)](https://github.com/superna9999 "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Neil Crosby (@NeilCrosby)](https://github.com/NeilCrosby "6 total commits to the Home Assistant orga: 2 commits to developers.home-assistant -2 commits to core 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 @@ -12472,12 +16850,19 @@ This page contains a list of people who have contributed in one way or another t - [Nelson Chen (@nelsonjchen)](https://github.com/nelsonjchen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Nelson Osacky (@runningcode)](https://github.com/runningcode "6 total commits to the Home Assistant orga: -6 commits to android +- [Nelson Osacky (@runningcode)](https://github.com/runningcode "10 total commits to the Home Assistant orga: +10 commits to android ") - [Nemanja Stefanovic (@nemik)](https://github.com/nemik "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Nemec (@nemec)](https://github.com/nemec "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") +- [Nenad Bogojevic (@nbogojevic)](https://github.com/nbogojevic "6 total commits to the Home Assistant orga: +5 commits to core +1 commit to brands +") - [neonbunny (@neonbunny)](https://github.com/neonbunny "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") @@ -12493,6 +16878,10 @@ This page contains a list of people who have contributed in one way or another t - [Ness (@Xx-Ness-xX)](https://github.com/Xx-Ness-xX "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") +- [Netzwerkfehler (@Netzwerkfehler)](https://github.com/Netzwerkfehler "2 total commits to the Home Assistant orga: +1 commit to frontend +1 commit to home-assistant.io +") - [newbee112 (@newbee112)](https://github.com/newbee112 "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -12505,13 +16894,23 @@ This page contains a list of people who have contributed in one way or another t - [Niall Donegan (@ndonegan)](https://github.com/ndonegan "2 total commits to the Home Assistant orga: 2 commits to core ") -- [Niccolo Zapponi (@nzapponi)](https://github.com/nzapponi "12 total commits to the Home Assistant orga: +- [Nic Eggert (@neggert)](https://github.com/neggert "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Nic Jansma (@nicjansma)](https://github.com/nicjansma "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Niccolo Zapponi (@nzapponi)](https://github.com/nzapponi "18 total commits to the Home Assistant orga: +12 commits to core 6 commits to home-assistant.io -6 commits to core ") - [Niccolò Maggioni (@nmaggioni)](https://github.com/nmaggioni "4 total commits to the Home Assistant orga: -2 commits to core 2 commits to home-assistant.io +2 commits to core +") +- [niceboygithub (@niceboygithub)](https://github.com/niceboygithub "1 total commits to the Home Assistant orga: +1 commit to brands ") - [Nicholas Amadori (@namadori)](https://github.com/namadori "7 total commits to the Home Assistant orga: 5 commits to home-assistant.io @@ -12521,20 +16920,28 @@ This page contains a list of people who have contributed in one way or another t - [Nicholas Griffin (@nicholasgriffintn)](https://github.com/nicholasgriffintn "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") -- [Nicholas Hawkes (@hawkesnc)](https://github.com/hawkesnc "1 total commits to the Home Assistant orga: +- [Nicholas Hawkes (@hawkesn)](https://github.com/hawkesn "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Nicholas Sielicki (@sielicki)](https://github.com/sielicki "4 total commits to the Home Assistant orga: -2 commits to core +- [Nicholas Sielicki (@sielicki)](https://github.com/sielicki "8 total commits to the Home Assistant orga: +4 commits to buildroot 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 ") +- [Nick (@nkm8)](https://github.com/nkm8 "1 total commits to the Home Assistant orga: +1 commit to addons +") - [Nick (@GreenTentacle)](https://github.com/GreenTentacle "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [Nick Adams (@Nick-Adams-AU)](https://github.com/Nick-Adams-AU "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") - [Nick Chamberlin (@NickChamberlin)](https://github.com/NickChamberlin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -12551,6 +16958,12 @@ This page contains a list of people who have contributed in one way or another t 8 commits to core 5 commits to home-assistant.io ") +- [Nick Iacullo (@DuckyCrayfish)](https://github.com/DuckyCrayfish "1 total commits to the Home Assistant orga: +1 commit to frontend +") +- [Nick Leverton (@nickleverton)](https://github.com/nickleverton "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [Nick Oliver (@PixnBits)](https://github.com/PixnBits "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -12558,8 +16971,8 @@ This page contains a list of people who have contributed in one way or another t 1 commit to companion.home-assistant ") - [Nick Sabinske (@quadportnick)](https://github.com/quadportnick "4 total commits to the Home Assistant orga: -2 commits to core 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 core @@ -12569,29 +16982,42 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io 2 commits to core ") -- [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 Whyte (@nickw444)](https://github.com/nickw444 "30 total commits to the Home Assistant orga: +17 commits to core +11 commits to home-assistant.io +2 commits to brands ") - [Nick Zelei (@nickzelei)](https://github.com/nickzelei "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [nick2525 (@nick2525)](https://github.com/nick2525 "3 total commits to the Home Assistant orga: +2 commits to android +1 commit to brands +") - [Nick4\-1 (@Nick4-1)](https://github.com/Nick4-1 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [nick\-seward (@nick-seward)](https://github.com/nick-seward "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 ") +- [NicklasMD (@NicklasMD)](https://github.com/NicklasMD "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 core -2 commits to home-assistant.io +- [Nicko van Someren (@nickovs)](https://github.com/nickovs "12 total commits to the Home Assistant orga: +8 commits to core +4 commits to home-assistant.io ") -- [nickrout (@nickrout)](https://github.com/nickrout "8 total commits to the Home Assistant orga: -8 commits to home-assistant.io +- [Nickolaos C (@NickolaosC)](https://github.com/NickolaosC "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [nickrout (@nickrout)](https://github.com/nickrout "9 total commits to the Home Assistant orga: +9 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 @@ -12599,35 +17025,86 @@ This page contains a list of people who have contributed in one way or another t - [Nico (@NicoHood)](https://github.com/NicoHood "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Nico Hirsch (@noxhirsch)](https://github.com/noxhirsch "22 total commits to the Home Assistant orga: +11 commits to home-assistant.io +6 commits to brands +3 commits to frontend +2 commits to core +") +- [Nico Müller (@niecore)](https://github.com/niecore "2 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +1 commit to core +") +- [Nico Vromans (@nico-vromans)](https://github.com/nico-vromans "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Nico0084 (@Nico0084)](https://github.com/Nico0084 "5 total commits to the Home Assistant orga: 5 commits to python-openzwave ") +- [nicogramm (@nicogramm)](https://github.com/nicogramm "2 total commits to the Home Assistant orga: +2 commits to developers.home-assistant +") - [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 core ") +- [nicolalandro (@nicolalandro)](https://github.com/nicolalandro "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Nicolas Bougues (@nbougues)](https://github.com/nbougues "1 total commits to the Home Assistant orga: 1 commit to core ") - [Nicolas Bourasseau (@Imbuzi)](https://github.com/Imbuzi "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Nicolas Braem (@nbraem)](https://github.com/nbraem "4 total commits to the Home Assistant orga: +3 commits to core +1 commit to home-assistant.io +") +- [Nicolas Dechesne (@ndechesne)](https://github.com/ndechesne "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Nicolas Dichtel (@NicolasDichtel)](https://github.com/NicolasDichtel "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Nicolas Ferre (@noglitch)](https://github.com/noglitch "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Nicolas Graziano (@ngraziano)](https://github.com/ngraziano "4 total commits to the Home Assistant orga: 3 commits to core 1 commit to open-zwave ") +- [Nicolas Lhomme (@nlhomme)](https://github.com/nlhomme "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Nicolas Martignoni (@martignoni)](https://github.com/martignoni "1 total commits to the Home Assistant orga: 1 commit to pi-gen ") +- [Nicolas Mowen (@NickM-27)](https://github.com/NickM-27 "11 total commits to the Home Assistant orga: +4 commits to android +2 commits to mobile-apps-fcm-push +2 commits to companion.home-assistant +2 commits to core +1 commit to brands +") - [Nicolas Quiénot (@niQo)](https://github.com/niQo "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Nicolas Serafini (@nicolas-s)](https://github.com/nicolas-s "22 total commits to the Home Assistant orga: +22 commits to buildroot +") +- [Nicolas Toromanoff (@toromanoSTM)](https://github.com/toromanoSTM "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Nicole Zeckner (@PurelyNicole)](https://github.com/PurelyNicole "6 total commits to the Home Assistant orga: 6 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 ") +- [nicootje55 (@nicootje55)](https://github.com/nicootje55 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [nicop4 (@nicop4)](https://github.com/nicop4 "1 total commits to the Home Assistant orga: 1 commit to frontend ") @@ -12638,6 +17115,12 @@ This page contains a list of people who have contributed in one way or another t - [nicxvan (@nicxvan)](https://github.com/nicxvan "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Niek Beernink (@nbeernink)](https://github.com/nbeernink "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Niels AD (@nielsAD)](https://github.com/nielsAD "1 total commits to the Home Assistant orga: +1 commit to core +") - [Niels Faber (@nielsfaber)](https://github.com/nielsfaber "1 total commits to the Home Assistant orga: 1 commit to brands ") @@ -12648,22 +17131,34 @@ This page contains a list of people who have contributed in one way or another t 32 commits to brands 17 commits to home-assistant.io ") -- [Niels Mündler (@nielstron)](https://github.com/nielstron "36 total commits to the Home Assistant orga: -25 commits to core -8 commits to home-assistant.io -3 commits to netdisco +- [Niels Mündler (@nielstron)](https://github.com/nielstron "46 total commits to the Home Assistant orga: +34 commits to core +11 commits to home-assistant.io +1 commit to developers.home-assistant +") +- [Niels Skou Olsen (@nsolsen)](https://github.com/nsolsen "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [nierob (@nierob)](https://github.com/nierob "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Nigel Kukard (@nkukard)](https://github.com/nkukard "80 total commits to the Home Assistant orga: +80 commits to buildroot +") - [Nigel Rook (@NigelRook)](https://github.com/NigelRook "4 total commits to the Home Assistant orga: 3 commits to core 1 commit to frontend ") +- [Nihaal Sangha (@nihaals)](https://github.com/nihaals "1 total commits to the Home Assistant orga: +1 commit to core +") - [Nik Klever (@nklever)](https://github.com/nklever "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Nik Rolls (@nikrolls)](https://github.com/nikrolls "2 total commits to the Home Assistant orga: +- [Nik Nyby (@nikolas)](https://github.com/nikolas "1 total commits to the Home Assistant orga: +1 commit to feedparser +") +- [Nik Rolls (@nicole-ashley)](https://github.com/nicole-ashley "2 total commits to the Home Assistant orga: 1 commit to wheels-custom-integrations 1 commit to brands ") @@ -12676,10 +17171,17 @@ This page contains a list of people who have contributed in one way or another t - [Nikita Chernozipunnikov (@thatguynikita)](https://github.com/thatguynikita "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [nikito7 (@nikito7)](https://github.com/nikito7 "1 total commits to the Home Assistant orga: +1 commit to core +") - [Niklas (@niklaswa)](https://github.com/niklaswa "6 total commits to the Home Assistant orga: 5 commits to home-assistant.io 1 commit to core ") +- [Niklas (@ngdio)](https://github.com/ngdio "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Niklas Grebe (@ThYpHo0n)](https://github.com/ThYpHo0n "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -12690,6 +17192,9 @@ This page contains a list of people who have contributed in one way or another t 3 commits to core 1 commit to home-assistant.io ") +- [Niklas Plakolb (@plakna)](https://github.com/plakna "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Niklas V (@Nicxe)](https://github.com/Nicxe "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -12697,26 +17202,35 @@ This page contains a list of people who have contributed in one way or another t 9 commits to home-assistant.io 1 commit to core ") +- [Niklas Åström (@niklasastrom)](https://github.com/niklasastrom "1 total commits to the Home Assistant orga: +1 commit to core +") - [Nikola (@0nikola1)](https://github.com/0nikola1 "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Nikolai (@NikoM87)](https://github.com/NikoM87 "6 total commits to the Home Assistant orga: +- [Nikolai (@NikoM87)](https://github.com/NikoM87 "7 total commits to the Home Assistant orga: 4 commits to home-assistant.io -2 commits to core +3 commits to core ") -- [nikolas (@nikolas)](https://github.com/nikolas "1 total commits to the Home Assistant orga: -1 commit to feedparser +- [Nikolai Rahimi (@nikolairahimi)](https://github.com/nikolairahimi "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Nikolaos Stamatopoulos (@nickstamat)](https://github.com/nickstamat "1 total commits to the Home Assistant orga: +1 commit to core ") - [Nikolas Beutler (@biacz)](https://github.com/biacz "4 total commits to the Home Assistant orga: -2 commits to core 2 commits to home-assistant.io +2 commits to core +") +- [Nikolay Dimitrov (@picmaster)](https://github.com/picmaster "2 total commits to the Home Assistant orga: +2 commits to buildroot ") - [Nikolay Kasyanov (@nikolaykasyanov)](https://github.com/nikolaykasyanov "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") -- [Nikolay Vasilchuk (@Anonym-tsk)](https://github.com/Anonym-tsk "28 total commits to the Home Assistant orga: -20 commits to core +- [Nikolay Vasilchuk (@Anonym-tsk)](https://github.com/Anonym-tsk "30 total commits to the Home Assistant orga: +22 commits to core 5 commits to home-assistant.io 3 commits to frontend ") @@ -12746,6 +17260,12 @@ This page contains a list of people who have contributed in one way or another t - [Nima A (@Nimzr)](https://github.com/Nimzr "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Nimai Mahajan (@nimaim)](https://github.com/nimaim "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Niranjan Reddy (@kniranjanreddy)](https://github.com/kniranjanreddy "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [Nishchith Shetty (@inishchith)](https://github.com/inishchith "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -12753,9 +17273,18 @@ This page contains a list of people who have contributed in one way or another t - [Nito Buendia (@nitobuendia)](https://github.com/nitobuendia "2 total commits to the Home Assistant orga: 2 commits to brands ") +- [Nityananda Padhan (@ntneitin)](https://github.com/ntneitin "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [nivnoach (@nivnoach)](https://github.com/nivnoach "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Nix (@nickalcock)](https://github.com/nickalcock "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [nklebedev (@nklebedev)](https://github.com/nklebedev "1 total commits to the Home Assistant orga: +1 commit to core +") - [nkrauss (@nkrauss)](https://github.com/nkrauss "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -12766,6 +17295,9 @@ This page contains a list of people who have contributed in one way or another t - [NMA (@nma83)](https://github.com/nma83 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [nmenegale (@nicolas-owi)](https://github.com/nicolas-owi "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [Noam Okman (@noamokman)](https://github.com/noamokman "1 total commits to the Home Assistant orga: 1 commit to addons ") @@ -12783,14 +17315,18 @@ This page contains a list of people who have contributed in one way or another t 96 commits to core 29 commits to home-assistant.io ") +- [nolange (@nolange)](https://github.com/nolange "60 total commits to the Home Assistant orga: +60 commits to buildroot +") - [nollbit (@nollbit)](https://github.com/nollbit "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [noodlemctwoodle (@noodlemctwoodle)](https://github.com/noodlemctwoodle "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [nordeep (@nordeep)](https://github.com/nordeep "1 total commits to the Home Assistant orga: +- [nordeep (@nordeep)](https://github.com/nordeep "2 total commits to the Home Assistant orga: 1 commit to core +1 commit to home-assistant.io ") - [nordlead2005 (@nordlead2005)](https://github.com/nordlead2005 "7 total commits to the Home Assistant orga: 4 commits to home-assistant.io @@ -12802,14 +17338,17 @@ This page contains a list of people who have contributed in one way or another t - [normakm (@normakm)](https://github.com/normakm "1 total commits to the Home Assistant orga: 1 commit to core ") -- [north3221 (@north3221)](https://github.com/north3221 "2 total commits to the Home Assistant orga: -1 commit to core -1 commit to home-assistant.io +- [north3221 (@north3221)](https://github.com/north3221 "6 total commits to the Home Assistant orga: +4 commits to core +2 commits to home-assistant.io ") - [NotoriousBDG (@notoriousbdg)](https://github.com/notoriousbdg "7 total commits to the Home Assistant orga: 3 commits to addons -2 commits to core 2 commits to home-assistant.io +2 commits to core +") +- [NotSomeBot (@mariusdkm)](https://github.com/mariusdkm "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [NovapaX (@NovapaX)](https://github.com/NovapaX "60 total commits to the Home Assistant orga: 50 commits to frontend @@ -12817,14 +17356,15 @@ This page contains a list of people who have contributed in one way or another t 1 commit to assets 1 commit to home-assistant.io ") -- [noxhirsch (@noxhirsch)](https://github.com/noxhirsch "14 total commits to the Home Assistant orga: -11 commits to home-assistant.io -2 commits to frontend -1 commit to core +- [Noé Rubinstein (@Phlogistique)](https://github.com/Phlogistique "7 total commits to the Home Assistant orga: +7 commits to buildroot ") - [nragon (@nragon)](https://github.com/nragon "1 total commits to the Home Assistant orga: 1 commit to core ") +- [nroach44 (@nroach44)](https://github.com/nroach44 "17 total commits to the Home Assistant orga: +17 commits to buildroot +") - [nsimb (@nsimb)](https://github.com/nsimb "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -12837,6 +17377,15 @@ This page contains a list of people who have contributed in one way or another t - [nullpixel (@nullpixel)](https://github.com/nullpixel "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [nullstalgia (@nullstalgia)](https://github.com/nullstalgia "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Numa Perez (@nprez83)](https://github.com/nprez83 "3 total commits to the Home Assistant orga: +3 commits to core +") +- [Nuno Nunes (@nunonunes)](https://github.com/nunonunes "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Nuno Sousa (@nunofgs)](https://github.com/nunofgs "7 total commits to the Home Assistant orga: 4 commits to core 2 commits to home-assistant.io @@ -12851,8 +17400,8 @@ This page contains a list of people who have contributed in one way or another t - [oa\- (@oa-)](https://github.com/oa- "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [obelix05 (@obelix05)](https://github.com/obelix05 "1 total commits to the Home Assistant orga: -1 commit to core +- [obelix05 (@obelix05)](https://github.com/obelix05 "2 total commits to the Home Assistant orga: +2 commits to core ") - [obgm (@obgm)](https://github.com/obgm "480 total commits to the Home Assistant orga: 480 commits to libcoap @@ -12861,28 +17410,44 @@ This page contains a list of people who have contributed in one way or another t 49 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: +- [Oderik (@Oderik)](https://github.com/Oderik "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Odin Hørthe\-Omdal Urdland (@odinho)](https://github.com/odinho "1 total commits to the Home Assistant orga: 1 commit to frontend ") - [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 ") +- [odyslam\.eth (@odyslam)](https://github.com/odyslam "1 total commits to the Home Assistant orga: +1 commit to .github +") +- [Ofek (@ofekp)](https://github.com/ofekp "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Ofek Ashery (@ofekashery)](https://github.com/ofekashery "1 total commits to the Home Assistant orga: 1 commit to frontend ") +- [Ofer Heifetz (@oferhz)](https://github.com/oferhz "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [officiallybob (@officiallybob)](https://github.com/officiallybob "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ofir Petrushka (@hatkyinc2)](https://github.com/hatkyinc2 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [OGINO Masanori (@omasanori)](https://github.com/omasanori "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ohad Benita (@ohadbenita)](https://github.com/ohadbenita "5 total commits to the Home Assistant orga: +4 commits to home-assistant.io +1 commit to companion.home-assistant +") - [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 -") - [ohm (@nohm)](https://github.com/nohm "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -12899,6 +17464,9 @@ This page contains a list of people who have contributed in one way or another t - [Olaf Conradi (@oohlaf)](https://github.com/oohlaf "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Olaf Rempel (@orempel)](https://github.com/orempel "6 total commits to the Home Assistant orga: +6 commits to buildroot +") - [Olaf van Zandwijk (@olafz)](https://github.com/olafz "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -12916,16 +17484,27 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Oleg Kitain (@BanHammor)](https://github.com/BanHammor "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Oleg Kurapov (@2sheds)](https://github.com/2sheds "2 total commits to the Home Assistant orga: 2 commits to core ") -- [Oleksandr Kapshuk (@skynetua)](https://github.com/skynetua "8 total commits to the Home Assistant orga: -8 commits to android +- [Oleh (@chomupashchuk)](https://github.com/chomupashchuk "2 total commits to the Home Assistant orga: +2 commits to brands +") +- [Oleksandr Kapshuk (@skynetua)](https://github.com/skynetua "14 total commits to the Home Assistant orga: +10 commits to android +2 commits to companion.home-assistant +2 commits to core ") - [Oleksandr Omelchuk (@sashao)](https://github.com/sashao "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [Oleksandr Zhadan (@ozhlab)](https://github.com/ozhlab "6 total commits to the Home Assistant orga: +6 commits to buildroot +") - [OleksandrBerchenko (@OleksandrBerchenko)](https://github.com/OleksandrBerchenko "7 total commits to the Home Assistant orga: 6 commits to core 1 commit to home-assistant.io @@ -12952,10 +17531,8 @@ This page contains a list of people who have contributed in one way or another t - [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 "45 total commits to the Home Assistant orga: -35 commits to core -9 commits to home-assistant.io -1 commit to netdisco +- [Oliver (@ol-iver)](https://github.com/ol-iver "3 total commits to the Home Assistant orga: +3 commits to core ") - [Oliver Acevedo (@Oliver84)](https://github.com/Oliver84 "1 total commits to the Home Assistant orga: 1 commit to core @@ -12966,6 +17543,14 @@ This page contains a list of people who have contributed in one way or another t - [Oliver Großkloß (@Progaros)](https://github.com/Progaros "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Oliver Gruß (@CubieMedia)](https://github.com/CubieMedia "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Oliver Ou (@zlinoliver)](https://github.com/zlinoliver "11 total commits to the Home Assistant orga: +6 commits to core +4 commits to home-assistant.io +1 commit to brands +") - [Oliver van Porten (@mcdeck)](https://github.com/mcdeck "10 total commits to the Home Assistant orga: 10 commits to core ") @@ -12983,8 +17568,8 @@ This page contains a list of people who have contributed in one way or another t 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 +2 commits to core ") - [Olivier Cloirec (@clook)](https://github.com/clook "1 total commits to the Home Assistant orga: 1 commit to core @@ -12995,15 +17580,33 @@ This page contains a list of people who have contributed in one way or another t - [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 "11 total commits to the Home Assistant orga: -6 commits to home-assistant.io -4 commits to core -1 commit to frontend +- [Olivier Matz (@olivier-matz-6wind)](https://github.com/olivier-matz-6wind "1 total commits to the Home Assistant orga: +1 commit to buildroot ") -- [ollo69 (@ollo69)](https://github.com/ollo69 "14 total commits to the Home Assistant orga: -10 commits to core +- [Olivier Schonken (@olivierschonken)](https://github.com/olivierschonken "42 total commits to the Home Assistant orga: +42 commits to buildroot +") +- [Olivier Singla (@osingla)](https://github.com/osingla "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Olivér Falvai (@ofalvai)](https://github.com/ofalvai "16 total commits to the Home Assistant orga: +7 commits to home-assistant.io +5 commits to core +2 commits to wheels-custom-integrations +1 commit to frontend +1 commit to brands +") +- [Olli2807 (@Olli2807)](https://github.com/Olli2807 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [ollo69 (@ollo69)](https://github.com/ollo69 "78 total commits to the Home Assistant orga: +69 commits to core +7 commits to home-assistant.io 2 commits to brands -2 commits to home-assistant.io +") +- [Olof Hellqvist (@hellqvio86)](https://github.com/hellqvio86 "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands ") - [Omar Ali (@omarali)](https://github.com/omarali "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -13025,8 +17628,8 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to brands ") -- [On Freund (@OnFreund)](https://github.com/OnFreund "105 total commits to the Home Assistant orga: -68 commits to core +- [On Freund (@OnFreund)](https://github.com/OnFreund "107 total commits to the Home Assistant orga: +70 commits to core 28 commits to home-assistant.io 4 commits to frontend 3 commits to brands @@ -13035,10 +17638,13 @@ This page contains a list of people who have contributed in one way or another t - [onagurna (@onagurna)](https://github.com/onagurna "1 total commits to the Home Assistant orga: 1 commit to frontend ") -- [Oncleben31 (@oncleben31)](https://github.com/oncleben31 "33 total commits to the Home Assistant orga: -17 commits to core -15 commits to home-assistant.io -1 commit to developers.home-assistant +- [Oncleben31 (@oncleben31)](https://github.com/oncleben31 "37 total commits to the Home Assistant orga: +19 commits to core +16 commits to home-assistant.io +2 commits to developers.home-assistant +") +- [ondras12345 (@ondras12345)](https://github.com/ondras12345 "2 total commits to the Home Assistant orga: +2 commits to core ") - [ondrejbaranek (@ondrejbaranek)](https://github.com/ondrejbaranek "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -13047,6 +17653,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to home-assistant.io ") +- [onkytonk (@onkytonk)](https://github.com/onkytonk "1 total commits to the Home Assistant orga: +1 commit to addons +") - [onlymejosh (@onlymejosh)](https://github.com/onlymejosh "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -13054,6 +17663,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Onur\-d (@Onur-d)](https://github.com/Onur-d "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [Open Home Automation (@open-homeautomation)](https://github.com/open-homeautomation "41 total commits to the Home Assistant orga: 29 commits to core 12 commits to home-assistant.io @@ -13068,9 +17680,16 @@ This page contains a list of people who have contributed in one way or another t - [orb9 (@orb9)](https://github.com/orb9 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Orce MARINKOVSKI (@orcema)](https://github.com/orcema "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Oren (@baget)](https://github.com/baget "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Ormund Williams (@ormundw)](https://github.com/ormundw "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [orrpan (@orrpan)](https://github.com/orrpan "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -13081,13 +17700,19 @@ This page contains a list of people who have contributed in one way or another t - [Oscar (@oscfor)](https://github.com/oscfor "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Oscar Calvo (@ocalvo)](https://github.com/ocalvo "34 total commits to the Home Assistant orga: -23 commits to home-assistant.io -7 commits to core +- [Oscar Calvo (@ocalvo)](https://github.com/ocalvo "44 total commits to the Home Assistant orga: +25 commits to home-assistant.io +15 commits to core 2 commits to addons 1 commit to operating-system 1 commit to brands ") +- [Oscar Carlsson (@oscarcarlsson)](https://github.com/oscarcarlsson "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Oscar Hellström (@oscarh)](https://github.com/oscarh "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Oscar Stenqvist (@Tickaren)](https://github.com/Tickaren "1 total commits to the Home Assistant orga: 1 commit to android ") @@ -13095,12 +17720,16 @@ This page contains a list of people who have contributed in one way or another t 3 commits to core 3 commits to home-assistant.io ") -- [OscarHanzely (@OscarHanzely)](https://github.com/OscarHanzely "1 total commits to the Home Assistant orga: +- [OscarHanzely (@OscarHanzely)](https://github.com/OscarHanzely "2 total commits to the Home Assistant orga: +1 commit to companion.home-assistant 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 ") +- [osk2 (@osk2)](https://github.com/osk2 "2 total commits to the Home Assistant orga: +2 commits to brands +") - [Othou (@Othou)](https://github.com/Othou "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -13112,13 +17741,12 @@ This page contains a list of people who have contributed in one way or another t 2 commits to frontend 1 commit to core ") -- [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 +- [Otto Winter (@OttoWinter)](https://github.com/OttoWinter "221 total commits to the Home Assistant orga: +181 commits to core +29 commits to home-assistant.io 5 commits to frontend 3 commits to hass-release 2 commits to developers.home-assistant -1 commit to netdisco 1 commit to people ") - [Otto\-G (@Otto-G)](https://github.com/Otto-G "1 total commits to the Home Assistant orga: @@ -13133,15 +17761,24 @@ This page contains a list of people who have contributed in one way or another t - [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 +- [Owen Walpole (@owenthewizard)](https://github.com/owenthewizard "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Oxan van Leeuwen (@oxan)](https://github.com/oxan "14 total commits to the Home Assistant orga: +9 commits to core +3 commits to probot-home-assistant +2 commits to home-assistant.io +") +- [Oxbef (@Oxbef)](https://github.com/Oxbef "5 total commits to the Home Assistant orga: +5 commits to buildroot ") - [oywino (@oywino)](https://github.com/oywino "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [OzGav (@OzGav)](https://github.com/OzGav "2 total commits to the Home Assistant orga: +- [OzGav (@OzGav)](https://github.com/OzGav "5 total commits to the Home Assistant orga: +3 commits to home-assistant.io +1 commit to frontend 1 commit to brands -1 commit to home-assistant.io ") - [oznu (@oznu)](https://github.com/oznu "1 total commits to the Home Assistant orga: 1 commit to homebridge-homeassistant @@ -13150,6 +17787,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to core ") +- [p4p3r (@p4p3r)](https://github.com/p4p3r "1 total commits to the Home Assistant orga: +1 commit to core +") - [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 @@ -13166,9 +17806,19 @@ This page contains a list of people who have contributed in one way or another t - [Pablo Mellado (@mellado)](https://github.com/mellado "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Pablo Ovelleiro Corral (@pinpox)](https://github.com/pinpox "1 total commits to the Home Assistant orga: +1 commit to core +") - [Paddy0174 (@Paddy0174)](https://github.com/Paddy0174 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Padraig James Connolly (@padraigconnolly)](https://github.com/padraigconnolly "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [pailloM (@pailloM)](https://github.com/pailloM "3 total commits to the Home Assistant orga: +2 commits to core +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 ") @@ -13184,6 +17834,9 @@ This page contains a list of people who have contributed in one way or another t - [pander8828 (@pander8828)](https://github.com/pander8828 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [PanicRide (@PanicRide)](https://github.com/PanicRide "1 total commits to the Home Assistant orga: +1 commit to core +") - [panosmz (@panosmz)](https://github.com/panosmz "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to home-assistant.io @@ -13205,18 +17858,29 @@ This page contains a list of people who have contributed in one way or another t - [paolog89 (@paolog89)](https://github.com/paolog89 "1 total commits to the Home Assistant orga: 1 commit to core ") +- [papperone (@papperone)](https://github.com/papperone "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Parker Moore (@parkr)](https://github.com/parkr "62 total commits to the Home Assistant orga: 62 commits to home-assistant.io ") +- [Parker Wahle (@regulad)](https://github.com/regulad "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Parnell Springmeyer (@ixmatus)](https://github.com/ixmatus "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [partytimeexcellent (@partytimeexcellent)](https://github.com/partytimeexcellent "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Pascal (@p4sI)](https://github.com/p4sI "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Pascal Bach (@bachp)](https://github.com/bachp "10 total commits to the Home Assistant orga: +- [Pascal Bach (@bachp)](https://github.com/bachp "9 total commits to the Home Assistant orga: 9 commits to core -1 commit to netdisco +") +- [Pascal de Bruijn (@pmjdebruijn)](https://github.com/pmjdebruijn "3 total commits to the Home Assistant orga: +3 commits to buildroot ") - [Pascal de Ladurantaye (@pascal-de-ladurantaye)](https://github.com/pascal-de-ladurantaye "2 total commits to the Home Assistant orga: 1 commit to core @@ -13225,54 +17889,67 @@ This page contains a list of people who have contributed in one way or another t - [Pascal Hahn (@pascalhahn)](https://github.com/pascalhahn "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Pascal Reeb (@pree)](https://github.com/pree "3 total commits to the Home Assistant orga: -3 commits to core +- [Pascal Huerst (@pascalhuerst)](https://github.com/pascalhuerst "2 total commits to the Home Assistant orga: +2 commits to buildroot ") -- [Pascal Roeleven (@pascallj)](https://github.com/pascallj "14 total commits to the Home Assistant orga: +- [Pascal Reeb (@pree)](https://github.com/pree "8 total commits to the Home Assistant orga: +7 commits to core +1 commit to home-assistant.io +") +- [Pascal Roeleven (@pascallj)](https://github.com/pascallj "15 total commits to the Home Assistant orga: 7 commits to home-assistant.io 5 commits to core -1 commit to frontend +2 commits to frontend 1 commit to brands ") -- [Pascal Vizeli (@pvizeli)](https://github.com/pvizeli "8745 total commits to the Home Assistant orga: -2281 commits to supervisor -1441 commits to version -1030 commits to operating-system -1029 commits to core -605 commits to addons +- [Pascal Vizeli (@pvizeli)](https://github.com/pvizeli "10693 total commits to the Home Assistant orga: +2860 commits to version +2432 commits to supervisor +1084 commits to core +1037 commits to operating-system +636 commits to addons 499 commits to hassio-build -424 commits to home-assistant.io -229 commits to docker -159 commits to wheels -149 commits to docker-base +434 commits to home-assistant.io +242 commits to docker +184 commits to docker-base +173 commits to wheels 130 commits to ci-azure -73 commits to developers.home-assistant -72 commits to plugin-audio -67 commits to builder -62 commits to wheels-custom-integrations -51 commits to wheels-opencv -50 commits to cli -49 commits to supervised-installer +106 commits to builder +96 commits to developers.home-assistant +82 commits to plugin-audio +69 commits to wheels-custom-integrations +63 commits to cli +56 commits to supervised-installer +53 commits to wheels-opencv +48 commits to plugin-cli +45 commits to plugin-observer +43 commits to plugin-dns 43 commits to ada -37 commits to plugin-observer 35 commits to python-openzwave -33 commits to plugin-dns -32 commits to plugin-cli +34 commits to actions 27 commits to addons-development +25 commits to landingpage 22 commits to wheels-tensorflow 20 commits to frontend -17 commits to addons-example -17 commits to landingpage -13 commits to actions -11 commits to wheels-scipy -11 commits to plugin-multicast -9 commits to tempio +19 commits to addons-example +16 commits to plugin-multicast +14 commits to os-agent +13 commits to my-upnp +12 commits to tempio +12 commits to wheels-scipy +8 commits to architecture 6 commits to operating-system-blobs -5 commits to architecture 4 commits to open-zwave +3 commits to devcontainer +3 commits to buildroot +2 commits to deployments 1 commit to home-assistant-js-websocket -1 commit to netdisco 1 commit to people +1 commit to brands +") +- [Pascal Winters (@pascalwinters)](https://github.com/pascalwinters "6 total commits to the Home Assistant orga: +5 commits to core +1 commit to frontend ") - [pascalsaul (@pascalsaul)](https://github.com/pascalsaul "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -13280,8 +17957,11 @@ This page contains a list of people who have contributed in one way or another t - [Pat Freeman (@patfreeman)](https://github.com/patfreeman "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [Pat Thoyts (@patthoyts)](https://github.com/patthoyts "2 total commits to the Home Assistant orga: -2 commits to netdisco +- [Pat Rooney (@sotatech)](https://github.com/sotatech "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io +") +- [patagona (@patagonaa)](https://github.com/patagonaa "2 total commits to the Home Assistant orga: +2 commits to core ") - [patatman (@patatman)](https://github.com/patatman "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -13306,12 +17986,13 @@ This page contains a list of people who have contributed in one way or another t - [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 "9 total commits to the Home Assistant orga: -4 commits to android +- [Patrick Decat (@pdecat)](https://github.com/pdecat "11 total commits to the Home Assistant orga: +5 commits to android 2 commits to mobile-apps-fcm-push 1 commit to cli -1 commit to developers.home-assistant 1 commit to frontend +1 commit to developers.home-assistant +1 commit to core ") - [Patrick Easters (@patrickeasters)](https://github.com/patrickeasters "7 total commits to the Home Assistant orga: 6 commits to home-assistant.io @@ -13320,6 +18001,9 @@ This page contains a list of people who have contributed in one way or another t - [Patrick Georgi (@pgeorgi)](https://github.com/pgeorgi "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Patrick Hilker (@patrickhilker)](https://github.com/patrickhilker "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Patrick Hobusch (@pathob)](https://github.com/pathob "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -13334,6 +18018,9 @@ This page contains a list of people who have contributed in one way or another t - [Patrick Langendoen (@pathia)](https://github.com/pathia "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Patrick Ribbing (@patrickribbing)](https://github.com/patrickribbing "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Patrick Roozen (@pcroozen)](https://github.com/pcroozen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -13345,14 +18032,14 @@ This page contains a list of people who have contributed in one way or another t 1 commit to addons 1 commit to home-assistant.io ") +- [Patrick Toft Steffensen (@PTST)](https://github.com/PTST "1 total commits to the Home Assistant orga: +1 commit to brands +") - [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 "15 total commits to the Home Assistant orga: -11 commits to core -2 commits to home-assistant.io -1 commit to alerts.home-assistant.io -1 commit to developers.home-assistant +- [Patrick ZAJDA (@Nardol)](https://github.com/Nardol "6 total commits to the Home Assistant orga: +6 commits to frontend ") - [Patrik Ekström (@patrik3k)](https://github.com/patrik3k "1 total commits to the Home Assistant orga: 1 commit to core @@ -13360,28 +18047,41 @@ This page contains a list of people who have contributed in one way or another t - [Patrik Hermansson (@bphermansson)](https://github.com/bphermansson "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") +- [Patrik Lindgren (@ggravlingen)](https://github.com/ggravlingen "37 total commits to the Home Assistant orga: +29 commits to core +6 commits to home-assistant.io +1 commit to alerts.home-assistant.io +1 commit to developers.home-assistant +") - [Patryk (@C6H6)](https://github.com/C6H6 "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Patryk Duda (@semihalf-duda-patryk)](https://github.com/semihalf-duda-patryk "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Patryk Gałczyński (@evemorgen)](https://github.com/evemorgen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [PatSki123 (@patski123)](https://github.com/patski123 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Pau Marin (@Pau-Marin)](https://github.com/Pau-Marin "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Paul (@TakesTheBiscuit)](https://github.com/TakesTheBiscuit "2 total commits to the Home Assistant orga: 2 commits to core ") -- [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 "20 total commits to the Home Assistant orga: -17 commits to core -3 commits to home-assistant.io +- [Paul Annekov (@PaulAnnekov)](https://github.com/PaulAnnekov "26 total commits to the Home Assistant orga: +20 commits to core +5 commits to home-assistant.io +1 commit to brands ") - [Paul Archer (@geek65535)](https://github.com/geek65535 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Paul B\. Henson (@pbhenson)](https://github.com/pbhenson "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Paul Beckcom (@pbeckcom)](https://github.com/pbeckcom "2 total commits to the Home Assistant orga: 1 commit to frontend 1 commit to core @@ -13390,16 +18090,30 @@ This page contains a list of people who have contributed in one way or another t 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: +- [Paul Bottein (@piitaya)](https://github.com/piitaya "12 total commits to the Home Assistant orga: +5 commits to core +3 commits to frontend +2 commits to home-assistant.io +1 commit to android +1 commit to brands +") +- [Paul Burton (@paulburton)](https://github.com/paulburton "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Paul Cercueil (@pcercuei)](https://github.com/pcercuei "34 total commits to the Home Assistant orga: +34 commits to buildroot +") +- [Paul Daumlechner (@pawlizio)](https://github.com/pawlizio "5 total commits to the Home Assistant orga: 4 commits to core 1 commit to home-assistant.io ") -- [Paul Daumlechner (@pawlizio)](https://github.com/pawlizio "4 total commits to the Home Assistant orga: -4 commits to core -") - [Paul Davis (@paulbdavis)](https://github.com/paulbdavis "1 total commits to the Home Assistant orga: 1 commit to frontend ") +- [Paul Dee (@systemcrash)](https://github.com/systemcrash "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io +1 commit to core +") - [Paul Deen (@PaulAntonDeen)](https://github.com/PaulAntonDeen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -13411,6 +18125,12 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Paul Frank (@pail23)](https://github.com/pail23 "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Paul Ganssle (@pganssle)](https://github.com/pganssle "1 total commits to the Home Assistant orga: +1 commit to core +") - [Paul Hendry (@polendri)](https://github.com/polendri "1 total commits to the Home Assistant orga: 1 commit to warrant ") @@ -13423,6 +18143,9 @@ This page contains a list of people who have contributed in one way or another t - [Paul Jolly (@myitcv)](https://github.com/myitcv "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Paul Jones (@PeeJay)](https://github.com/PeeJay "9 total commits to the Home Assistant orga: +9 commits to buildroot +") - [Paul Kehrer (@reaperhulk)](https://github.com/reaperhulk "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") @@ -13444,8 +18167,17 @@ This page contains a list of people who have contributed in one way or another t - [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 Monigatti (@paulmonigatti)](https://github.com/paulmonigatti "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Paul Mundt (@pmundt)](https://github.com/pmundt "13 total commits to the Home Assistant orga: +13 commits to buildroot +") +- [Paul Nicholls (@pauln)](https://github.com/pauln "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Paul Owen (@Drae)](https://github.com/Drae "1 total commits to the Home Assistant orga: +1 commit to core ") - [Paul Philippov (@themactep)](https://github.com/themactep "1 total commits to the Home Assistant orga: 1 commit to core @@ -13462,8 +18194,7 @@ This page contains a list of people who have contributed in one way or another t 1 commit to addons 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 +- [Paul Sokolovsky (@pfalcon)](https://github.com/pfalcon "3 total commits to the Home Assistant orga: 3 commits to core ") - [Paul Stenius (@stenius)](https://github.com/stenius "1 total commits to the Home Assistant orga: @@ -13479,16 +18210,45 @@ This page contains a list of people who have contributed in one way or another t - [paulcram (@paulcram)](https://github.com/paulcram "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Pauli Sundberg (@susundberg)](https://github.com/susundberg "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Paulius Zaleckas (@pauliuszaleckas)](https://github.com/pauliuszaleckas "235 total commits to the Home Assistant orga: +235 commits to buildroot +") +- [Paulo Matos (@pmatos)](https://github.com/pmatos "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Paulo Serra Filho (@pauloserrafh)](https://github.com/pauloserrafh "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [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 core +- [Pavel Moukhataev (@mpashka)](https://github.com/mpashka "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Pavel Pletenev (@ASMfreaK)](https://github.com/ASMfreaK "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") +- [Pavel Popov (@tolkonepiu)](https://github.com/tolkonepiu "1 total commits to the Home Assistant orga: +1 commit to devcontainer +") +- [Pavel Roslovets (@roslovets)](https://github.com/roslovets "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Pavel S (@pilotak)](https://github.com/pilotak "4 total commits to the Home Assistant orga: +3 commits to brands +1 commit to wheels-custom-integrations +") +- [Pavel Skuratovich (@Chupaka)](https://github.com/Chupaka "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Pavlo Ponomarov (@awsum)](https://github.com/awsum "2 total commits to the Home Assistant orga: 2 commits to frontend ") @@ -13498,16 +18258,22 @@ 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 "30 total commits to the Home Assistant orga: -15 commits to core -11 commits to home-assistant.io -2 commits to frontend +- [Pawel (@pszafer)](https://github.com/pszafer "39 total commits to the Home Assistant orga: +21 commits to core +12 commits to home-assistant.io +4 commits to frontend 1 commit to wheels-custom-integrations 1 commit to brands ") +- [Pawel Sikora (@pawelsikora)](https://github.com/pawelsikora "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [Pawel Winogrodzki (@PawelWMS)](https://github.com/PawelWMS "12 total commits to the Home Assistant orga: 12 commits to libcoap ") +- [pawelhulek (@pawelhulek)](https://github.com/pawelhulek "2 total commits to the Home Assistant orga: +2 commits to brands +") - [Paweł Kobylak (@noose)](https://github.com/noose "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") @@ -13524,6 +18290,12 @@ This page contains a list of people who have contributed in one way or another t 21 commits to core 3 commits to home-assistant.io ") +- [pbassa (@pbassa)](https://github.com/pbassa "18 total commits to the Home Assistant orga: +18 commits to buildroot +") +- [PCR\-2020 (@PCR-2020)](https://github.com/PCR-2020 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [pcragone (@pcragone)](https://github.com/pcragone "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") @@ -13533,9 +18305,9 @@ This page contains a list of people who have contributed in one way or another t - [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 "3 total commits to the Home Assistant orga: -2 commits to home-assistant.io -1 commit to core +- [pdcemulator (@pdcemulator)](https://github.com/pdcemulator "6 total commits to the Home Assistant orga: +4 commits to home-assistant.io +2 commits to core ") - [pdeelen (@pdeelen)](https://github.com/pdeelen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -13543,20 +18315,43 @@ This page contains a list of people who have contributed in one way or another t - [PDekker (@PDekker)](https://github.com/PDekker "2 total commits to the Home Assistant orga: 2 commits to frontend ") -- [Pedro Lamas (@pedrolamas)](https://github.com/pedrolamas "7 total commits to the Home Assistant orga: -4 commits to core -2 commits to home-assistant.io +- [peca89 (@peca89)](https://github.com/peca89 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [peddamat (@peddamat)](https://github.com/peddamat "4 total commits to the Home Assistant orga: +3 commits to developers.home-assistant +1 commit to example-custom-config +") +- [Pedro Aguilar (@paguilar)](https://github.com/paguilar "6 total commits to the Home Assistant orga: +6 commits to buildroot +") +- [Pedro Jardim (@pejardim)](https://github.com/pejardim "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Pedro Lamas (@pedrolamas)](https://github.com/pedrolamas "12 total commits to the Home Assistant orga: +6 commits to home-assistant.io +5 commits to core 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 Ribeiro (@peribeir)](https://github.com/peribeir "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Pedro Rodriguez Tavarez (@pjrt)](https://github.com/pjrt "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [PedroKTFC (@PedroKTFC)](https://github.com/PedroKTFC "1 total commits to the Home Assistant orga: 1 commit to companion.home-assistant ") - [PeeJay (@pejotigrek)](https://github.com/pejotigrek "1 total commits to the Home Assistant orga: 1 commit to assets ") +- [Peeter N (@petslane)](https://github.com/petslane "2 total commits to the Home Assistant orga: +2 commits to core +") - [pepeEL (@pepsonEL)](https://github.com/pepsonEL "18 total commits to the Home Assistant orga: 16 commits to open-zwave 2 commits to core @@ -13570,21 +18365,28 @@ This page contains a list of people who have contributed in one way or another t 19 commits to home-assistant.io 12 commits to frontend ") -- [Per\-Øyvind Bruun (@peroyvind)](https://github.com/peroyvind "4 total commits to the Home Assistant orga: +- [Per Öberg (@droberg)](https://github.com/droberg "4 total commits to the Home Assistant orga: 3 commits to core 1 commit to home-assistant.io ") +- [Per\-Øyvind Bruun (@peroyvind)](https://github.com/peroyvind "2 total commits to the Home Assistant orga: +2 commits to core +") - [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 core ") -- [pergolafabio (@pergolafabio)](https://github.com/pergolafabio "1 total commits to the Home Assistant orga: +- [pergolafabio (@pergolafabio)](https://github.com/pergolafabio "2 total commits to the Home Assistant orga: +1 commit to operating-system 1 commit to home-assistant.io ") -- [perjury (@perjury)](https://github.com/perjury "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [perjury (@perjury)](https://github.com/perjury "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io +") +- [Peronia (@Peronia)](https://github.com/Peronia "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Perry Naseck (@DaAwesomeP)](https://github.com/DaAwesomeP "5 total commits to the Home Assistant orga: 2 commits to core @@ -13606,11 +18408,14 @@ This page contains a list of people who have contributed in one way or another t - [Pete Peterson (@petey)](https://github.com/petey "1 total commits to the Home Assistant orga: 1 commit to frontend ") -- [PeteBa (@PeteBa)](https://github.com/PeteBa "16 total commits to the Home Assistant orga: -7 commits to core -5 commits to home-assistant.io +- [PeteBa (@PeteBa)](https://github.com/PeteBa "20 total commits to the Home Assistant orga: +9 commits to core +7 commits to home-assistant.io 4 commits to frontend ") +- [PeteCondliffe (@PeteCondliffe)](https://github.com/PeteCondliffe "1 total commits to the Home Assistant orga: +1 commit 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 core @@ -13618,16 +18423,22 @@ This page contains a list of people who have contributed in one way or another t - [Peter (@AnderssonPeter)](https://github.com/AnderssonPeter "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Peter A\. Bigot (@pabigot)](https://github.com/pabigot "3 total commits to the Home Assistant orga: +3 commits to core +") - [Peter Armstrong (@peteretep)](https://github.com/peteretep "3 total commits to the Home Assistant orga: 2 commits to brands 1 commit to developers.home-assistant ") -- [Peter Bainbridge (@PeterBainbridge)](https://github.com/PeterBainbridge "1 total commits to the Home Assistant orga: +- [Peter Bainbridge (@BushmanPete)](https://github.com/BushmanPete "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 Cooney (@PeteCooney)](https://github.com/PeteCooney "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Peter Ebenezer (@Coedy)](https://github.com/Coedy "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -13641,23 +18452,61 @@ This page contains a list of people who have contributed in one way or another t - [Peter Golm (@pgolm)](https://github.com/pgolm "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Peter Huewe (@PeterHuewe)](https://github.com/PeterHuewe "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Peter Korsgaard (@jacmet)](https://github.com/jacmet "6450 total commits to the Home Assistant orga: +6450 commits to buildroot +") - [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 "23 total commits to the Home Assistant orga: -11 commits to core -10 commits to home-assistant.io +- [Peter Kümmel (@syntheticpp)](https://github.com/syntheticpp "8 total commits to the Home Assistant orga: +8 commits to buildroot +") +- [Peter Macleod Thompson (@PeterMacleodThompson)](https://github.com/PeterMacleodThompson "7 total commits to the Home Assistant orga: +7 commits to buildroot +") +- [Peter Maguire (@Peter-Maguire)](https://github.com/Peter-Maguire "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Peter Meerwald (@pmeerw)](https://github.com/pmeerw "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Peter Nijssen (@peternijssen)](https://github.com/peternijssen "34 total commits to the Home Assistant orga: +19 commits to core +11 commits to home-assistant.io 2 commits to alerts.home-assistant.io +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Peter Rosin (@peda-r)](https://github.com/peda-r "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [Peter Sarossy (@psarossy)](https://github.com/psarossy "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Peter Seiderer (@pseiderer)](https://github.com/pseiderer "940 total commits to the Home Assistant orga: +940 commits to buildroot ") - [Peter Tisovčík (@mienkofax)](https://github.com/mienkofax "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [Peter van Dijk (@Habbie)](https://github.com/Habbie "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Peter Weidenkaff (@weidenka)](https://github.com/weidenka "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Peter Zsak (@wroadd)](https://github.com/wroadd "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [PeteRager (@PeteRager)](https://github.com/PeteRager "1 total commits to the Home Assistant orga: +1 commit to core +") +- [petergridge (@petergridge)](https://github.com/petergridge "1 total commits to the Home Assistant orga: +1 commit to brands +") - [petewill (@petewill)](https://github.com/petewill "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -13667,14 +18516,22 @@ This page contains a list of people who have contributed in one way or another t - [Petr Kotek (@petrkotek)](https://github.com/petrkotek "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Petr Vraník (@konikvranik)](https://github.com/konikvranik "14 total commits to the Home Assistant orga: +- [Petr Vorel (@pevik)](https://github.com/pevik "171 total commits to the Home Assistant orga: +171 commits to buildroot +") +- [Petr Vraník (@konikvranik)](https://github.com/konikvranik "16 total commits to the Home Assistant orga: 8 commits to core 6 commits to home-assistant.io +2 commits to brands ") -- [Petro31 (@Petro31)](https://github.com/Petro31 "17 total commits to the Home Assistant orga: -8 commits to home-assistant.io -7 commits to core +- [Petro31 (@Petro31)](https://github.com/Petro31 "32 total commits to the Home Assistant orga: +16 commits to home-assistant.io +13 commits to core 2 commits to frontend +1 commit to brands +") +- [Petru Paler (@ppetru)](https://github.com/ppetru "3 total commits to the Home Assistant orga: +3 commits to core ") - [pettertho (@pettertho)](https://github.com/pettertho "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -13683,9 +18540,15 @@ This page contains a list of people who have contributed in one way or another t 8 commits to core 1 commit to home-assistant.io ") +- [pfunkmallone (@pfunkmallone)](https://github.com/pfunkmallone "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [pgenera (@pgenera)](https://github.com/pgenera "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Ph\-Wagner (@Ph-Wagner)](https://github.com/Ph-Wagner "2 total commits to the Home Assistant orga: +2 commits to core +") - [phardy (@phardy)](https://github.com/phardy "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -13700,16 +18563,20 @@ This page contains a list of people who have contributed in one way or another t - [PhiBo (@phibos)](https://github.com/phibos "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Phil (@pnbruckner)](https://github.com/pnbruckner "132 total commits to the Home Assistant orga: -98 commits to core +- [Phil (@pnbruckner)](https://github.com/pnbruckner "136 total commits to the Home Assistant orga: +101 commits to core 34 commits to home-assistant.io +1 commit to alerts.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 "23 total commits to the Home Assistant orga: -14 commits to home-assistant.io -9 commits to core +- [Phil Cole (@filcole)](https://github.com/filcole "36 total commits to the Home Assistant orga: +21 commits to core +15 commits to home-assistant.io +") +- [Phil Eichinger (@philenotfound)](https://github.com/philenotfound "25 total commits to the Home Assistant orga: +25 commits to buildroot ") - [Phil Elson (@pelson)](https://github.com/pelson "3 total commits to the Home Assistant orga: 3 commits to core @@ -13728,13 +18595,14 @@ This page contains a list of people who have contributed in one way or another t - [Phil Hansen (@Hansen8601)](https://github.com/Hansen8601 "1 total commits to the Home Assistant orga: 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 +- [Phil Hawthorne (@philhawthorne)](https://github.com/philhawthorne "38 total commits to the Home Assistant orga: +23 commits to home-assistant.io 11 commits to core 4 commits to open-zwave ") -- [Phil Hollenback (@tels7ar)](https://github.com/tels7ar "4 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [Phil Hollenback (@tels7ar)](https://github.com/tels7ar "7 total commits to the Home Assistant orga: +5 commits to home-assistant.io +2 commits to core ") - [Phil Kates (@philk)](https://github.com/philk "11 total commits to the Home Assistant orga: 8 commits to core @@ -13755,13 +18623,15 @@ This page contains a list of people who have contributed in one way or another t - [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 "249 total commits to the Home Assistant orga: -177 commits to frontend -38 commits to core -31 commits to home-assistant.io -1 commit to supervisor +- [Philip Allgaier (@spacegaier)](https://github.com/spacegaier "556 total commits to the Home Assistant orga: +406 commits to frontend +73 commits to core +64 commits to home-assistant.io +7 commits to developers.home-assistant +3 commits to supervisor 1 commit to addons -1 commit to developers.home-assistant +1 commit to architecture +1 commit to my.home-assistant.io ") - [Philip Hofstetter (@pilif)](https://github.com/pilif "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io @@ -13777,6 +18647,9 @@ This page contains a list of people who have contributed in one way or another t 56 commits to core 9 commits to home-assistant.io ") +- [Philip Molloy (@pamolloy)](https://github.com/pamolloy "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [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 @@ -13784,11 +18657,14 @@ This page contains a list of people who have contributed in one way or another t - [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 "6 total commits to the Home Assistant orga: +- [Philipp Danner (@dannerph)](https://github.com/dannerph "7 total commits to the Home Assistant orga: +3 commits to home-assistant.io 3 commits to core -2 commits to home-assistant.io 1 commit to brands ") +- [Philipp Richter (@popsUlfr)](https://github.com/popsUlfr "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [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 @@ -13797,6 +18673,9 @@ This page contains a list of people who have contributed in one way or another t - [Philipp Temminghoff (@phil65)](https://github.com/phil65 "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Philipp Wagner (@imphil)](https://github.com/imphil "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Philipp Wensauer (@ultrara1n)](https://github.com/ultrara1n "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to developers.home-assistant @@ -13805,12 +18684,19 @@ This page contains a list of people who have contributed in one way or another t - [Philippe Delodder (@phdelodder)](https://github.com/phdelodder "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Philippe Pepiot (@philpep)](https://github.com/philpep "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Philippe Proulx (@eepp)](https://github.com/eepp "33 total commits to the Home Assistant orga: +33 commits to buildroot +") - [philipperequile (@philipperequile)](https://github.com/philipperequile "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") -- [Phill \(pssc\) (@pssc)](https://github.com/pssc "1 total commits to the Home Assistant orga: +- [Phill \(pssc\) (@pssc)](https://github.com/pssc "2 total commits to the Home Assistant orga: 1 commit to supervisor +1 commit to supervised-installer ") - [Phill Price (@phillprice)](https://github.com/phillprice "16 total commits to the Home Assistant orga: 15 commits to home-assistant.io @@ -13843,10 +18729,23 @@ This page contains a list of people who have contributed in one way or another t - [Pier\-Luc Charbonneau (@plcharbonneau)](https://github.com/plcharbonneau "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [Pierre (@bemble)](https://github.com/bemble "1 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +") +- [Pierre (@pinaraf)](https://github.com/pinaraf "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [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 Courbin (@pcourbin)](https://github.com/pcourbin "4 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +2 commits to brands +") +- [Pierre CROKAERT (@crookies)](https://github.com/crookies "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Pierre Gronlier (@ticapix)](https://github.com/ticapix "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -13854,10 +18753,9 @@ This page contains a list of people who have contributed in one way or another t - [Pierre Sicot (@psicot)](https://github.com/psicot "2 total commits to the Home Assistant orga: 2 commits to core ") -- [Pierre Ståhl (@postlund)](https://github.com/postlund "62 total commits to the Home Assistant orga: -42 commits to core +- [Pierre Ståhl (@postlund)](https://github.com/postlund "70 total commits to the Home Assistant orga: +54 commits to core 13 commits to home-assistant.io -4 commits to netdisco 2 commits to frontend 1 commit to brands ") @@ -13867,6 +18765,12 @@ 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\-jean Texier (@texierp)](https://github.com/texierp "176 total commits to the Home Assistant orga: +176 commits to buildroot +") +- [Pierre\-Louis Bossart (@plbossart)](https://github.com/plbossart "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [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 @@ -13877,6 +18781,9 @@ This page contains a list of people who have contributed in one way or another t - [Pieter De Baets (@javache)](https://github.com/javache "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Pieter De Gendt (@pdgendt)](https://github.com/pdgendt "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [Pieter Ennes (@skion)](https://github.com/skion "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -13888,15 +18795,35 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") -- [Pieter Mulder (@inytar)](https://github.com/inytar "1 total commits to the Home Assistant orga: -1 commit to core +- [Pieter Mulder (@inytar)](https://github.com/inytar "3 total commits to the Home Assistant orga: +3 commits to core ") - [Pieter Ouwerkerk (@pouwerkerk)](https://github.com/pouwerkerk "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") +- [Pieter Rautenbach (@parautenbach)](https://github.com/parautenbach "5 total commits to the Home Assistant orga: +4 commits to home-assistant.io +1 commit to companion.home-assistant +") +- [Pieter Ronsijn (@pieter-dev)](https://github.com/pieter-dev "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Pieter Ronsijn (@piro-barco)](https://github.com/piro-barco "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Pieter Smith (@smipi1)](https://github.com/smipi1 "5 total commits to the Home Assistant orga: +5 commits to buildroot +") +- [Pieterjan Camerlynck (@pieterjanc)](https://github.com/pieterjanc "11 total commits to the Home Assistant orga: +11 commits to buildroot +") - [Pigotka (@Pigotka)](https://github.com/Pigotka "4 total commits to the Home Assistant orga: 4 commits to core ") +- [Pim (@PimDoos)](https://github.com/PimDoos "2 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core +") - [pinksocks (@pinksocks)](https://github.com/pinksocks "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -13906,8 +18833,12 @@ This page contains a list of people who have contributed in one way or another t - [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 Machowski (@PiotrMachowski)](https://github.com/PiotrMachowski "5 total commits to the Home Assistant orga: +3 commits to brands +2 commits to wheels-custom-integrations +") +- [Piotr Majkrzak (@majkrzak)](https://github.com/majkrzak "1 total commits to the Home Assistant orga: +1 commit to core ") - [Piotr Miazga (@polishdeveloper)](https://github.com/polishdeveloper "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -13927,6 +18858,9 @@ This page contains a list of people who have contributed in one way or another t - [Pipiche (@pipiche38)](https://github.com/pipiche38 "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [pixel::doc (@pixeldoc2000)](https://github.com/pixeldoc2000 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [pixelasticity (@pixelasticity)](https://github.com/pixelasticity "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -13936,6 +18870,9 @@ This page contains a list of people who have contributed in one way or another t - [pkeymeruu (@pkeymeruu)](https://github.com/pkeymeruu "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [pkininja (@pkininja)](https://github.com/pkininja "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [pkonnekermetametrics (@pkonnekermetametrics)](https://github.com/pkonnekermetametrics "5 total commits to the Home Assistant orga: 5 commits to warrant ") @@ -13944,6 +18881,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [plamish (@plamish)](https://github.com/plamish "1 total commits to the Home Assistant orga: +1 commit to brands +") - [PlanetJ (@PlanetJ)](https://github.com/PlanetJ "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -13953,6 +18893,13 @@ This page contains a list of people who have contributed in one way or another t - [pleeja (@pleeja)](https://github.com/pleeja "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [plomosits (@plomosits)](https://github.com/plomosits "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [PlusPlus\-ua (@PlusPlus-ua)](https://github.com/PlusPlus-ua "4 total commits to the Home Assistant orga: +4 commits to core +") - [plyblu (@plyblu)](https://github.com/plyblu "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") @@ -13965,12 +18912,14 @@ This page contains a list of people who have contributed in one way or another t - [pniewiadowski (@pniewiadowski)](https://github.com/pniewiadowski "6 total commits to the Home Assistant orga: 6 commits to home-assistant.io ") -- [pocek (@pocek)](https://github.com/pocek "6 total commits to the Home Assistant orga: -6 commits to open-zwave -") - [PollieKrismis (@PollieKrismis)](https://github.com/PollieKrismis "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Poltorak Serguei (@PoltoS)](https://github.com/PoltoS "14 total commits to the Home Assistant orga: +8 commits to core +5 commits to home-assistant.io +1 commit to brands +") - [PoofyTeddy (@poofyteddy)](https://github.com/poofyteddy "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -13979,12 +18928,24 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [popoviciri (@popoviciri)](https://github.com/popoviciri "1 total commits to the Home Assistant orga: +1 commit to core +") +- [posixx (@posixx)](https://github.com/posixx "5 total commits to the Home Assistant orga: +2 commits to core +1 commit to frontend +1 commit to developers.home-assistant +1 commit to home-assistant.io +") +- [pothirak (@pothirak)](https://github.com/pothirak "1 total commits to the Home Assistant orga: +1 commit to brands +") - [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 "2 total commits to the Home Assistant orga: +- [pp81381 (@pp81381)](https://github.com/pp81381 "3 total commits to the Home Assistant orga: +2 commits to brands 1 commit to developers.home-assistant -1 commit to brands ") - [pplucky (@pplucky)](https://github.com/pplucky "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -13993,6 +18954,15 @@ This page contains a list of people who have contributed in one way or another t 1 commit to wheels-custom-integrations 1 commit to brands ") +- [Pranit Sirsat (@pranit-sirsat-imgtec)](https://github.com/pranit-sirsat-imgtec "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Prasetyo Joko Lelono (@xilense)](https://github.com/xilense "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Prathamesh Gawas (@Prathamesh010)](https://github.com/Prathamesh010 "4 total commits to the Home Assistant orga: +4 commits to supervisor +") - [Pratyush Mohapatra (@Ativerc)](https://github.com/Ativerc "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -14010,16 +18980,34 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [ProfDrYoMan (@ProfDrYoMan)](https://github.com/ProfDrYoMan "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [proferabg (@proferabg)](https://github.com/proferabg "1 total commits to the Home Assistant orga: 1 commit to core ") +- [prokon (@prokon)](https://github.com/prokon "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 core ") +- [prwood80 (@prwood80)](https://github.com/prwood80 "2 total commits to the Home Assistant orga: +2 commits to core +") - [Przemek Więch (@PeWu)](https://github.com/PeWu "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [Przemyslaw \(Pem\) Lasota (@plasota)](https://github.com/plasota "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Przemyslaw Wrzos (@calyptech)](https://github.com/calyptech "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [ps\-m (@ps-m)](https://github.com/ps-m "7 total commits to the Home Assistant orga: +7 commits to buildroot +") - [psike (@psike)](https://github.com/psike "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -14032,8 +19020,12 @@ 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 ") -- [puddly (@puddly)](https://github.com/puddly "2 total commits to the Home Assistant orga: -2 commits to core +- [puddly (@puddly)](https://github.com/puddly "31 total commits to the Home Assistant orga: +28 commits to core +3 commits to home-assistant.io +") +- [PulsarFX (@PulsarFX)](https://github.com/PulsarFX "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [punch (@jonthebastard)](https://github.com/jonthebastard "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -14044,6 +19036,10 @@ This page contains a list of people who have contributed in one way or another t - [Puppercino (@Puppercino)](https://github.com/Puppercino "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [purcell\-lab (@purcell-lab)](https://github.com/purcell-lab "11 total commits to the Home Assistant orga: +7 commits to home-assistant.io +4 commits to core +") - [Purplecarrot (@purplecarrot)](https://github.com/purplecarrot "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -14060,6 +19056,9 @@ This page contains a list of people who have contributed in one way or another t - [Qais Patankar (@qaisjp)](https://github.com/qaisjp "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [QbaF (@QbaF)](https://github.com/QbaF "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [qinghuangchan (@qinghuangchan)](https://github.com/qinghuangchan "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -14069,14 +19068,11 @@ This page contains a list of people who have contributed in one way or another t - [qrionic labs (@qrioniclabs)](https://github.com/qrioniclabs "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [quaec (@quaec)](https://github.com/quaec "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [quaec (@quaec)](https://github.com/quaec "4 total commits to the Home Assistant orga: +4 commits to home-assistant.io ") -- [Quatroking (@smirkeys)](https://github.com/smirkeys "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io -") -- [Quentame (@Quentame)](https://github.com/Quentame "218 total commits to the Home Assistant orga: -177 commits to core +- [Quentame (@Quentame)](https://github.com/Quentame "231 total commits to the Home Assistant orga: +190 commits to core 25 commits to home-assistant.io 14 commits to brands 1 commit to alerts.home-assistant.io @@ -14099,8 +19095,10 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") -- [Quint Burkley (@qwow5)](https://github.com/qwow5 "1 total commits to the Home Assistant orga: +- [Quint Burkley (@qwow5)](https://github.com/qwow5 "4 total commits to the Home Assistant orga: +2 commits to brands 1 commit to companion.home-assistant +1 commit to home-assistant.io ") - [quthla (@quthla)](https://github.com/quthla "25 total commits to the Home Assistant orga: 12 commits to core @@ -14109,15 +19107,18 @@ This page contains a list of people who have contributed in one way or another t 1 commit to android 1 commit to home-assistant.io ") -- [Qwertee (@Qwertee)](https://github.com/Qwertee "1 total commits to the Home Assistant orga: +- [Qwertee (@jberrend)](https://github.com/jberrend "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 core 1 commit to home-assistant.io ") -- [R Huish (@genestealer)](https://github.com/genestealer "32 total commits to the Home Assistant orga: -32 commits to home-assistant.io +- [R Huish (@genestealer)](https://github.com/genestealer "34 total commits to the Home Assistant orga: +34 commits to home-assistant.io +") +- [R0nd (@R0nd)](https://github.com/R0nd "1 total commits to the Home Assistant orga: +1 commit to core ") - [r24\-IT (@r24-IT)](https://github.com/r24-IT "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -14133,9 +19134,17 @@ This page contains a list of people who have contributed in one way or another t - [Raa'Shaun Hunter (@CardcaptorRLH85)](https://github.com/CardcaptorRLH85 "1 total commits to the Home Assistant orga: 1 commit to supervised-installer ") +- [Racailloux (@Racailloux)](https://github.com/Racailloux "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [Radek Rada (@rrada)](https://github.com/rrada "1 total commits to the Home Assistant orga: 1 commit to core ") +- [RadekHvizdos (@RadekHvizdos)](https://github.com/RadekHvizdos "4 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io +") - [radinsky (@radinsky)](https://github.com/radinsky "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -14143,7 +19152,13 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") -- [Radu (@mercenaruss)](https://github.com/mercenaruss "1 total commits to the Home Assistant orga: +- [Radu (@mercenaruss)](https://github.com/mercenaruss "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Radu Cotescu (@raducotescu)](https://github.com/raducotescu "4 total commits to the Home Assistant orga: +2 commits to core +1 commit to frontend 1 commit to home-assistant.io ") - [Rafael Alencar (@rafaeldca)](https://github.com/rafaeldca "1 total commits to the Home Assistant orga: @@ -14152,19 +19167,28 @@ This page contains a list of people who have contributed in one way or another t - [Rafael Gil (@cybervoid)](https://github.com/cybervoid "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Rafael Uguina (@crazystress)](https://github.com/crazystress "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Rafal Fabich (@R2F)](https://github.com/R2F "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Rafal Susz (@rsusz)](https://github.com/rsusz "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [rafale77 (@rafale77)](https://github.com/rafale77 "7 total commits to the Home Assistant orga: 4 commits to home-assistant.io 3 commits to core ") -- [Rafał Słota (@rslota)](https://github.com/rslota "1 total commits to the Home Assistant orga: -1 commit to core -") - [Rafhaan Shah (@RafhaanShah)](https://github.com/RafhaanShah "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") - [Rafi Wiener (@rafiw)](https://github.com/rafiw "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [rahul\-bedarkar (@rahul-bedarkar)](https://github.com/rahul-bedarkar "76 total commits to the Home Assistant orga: +76 commits to buildroot +") - [rahul\_5409 (@RahulRavishankar)](https://github.com/RahulRavishankar "1 total commits to the Home Assistant orga: 1 commit to addons ") @@ -14175,8 +19199,8 @@ 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 "19 total commits to the Home Assistant orga: -14 commits to core +- [rajlaud (@rajlaud)](https://github.com/rajlaud "27 total commits to the Home Assistant orga: +22 commits to core 2 commits to frontend 2 commits to home-assistant.io 1 commit to developers.home-assistant @@ -14187,22 +19211,36 @@ This page contains a list of people who have contributed in one way or another t - [ral (@leitonp)](https://github.com/leitonp "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ralf Muehlen (@muehlen)](https://github.com/muehlen "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Ralph (@bberg115)](https://github.com/bberg115 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [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 "207 total commits to the Home Assistant orga: -139 commits to core -57 commits to home-assistant.io -7 commits to brands -3 commits to developers.home-assistant -1 commit to addons +- [Raman Gupta (@raman325)](https://github.com/raman325 "688 total commits to the Home Assistant orga: +475 commits to core +124 commits to home-assistant.io +47 commits to addons +17 commits to frontend +14 commits to developers.home-assistant +10 commits to brands +1 commit to wheels-custom-integrations ") -- [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 +- [Rami Mosleh (@engrbm87)](https://github.com/engrbm87 "45 total commits to the Home Assistant orga: +32 commits to core +13 commits to home-assistant.io +") +- [Ramon (@jush)](https://github.com/jush "1 total commits to the Home Assistant orga: +1 commit to android +") +- [Ramon Fried (@mellowcandle)](https://github.com/mellowcandle "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Ramshield (@Ramshield)](https://github.com/Ramshield "1 total commits to the Home Assistant orga: +1 commit 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 @@ -14222,9 +19260,24 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to core ") -- [rappenze (@rappenze)](https://github.com/rappenze "1 total commits to the Home Assistant orga: +- [Raphael (@sdrapha)](https://github.com/sdrapha "3 total commits to the Home Assistant orga: +2 commits to home-assistant.io 1 commit to core ") +- [Raphaël Beamonte (@XaF)](https://github.com/XaF "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") +- [Raphaël Mélotte (@rmelotte)](https://github.com/rmelotte "12 total commits to the Home Assistant orga: +12 commits to buildroot +") +- [Raphaël Poggi (@raphui)](https://github.com/raphui "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [rappenze (@rappenze)](https://github.com/rappenze "21 total commits to the Home Assistant orga: +20 commits to core +1 commit to home-assistant.io +") - [Rashmi Yadav (@raysrashmi)](https://github.com/raysrashmi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -14239,6 +19292,13 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Raukze (@Raukze)](https://github.com/Raukze "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Raul Hidalgo Caballero (@deinok)](https://github.com/deinok "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Ravi K (@shreram)](https://github.com/shreram "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") @@ -14248,6 +19308,9 @@ This page contains a list of people who have contributed in one way or another t - [Ray Cielencki (@rayslinky)](https://github.com/rayslinky "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ray Kinsella (@mdr78)](https://github.com/mdr78 "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [ray0711 (@ray0711)](https://github.com/ray0711 "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -14264,8 +19327,8 @@ This page contains a list of people who have contributed in one way or another t - [Raymond Ng (@RaymondNg2)](https://github.com/RaymondNg2 "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") -- [Razafintsialonina Ny Andrianina Mamy (@nyandrianinamamy)](https://github.com/nyandrianinamamy "1 total commits to the Home Assistant orga: -1 commit to developers.home-assistant +- [Raúl Sánchez Siles (@kebianizao)](https://github.com/kebianizao "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [rbflurry (@rbflurry)](https://github.com/rbflurry "20 total commits to the Home Assistant orga: 16 commits to home-assistant.io @@ -14274,10 +19337,13 @@ This page contains a list of people who have contributed in one way or another t - [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 "6 total commits to the Home Assistant orga: -2 commits to brands -2 commits to home-assistant.io -1 commit to wheels-custom-integrations +- [rc\-matthew\-l\-weber (@rc-matthew-l-weber)](https://github.com/rc-matthew-l-weber "278 total commits to the Home Assistant orga: +278 commits to buildroot +") +- [rccoleman (@rccoleman)](https://github.com/rccoleman "9 total commits to the Home Assistant orga: +3 commits to brands +3 commits to home-assistant.io +2 commits to wheels-custom-integrations 1 commit to core ") - [rcmdnk (@rcmdnk)](https://github.com/rcmdnk "1 total commits to the Home Assistant orga: @@ -14286,9 +19352,19 @@ This page contains a list of people who have contributed in one way or another t - [rctgamer3 (@rctgamer3)](https://github.com/rctgamer3 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [RDFurman (@rdfurman)](https://github.com/rdfurman "13 total commits to the Home Assistant orga: +11 commits to core +2 commits to home-assistant.io +") - [rdkayman (@rdkayman)](https://github.com/rdkayman "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [rdkehn (@rdkehn)](https://github.com/rdkehn "14 total commits to the Home Assistant orga: +14 commits to buildroot +") +- [realPy (@realPy)](https://github.com/realPy "2 total commits to the Home Assistant orga: +2 commits to core +") - [realthk (@realthk)](https://github.com/realthk "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -14298,13 +19374,23 @@ This page contains a list of people who have contributed in one way or another t - [Rebecca Cran (@bcran)](https://github.com/bcran "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Redah (@redahb)](https://github.com/redahb "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [redbar0n (@redbar0n)](https://github.com/redbar0n "2 total commits to the Home Assistant orga: 1 commit to frontend 1 commit to home-assistant.io ") +- [redgryphon (@redgryphon)](https://github.com/redgryphon "1 total commits to the Home Assistant orga: +1 commit to operating-system +") - [reductio (@reductio)](https://github.com/reductio "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Reed Nightingale (@rnighting)](https://github.com/rnighting "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Reed Riley (@reedriley)](https://github.com/reedriley "3 total commits to the Home Assistant orga: 3 commits to core ") @@ -14314,10 +19400,26 @@ This page contains a list of people who have contributed in one way or another t - [Reese (@reesericci)](https://github.com/reesericci "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [refinedcranberry (@refinedcranberry)](https://github.com/refinedcranberry "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [RefineryX (@RefineryX)](https://github.com/RefineryX "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Regev Brody (@regevbr)](https://github.com/regevbr "5 total commits to the Home Assistant orga: +5 commits to core +") - [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: +- [reichley (@reichley)](https://github.com/reichley "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io +1 commit to .github +") +- [Reinder Reinders (@reinder83)](https://github.com/reinder83 "2 total commits to the Home Assistant orga: +1 commit to brands 1 commit to core ") - [Reinhard Tartler (@siretart)](https://github.com/siretart "1 total commits to the Home Assistant orga: @@ -14326,12 +19428,24 @@ This page contains a list of people who have contributed in one way or another t - [remc0 (@remc0)](https://github.com/remc0 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Remi Pommarel (@repk)](https://github.com/repk "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Remy (@Pouzor)](https://github.com/Pouzor "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [remy33 (@remy33)](https://github.com/remy33 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Renat Nurgaliyev (@rnurgaliyev)](https://github.com/rnurgaliyev "2 total commits to the Home Assistant orga: +2 commits to core +") - [renat85 (@renat85)](https://github.com/renat85 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Renaud AUBIN (@r3n4ud)](https://github.com/r3n4ud "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [Renaud Martinet (@karouf)](https://github.com/karouf "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -14340,6 +19454,9 @@ This page contains a list of people who have contributed in one way or another t 5 commits to core 1 commit to home-assistant.io ") +- [Rene Lehfeld (@rlehfeld)](https://github.com/rlehfeld "1 total commits to the Home Assistant orga: +1 commit to core +") - [Rene Nulsch (@ReneNulschDE)](https://github.com/ReneNulschDE "29 total commits to the Home Assistant orga: 18 commits to core 9 commits to home-assistant.io @@ -14349,12 +19466,20 @@ This page contains a list of people who have contributed in one way or another t - [Rene Tode (@ReneTode)](https://github.com/ReneTode "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [RenierM26 (@RenierM26)](https://github.com/RenierM26 "32 total commits to the Home Assistant orga: +28 commits to core +4 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 core ") +- [René Klomp (@rklomp)](https://github.com/rklomp "26 total commits to the Home Assistant orga: +22 commits to core +4 commits to home-assistant.io +") - [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 @@ -14362,13 +19487,35 @@ This page contains a list of people who have contributed in one way or another t - [resistr (@resistr)](https://github.com/resistr "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Reuben Bijl (@reubenbijl)](https://github.com/reubenbijl "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Reuben Dowle (@reubendowle)](https://github.com/reubendowle "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Reuben Gow (@geuben)](https://github.com/geuben "2 total commits to the Home Assistant orga: +2 commits to core +") - [Rev Michael Greb (@mikegrb)](https://github.com/mikegrb "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [rexcze (@rexcze)](https://github.com/rexcze "2 total commits to the Home Assistant orga: +2 commits to frontend +") - [Reza Moallemi (@moallemi)](https://github.com/moallemi "2 total commits to the Home Assistant orga: 1 commit to frontend 1 commit to home-assistant.io ") +- [rforro (@rforro)](https://github.com/rforro "3 total commits to the Home Assistant orga: +3 commits to core +") +- [rgc99 (@rgc99)](https://github.com/rgc99 "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [rgenoud (@rgenoud)](https://github.com/rgenoud "13 total commits to the Home Assistant orga: +13 commits to buildroot +") - [rgruebel (@rgruebel)](https://github.com/rgruebel "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -14381,15 +19528,35 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io 2 commits to hadashboard ") +- [rhpijnacker (@rhpijnacker)](https://github.com/rhpijnacker "5 total commits to the Home Assistant orga: +4 commits to core +1 commit to home-assistant.io +") +- [Rhys Williams (@wilberforce)](https://github.com/wilberforce "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [rianadon (@rianadon)](https://github.com/rianadon "15 total commits to the Home Assistant orga: +10 commits to core +4 commits to frontend +1 commit to home-assistant-js-websocket +") - [ricardcc (@ricardcc)](https://github.com/ricardcc "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Ricardo JL Rufino (@ricardojlrufino)](https://github.com/ricardojlrufino "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Ricardo Steijn (@RicArch97)](https://github.com/RicArch97 "3 total commits to the Home Assistant orga: -2 commits to brands +- [Ricardo Martincoski (@ricardo-martincoski)](https://github.com/ricardo-martincoski "205 total commits to the Home Assistant orga: +205 commits to buildroot +") +- [Ricardo Steijn (@RicArch97)](https://github.com/RicArch97 "11 total commits to the Home Assistant orga: +6 commits to core +3 commits to brands 1 commit to wheels-custom-integrations +1 commit to home-assistant.io +") +- [Riccardo (@safepay)](https://github.com/safepay "1 total commits to the Home Assistant orga: +1 commit to brands ") - [Riccardo Canta (@commento)](https://github.com/commento "3 total commits to the Home Assistant orga: 3 commits to core @@ -14397,6 +19564,9 @@ This page contains a list of people who have contributed in one way or another t - [Riccardo Massari (@maxdrift)](https://github.com/maxdrift "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Rich Schumacher (@richid)](https://github.com/richid "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Richard (@NextNebula)](https://github.com/NextNebula "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io 2 commits to core @@ -14404,13 +19574,19 @@ This page contains a list of people who have contributed in one way or another t - [Richard (@ainen)](https://github.com/ainen "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Richard Annand (@rj175)](https://github.com/rj175 "2 total commits to the Home Assistant orga: +- [Richard Annand (@ohheyrj)](https://github.com/ohheyrj "2 total commits to the Home Assistant orga: 1 commit to wheels-custom-integrations 1 commit to brands ") - [Richard Arends (@Mosibi)](https://github.com/Mosibi "8 total commits to the Home Assistant orga: 8 commits to core ") +- [Richard Benson (@rkben)](https://github.com/rkben "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Richard Braun (@richardbraun)](https://github.com/richardbraun "8 total commits to the Home Assistant orga: +8 commits to buildroot +") - [Richard Cox (@Khabi)](https://github.com/Khabi "15 total commits to the Home Assistant orga: 9 commits to core 6 commits to home-assistant.io @@ -14418,9 +19594,10 @@ This page contains a list of people who have contributed in one way or another t - [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 "3 total commits to the Home Assistant orga: +- [Richard de Boer (@rigrig)](https://github.com/rigrig "6 total commits to the Home Assistant orga: +3 commits to core 2 commits to docker -1 commit to core +1 commit to android ") - [Richard Evans (@rmevans9)](https://github.com/rmevans9 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -14428,10 +19605,16 @@ This page contains a list of people who have contributed in one way or another t - [Richard Jones (@RJ)](https://github.com/RJ "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") +- [Richard Kunze (@rkunze)](https://github.com/rkunze "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Richard Lucas (@lucasweb78)](https://github.com/lucasweb78 "10 total commits to the Home Assistant orga: 9 commits to core 1 commit to people ") +- [Richard Meyer (@meyerrj)](https://github.com/meyerrj "1 total commits to the Home Assistant orga: +1 commit to core +") - [Richard Mitchell (@mitchellrj)](https://github.com/mitchellrj "20 total commits to the Home Assistant orga: 17 commits to core 3 commits to home-assistant.io @@ -14449,12 +19632,20 @@ This page contains a list of people who have contributed in one way or another t - [Richard Powell (@richardpowellus)](https://github.com/richardpowellus "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Richard T\. Schaefer (@r-t-s)](https://github.com/r-t-s "6 total commits to the Home Assistant orga: +3 commits to core +3 commits to home-assistant.io +") - [Richard van Duijn (@TheNr1Guest)](https://github.com/TheNr1Guest "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") -- [RichardUUU (@RichardUUU)](https://github.com/RichardUUU "7 total commits to the Home Assistant orga: +- [Richard van Paasen (@strangeflower)](https://github.com/strangeflower "6 total commits to the Home Assistant orga: +6 commits to buildroot +") +- [RichardUUU (@RichardUUU)](https://github.com/RichardUUU "8 total commits to the Home Assistant orga: 7 commits to home-assistant.io +1 commit to data.home-assistant ") - [RichieFrame (@RichieFrame)](https://github.com/RichieFrame "2 total commits to the Home Assistant orga: 1 commit to brands @@ -14463,13 +19654,16 @@ This page contains a list of people who have contributed in one way or another t - [richo (@richo)](https://github.com/richo "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Rick (@rcuddy)](https://github.com/rcuddy "1 total commits to the Home Assistant orga: +- [Rick (@rickdoesdev)](https://github.com/rickdoesdev "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 (@teleksterling)](https://github.com/teleksterling "1 total commits to the Home Assistant orga: +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 ") @@ -14488,19 +19682,38 @@ This page contains a list of people who have contributed in one way or another t - [RickW (@wltng)](https://github.com/wltng "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [rickylee64 (@rickylee64)](https://github.com/rickylee64 "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 core ") - [ricmik (@ricmik)](https://github.com/ricmik "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ridicule80 (@Ridicule80)](https://github.com/Ridicule80 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Rihan9 (@Rihan9)](https://github.com/Rihan9 "1 total commits to the Home Assistant orga: 1 commit to core ") -- [rikroe (@rikroe)](https://github.com/rikroe "14 total commits to the Home Assistant orga: -13 commits to core +- [rik\-v (@rik-v)](https://github.com/rik-v "1 total commits to the Home Assistant orga: +1 commit to core +") +- [rikroe (@rikroe)](https://github.com/rikroe "56 total commits to the Home Assistant orga: +42 commits to core +10 commits to home-assistant.io +4 commits to alerts.home-assistant.io +") +- [rishabmehta7 (@rishabmehta7)](https://github.com/rishabmehta7 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [RJ Ascani (@rascani)](https://github.com/rascani "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [rjulius23 (@rjulius23)](https://github.com/rjulius23 "1 total commits to the Home Assistant orga: +1 commit to core +") - [rkabadi (@rkabadi)](https://github.com/rkabadi "17 total commits to the Home Assistant orga: 17 commits to core ") @@ -14510,17 +19723,23 @@ This page contains a list of people who have contributed in one way or another t - [rmacklin (@rmacklin)](https://github.com/rmacklin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [rmogstad (@rmogstad)](https://github.com/rmogstad "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [rnizametdinov (@rnizametdinov)](https://github.com/rnizametdinov "1 total commits to the Home Assistant orga: 1 commit to addons ") - [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 "53 total commits to the Home Assistant orga: -46 commits to core -5 commits to home-assistant.io +- [Rob Bierbooms (@RobBie1221)](https://github.com/RobBie1221 "62 total commits to the Home Assistant orga: +53 commits to core +7 commits to home-assistant.io 2 commits to brands ") +- [Rob Borkowski (@rborkow)](https://github.com/rborkow "1 total commits to the Home Assistant orga: +1 commit to core +") - [Rob Capellini (@capellini)](https://github.com/capellini "3 total commits to the Home Assistant orga: 3 commits to core ") @@ -14538,7 +19757,11 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") -- [Rob McCann (@rob-mccann)](https://github.com/rob-mccann "1 total commits to the Home Assistant orga: +- [Rob Landley (@landley)](https://github.com/landley "5 total commits to the Home Assistant orga: +5 commits to buildroot +") +- [Rob McCann (@rob-mccann)](https://github.com/rob-mccann "3 total commits to the Home Assistant orga: +2 commits to home-assistant-js-websocket 1 commit to frontend ") - [Rob Migchels (@DhrRob)](https://github.com/DhrRob "1 total commits to the Home Assistant orga: @@ -14547,14 +19770,27 @@ This page contains a list of people who have contributed in one way or another t - [Rob Slifka (@rslifka)](https://github.com/rslifka "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") +- [Rob VDM (@rvdm82)](https://github.com/rvdm82 "1 total commits to the Home Assistant orga: +1 commit to operating-system +") +- [Rob Wolinski (@trekie86)](https://github.com/trekie86 "1 total commits to the Home Assistant orga: +1 commit to core +") - [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 "16 total commits to the Home Assistant orga: +- [Rob\_R (@Robbot)](https://github.com/Robbot "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [robadenshi (@robadenshi)](https://github.com/robadenshi "7 total commits to the Home Assistant orga: +7 commits to buildroot +") +- [Robbert Müller (@mjrider)](https://github.com/mjrider "17 total commits to the Home Assistant orga: 10 commits to cli 2 commits to core 2 commits to home-assistant.io 1 commit to addons +1 commit to supervised-installer 1 commit to people ") - [Robbie (@superjunky)](https://github.com/superjunky "3 total commits to the Home Assistant orga: @@ -14563,15 +19799,14 @@ 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 "2588 total commits to the Home Assistant orga: +- [Robbie Trencheny (@robbiet480)](https://github.com/robbiet480 "2556 total commits to the Home Assistant orga: 1486 commits to iOS 336 commits to core 305 commits to home-assistant.io 93 commits to homebridge-homeassistant 93 commits to companion.home-assistant -49 commits to mobile-apps-fcm-push +50 commits to mobile-apps-fcm-push 44 commits to people -29 commits to cla-bot 22 commits to frontend 20 commits to Iconic 18 commits to developers.home-assistant @@ -14579,20 +19814,20 @@ This page contains a list of people who have contributed in one way or another t 13 commits to assets 12 commits to android 8 commits to codeowners-mention -7 commits to netdisco 4 commits to home-assistant-js-websocket +4 commits to .github +3 commits to scenegen 3 commits to LabelBot 3 commits to organization 3 commits to home-assistant-js -3 commits to hassbot -3 commits to scenegen 3 commits to hadashboard -3 commits to .github +3 commits to hassbot 3 commits to open-zwave -2 commits to micropython-home-assistant 2 commits to lambda-home-assistant-github 2 commits to home-assistant-notebooks 2 commits to fabric-home-assistant +2 commits to micropython-home-assistant +2 commits to alerts.home-assistant.io 1 commit to hass-release 1 commit to gu-who ") @@ -14600,8 +19835,8 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to home-assistant.io ") -- [Robert (@metbril)](https://github.com/metbril "18 total commits to the Home Assistant orga: -14 commits to home-assistant.io +- [Robert (@metbril)](https://github.com/metbril "19 total commits to the Home Assistant orga: +15 commits to home-assistant.io 2 commits to alerts.home-assistant.io 1 commit to wheels-custom-integrations 1 commit to brands @@ -14622,18 +19857,40 @@ This page contains a list of people who have contributed in one way or another t - [Robert Beal (@robertbeal)](https://github.com/robertbeal "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Robert Chmielowiec (@chmielowiec)](https://github.com/chmielowiec "16 total commits to the Home Assistant orga: -11 commits to core +- [Robert Blomqvist (@roqvist)](https://github.com/roqvist "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Robert Chmielowiec (@chmielowiec)](https://github.com/chmielowiec "18 total commits to the Home Assistant orga: +13 commits to core 3 commits to home-assistant.io +1 commit to frontend 1 commit to developers.home-assistant +") +- [Robert Delpeut (@robertdelpeut)](https://github.com/robertdelpeut "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Robert Dunmire III (@slackr31337)](https://github.com/slackr31337 "7 total commits to the Home Assistant orga: +6 commits to core +1 commit to home-assistant.io +") +- [Robert Fischer (@foundbobby)](https://github.com/foundbobby "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Robert Hancock (@robhancocksed)](https://github.com/robhancocksed "5 total commits to the Home Assistant orga: +5 commits to buildroot +") +- [Robert Hibbeler (@kventil)](https://github.com/kventil "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Robert Hillis (@tkdrob)](https://github.com/tkdrob "491 total commits to the Home Assistant orga: +465 commits to core +21 commits to home-assistant.io +3 commits to brands +1 commit to companion.home-assistant 1 commit to frontend ") -- [Robert Cook (@rgc99)](https://github.com/rgc99 "1 total commits to the Home Assistant orga: -1 commit to brands -") -- [Robert Dunmire III (@slackr31337)](https://github.com/slackr31337 "6 total commits to the Home Assistant orga: -5 commits to core -1 commit to home-assistant.io +- [Robert J\. Heywood (@robjh)](https://github.com/robjh "2 total commits to the Home Assistant orga: +2 commits to buildroot ") - [Robert Kingston (@kingo55)](https://github.com/kingo55 "1 total commits to the Home Assistant orga: 1 commit to core @@ -14648,27 +19905,34 @@ This page contains a list of people who have contributed in one way or another t - [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 "5 total commits to the Home Assistant orga: -2 commits to frontend -2 commits to home-assistant.io -1 commit to android -") -- [Robert Schindler (@efficiosoft)](https://github.com/efficiosoft "4 total commits to the Home Assistant orga: -1 commit to operating-system -1 commit to frontend +- [Robert Meijers (@RobertMe)](https://github.com/RobertMe "2 total commits to the Home Assistant orga: 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 +- [Robert P\. J\. Day (@rpjday)](https://github.com/rpjday "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Robert Resch (@edenhaus)](https://github.com/edenhaus "10 total commits to the Home Assistant orga: +3 commits to home-assistant.io +2 commits to frontend +2 commits to wheels-custom-integrations +2 commits to brands +1 commit to android +") +- [Robert Rose (@robertroyrose)](https://github.com/robertroyrose "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Robert Schütz (@dotlambda)](https://github.com/dotlambda "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to core ") -- [Robert Svensson (@Kane610)](https://github.com/Kane610 "467 total commits to the Home Assistant orga: -408 commits to core -51 commits to home-assistant.io -5 commits to developers.home-assistant -1 commit to netdisco +- [Robert Sohn (@grepper)](https://github.com/grepper "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Robert Svensson (@Kane610)](https://github.com/Kane610 "689 total commits to the Home Assistant orga: +625 commits to core +56 commits to home-assistant.io +6 commits to developers.home-assistant 1 commit to people 1 commit to frontend ") @@ -14679,6 +19943,10 @@ This page contains a list of people who have contributed in one way or another t 42 commits to core 10 commits to home-assistant.io ") +- [RobertD502 (@RobertD502)](https://github.com/RobertD502 "5 total commits to the Home Assistant orga: +4 commits to brands +1 commit to developers.home-assistant +") - [Roberto Cc (@marotoweb)](https://github.com/marotoweb "2 total commits to the Home Assistant orga: 1 commit to wheels-custom-integrations 1 commit to brands @@ -14689,10 +19957,10 @@ This page contains a list of people who have contributed in one way or another t - [robhuls (@robhuls)](https://github.com/robhuls "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Robin (@robmarkcole)](https://github.com/robmarkcole "93 total commits to the Home Assistant orga: +- [Robin (@robmarkcole)](https://github.com/robmarkcole "97 total commits to the Home Assistant orga: 56 commits to home-assistant.io 28 commits to core -2 commits to home-assistant-notebooks +6 commits to home-assistant-notebooks 2 commits to assets 2 commits to people 1 commit to operating-system @@ -14702,11 +19970,6 @@ This page contains a list of people who have contributed in one way or another t - [Robin (@Excape)](https://github.com/Excape "1 total commits to the Home Assistant orga: 1 commit to supervisor ") -- [Robin (@kloknibor)](https://github.com/kloknibor "4 total commits to the Home Assistant orga: -2 commits to wheels-custom-integrations -1 commit to brands -1 commit to home-assistant.io -") - [Robin (@Derkades)](https://github.com/Derkades "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -14714,16 +19977,26 @@ This page contains a list of people who have contributed in one way or another t 1 commit to addons 1 commit to core ") -- [Robin Hansson (@rabinage)](https://github.com/rabinage "1 total commits to the Home Assistant orga: -1 commit to addons +- [Robin Dupont (@N0ciple)](https://github.com/N0ciple "3 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +1 commit to core ") - [Robin Harmsen (@reharmsen)](https://github.com/reharmsen "9 total commits to the Home Assistant orga: 2 commits to addons 2 commits to docker-base -2 commits to docker 2 commits to operating-system +2 commits to docker 1 commit to builder ") +- [Robin Jarry (@rjarry)](https://github.com/rjarry "5 total commits to the Home Assistant orga: +5 commits to buildroot +") +- [Robin Kolk (@kloknibor)](https://github.com/kloknibor "4 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +1 commit to brands +1 commit to home-assistant.io +") - [Robin Laurén (@llauren)](https://github.com/llauren "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -14736,8 +20009,11 @@ This page contains a list of people who have contributed in one way or another t - [Robin Pronk (@rfpronk)](https://github.com/rfpronk "2 total commits to the Home Assistant orga: 2 commits to core ") -- [Robin Wohlers\-Reichel (@squishykid)](https://github.com/squishykid "9 total commits to the Home Assistant orga: -8 commits to core +- [Robin Wittebol (@robinwittebol)](https://github.com/robinwittebol "5 total commits to the Home Assistant orga: +5 commits to frontend +") +- [Robin Wohlers\-Reichel (@squishykid)](https://github.com/squishykid "11 total commits to the Home Assistant orga: +10 commits to core 1 commit to home-assistant.io ") - [Robk (@230delphi)](https://github.com/230delphi "1 total commits to the Home Assistant orga: @@ -14746,6 +20022,9 @@ This page contains a list of people who have contributed in one way or another t - [roblandry (@roblandry)](https://github.com/roblandry "3 total commits to the Home Assistant orga: 3 commits to core ") +- [robot256 (@robot256)](https://github.com/robot256 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [robybob64 (@robybob64)](https://github.com/robybob64 "4 total commits to the Home Assistant orga: 4 commits to open-zwave ") @@ -14756,6 +20035,9 @@ This page contains a list of people who have contributed in one way or another t - [RockBomber (@RockBomber)](https://github.com/RockBomber "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Rod Payne (@rodpayne)](https://github.com/rodpayne "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Roddie Hasan (@eiddor)](https://github.com/eiddor "9 total commits to the Home Assistant orga: 6 commits to home-assistant.io 3 commits to open-zwave @@ -14764,24 +20046,40 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 2 commits to home-assistant.io ") +- [Rodrigo Rebello (@rrebello)](https://github.com/rrebello "36 total commits to the Home Assistant orga: +36 commits to buildroot +") +- [Roel van der Ark (@roelvanderark)](https://github.com/roelvanderark "1 total commits to the Home Assistant orga: +1 commit to core +") - [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 ") -- [RogerSelwyn (@RogerSelwyn)](https://github.com/RogerSelwyn "16 total commits to the Home Assistant orga: -13 commits to core -1 commit to wheels-custom-integrations -1 commit to brands +- [Roger Pettett (@rmp)](https://github.com/rmp "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Rohan Kapoor (@rohankapoorcom)](https://github.com/rohankapoorcom "130 total commits to the Home Assistant orga: +- [RogerSelwyn (@RogerSelwyn)](https://github.com/RogerSelwyn "21 total commits to the Home Assistant orga: +16 commits to core +2 commits to wheels-custom-integrations +2 commits to brands +1 commit to home-assistant.io +") +- [Rogério Ribeiro (@zroger49)](https://github.com/zroger49 "1 total commits to the Home Assistant orga: +1 commit to frontend +") +- [Rohan Kapoor (@rohankapoorcom)](https://github.com/rohankapoorcom "131 total commits to the Home Assistant orga: 90 commits to core 35 commits to home-assistant.io -2 commits to people 2 commits to frontend +2 commits to people 1 commit to developers.home-assistant +1 commit to brands +") +- [Rohit (@bogusfocused)](https://github.com/bogusfocused "1 total commits to the Home Assistant orga: +1 commit to brands ") - [Roi Dayan (@roidayan)](https://github.com/roidayan "7 total commits to the Home Assistant orga: 6 commits to core @@ -14791,14 +20089,22 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to homebridge-homeassistant ") -- [Roland Beck (@Data-Monkey)](https://github.com/Data-Monkey "9 total commits to the Home Assistant orga: +- [Roland Beck (@Data-Monkey)](https://github.com/Data-Monkey "10 total commits to the Home Assistant orga: 5 commits to brands -4 commits to home-assistant.io +5 commits to home-assistant.io ") -- [roleo (@roleoroleo)](https://github.com/roleoroleo "2 total commits to the Home Assistant orga: +- [Roland Franke (@Roland-F)](https://github.com/Roland-F "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [roleo (@roleoroleo)](https://github.com/roleoroleo "3 total commits to the Home Assistant orga: +1 commit to brands 1 commit to core 1 commit to home-assistant.io ") +- [Rolf Berkenbosch (@rolfberkenbosch)](https://github.com/rolfberkenbosch "11 total commits to the Home Assistant orga: +9 commits to core +2 commits to home-assistant.io +") - [Rolf K (@abstrakct)](https://github.com/abstrakct "6 total commits to the Home Assistant orga: 3 commits to core 3 commits to home-assistant.io @@ -14806,10 +20112,6 @@ This page contains a list of people who have contributed in one way or another t - [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 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 ") @@ -14817,6 +20119,18 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Romain (@Moumoustache)](https://github.com/Moumoustache "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Romain Izard (@romain-izard-pro)](https://github.com/romain-izard-pro "5 total commits to the Home Assistant orga: +5 commits to buildroot +") +- [Romain Naour (@RomainNaour)](https://github.com/RomainNaour "1214 total commits to the Home Assistant orga: +1214 commits to buildroot +") +- [Romain Reignier (@romainreignier)](https://github.com/romainreignier "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [romain38 (@romain38)](https://github.com/romain38 "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") @@ -14827,27 +20141,39 @@ This page contains a list of people who have contributed in one way or another t - [Roman (@Roemer)](https://github.com/Roemer "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Ron Heft (@ronaldheft)](https://github.com/ronaldheft "1 total commits to the Home Assistant orga: +- [Roman Shtylman (@defunctzombie)](https://github.com/defunctzombie "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Ron Klinkien (@cyberjunky)](https://github.com/cyberjunky "105 total commits to the Home Assistant orga: +- [Ron Heald (@tallcuss)](https://github.com/tallcuss "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Ron Heft (@ronaldheft)](https://github.com/ronaldheft "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Ron Klinkien (@cyberjunky)](https://github.com/cyberjunky "124 total commits to the Home Assistant orga: 87 commits to home-assistant.io -13 commits to core +28 commits to core +5 commits to brands 2 commits to docker -2 commits to brands -1 commit to wheels-custom-integrations +2 commits to wheels-custom-integrations +") +- [Ron Mervine (@rmervine)](https://github.com/rmervine "1 total commits to the Home Assistant orga: +1 commit to alerts.home-assistant.io ") - [Ron Miller (@brainyron)](https://github.com/brainyron "1 total commits to the Home Assistant orga: 1 commit to addons ") -- [Ron Schaeffer (@ronschaeffer)](https://github.com/ronschaeffer "4 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Ron Schaeffer (@ronschaeffer)](https://github.com/ronschaeffer "6 total commits to the Home Assistant orga: +4 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 core ") +- [Ronak Desai (@ronakadesai)](https://github.com/ronakadesai "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [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 @@ -14867,14 +20193,18 @@ This page contains a list of people who have contributed in one way or another t - [Ronen Hayun (@rhayun)](https://github.com/rhayun "3 total commits to the Home Assistant orga: 3 commits to frontend ") +- [Ronnie (@rroller)](https://github.com/rroller "2 total commits to the Home Assistant orga: +2 commits to brands +") - [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 core ") -- [RonSpawnson (@RonSpawnson)](https://github.com/RonSpawnson "3 total commits to the Home Assistant orga: +- [RonSpawnson (@RonSpawnson)](https://github.com/RonSpawnson "4 total commits to the Home Assistant orga: 3 commits to developers.home-assistant +1 commit to home-assistant.io ") - [ronsum232 (@ronsum232)](https://github.com/ronsum232 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -14882,11 +20212,12 @@ This page contains a list of people who have contributed in one way or another t - [roqeer (@roqeer)](https://github.com/roqeer "3 total commits to the Home Assistant orga: 3 commits to core ") -- [rospogrigio (@rospogrigio)](https://github.com/rospogrigio "1 total commits to the Home Assistant orga: +- [rospogrigio (@rospogrigio)](https://github.com/rospogrigio "2 total commits to the Home Assistant orga: +1 commit to developers.home-assistant 1 commit to brands ") -- [Ross Cullen (@rosscullen)](https://github.com/rosscullen "7 total commits to the Home Assistant orga: -7 commits to home-assistant.io +- [Ross Cullen (@rosscullen)](https://github.com/rosscullen "8 total commits to the Home Assistant orga: +8 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 @@ -14912,6 +20243,9 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io 1 commit to core ") +- [Roy Lee (@roylee17)](https://github.com/roylee17 "7 total commits to the Home Assistant orga: +7 commits to buildroot +") - [Roy Tomeij (@roytomeij)](https://github.com/roytomeij "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") @@ -14931,18 +20265,26 @@ This page contains a list of people who have contributed in one way or another t - [Ruben (@rubenvandeven)](https://github.com/rubenvandeven "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Ruben Andrist (@andrist)](https://github.com/andrist "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [Ruben J\. Jongejan (@rvben)](https://github.com/rvben "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [rubenbe (@rubenbe)](https://github.com/rubenbe "2 total commits to the Home Assistant orga: 2 commits to core ") +- [RubenKelevra (@RubenKelevra)](https://github.com/RubenKelevra "5 total commits to the Home Assistant orga: +2 commits to alerts.home-assistant.io +2 commits to home-assistant.io +1 commit to brands +") - [Rubens Panfili (@rpanfili)](https://github.com/rpanfili "1 total commits to the Home Assistant orga: 1 commit to addons ") -- [rubenverhoef (@rubenverhoef)](https://github.com/rubenverhoef "2 total commits to the Home Assistant orga: -1 commit to core -1 commit to home-assistant.io +- [rubenverhoef (@rubenverhoef)](https://github.com/rubenverhoef "4 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io ") - [rubund (@rubund)](https://github.com/rubund "6 total commits to the Home Assistant orga: 4 commits to core @@ -14957,8 +20299,9 @@ This page contains a list of people who have contributed in one way or another t - [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 core +- [Rudolf Offereins (@Sholofly)](https://github.com/Sholofly "5 total commits to the Home Assistant orga: +3 commits to wheels-custom-integrations +2 commits to core ") - [runningman84 (@runningman84)](https://github.com/runningman84 "5 total commits to the Home Assistant orga: 4 commits to home-assistant.io @@ -14977,10 +20320,12 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [Ruslan Sayfutdinov (@KapJI)](https://github.com/KapJI "62 total commits to the Home Assistant orga: +48 commits to core 9 commits to frontend -3 commits to core -1 commit to developers.home-assistant +3 commits to developers.home-assistant +1 commit to probot-home-assistant +1 commit to wheels-custom-integrations ") - [Russ Kubes (@rkubes)](https://github.com/rkubes "3 total commits to the Home Assistant orga: 3 commits to pi-gen @@ -15002,15 +20347,21 @@ This page contains a list of people who have contributed in one way or another t - [rxwen (@rxwen)](https://github.com/rxwen "1 total commits to the Home Assistant orga: 1 commit to brands ") -- [Ryan (@rsnodgrass)](https://github.com/rsnodgrass "4 total commits to the Home Assistant orga: +- [Ryan (@rsnodgrass)](https://github.com/rsnodgrass "6 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +2 commits to brands 2 commits to core -1 commit to wheels-custom-integrations -1 commit to brands ") - [Ryan Bahm (@rdbahm)](https://github.com/rdbahm "8 total commits to the Home Assistant orga: 5 commits to home-assistant.io 3 commits to core ") +- [Ryan Barnett (@rjbarnet)](https://github.com/rjbarnet "71 total commits to the Home Assistant orga: +71 commits to buildroot +") +- [Ryan Barnett (@rjbarnet-work)](https://github.com/rjbarnet-work "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Ryan Bray (@rbray89)](https://github.com/rbray89 "28 total commits to the Home Assistant orga: 24 commits to operating-system 2 commits to home-assistant.io @@ -15021,6 +20372,9 @@ This page contains a list of people who have contributed in one way or another t 3 commits to home-assistant.io 2 commits to core ") +- [Ryan Coe (@nismoryco)](https://github.com/nismoryco "63 total commits to the Home Assistant orga: +63 commits to buildroot +") - [Ryan Daigle (@rwdaigle)](https://github.com/rwdaigle "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") @@ -15031,8 +20385,12 @@ This page contains a list of people who have contributed in one way or another t - [Ryan Ewen (@RyanEwen)](https://github.com/RyanEwen "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Ryan Fleming (@rfleming71)](https://github.com/rfleming71 "3 total commits to the Home Assistant orga: -3 commits to core +- [Ryan Feigenbaum (@royalfig)](https://github.com/royalfig "3 total commits to the Home Assistant orga: +3 commits to newsletter-ghost-theme +") +- [Ryan Fleming (@rfleming71)](https://github.com/rfleming71 "14 total commits to the Home Assistant orga: +11 commits to core +3 commits to home-assistant.io ") - [Ryan Gibbons (@rtgibbons)](https://github.com/rtgibbons "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -15046,7 +20404,8 @@ This page contains a list of people who have contributed in one way or another t - [Ryan Jarvis (@Cabalist)](https://github.com/Cabalist "1 total commits to the Home Assistant orga: 1 commit to hassbian-scripts ") -- [Ryan Johnson (@ryanjohnsontv)](https://github.com/ryanjohnsontv "1 total commits to the Home Assistant orga: +- [Ryan Johnson (@ryanjohnsontv)](https://github.com/ryanjohnsontv "3 total commits to the Home Assistant orga: +2 commits to core 1 commit to assets ") - [Ryan Kladar (@Kladar)](https://github.com/Kladar "1 total commits to the Home Assistant orga: @@ -15062,6 +20421,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to wheels-custom-integrations 1 commit to brands ") +- [Ryan Mallon (@RyanMallon)](https://github.com/RyanMallon "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Ryan McLean (@ryanm101)](https://github.com/ryanm101 "99 total commits to the Home Assistant orga: 77 commits to cli 16 commits to core @@ -15095,6 +20457,9 @@ This page contains a list of people who have contributed in one way or another t - [Ryan Spicer (@alterscape)](https://github.com/alterscape "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Ryan Steckler (@rsteckler)](https://github.com/rsteckler "1 total commits to the Home Assistant orga: +1 commit to core +") - [Ryan Turner (@turnrye)](https://github.com/turnrye "7 total commits to the Home Assistant orga: 6 commits to core 1 commit to home-assistant.io @@ -15107,24 +20472,46 @@ This page contains a list of people who have contributed in one way or another t 1 commit to companion.home-assistant 1 commit to home-assistant.io ") +- [Ryan Wilkins (@rwilkins74)](https://github.com/rwilkins74 "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [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: +- [Ryan Winter (@ryanwinter)](https://github.com/ryanwinter "4 total commits to the Home Assistant orga: 3 commits to open-zwave +1 commit to brands ") - [RyanRoberts210 (@RyanRoberts210)](https://github.com/RyanRoberts210 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [ryansun96 (@ryansun96)](https://github.com/ryansun96 "1 total commits to the Home Assistant orga: +1 commit to core +") +- [ryborg (@ryborg)](https://github.com/ryborg "2 total commits to the Home Assistant orga: +2 commits to core +") +- [ryddler (@ryddler)](https://github.com/ryddler "1 total commits to the Home Assistant orga: +1 commit to operating-system +") +- [ryman1 (@ryman1)](https://github.com/ryman1 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [ryoku\-cha (@ryoku-cha)](https://github.com/ryoku-cha "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") -- [ryqiem (@ryqiem)](https://github.com/ryqiem "2 total commits to the Home Assistant orga: +- [Ryota Kinukawa (@pojiro)](https://github.com/pojiro "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [ryqiem (@martbern)](https://github.com/martbern "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") - [Ryszard Trojnacki (@Ryszard-Trojnacki)](https://github.com/Ryszard-Trojnacki "5 total commits to the Home Assistant orga: 5 commits to open-zwave ") +- [Rémi Rérolle (@rrerolle)](https://github.com/rrerolle "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Róbert Nagy (@vrnagy)](https://github.com/vrnagy "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -15132,16 +20519,32 @@ This page contains a list of people who have contributed in one way or another t 3 commits to core 1 commit to home-assistant.io ") -- [Sabuto (@Sabuto)](https://github.com/Sabuto "2 total commits to the Home Assistant orga: -1 commit to builder +- [sabuto (@sabuto)](https://github.com/sabuto "2 total commits to the Home Assistant orga: 1 commit to addons +1 commit to builder +") +- [Sacha Telgenhof (@stelgenhof)](https://github.com/stelgenhof "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [saepfle (@saepfle)](https://github.com/saepfle "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [SafetySigning (@SAFEcert)](https://github.com/SAFEcert "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Sagaert Johan \(ON5DI\) (@sagaertj)](https://github.com/sagaertj "40 total commits to the Home Assistant orga: +40 commits to buildroot +") +- [Sagi Bernstein (@sagioto)](https://github.com/sagioto "2 total commits to the Home Assistant orga: +2 commits to core +") - [sagilo (@sagilo)](https://github.com/sagilo "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [SaintMalik (@saintmalik)](https://github.com/saintmalik "2 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +1 commit to home-assistant.io +") - [saintman23 (@saintman23)](https://github.com/saintman23 "11 total commits to the Home Assistant orga: 10 commits to open-zwave 1 commit to home-assistant.io @@ -15152,9 +20555,15 @@ 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 ") +- [salsaman (@salsaman)](https://github.com/salsaman "2 total commits to the Home Assistant orga: +2 commits 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 ") +- [Salvatore Mazzarino (@mazzy89)](https://github.com/mazzy89 "1 total commits to the Home Assistant orga: +1 commit to core +") - [Sam (@samuelalexmclean)](https://github.com/samuelalexmclean "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -15162,8 +20571,14 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 2 commits to home-assistant.io ") -- [Sam Hanley (@sphanley)](https://github.com/sphanley "1 total commits to the Home Assistant orga: +- [Sam Debruyn (@sdebruyn)](https://github.com/sdebruyn "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Sam Hanley (@sphanley)](https://github.com/sphanley "3 total commits to the Home Assistant orga: 1 commit to iOS +1 commit to wheels-custom-integrations +1 commit to brands ") - [Sam Holmes (@sam3d)](https://github.com/sam3d "4 total commits to the Home Assistant orga: 4 commits to pi-gen @@ -15171,6 +20586,12 @@ This page contains a list of people who have contributed in one way or another t - [Sam Jongenelen (@SamJongenelen)](https://github.com/SamJongenelen "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Sam Lancia (@nerd2)](https://github.com/nerd2 "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Sam Mendoza\-Jonas (@sammj)](https://github.com/sammj "13 total commits to the Home Assistant orga: +13 commits to buildroot +") - [Sam Neely (@LedPighp)](https://github.com/LedPighp "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -15178,10 +20599,22 @@ This page contains a list of people who have contributed in one way or another t 1 commit to frontend 1 commit to home-assistant.io ") +- [Sam Reed (@reedy)](https://github.com/reedy "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Sam Riley (@samriley)](https://github.com/samriley "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [Sam Steele (@c99koder)](https://github.com/c99koder "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Sam Voss (@smvoss-collins)](https://github.com/smvoss-collins "12 total commits to the Home Assistant orga: +12 commits to buildroot +") +- [Sam Voss (@smvoss)](https://github.com/smvoss "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [Sam Welek (@tiberiushunter)](https://github.com/tiberiushunter "2 total commits to the Home Assistant orga: 1 commit to developers.home-assistant 1 commit to home-assistant.io @@ -15203,10 +20636,16 @@ This page contains a list of people who have contributed in one way or another t 40 commits to python-openzwave 13 commits to open-zwave ") +- [sambltc (@sambltc)](https://github.com/sambltc "23 total commits to the Home Assistant orga: +23 commits to buildroot +") - [Sami Heino (@sampod)](https://github.com/sampod "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [Samprit JC (@Nekros1712)](https://github.com/Nekros1712 "2 total commits to the Home Assistant orga: +2 commits to supervisor +") - [samtygier (@samtygier)](https://github.com/samtygier "13 total commits to the Home Assistant orga: 13 commits to pi-gen ") @@ -15220,6 +20659,9 @@ This page contains a list of people who have contributed in one way or another t - [Samuel Maggs (@samuelmaggs)](https://github.com/samuelmaggs "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Samuel MARTIN (@tSed)](https://github.com/tSed "445 total commits to the Home Assistant orga: +445 commits to buildroot +") - [Samuel Progin (@Arduous)](https://github.com/Arduous "3 total commits to the Home Assistant orga: 2 commits to developers.home-assistant 1 commit to home-assistant.io @@ -15228,6 +20670,9 @@ This page contains a list of people who have contributed in one way or another t 82 commits to brands 32 commits to home-assistant.io ") +- [Samuel Tardieu (@samueltardieu)](https://github.com/samueltardieu "2 total commits to the Home Assistant orga: +2 commits to core +") - [Samuele Illuminati (@samugi)](https://github.com/samugi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -15237,8 +20682,16 @@ This page contains a list of people who have contributed in one way or another t - [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 core +- [Sander (@golles)](https://github.com/golles "7 total commits to the Home Assistant orga: +4 commits to brands +2 commits to core +1 commit to wheels-custom-integrations +") +- [Sander (@spmvoss)](https://github.com/spmvoss "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Sander Cox (@sandercox)](https://github.com/sandercox "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant ") - [Sander de Leeuw (@sdeleeuw)](https://github.com/sdeleeuw "1 total commits to the Home Assistant orga: 1 commit to core @@ -15247,6 +20700,18 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Sander Huisman (@Sanderhuisman)](https://github.com/Sanderhuisman "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Sander Jochems (@Sander0542)](https://github.com/Sander0542 "5 total commits to the Home Assistant orga: +3 commits to core +1 commit to brands +1 commit to home-assistant.io +") +- [Sander Kromwijk (@raiju)](https://github.com/raiju "1 total commits to the Home Assistant orga: +1 commit to addons +") - [Sander Zumbrink (@zumitnl)](https://github.com/zumitnl "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -15258,14 +20723,17 @@ This page contains a list of people who have contributed in one way or another t - [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 "71 total commits to the Home Assistant orga: -50 commits to core -17 commits to home-assistant.io +- [Santobert (@Santobert)](https://github.com/Santobert "73 total commits to the Home Assistant orga: +51 commits to core +18 commits to home-assistant.io 1 commit to supervised-installer -1 commit to developers.home-assistant 1 commit to frontend +1 commit to developers.home-assistant 1 commit to brands ") +- [Santosh Multhalli (@santoshmulthalli)](https://github.com/santoshmulthalli "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [sapph42 (@sapph42)](https://github.com/sapph42 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -15278,9 +20746,19 @@ This page contains a list of people who have contributed in one way or another t - [saruter (@saruter)](https://github.com/saruter "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Sascha Arthur (@saschaarthur)](https://github.com/saschaarthur "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Sascha Kühndel (@InuSasha)](https://github.com/InuSasha "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Sascha Sander (@SaSa1983)](https://github.com/SaSa1983 "6 total commits to the Home Assistant orga: +5 commits to core +1 commit to home-assistant.io +") +- [Sasha Shyrokov (@alexander-shyrokov)](https://github.com/alexander-shyrokov "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [sasso0101 (@Sasso0101)](https://github.com/Sasso0101 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -15325,19 +20803,38 @@ This page contains a list of people who have contributed in one way or another t - [Schachar Levin (@schachar)](https://github.com/schachar "1 total commits to the Home Assistant orga: 1 commit to core ") -- [scheric (@scheric)](https://github.com/scheric "42 total commits to the Home Assistant orga: +- [Schenk\, Michael (@schemic)](https://github.com/schemic "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [scheric (@scheric)](https://github.com/scheric "47 total commits to the Home Assistant orga: 35 commits to core -7 commits to home-assistant.io +12 commits to home-assistant.io ") - [schferbe (@schferbe)](https://github.com/schferbe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [schiermi (@schiermi)](https://github.com/schiermi "1 total commits to the Home Assistant orga: +1 commit to core +") +- [schlac (@schlac)](https://github.com/schlac "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Schmackos (@Schmackos)](https://github.com/Schmackos "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [schmjop (@schmjop)](https://github.com/schmjop "1 total commits to the Home Assistant orga: +- [Schmidsfeld (@Schmidsfeld)](https://github.com/Schmidsfeld "1 total commits to the Home Assistant orga: +1 commit to core +") +- [schmjop (@schmjop)](https://github.com/schmjop "2 total commits to the Home Assistant orga: +1 commit to companion.home-assistant 1 commit to home-assistant.io ") +- [schmyd (@schmyd)](https://github.com/schmyd "2 total commits to the Home Assistant orga: +2 commits to core +") +- [schnabel (@schnabel)](https://github.com/schnabel "1 total commits to the Home Assistant orga: +1 commit to example-custom-config +") - [schneefux (@schneefux)](https://github.com/schneefux "2 total commits to the Home Assistant orga: 2 commits to core ") @@ -15347,6 +20844,12 @@ This page contains a list of people who have contributed in one way or another t - [Scholli (@ScholliYT)](https://github.com/ScholliYT "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [schreyack (@schreyack)](https://github.com/schreyack "5 total commits to the Home Assistant orga: +5 commits to core +") +- [schuelles (@schuelles)](https://github.com/schuelles "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [SchumyHao (@SchumyHao)](https://github.com/SchumyHao "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -15357,22 +20860,34 @@ This page contains a list of people who have contributed in one way or another t - [Scott (@SonicMagna)](https://github.com/SonicMagna "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Scott (@talltechdude)](https://github.com/talltechdude "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Scott Albertson (@salbertson)](https://github.com/salbertson "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Scott Bartuska (@bing281)](https://github.com/bing281 "1 total commits to the Home Assistant orga: +- [Scott Bartuska (@sxb1n9)](https://github.com/sxb1n9 "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Scott Bradshaw (@swbradshaw)](https://github.com/swbradshaw "6 total commits to the Home Assistant orga: -4 commits to core +- [Scott Bradshaw (@swbradshaw)](https://github.com/swbradshaw "7 total commits to the Home Assistant orga: +5 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 Ellis (@scottellis)](https://github.com/scottellis "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Scott Fan (@vancepym)](https://github.com/vancepym "8 total commits to the Home Assistant orga: +8 commits to buildroot +") - [Scott Gauche (@sgauche)](https://github.com/sgauche "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Scott Giminiani (@ScottG489)](https://github.com/ScottG489 "1 total commits to the Home Assistant orga: +1 commit 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 ") @@ -15387,6 +20902,10 @@ This page contains a list of people who have contributed in one way or another t 4 commits to core 3 commits to home-assistant.io ") +- [Scott Phillips (@scottyphillips)](https://github.com/scottyphillips "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [Scott Prive (@sprive)](https://github.com/sprive "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -15410,9 +20929,22 @@ This page contains a list of people who have contributed in one way or another t - [scottjones4k (@scottjones4k)](https://github.com/scottjones4k "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [scyto (@scyto)](https://github.com/scyto "1 total commits to the Home Assistant orga: +- [scpotter (@scpotter)](https://github.com/scpotter "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [ScratMan (@ScratMan)](https://github.com/ScratMan "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [screenagerbe (@screenagerbe)](https://github.com/screenagerbe "1 total commits to the Home Assistant orga: +1 commit to core +") +- [scyto (@scyto)](https://github.com/scyto "5 total commits to the Home Assistant orga: +4 commits to home-assistant.io +1 commit to core +") +- [Sdahl1234 (@Sdahl1234)](https://github.com/Sdahl1234 "1 total commits to the Home Assistant orga: +1 commit to core +") - [sdekker90 (@sdekker90)](https://github.com/sdekker90 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -15422,9 +20954,6 @@ This page contains a list of people who have contributed in one way or another t - [sdotter (@sdotter)](https://github.com/sdotter "1 total commits to the Home Assistant orga: 1 commit to frontend ") -- [sdrapha (@sdrapha)](https://github.com/sdrapha "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io -") - [Sean (@mcnovy)](https://github.com/mcnovy "3 total commits to the Home Assistant orga: 3 commits to open-zwave ") @@ -15432,11 +20961,11 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core ") - [Sean Dague (@sdague)](https://github.com/sdague "90 total commits to the Home Assistant orga: -63 commits to core -18 commits to home-assistant.io +64 commits to core +19 commits to home-assistant.io 5 commits to frontend -3 commits to netdisco 1 commit to home-assistant-js +1 commit to brands ") - [Sean Danischevsky (@seaniedan)](https://github.com/seaniedan "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -15452,6 +20981,9 @@ This page contains a list of people who have contributed in one way or another t - [Sean Hoyt (@deadman96385)](https://github.com/deadman96385 "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Sean Kelly (@xconverge)](https://github.com/xconverge "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Sean Kerr (@seankerr)](https://github.com/seankerr "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -15461,16 +20993,20 @@ This page contains a list of people who have contributed in one way or another t - [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 "6 total commits to the Home Assistant orga: -6 commits to home-assistant.io +- [Sean Straus (@scstraus)](https://github.com/scstraus "7 total commits to the Home Assistant orga: +7 commits to home-assistant.io ") -- [sean tearney (@ispysoftware)](https://github.com/ispysoftware "5 total commits to the Home Assistant orga: +- [sean tearney (@ispysoftware)](https://github.com/ispysoftware "6 total commits to the Home Assistant orga: +3 commits to home-assistant.io 2 commits to core -2 commits to home-assistant.io 1 commit to brands ") -- [Sean Wilson (@swilson)](https://github.com/swilson "11 total commits to the Home Assistant orga: -6 commits to core +- [Sean Vig (@flacjacket)](https://github.com/flacjacket "26 total commits to the Home Assistant orga: +25 commits to core +1 commit to home-assistant.io +") +- [Sean Wilson (@swilson)](https://github.com/swilson "12 total commits to the Home Assistant orga: +7 commits to core 4 commits to home-assistant.io 1 commit to frontend ") @@ -15483,9 +21019,9 @@ This page contains a list of people who have contributed in one way or another t - [seanodell (@seanodell)](https://github.com/seanodell "1 total commits to the Home Assistant orga: 1 commit to operating-system ") -- [SeanPM5 (@SeanPM5)](https://github.com/SeanPM5 "175 total commits to the Home Assistant orga: -86 commits to home-assistant.io -56 commits to companion.home-assistant +- [SeanPM5 (@SeanPM5)](https://github.com/SeanPM5 "183 total commits to the Home Assistant orga: +93 commits to home-assistant.io +57 commits to companion.home-assistant 17 commits to frontend 5 commits to alerts.home-assistant.io 3 commits to core @@ -15502,8 +21038,8 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core ") - [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 developers.home-assistant 1 commit to brands ") - [Sebastiaan (@sebastiaanwezenberg)](https://github.com/sebastiaanwezenberg "1 total commits to the Home Assistant orga: @@ -15512,31 +21048,35 @@ This page contains a list of people who have contributed in one way or another t - [Sebastiaan (@sebastiaandegeus)](https://github.com/sebastiaandegeus "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Sebastian (@sebk-666)](https://github.com/sebk-666 "7 total commits to the Home Assistant orga: +- [Sebastian (@sebk-666)](https://github.com/sebk-666 "6 total commits to the Home Assistant orga: 5 commits to home-assistant.io -1 commit to netdisco 1 commit to core ") - [Sebastian (@sgso)](https://github.com/sgso "3 total commits to the Home Assistant orga: 3 commits to libcoap ") +- [Sebastian Höffner (@shoeffner)](https://github.com/shoeffner "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Sebastian Kügler (@sebasje)](https://github.com/sebasje "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Sebastian Lövdahl (@slovdahl)](https://github.com/slovdahl "3 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Sebastian Lövdahl (@slovdahl)](https://github.com/slovdahl "22 total commits to the Home Assistant orga: +12 commits to core +10 commits to home-assistant.io ") -- [Sebastian Muszynski (@syssi)](https://github.com/syssi "217 total commits to the Home Assistant orga: -139 commits to core +- [Sebastian Muszynski (@syssi)](https://github.com/syssi "225 total commits to the Home Assistant orga: +144 commits to core 62 commits to home-assistant.io -5 commits to wheels-custom-integrations -5 commits to brands -3 commits to netdisco +9 commits to brands +7 commits to wheels-custom-integrations 2 commits to frontend 1 commit to people ") -- [Sebastian Nohn (@nohn)](https://github.com/nohn "2 total commits to the Home Assistant orga: +- [Sebastian Nohn (@nohn)](https://github.com/nohn "4 total commits to the Home Assistant orga: 2 commits to home-assistant.io +1 commit to android +1 commit to core ") - [Sebastian Ovide (@sebastianovide)](https://github.com/sebastianovide "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -15558,15 +21098,30 @@ This page contains a list of people who have contributed in one way or another t - [sebastian\-misztal (@sebastian-misztal)](https://github.com/sebastian-misztal "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Sebastien Roy (@Sebastein)](https://github.com/Sebastein "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Sebastien Van Cauwenberghe (@svancau)](https://github.com/svancau "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [sebdoan (@sebdoan)](https://github.com/sebdoan "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Sebest (@sebest)](https://github.com/sebest "5 total commits to the Home Assistant orga: 5 commits to feedparser ") +- [sebfortier2288 (@sebfortier2288)](https://github.com/sebfortier2288 "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Sefan Rommel (@StefanRommel)](https://github.com/StefanRommel "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [sekavatar (@sekavatar)](https://github.com/sekavatar "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [semenak94 (@semenak94)](https://github.com/semenak94 "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [Semir Patel (@analogue)](https://github.com/analogue "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -15576,13 +21131,19 @@ This page contains a list of people who have contributed in one way or another t - [sentinel\-23 (@sentinel-23)](https://github.com/sentinel-23 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [serenewaffles (@serenewaffles)](https://github.com/serenewaffles "1 total commits to the Home Assistant orga: +1 commit to core +") - [Sergei Vishnikin (@armicron)](https://github.com/armicron "33 total commits to the Home Assistant orga: 33 commits to warrant ") - [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: +- [Sergey Alyoshin (@alyoshin)](https://github.com/alyoshin "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Sergey Avdeev (@kasitoru)](https://github.com/kasitoru "3 total commits to the Home Assistant orga: 2 commits to frontend 1 commit to operating-system ") @@ -15593,6 +21154,12 @@ This page contains a list of people who have contributed in one way or another t - [Sergey Lanzman (@sergeylanzman)](https://github.com/sergeylanzman "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Sergey Lysov (@sergeylysov)](https://github.com/sergeylysov "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Sergey Matyukevich (@geomatsi)](https://github.com/geomatsi "85 total commits to the Home Assistant orga: +85 commits to buildroot +") - [Sergey Morozik (@morozsm)](https://github.com/morozsm "1 total commits to the Home Assistant orga: 1 commit to supervisor ") @@ -15603,26 +21170,46 @@ This page contains a list of people who have contributed in one way or another t - [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 "10 total commits to the Home Assistant orga: -6 commits to core +- [Sergi Granell (@xerpi)](https://github.com/xerpi "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Sergio Conde Gómez (@skgsergio)](https://github.com/skgsergio "12 total commits to the Home Assistant orga: +7 commits to core 3 commits to home-assistant.io +1 commit to addons 1 commit to brands ") +- [Sergio Gutierrez Alvarez (@arksega)](https://github.com/arksega "2 total commits to the Home Assistant orga: +2 commits to core +") - [Sergio Mayoral Martínez (@sermayoral)](https://github.com/sermayoral "2 total commits to the Home Assistant orga: 2 commits to core ") -- [Sergio Oller (@zeehio)](https://github.com/zeehio "7 total commits to the Home Assistant orga: +- [Sergio Oller (@zeehio)](https://github.com/zeehio "8 total commits to the Home Assistant orga: 3 commits to core +2 commits to supervisor 2 commits to developers.home-assistant -1 commit to supervisor 1 commit to home-assistant.io ") +- [Sergio Prado (@sergioprado)](https://github.com/sergioprado "104 total commits to the Home Assistant orga: +104 commits to buildroot +") - [Sergio Viudes (@sjvc)](https://github.com/sjvc "3 total commits to the Home Assistant orga: 3 commits to core ") -- [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 +- [Sergiy Maysak (@sergeymaysak)](https://github.com/sergeymaysak "14 total commits to the Home Assistant orga: +9 commits to core +4 commits to home-assistant.io +1 commit to brands +") +- [Serhii Sakhno (@sdongles)](https://github.com/sdongles "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Serj Kalichev (@pkun)](https://github.com/pkun "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [Seth (@WillCodeForCats)](https://github.com/WillCodeForCats "1 total commits to the Home Assistant orga: +1 commit to brands ") - [Seth Jackson (@sethjackson)](https://github.com/sethjackson "1 total commits to the Home Assistant orga: 1 commit to feedparser @@ -15630,25 +21217,38 @@ This page contains a list of people who have contributed in one way or another t - [Sev (@collse)](https://github.com/collse "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Seweryn Zeman (@cadavre)](https://github.com/cadavre "2 total commits to the Home Assistant orga: -1 commit to netdisco +- [Seweryn Zeman (@cadavre)](https://github.com/cadavre "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Sezer K (@darkson95)](https://github.com/darkson95 "2 total commits to the Home Assistant orga: +2 commits to core +") - [sfalkman (@sfalkman)](https://github.com/sfalkman "2 total commits to the Home Assistant orga: 1 commit to wheels-custom-integrations 1 commit to brands ") -- [sfam (@sfam)](https://github.com/sfam "65 total commits to the Home Assistant orga: +- [sfam (@sfam)](https://github.com/sfam "64 total commits to the Home Assistant orga: 58 commits to core 5 commits to home-assistant.io -1 commit to netdisco 1 commit to frontend ") - [sfjes (@sfjes)](https://github.com/sfjes "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Shahen Hovhannisyan (@shahen94)](https://github.com/shahen94 "1 total commits to the Home Assistant orga: -1 commit to frontend +- [sfroberg (@sfroberg)](https://github.com/sfroberg "23 total commits to the Home Assistant orga: +23 commits to buildroot +") +- [SgtBatten (@SgtBatten)](https://github.com/SgtBatten "1 total commits to the Home Assistant orga: +1 commit to core +") +- [ShadowBr0ther (@ShadowBr0ther)](https://github.com/ShadowBr0ther "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Shai Ungar (@shaiu)](https://github.com/shaiu "13 total commits to the Home Assistant orga: +9 commits to core +2 commits to home-assistant.io +1 commit to wheels-custom-integrations +1 commit to brands ") - [shanbs (@shanbs)](https://github.com/shanbs "4 total commits to the Home Assistant orga: 3 commits to core @@ -15660,15 +21260,18 @@ This page contains a list of people who have contributed in one way or another t - [Shane Liesegang (@sjml)](https://github.com/sjml "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Shane M (@shanem2004)](https://github.com/shanem2004 "1 total commits to the Home Assistant orga: +1 commit 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 "5 total commits to the Home Assistant orga: +- [Shane Qi (@ShaneQi)](https://github.com/ShaneQi "7 total commits to the Home Assistant orga: +3 commits to frontend 3 commits to core -1 commit to frontend 1 commit to home-assistant.io ") -- [Shane Taylor (@GirzzlyAK)](https://github.com/GirzzlyAK "1 total commits to the Home Assistant orga: +- [Shane Taylor (@GrizzlyAK)](https://github.com/GrizzlyAK "1 total commits to the Home Assistant orga: 1 commit to alerts.home-assistant.io ") - [Shantanu Tushar (@shaan7)](https://github.com/shaan7 "1 total commits to the Home Assistant orga: @@ -15685,9 +21288,19 @@ 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 (@shawnshyguy)](https://github.com/shawnshyguy "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Shawn J\. Goff (@shawnjgoff)](https://github.com/shawnjgoff "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [Shawn Oster (@shawnoster)](https://github.com/shawnoster "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Shawn Saenger (@ssaenger)](https://github.com/ssaenger "2 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core +") - [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 @@ -15695,26 +21308,35 @@ This page contains a list of people who have contributed in one way or another t - [Shawna (@cherrykoda)](https://github.com/cherrykoda "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Shay Levy (@thecode)](https://github.com/thecode "37 total commits to the Home Assistant orga: -30 commits to core -6 commits to home-assistant.io +- [Shay Levy (@thecode)](https://github.com/thecode "242 total commits to the Home Assistant orga: +198 commits to core +27 commits to home-assistant.io +7 commits to developers.home-assistant +2 commits to hass-release +2 commits to example-custom-config +2 commits to probot-home-assistant +2 commits to brands 1 commit to operating-system +1 commit to frontend ") -- [shbatm (@shbatm)](https://github.com/shbatm "29 total commits to the Home Assistant orga: -20 commits to core -6 commits to home-assistant.io +- [shbatm (@shbatm)](https://github.com/shbatm "39 total commits to the Home Assistant orga: +28 commits to core +8 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 addons ") -- [shker (@shkerh)](https://github.com/shkerh "2 total commits to the Home Assistant orga: +- [shker (@shker-tt)](https://github.com/shker-tt "2 total commits to the Home Assistant orga: 2 commits to core ") -- [shred86 (@shred86)](https://github.com/shred86 "31 total commits to the Home Assistant orga: +- [Shlomi Vaknin (@shlomow)](https://github.com/shlomow "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [shred86 (@shred86)](https://github.com/shred86 "32 total commits to the Home Assistant orga: 22 commits to core -8 commits to home-assistant.io +9 commits to home-assistant.io 1 commit to brands ") - [shuaiger (@shuaiger)](https://github.com/shuaiger "1 total commits to the Home Assistant orga: @@ -15723,15 +21345,18 @@ This page contains a list of people who have contributed in one way or another t - [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 "61 total commits to the Home Assistant orga: +- [Shulyaka (@Shulyaka)](https://github.com/Shulyaka "65 total commits to the Home Assistant orga: 24 commits to frontend -17 commits to core -14 commits to home-assistant.io +19 commits to core +15 commits to home-assistant.io 4 commits to developers.home-assistant -2 commits to brands +3 commits to brands ") -- [Sian (@Sian-Lee-SA)](https://github.com/Sian-Lee-SA "4 total commits to the Home Assistant orga: -4 commits to core +- [Shyam Saini (@elshyam)](https://github.com/elshyam "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Sian (@Sian-Lee-SA)](https://github.com/Sian-Lee-SA "5 total commits to the Home Assistant orga: +5 commits to core ") - [siberx (@siberx)](https://github.com/siberx "1 total commits to the Home Assistant orga: 1 commit to core @@ -15751,6 +21376,9 @@ This page contains a list of people who have contributed in one way or another t - [signaleleven (@signaleleven)](https://github.com/signaleleven "1 total commits to the Home Assistant orga: 1 commit to addons ") +- [Signed\-off\-by: Alex Xu (@Hello71)](https://github.com/Hello71 "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [Siim Talvik (@simpss)](https://github.com/simpss "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -15762,8 +21390,12 @@ This page contains a list of people who have contributed in one way or another t 1 commit to addons 1 commit to core ") -- [sillyfrog (@sillyfrog)](https://github.com/sillyfrog "1 total commits to the Home Assistant orga: +- [sillyfrog (@sillyfrog)](https://github.com/sillyfrog "7 total commits to the Home Assistant orga: +3 commits to brands 1 commit to example-custom-config +1 commit to wheels-custom-integrations +1 commit to core +1 commit to home-assistant.io ") - [silsha fux (@silsha)](https://github.com/silsha "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -15775,6 +21407,10 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [simbaja (@simbaja)](https://github.com/simbaja "4 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +2 commits to brands +") - [simieski (@simieski)](https://github.com/simieski "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -15786,25 +21422,35 @@ This page contains a list of people who have contributed in one way or another t - [Simon (@Deadolus)](https://github.com/Deadolus "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Simon (@chatainsim)](https://github.com/chatainsim "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Simon (@chatainsim)](https://github.com/chatainsim "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [Simon Bumm (@codingcyclist)](https://github.com/codingcyclist "1 total commits to the Home Assistant orga: 1 commit to brands ") +- [Simon Dawson (@spdawson)](https://github.com/spdawson "222 total commits to the Home Assistant orga: +222 commits to buildroot +") - [Simon Elsbrock (@elsbrock)](https://github.com/elsbrock "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Simon Hansen (@DurgNomis-drol)](https://github.com/DurgNomis-drol "23 total commits to the Home Assistant orga: +15 commits to core +4 commits to home-assistant.io +3 commits to brands +1 commit to wheels-custom-integrations +") - [Simon Hellbe (@hellbe)](https://github.com/hellbe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Simon Holzmayer (@sholzmayer)](https://github.com/sholzmayer "6 total commits to the Home Assistant orga: 3 commits to operating-system 1 commit to supervisor -1 commit to developers.home-assistant 1 commit to frontend +1 commit to developers.home-assistant ") -- [Simon Hörrle (@CM000n)](https://github.com/CM000n "1 total commits to the Home Assistant orga: +- [Simon Hörrle (@CM000n)](https://github.com/CM000n "2 total commits to the Home Assistant orga: +1 commit to brands 1 commit to core ") - [Simon L\. B\. Nielsen (@simonlbn)](https://github.com/simonlbn "1 total commits to the Home Assistant orga: @@ -15813,6 +21459,12 @@ This page contains a list of people who have contributed in one way or another t - [Simon Lepla (@Platzii)](https://github.com/Platzii "1 total commits to the Home Assistant orga: 1 commit to addons ") +- [Simon Maes (@SimonMaes)](https://github.com/SimonMaes "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Simon Marchi (@simark)](https://github.com/simark "7 total commits to the Home Assistant orga: +7 commits to buildroot +") - [Simon Nørager Sørensen (@simse)](https://github.com/simse "5 total commits to the Home Assistant orga: 4 commits to core 1 commit to home-assistant.io @@ -15820,11 +21472,23 @@ This page contains a list of people who have contributed in one way or another t - [Simon Opelt (@sopelt)](https://github.com/sopelt "2 total commits to the Home Assistant orga: 2 commits to operating-system ") +- [Simon Sander (@sim-san)](https://github.com/sim-san "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Simon Szustkowski (@simonszu)](https://github.com/simonszu "7 total commits to the Home Assistant orga: 4 commits to home-assistant.io 3 commits to core ") -- [Simon van der Veldt (@simonvanderveldt)](https://github.com/simonvanderveldt "1 total commits to the Home Assistant orga: +- [Simon Tegelid (@simontegelid)](https://github.com/simontegelid "2 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +1 commit to core +") +- [Simon Vallières (@sisimomo)](https://github.com/sisimomo "2 total commits to the Home Assistant orga: +1 commit to frontend +1 commit to home-assistant.io +") +- [Simon van der Veldt (@simonvanderveldt)](https://github.com/simonvanderveldt "2 total commits to the Home Assistant orga: +1 commit to buildroot 1 commit to core ") - [Simon Wüllhorst (@descilla)](https://github.com/descilla "1 total commits to the Home Assistant orga: @@ -15833,10 +21497,11 @@ This page contains a list of people who have contributed in one way or another t - [Simone (@simonewebdesign)](https://github.com/simonewebdesign "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Simone Chemelli (@chemelli74)](https://github.com/chemelli74 "34 total commits to the Home Assistant orga: -28 commits to core -4 commits to home-assistant.io -2 commits to frontend +- [Simone Chemelli (@chemelli74)](https://github.com/chemelli74 "263 total commits to the Home Assistant orga: +235 commits to core +24 commits to home-assistant.io +3 commits to frontend +1 commit to developers.home-assistant ") - [simonk83 (@simonk83)](https://github.com/simonk83 "11 total commits to the Home Assistant orga: 11 commits to open-zwave @@ -15847,14 +21512,20 @@ This page contains a list of people who have contributed in one way or another t - [SimonThoustrup (@SimonThoustrup)](https://github.com/SimonThoustrup "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Simply Synced (@SimplySynced)](https://github.com/SimplySynced "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Sindre Hansen (@sindrehan)](https://github.com/sindrehan "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [sindudas (@sindudas)](https://github.com/sindudas "2 total commits to the Home Assistant orga: +2 commits to core +") - [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 +- [Sissi91 (@Sissi91)](https://github.com/Sissi91 "1 total commits to the Home Assistant orga: +1 commit to android ") - [sjabby (@sjabby)](https://github.com/sjabby "33 total commits to the Home Assistant orga: 29 commits to home-assistant.io @@ -15868,8 +21539,9 @@ This page contains a list of people who have contributed in one way or another t - [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 +- [Sjoerd (@Sjoerdfc)](https://github.com/Sjoerdfc "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io ") - [sjoshi10 (@sjoshi10)](https://github.com/sjoshi10 "1 total commits to the Home Assistant orga: 1 commit to warrant @@ -15877,23 +21549,40 @@ This page contains a list of people who have contributed in one way or another t - [skanab (@skanab)](https://github.com/skanab "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [SkechyWolf (@SkechyWolf)](https://github.com/SkechyWolf "13 total commits to the Home Assistant orga: +12 commits to android +1 commit to companion.home-assistant +") +- [skif\-web (@skif-web)](https://github.com/skif-web "8 total commits to the Home Assistant orga: +8 commits to buildroot +") - [skycryer (@skycryer)](https://github.com/skycryer "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Skyler Riley (@skylerisskyler)](https://github.com/skylerisskyler "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [slamp (@slamp)](https://github.com/slamp "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [slashback100 (@slashback100)](https://github.com/slashback100 "1 total commits to the Home Assistant orga: +1 commit to brands +") - [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 +- [Slava Zanko (@slavaz)](https://github.com/slavaz "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Sleeps (@MrSleeps)](https://github.com/MrSleeps "1 total commits to the Home Assistant orga: +1 commit to brands ") - [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 "2 total commits to the Home Assistant orga: +- [Sly Gryphon (@sgryphon)](https://github.com/sgryphon "3 total commits to the Home Assistant orga: 2 commits to core +1 commit to home-assistant.io ") - [sly1111 (@sly1111)](https://github.com/sly1111 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -15901,7 +21590,13 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [SmaginPV (@SmaginPV)](https://github.com/SmaginPV "1 total commits to the Home Assistant orga: +1 commit to core +") +- [smallship (@elliot-100)](https://github.com/elliot-100 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Smart Home Junkie (@smarthomejunkie)](https://github.com/smarthomejunkie "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: @@ -15911,6 +21606,12 @@ This page contains a list of people who have contributed in one way or another t - [smoldaner (@smoldaner)](https://github.com/smoldaner "2 total commits to the Home Assistant orga: 2 commits to core ") +- [smolz (@smolz)](https://github.com/smolz "6 total commits to the Home Assistant orga: +6 commits to home-assistant.io +") +- [smonesi (@smonesi)](https://github.com/smonesi "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [smugleafdev (@smugleafdev)](https://github.com/smugleafdev "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -15920,6 +21621,9 @@ This page contains a list of people who have contributed in one way or another t - [snagytx (@snagytx)](https://github.com/snagytx "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Snailboy2 (@Snailboy2)](https://github.com/Snailboy2 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [snarky\-snark (@snarky-snark)](https://github.com/snarky-snark "1 total commits to the Home Assistant orga: 1 commit to brands ") @@ -15929,28 +21633,60 @@ This page contains a list of people who have contributed in one way or another t - [SneakSnackSnake (@SneakSnackSnake)](https://github.com/SneakSnackSnake "1 total commits to the Home Assistant orga: 1 commit to core ") +- [snis (@snis)](https://github.com/snis "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [snizzleorg (@snizzleorg)](https://github.com/snizzleorg "5 total commits to the Home Assistant orga: 5 commits to hadashboard ") -- [SNoof85 (@SNoof85)](https://github.com/SNoof85 "81 total commits to the Home Assistant orga: +- [SNoof85 (@SNoof85)](https://github.com/SNoof85 "103 total commits to the Home Assistant orga: 67 commits to core -14 commits to home-assistant.io +35 commits to home-assistant.io +1 commit to addons ") - [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: +- [SoCalix (@Socalix)](https://github.com/Socalix "1 total commits to the Home Assistant orga: +1 commit to core +") +- [sOckhamSter (@sOckhamSter)](https://github.com/sOckhamSter "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Sodbileg Gansukh (@minimaluminium)](https://github.com/minimaluminium "185 total commits to the Home Assistant orga: +185 commits to newsletter-ghost-theme +") +- [Sofiane Gargouri (@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 ") +- [solarx (@solarx)](https://github.com/solarx "11 total commits to the Home Assistant orga: +11 commits to buildroot +") +- [Soloam (@soloam)](https://github.com/soloam "1 total commits to the Home Assistant orga: +1 commit to brands +") - [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: +- [soluga (@soluga)](https://github.com/soluga "2 total commits to the Home Assistant orga: +2 commits to core +") +- [some\-guy\-in\-oz (@some-guy-in-oz)](https://github.com/some-guy-in-oz "1 total commits to the Home Assistant orga: 1 commit to core ") +- [sonicz (@sonicz)](https://github.com/sonicz "16 total commits to the Home Assistant orga: +16 commits to buildroot +") +- [sophof (@sophof)](https://github.com/sophof "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to home-assistant.io +") +- [Soren Brinkmann (@sorenb-xlnx)](https://github.com/sorenb-xlnx "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Sorin Sbarnea (@ssbarnea)](https://github.com/ssbarnea "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") @@ -15964,12 +21700,15 @@ This page contains a list of people who have contributed in one way or another t 1 commit to operating-system ") - [Soós Péter (@soosp)](https://github.com/soosp "4 total commits to the Home Assistant orga: -2 commits to home-assistant.io 2 commits to core +2 commits to home-assistant.io ") - [spacemanspiff2007 (@spacemanspiff2007)](https://github.com/spacemanspiff2007 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [spahlimi (@spahlimi)](https://github.com/spahlimi "1 total commits to the Home Assistant orga: +1 commit to core +") - [sparkydave1981 (@sparkydave1981)](https://github.com/sparkydave1981 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -15997,8 +21736,11 @@ This page contains a list of people who have contributed in one way or another t - [Spencer Williams (@spencerwi)](https://github.com/spencerwi "1 total commits to the Home Assistant orga: 1 commit to frontend ") -- [Spiffo (@Spiffo)](https://github.com/Spiffo "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Spenser Gilliland (@Spenser309)](https://github.com/Spenser309 "64 total commits to the Home Assistant orga: +64 commits to buildroot +") +- [Spiffo (@Spiffo)](https://github.com/Spiffo "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io ") - [spinside (@spinside)](https://github.com/spinside "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -16006,15 +21748,19 @@ This page contains a list of people who have contributed in one way or another t - [splerman (@splerman)](https://github.com/splerman "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [springstan (@springstan)](https://github.com/springstan "504 total commits to the Home Assistant orga: +- [springstan (@springstan)](https://github.com/springstan "505 total commits to the Home Assistant orga: 466 commits to core 20 commits to frontend -15 commits to home-assistant.io +16 commits to home-assistant.io 2 commits to brands 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 +- [sprocket\-9 (@sprocket-9)](https://github.com/sprocket-9 "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [spycle (@spycle)](https://github.com/spycle "2 total commits to the Home Assistant orga: +2 commits to brands ") - [square99 (@square99)](https://github.com/square99 "2 total commits to the Home Assistant orga: 2 commits to core @@ -16052,10 +21798,22 @@ This page contains a list of people who have contributed in one way or another t - [staal0 (@staal0)](https://github.com/staal0 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Stanislas Bach (@sbach)](https://github.com/sbach "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Stanislav Bogatyrev (@realloc)](https://github.com/realloc "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Stanislav Vasic (@Stane1983)](https://github.com/Stane1983 "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [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 ") +- [Stany MARCEL (@ynsta)](https://github.com/ynsta "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Staphylea (@Staphylea)](https://github.com/Staphylea "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") @@ -16065,12 +21823,12 @@ This page contains a list of people who have contributed in one way or another t - [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 "78 total commits to the Home Assistant orga: -51 commits to core -23 commits to home-assistant.io +- [starkillerOG (@starkillerOG)](https://github.com/starkillerOG "223 total commits to the Home Assistant orga: +168 commits to core +49 commits to home-assistant.io +3 commits to brands 2 commits to frontend 1 commit to developers.home-assistant -1 commit to brands ") - [Stavros Korokithakis (@skorokithakis)](https://github.com/skorokithakis "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -16085,33 +21843,49 @@ This page contains a list of people who have contributed in one way or another t - [steckenpferd (@steckenpferd)](https://github.com/steckenpferd "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [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 "15 total commits to the Home Assistant orga: -11 commits to home-assistant.io +- [Stefan (@stefanroelofs)](https://github.com/stefanroelofs "26 total commits to the Home Assistant orga: +21 commits to home-assistant.io 4 commits to addons +1 commit to core ") -- [Stefan Agner (@agners)](https://github.com/agners "190 total commits to the Home Assistant orga: -142 commits to operating-system -18 commits to version -10 commits to home-assistant.io -4 commits to supervisor -4 commits to cli -4 commits to core -3 commits to developers.home-assistant +- [Stefan Agner (@agners)](https://github.com/agners "622 total commits to the Home Assistant orga: +391 commits to operating-system +57 commits to version +36 commits to supervisor +28 commits to core +23 commits to home-assistant.io +18 commits to addons-development +15 commits to os-agent +13 commits to cli +7 commits to addons +7 commits to developers.home-assistant +4 commits to plugin-cli +4 commits to plugin-multicast +4 commits to buildroot +2 commits to builder +2 commits to plugin-audio +2 commits to analytics.home-assistant.io +2 commits to devcontainer +1 commit to docker-base 1 commit to actions -1 commit to plugin-cli 1 commit to supervised-installer -1 commit to addons +1 commit to plugin-dns 1 commit to operating-system-blobs +1 commit to landingpage +1 commit to brands +") +- [Stefan Becker (@stefanb2)](https://github.com/stefanb2 "10 total commits to the Home Assistant orga: +10 commits to buildroot ") - [Stefan Burke (@boot-ini)](https://github.com/boot-ini "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Stefan de Lange (@langestefan)](https://github.com/langestefan "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Stefan Fejes (@fejes713)](https://github.com/fejes713 "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") @@ -16123,6 +21897,18 @@ This page contains a list of people who have contributed in one way or another t 3 commits to core 1 commit to home-assistant.io ") +- [Stefan Nyffenegger (@nyffchanium)](https://github.com/nyffchanium "4 total commits to the Home Assistant orga: +4 commits to brands +") +- [Stefan Rado (@kroimon)](https://github.com/kroimon "1 total commits to the Home Assistant orga: +1 commit to addons +") +- [Stefan Sørensen (@ssorensen)](https://github.com/ssorensen "33 total commits to the Home Assistant orga: +33 commits to buildroot +") +- [stefan\.nickl@gmail\.com (@snickl)](https://github.com/snickl "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [stefanlod (@Talismanian)](https://github.com/Talismanian "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -16133,15 +21919,39 @@ This page contains a list of people who have contributed in one way or another t - [Stefano0042 (@Stefano0042)](https://github.com/Stefano0042 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Steffen Dirkwinkel (@0xQSL)](https://github.com/0xQSL "1 total commits to the Home Assistant orga: -1 commit to addons +- [stefano055415 (@stefano055415)](https://github.com/stefano055415 "18 total commits to the Home Assistant orga: +9 commits to core +8 commits to home-assistant.io +1 commit to brands +") +- [Steffen Dirkwinkel (@sdirkwinkel)](https://github.com/sdirkwinkel "3 total commits to the Home Assistant orga: +3 commits to addons +") +- [Steffen Fredriksen (@Hellowlol)](https://github.com/Hellowlol "6 total commits to the Home Assistant orga: +3 commits to wheels-custom-integrations +1 commit to brands +1 commit to core +1 commit to home-assistant.io +") +- [Steffen Ronalter (@ronalterde)](https://github.com/ronalterde "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io ") - [Steffen Rusitschka (@rusitschka)](https://github.com/rusitschka "4 total commits to the Home Assistant orga: -2 commits to home-assistant.io 2 commits to core +2 commits to home-assistant.io ") -- [Steffen Zimmermann (@mampfes)](https://github.com/mampfes "4 total commits to the Home Assistant orga: -3 commits to core +- [Steffen Zimmermann (@mampfes)](https://github.com/mampfes "13 total commits to the Home Assistant orga: +7 commits to core +3 commits to brands +2 commits to wheels-custom-integrations +1 commit to home-assistant.io +") +- [Stefán Jökull Sigurðarson (@stebet)](https://github.com/stebet "1 total commits to the Home Assistant orga: +1 commit to core +") +- [stegm (@stegm)](https://github.com/stegm "8 total commits to the Home Assistant orga: +7 commits to core 1 commit to home-assistant.io ") - [Steltek (@Steltek)](https://github.com/Steltek "1 total commits to the Home Assistant orga: @@ -16153,6 +21963,9 @@ This page contains a list of people who have contributed in one way or another t - [Stepan Mazurov (@smazurov)](https://github.com/smazurov "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") +- [Stephan (@steho)](https://github.com/steho "27 total commits to the Home Assistant orga: +27 commits to buildroot +") - [Stephan Auerhahn (@mpstephana)](https://github.com/mpstephana "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -16163,10 +21976,23 @@ This page contains a list of people who have contributed in one way or another t - [Stephan Grobler (@stephangrobler)](https://github.com/stephangrobler "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [stephan192 (@stephan192)](https://github.com/stephan192 "3 total commits to the Home Assistant orga: +- [Stephan Hoffmann (@Stephan-H)](https://github.com/Stephan-H "3 total commits to the Home Assistant orga: +3 commits to buildroot +") +- [Stephan Thamm (@thammi)](https://github.com/thammi "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Stephan Traub (@sbidy)](https://github.com/sbidy "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to home-assistant.io ") +- [Stephan Uhle (@StephanU)](https://github.com/StephanU "2 total commits to the Home Assistant orga: +2 commits to core +") +- [stephan192 (@stephan192)](https://github.com/stephan192 "7 total commits to the Home Assistant orga: +6 commits to core +1 commit to home-assistant.io +") - [stephanerosi (@stephanerosi)](https://github.com/stephanerosi "11 total commits to the Home Assistant orga: 8 commits to core 3 commits to home-assistant.io @@ -16174,12 +22000,18 @@ This page contains a list of people who have contributed in one way or another t - [stephanfevrier (@stephanfevrier)](https://github.com/stephanfevrier "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [StephanJoubert (@StephanJoubert)](https://github.com/StephanJoubert "1 total commits to the Home Assistant orga: +1 commit to brands +") - [stephanmiehe (@stephanmiehe)](https://github.com/stephanmiehe "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [StephanVinkenborg (@StephanVinkenborg)](https://github.com/StephanVinkenborg "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Stephen Beechen (@sabeechen)](https://github.com/sabeechen "2 total commits to the Home Assistant orga: +2 commits to core +") - [Stephen Benjamin (@stbenjam)](https://github.com/stbenjam "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -16197,6 +22029,9 @@ This page contains a list of people who have contributed in one way or another t - [Stephen Hoekstra (@shoekstra)](https://github.com/shoekstra "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Stephen Jones (@skipishere)](https://github.com/skipishere "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Stephen Littman (@anarchking)](https://github.com/anarchking "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -16205,8 +22040,8 @@ This page contains a list of people who have contributed in one way or another t ") - [Stephen Vanterpool (@blackgold9)](https://github.com/blackgold9 "115 total commits to the Home Assistant orga: 113 commits to iOS -1 commit to developers.home-assistant 1 commit to frontend +1 commit to developers.home-assistant ") - [Stephen Yeargin (@stephenyeargin)](https://github.com/stephenyeargin "32 total commits to the Home Assistant orga: 29 commits to hubot-home-assistant @@ -16228,12 +22063,28 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to home-assistant.io ") +- [Steve Dougherty (@Thynix)](https://github.com/Thynix "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Steve Dwyer (@kangaroomadman)](https://github.com/kangaroomadman "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Steve Easley (@SteveEasley)](https://github.com/SteveEasley "10 total commits to the Home Assistant orga: +4 commits to core +4 commits to home-assistant.io +1 commit to addons +1 commit to brands +") - [Steve Edson (@SteveEdson)](https://github.com/SteveEdson "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Steve Herrell (@twrecked)](https://github.com/twrecked "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Steve James (@stevejames)](https://github.com/stevejames "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [Steve Luzynski (@sluzynsk)](https://github.com/sluzynsk "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -16243,6 +22094,9 @@ This page contains a list of people who have contributed in one way or another t - [Steve Pomeroy (@xxv)](https://github.com/xxv "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") +- [Steve Repsher (@steverep)](https://github.com/steverep "10 total commits to the Home Assistant orga: +10 commits to frontend +") - [Steve Rhoades (@steverhoades)](https://github.com/steverhoades "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to core @@ -16277,27 +22131,28 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to home-assistant.io ") -- [Steven Conaway (@SConaway)](https://github.com/SConaway "3 total commits to the Home Assistant orga: +- [Steven Conaway (@SConaway)](https://github.com/SConaway "4 total commits to the Home Assistant orga: 2 commits to core -1 commit to home-assistant.io +2 commits to home-assistant.io ") - [Steven D\. Lander (@stevendlander)](https://github.com/stevendlander "3 total commits to the Home Assistant orga: 3 commits to core ") -- [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 J\. Hill (@sjhill71)](https://github.com/sjhill71 "148 total commits to the Home Assistant orga: +148 commits to buildroot ") -- [Steven Looman (@StevenLooman)](https://github.com/StevenLooman "97 total commits to the Home Assistant orga: -88 commits to core -6 commits to home-assistant.io -3 commits to netdisco +- [Steven Looman (@StevenLooman)](https://github.com/StevenLooman "129 total commits to the Home Assistant orga: +122 commits to core +7 commits to home-assistant.io +") +- [Steven Noonan (@tycho)](https://github.com/tycho "22 total commits to the Home Assistant orga: +22 commits to buildroot ") - [Steven Onorato (@SteveOnorato)](https://github.com/SteveOnorato "1 total commits to the Home Assistant orga: 1 commit to wheels-custom-integrations ") -- [Steven Rollason (@gadgetchnnel)](https://github.com/gadgetchnnel "14 total commits to the Home Assistant orga: -7 commits to core +- [Steven Rollason (@gadgetchnnel)](https://github.com/gadgetchnnel "15 total commits to the Home Assistant orga: +8 commits to core 2 commits to android 2 commits to home-assistant.io 1 commit to mobile-apps-fcm-push @@ -16314,6 +22169,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Stewart Smith (@stewartsmith)](https://github.com/stewartsmith "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [stickpin (@stickpin)](https://github.com/stickpin "7 total commits to the Home Assistant orga: 5 commits to addons 1 commit to core @@ -16326,19 +22184,23 @@ This page contains a list of people who have contributed in one way or another t - [strelniece (@strelniece)](https://github.com/strelniece "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Strixx76 (@Strixx76)](https://github.com/Strixx76 "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io +- [Strixx76 (@Strixx76)](https://github.com/Strixx76 "2 total commits to the Home Assistant orga: +2 commits 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 core ") +- [stu247 (@stu247)](https://github.com/stu247 "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Stuart (@schford)](https://github.com/schford "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [Stuart Clark (@stuart-c)](https://github.com/stuart-c "2 total commits to the Home Assistant orga: -1 commit to wheels-custom-integrations +- [Stuart Clark (@stuart-c)](https://github.com/stuart-c "4 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations 1 commit to brands +1 commit to core ") - [Stuart McCroden (@McCroden)](https://github.com/McCroden "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io @@ -16350,8 +22212,11 @@ This page contains a list of people who have contributed in one way or another t - [Stuart Pook (@stuart12)](https://github.com/stuart12 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Stuart Williams (@stuwil)](https://github.com/stuwil "1 total commits to the Home Assistant orga: -1 commit to netdisco +- [Stuart Summers (@stuartsummers)](https://github.com/stuartsummers "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [StuartW (@stuartwishart)](https://github.com/stuartwishart "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [stuiow (@stuiow)](https://github.com/stuiow "1 total commits to the Home Assistant orga: 1 commit to open-zwave @@ -16360,6 +22225,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Stéphane BERTHELOT (@sberthelot)](https://github.com/sberthelot "1 total commits to the Home Assistant orga: +1 commit to brands +") - [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 core @@ -16367,9 +22235,18 @@ This page contains a list of people who have contributed in one way or another t - [Stéphane Raimbault (@stephane)](https://github.com/stephane "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Stéphane Veyret (@sveyret)](https://github.com/sveyret "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Suhun Han (@ssut)](https://github.com/ssut "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [Sumit Garg (@b49020)](https://github.com/b49020 "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Suniel Mahesh (@sunielmahesh)](https://github.com/sunielmahesh "10 total commits to the Home Assistant orga: +10 commits to buildroot +") - [superpuffin (@superpuffin)](https://github.com/superpuffin "2 total commits to the Home Assistant orga: 2 commits to core ") @@ -16379,29 +22256,55 @@ This page contains a list of people who have contributed in one way or another t - [sustah (@sustah)](https://github.com/sustah "1 total commits to the Home Assistant orga: 1 commit to core ") +- [sv99 (@sv99)](https://github.com/sv99 "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [svedese (@svedese)](https://github.com/svedese "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [sveip (@sveip)](https://github.com/sveip "4 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [sveip (@sveip)](https://github.com/sveip "5 total commits to the Home Assistant orga: +4 commits to home-assistant.io 1 commit to plugin-observer ") - [Sven (@svendroid)](https://github.com/svendroid "4 total commits to the Home Assistant orga: 4 commits to frontend ") +- [Sven (@wrt54g)](https://github.com/wrt54g "12 total commits to the Home Assistant orga: +7 commits to home-assistant.io +2 commits to core +1 commit to .github +1 commit to companion.home-assistant +1 commit to alerts.home-assistant.io +") +- [Sven Fischer (@svenihoney)](https://github.com/svenihoney "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Sven Klomp (@avanc)](https://github.com/avanc "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Sven Naumann (@sVnsation)](https://github.com/sVnsation "2 total commits to the Home Assistant orga: +1 commit to frontend +1 commit to core +") - [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 ") +- [sverdlin (@sverdlin)](https://github.com/sverdlin "7 total commits to the Home Assistant orga: +7 commits to buildroot +") - [sverleysen (@sverleysen)](https://github.com/sverleysen "3 total commits to the Home Assistant orga: 3 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 "56 total commits to the Home Assistant orga: -42 commits to core -10 commits to home-assistant.io +- [sviau (@sviau)](https://github.com/sviau "43 total commits to the Home Assistant orga: +43 commits to buildroot +") +- [Swamp\-Ig (@Swamp-Ig)](https://github.com/Swamp-Ig "61 total commits to the Home Assistant orga: +46 commits to core +11 commits to home-assistant.io 2 commits to frontend 1 commit to people 1 commit to developers.home-assistant @@ -16412,24 +22315,31 @@ This page contains a list of people who have contributed in one way or another t - [swhaat (@swhaat)](https://github.com/swhaat "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Sy (@sym0nd0)](https://github.com/sym0nd0 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Sybas (@Sybas)](https://github.com/Sybas "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [sycx2 (@sycx2)](https://github.com/sycx2 "4 total commits to the Home Assistant orga: -4 commits to core +- [sycx2 (@sycx2)](https://github.com/sycx2 "6 total commits to the Home Assistant orga: +6 commits to core ") - [sylvaincherrier (@sylvaincherrier)](https://github.com/sylvaincherrier "3 total commits to the Home Assistant orga: 3 commits to python-openzwave ") -- [Sylvia van Os (@TheLastProject)](https://github.com/TheLastProject "5 total commits to the Home Assistant orga: -4 commits to core +- [Sylvia van Os (@TheLastProject)](https://github.com/TheLastProject "8 total commits to the Home Assistant orga: +5 commits to core +2 commits to home-assistant.io +1 commit to brands +") +- [Syntox (@Syntoxr)](https://github.com/Syntoxr "1 total commits to the Home Assistant orga: 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 "10 total commits to the Home Assistant orga: -6 commits to home-assistant.io +- [Sytone (@sytone)](https://github.com/sytone "11 total commits to the Home Assistant orga: +7 commits to home-assistant.io 2 commits to core 1 commit to hassio-build 1 commit to developers.home-assistant @@ -16437,6 +22347,9 @@ This page contains a list of people who have contributed in one way or another t - [szaroubi (@szaroubi)](https://github.com/szaroubi "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Szymon Sakowicz (@sakowicz)](https://github.com/sakowicz "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Sébastien GALLET (@bibi21000)](https://github.com/bibi21000 "1024 total commits to the Home Assistant orga: 1024 commits to python-openzwave ") @@ -16446,28 +22359,37 @@ This page contains a list of people who have contributed in one way or another t - [Sébastien Marchand (@sebmarchand)](https://github.com/sebmarchand "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Sébastien RAMAGE (@doudz)](https://github.com/doudz "29 total commits to the Home Assistant orga: -24 commits to core +- [Sébastien RAMAGE (@doudz)](https://github.com/doudz "33 total commits to the Home Assistant orga: +27 commits to core 5 commits to home-assistant.io +1 commit to brands ") -- [Sérgio (@sergioisidoro)](https://github.com/sergioisidoro "3 total commits to the Home Assistant orga: +- [Sérgio (@sergioisidoro)](https://github.com/sergioisidoro "5 total commits to the Home Assistant orga: 1 commit to docker-base +1 commit to wheels-custom-integrations +1 commit to brands 1 commit to core 1 commit to home-assistant.io ") -- [Sören (@pattyland)](https://github.com/pattyland "25 total commits to the Home Assistant orga: -16 commits to home-assistant.io -7 commits to core +- [Sören (@pattyland)](https://github.com/pattyland "31 total commits to the Home Assistant orga: +18 commits to home-assistant.io +8 commits to core +2 commits to alerts.home-assistant.io 1 commit to example-custom-config 1 commit to addons +1 commit to brands ") -- [Sören Beye (@Hypfer)](https://github.com/Hypfer "10 total commits to the Home Assistant orga: +- [Sören Beye (@Hypfer)](https://github.com/Hypfer "16 total commits to the Home Assistant orga: +8 commits to home-assistant.io 3 commits to companion.home-assistant -2 commits to android 2 commits to frontend -2 commits to home-assistant.io +2 commits to android 1 commit to core ") +- [Sören Krollmann (@Kr0llx)](https://github.com/Kr0llx "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Sören Oldag (@soldag)](https://github.com/soldag "29 total commits to the Home Assistant orga: 21 commits to core 8 commits to home-assistant.io @@ -16478,15 +22400,15 @@ This page contains a list of people who have contributed in one way or another t - [t0ny (@t0ny)](https://github.com/t0ny "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [t30 (@t30)](https://github.com/t30 "8 total commits to the Home Assistant orga: -7 commits to home-assistant.io -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 frontend 1 commit to core ") +- [Tadas Danielius (@tadasdanielius)](https://github.com/tadasdanielius "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [tadly (@tadly)](https://github.com/tadly "9 total commits to the Home Assistant orga: 8 commits to core 1 commit to home-assistant.io @@ -16500,6 +22422,15 @@ This page contains a list of people who have contributed in one way or another t - [Tal Salmona (@talsalmona)](https://github.com/talsalmona "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Tal Shorer (@talshorer)](https://github.com/talshorer "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [tamueller (@tamueller)](https://github.com/tamueller "1 total commits to the Home Assistant orga: +1 commit to companion.home-assistant +") +- [Tamás Nagy (@T-bond)](https://github.com/T-bond "1 total commits to the Home Assistant orga: +1 commit to android +") - [Tamás Vörös (@vorostamas)](https://github.com/vorostamas "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io 1 commit to developers.home-assistant @@ -16507,21 +22438,33 @@ This page contains a list of people who have contributed in one way or another t - [tanderson1992 (@tanderson1992)](https://github.com/tanderson1992 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [tango\-foxtrot (@tango-foxtrot)](https://github.com/tango-foxtrot "1 total commits to the Home Assistant orga: -1 commit to netdisco -") - [TangoAlpha (@TangoAlpha)](https://github.com/TangoAlpha "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Tanny (@tannyl)](https://github.com/tannyl "1 total commits to the Home Assistant orga: +1 commit to addons +") - [tantecky (@tantecky)](https://github.com/tantecky "1 total commits to the Home Assistant orga: 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: +- [Tatham Oddie (@tathamoddie)](https://github.com/tathamoddie "3 total commits to the Home Assistant orga: +2 commits to core 1 commit to addons ") +- [Tathar (@Tathar)](https://github.com/Tathar "4 total commits to the Home Assistant orga: +3 commits to home-assistant.io +1 commit to core +") +- [Tatsuyuki Ishi (@ishitatsuyuki)](https://github.com/ishitatsuyuki "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [tausen (@tausen)](https://github.com/tausen "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Taylor Peet (@RePeet13)](https://github.com/RePeet13 "10 total commits to the Home Assistant orga: 9 commits to home-assistant.io 1 commit to core @@ -16546,6 +22489,9 @@ This page contains a list of people who have contributed in one way or another t - [tdejneka (@tdejneka)](https://github.com/tdejneka "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [tdorsey (@tdorsey)](https://github.com/tdorsey "1 total commits to the Home Assistant orga: +1 commit to core +") - [tduffy83 (@tduffy83)](https://github.com/tduffy83 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -16554,17 +22500,26 @@ This page contains a list of people who have contributed in one way or another t 9 commits to home-assistant.io 1 commit to home-assistant-js ") +- [Team Super Panda (@teamsuperpanda)](https://github.com/teamsuperpanda "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [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 core +- [techtrails (@TechTrails)](https://github.com/TechTrails "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Ted Drain (@TD22057)](https://github.com/TD22057 "8 total commits to the Home Assistant orga: +5 commits to core +3 commits to home-assistant.io +") - [Ted Sluis (@tedsluis)](https://github.com/tedsluis "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [Ted van den Brink (@tedvdb)](https://github.com/tedvdb "1 total commits to the Home Assistant orga: +1 commit to core +") - [tedstriker (@tedstriker)](https://github.com/tedstriker "4 total commits to the Home Assistant orga: 3 commits to home-assistant.io 1 commit to core @@ -16579,11 +22534,11 @@ This page contains a list of people who have contributed in one way or another t - [Teemu Patja (@tpatja)](https://github.com/tpatja "2 total commits to the Home Assistant orga: 2 commits to core ") -- [Teemu R\. (@rytilahti)](https://github.com/rytilahti "107 total commits to the Home Assistant orga: -83 commits to core -18 commits to home-assistant.io -5 commits to netdisco +- [Teemu R\. (@rytilahti)](https://github.com/rytilahti "151 total commits to the Home Assistant orga: +125 commits to core +24 commits to home-assistant.io 1 commit to people +1 commit to developers.home-assistant ") - [Teguh Sobirin (@tjstyle)](https://github.com/tjstyle "2 total commits to the Home Assistant orga: 2 commits to pi-gen @@ -16611,6 +22566,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 2 commits to home-assistant.io ") +- [temap (@temap)](https://github.com/temap "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [temeteke (@temeteke)](https://github.com/temeteke "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -16620,11 +22578,17 @@ This page contains a list of people who have contributed in one way or another t - [Teppo Rekola (@sytem)](https://github.com/sytem "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Terence Eden (@edent)](https://github.com/edent "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 +- [terminet85 (@terminet85)](https://github.com/terminet85 "2 total commits to the Home Assistant orga: +2 commits to core +") +- [terminusxx (@terminusxx)](https://github.com/terminusxx "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io ") - [Terry Carlin (@terrycarlin)](https://github.com/terrycarlin "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io @@ -16636,17 +22600,6 @@ This page contains a list of people who have contributed in one way or another t - [terual (@terual)](https://github.com/terual "1 total commits to the Home Assistant orga: 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 "33 total commits to the Home Assistant orga: -23 commits to core -4 commits to home-assistant.io -2 commits to developers.home-assistant -2 commits to brands -1 commit to alerts.home-assistant.io -1 commit to wheels-custom-integrations -") - [tfitts (@tfitts)](https://github.com/tfitts "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -16659,9 +22612,11 @@ This page contains a list of people who have contributed in one way or another t - [tguerena (@tguerena)](https://github.com/tguerena "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Thanasis (@drthanwho)](https://github.com/drthanwho "2 total commits to the Home Assistant orga: +- [Thanasis (@drthanwho)](https://github.com/drthanwho "12 total commits to the Home Assistant orga: +9 commits to home-assistant.io 1 commit to operating-system -1 commit to home-assistant.io +1 commit to alerts.home-assistant.io +1 commit to core ") - [thaohtp (@thaohtp)](https://github.com/thaohtp "8 total commits to the Home Assistant orga: 8 commits to core @@ -16673,8 +22628,8 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core ") - [ThaStealth (@ThaStealth)](https://github.com/ThaStealth "6 total commits to the Home Assistant orga: -3 commits to home-assistant.io 3 commits to core +3 commits to home-assistant.io ") - [THATDONFC (@THATDONFC)](https://github.com/THATDONFC "3 total commits to the Home Assistant orga: 1 commit to addons @@ -16684,8 +22639,8 @@ This page contains a list of people who have contributed in one way or another t - [The Gitter Badger (@gitter-badger)](https://github.com/gitter-badger "1 total commits to the Home Assistant orga: 1 commit to core ") -- [The Louie (@the-louie)](https://github.com/the-louie "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [The Louie (@the-louie)](https://github.com/the-louie "3 total commits to the Home Assistant orga: +3 commits to home-assistant.io ") - [The PapaMaan (@thepapamaan)](https://github.com/thepapamaan "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -16693,12 +22648,21 @@ This page contains a list of people who have contributed in one way or another t - [The Witty Coder (@wittycoder)](https://github.com/wittycoder "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [the\-real\-wizhack (@the-real-wizhack)](https://github.com/the-real-wizhack "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [thealexproctor (@thealexproctor)](https://github.com/thealexproctor "1 total commits to the Home Assistant orga: 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 core ") +- [Thebuz (@Thebuz)](https://github.com/Thebuz "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [TheByteStuff (@TheByteStuff)](https://github.com/TheByteStuff "1 total commits to the Home Assistant orga: +1 commit to brands +") - [TheCellMC (@TheCellMC)](https://github.com/TheCellMC "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -16706,14 +22670,23 @@ This page contains a list of people who have contributed in one way or another t - [thecem (@thecem)](https://github.com/thecem "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [TheDK (@TheDK)](https://github.com/TheDK "5 total commits to the Home Assistant orga: +5 commits to home-assistant.io +") +- [TheFes (@TheFes)](https://github.com/TheFes "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [TheGroundZero (@TheGroundZero)](https://github.com/TheGroundZero "1 total commits to the Home Assistant orga: 1 commit to addons ") +- [TheHolyRoger (@TheHolyRoger)](https://github.com/TheHolyRoger "1 total commits to the Home Assistant orga: +1 commit to core +") - [thehookup (@thehookup)](https://github.com/thehookup "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [TheJulianJES (@TheJulianJES)](https://github.com/TheJulianJES "7 total commits to the Home Assistant orga: -5 commits to core +- [TheJulianJES (@TheJulianJES)](https://github.com/TheJulianJES "9 total commits to the Home Assistant orga: +7 commits to core 2 commits to home-assistant.io ") - [thelittlefireman (@thelittlefireman)](https://github.com/thelittlefireman "3 total commits to the Home Assistant orga: @@ -16725,6 +22698,18 @@ This page contains a list of people who have contributed in one way or another t - [themoffatt (@themoffatt)](https://github.com/themoffatt "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [theneweinstein (@theneweinstein)](https://github.com/theneweinstein "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [TheNogl (@TheNogl)](https://github.com/TheNogl "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Theo Arends (@arendst)](https://github.com/arendst "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Theo Debrouwere (@tdebrouw)](https://github.com/tdebrouw "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [TheOgre (@TheOneOgre)](https://github.com/TheOneOgre "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -16744,8 +22729,11 @@ This page contains a list of people who have contributed in one way or another t - [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 +- [Thiago A\. Correa (@correa)](https://github.com/correa "62 total commits to the Home Assistant orga: +62 commits to buildroot +") +- [Thiago Oliveira (@chilicheech)](https://github.com/chilicheech "12 total commits to the Home Assistant orga: +6 commits to core 3 commits to open-zwave 3 commits to home-assistant.io ") @@ -16760,12 +22748,33 @@ This page contains a list of people who have contributed in one way or another t 1 commit to addons 1 commit to brands ") +- [Thibaut (@tetienne)](https://github.com/tetienne "42 total commits to the Home Assistant orga: +32 commits to core +4 commits to home-assistant.io +2 commits to developers.home-assistant +2 commits to brands +1 commit to alerts.home-assistant.io +1 commit to wheels-custom-integrations +") - [Thierry Bellocchi (@tbeloc)](https://github.com/tbeloc "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Thierry Bultel (@tbultel)](https://github.com/tbultel "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [Thijs de Jong (@thijsdejong)](https://github.com/thijsdejong "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Thijs Putman (@thijsputman)](https://github.com/thijsputman "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Thijs Vermeir (@lovebug356)](https://github.com/lovebug356 "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [Thijs Walcarius (@wlcrs)](https://github.com/wlcrs "3 total commits to the Home Assistant orga: +2 commits to core +1 commit to brands +") - [thinkelastic (@thinkelastic)](https://github.com/thinkelastic "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") @@ -16791,9 +22800,6 @@ This page contains a list of people who have contributed in one way or another t - [Thomas (@a-tom-s)](https://github.com/a-tom-s "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [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 ") @@ -16803,32 +22809,56 @@ This page contains a list of people who have contributed in one way or another t - [Thomas Barnekov (@tbarnekov)](https://github.com/tbarnekov "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Thomas Deblock (@deblockt)](https://github.com/deblockt "2 total commits to the Home Assistant orga: -1 commit to wheels-custom-integrations +- [Thomas Baxter (@bacco007)](https://github.com/bacco007 "1 total commits to the Home Assistant orga: 1 commit to brands ") +- [Thomas De Schampheleire (@patrickdepinguin)](https://github.com/patrickdepinguin "551 total commits to the Home Assistant orga: +551 commits to buildroot +") +- [Thomas Deblock (@deblockt)](https://github.com/deblockt "4 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +2 commits to brands +") - [Thomas Delaet (@thomasdelaet)](https://github.com/thomasdelaet "10 total commits to the Home Assistant orga: 7 commits to core 3 commits to home-assistant.io ") -- [Thomas Dietrich (@ThomDietrich)](https://github.com/ThomDietrich "4 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Thomas Dietrich (@ThomDietrich)](https://github.com/ThomDietrich "26 total commits to the Home Assistant orga: +16 commits to core +9 commits to home-assistant.io 1 commit to addons ") -- [Thomas Friedel (@tfriedel)](https://github.com/tfriedel "3 total commits to the Home Assistant orga: -3 commits to core +- [Thomas Ehrhardt (@tehrhardt)](https://github.com/tehrhardt "2 total commits to the Home Assistant orga: +2 commits to buildroot ") -- [Thomas Germain (@thomasgermain)](https://github.com/thomasgermain "5 total commits to the Home Assistant orga: +- [Thomas Faivre (@ThomasFaivre)](https://github.com/ThomasFaivre "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Thomas Friedel (@tfriedel)](https://github.com/tfriedel "4 total commits to the Home Assistant orga: 4 commits to core +") +- [Thomas G (@tomgie)](https://github.com/tomgie "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Thomas Germain (@thomasgermain)](https://github.com/thomasgermain "7 total commits to the Home Assistant orga: +4 commits to core +1 commit to wheels-custom-integrations +1 commit to brands 1 commit to home-assistant.io ") +- [Thomas Geymayer (@tomgey)](https://github.com/tomgey "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [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 "15 total commits to the Home Assistant orga: -13 commits to core +- [Thomas Hollstegge (@Tho85)](https://github.com/Tho85 "16 total commits to the Home Assistant orga: +14 commits to core 2 commits to home-assistant.io ") +- [Thomas Huth (@huth)](https://github.com/huth "5 total commits to the Home Assistant orga: +5 commits to buildroot +") - [Thomas Jaggi (@backflip)](https://github.com/backflip "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -16851,12 +22881,12 @@ This page contains a list of people who have contributed in one way or another t - [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 "144 total commits to the Home Assistant orga: -92 commits to frontend -32 commits to home-assistant.io -18 commits to core +- [Thomas Lovén (@thomasloven)](https://github.com/thomasloven "169 total commits to the Home Assistant orga: +109 commits to frontend +36 commits to home-assistant.io +21 commits to core +2 commits to developers.home-assistant 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 @@ -16865,9 +22895,16 @@ This page contains a list of people who have contributed in one way or another t 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: +- [Thomas Pedersen (@twpedersen)](https://github.com/twpedersen "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Thomas Petazzoni (@tpetazzoni)](https://github.com/tpetazzoni "5040 total commits to the Home Assistant orga: +5039 commits to buildroot 1 commit to libcoap ") +- [Thomas Prior (@ThomasPrior)](https://github.com/ThomasPrior "3 total commits to the Home Assistant orga: +3 commits to brands +") - [Thomas Purchas (@thomaspurchas)](https://github.com/thomaspurchas "1 total commits to the Home Assistant orga: 1 commit to homebridge-homeassistant ") @@ -16881,10 +22918,17 @@ This page contains a list of people who have contributed in one way or another t - [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 "3 total commits to the Home Assistant orga: +- [Thomas Rudin (@thomasrudin)](https://github.com/thomasrudin "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Thomas Ruschival (@truschival)](https://github.com/truschival "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Thomas Schamm (@tschamm)](https://github.com/tschamm "22 total commits to the Home Assistant orga: +15 commits to core +4 commits to home-assistant.io +2 commits to brands 1 commit to wheels-custom-integrations -1 commit to brands -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 @@ -16893,18 +22937,21 @@ This page contains a list of people who have contributed in one way or another t - [Thomas Wilson (@novirium)](https://github.com/novirium "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Thomas55555 (@Thomas55555)](https://github.com/Thomas55555 "3 total commits to the Home Assistant orga: -2 commits to wheels-custom-integrations +- [Thomas55555 (@Thomas55555)](https://github.com/Thomas55555 "4 total commits to the Home Assistant orga: +3 commits to wheels-custom-integrations 1 commit to brands ") +- [thomas\-svrts (@thomas-svrts)](https://github.com/thomas-svrts "1 total commits to the Home Assistant orga: +1 commit to core +") - [ThomasADavis (@ThomasADavis)](https://github.com/ThomasADavis "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") - [thomaslian (@thomaslian)](https://github.com/thomaslian "1 total commits to the Home Assistant orga: 1 commit to core ") -- [thomasvs (@thomasvs)](https://github.com/thomasvs "5 total commits to the Home Assistant orga: -4 commits to home-assistant.io +- [thomasvs (@thomasvs)](https://github.com/thomasvs "7 total commits to the Home Assistant orga: +6 commits to home-assistant.io 1 commit to operating-system ") - [thomkaufmann (@thomkaufmann)](https://github.com/thomkaufmann "1 total commits to the Home Assistant orga: @@ -16913,27 +22960,32 @@ This page contains a list of people who have contributed in one way or another t - [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 "5 total commits to the Home Assistant orga: -3 commits to home-assistant.io +- [Thorjan Knudsvik (@knudsvik)](https://github.com/knudsvik "10 total commits to the Home Assistant orga: +6 commits to home-assistant.io +2 commits to developers.home-assistant 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 ") +- [Thorsten Lachmann (@tlachmann)](https://github.com/tlachmann "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Thorsten Rinne (@thorsten)](https://github.com/thorsten "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [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 "11 total commits to the Home Assistant orga: -6 commits to core -4 commits to home-assistant.io -1 commit to netdisco -") - [thrust15 (@thrust15)](https://github.com/thrust15 "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to core ") +- [Thuan Ho (@sandwichdoge)](https://github.com/sandwichdoge "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [ThUnD3r\|Gr33n (@thundergreen)](https://github.com/thundergreen "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") @@ -16945,24 +22997,44 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to developers.home-assistant ") +- [Tibault Damman (@DarthBo)](https://github.com/DarthBo "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Tiemooowh (@Tiemooowh)](https://github.com/Tiemooowh "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Tiernan (@nvx)](https://github.com/nvx "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Tierney Cyren (@bnb)](https://github.com/bnb "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [Ties de Kock (@ties)](https://github.com/ties "5 total commits to the Home Assistant orga: 3 commits to core 2 commits to home-assistant.io ") +- [Ties42 (@Ties42)](https://github.com/Ties42 "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 ") +- [Tiger Oakes (@NotWoods)](https://github.com/NotWoods "12 total commits to the Home Assistant orga: +12 commits to android +") +- [Tihomir Heidelberg (@9a4gl)](https://github.com/9a4gl "2 total commits to the Home Assistant orga: +2 commits to brands +") - [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: +- [tikismoke (@tikismoke)](https://github.com/tikismoke "8 total commits to the Home Assistant orga: 3 commits to wheels-custom-integrations 2 commits to brands 2 commits to home-assistant.io +1 commit to core ") - [Till (@microraptor)](https://github.com/microraptor "1 total commits to the Home Assistant orga: 1 commit to core @@ -16970,6 +23042,9 @@ This page contains a list of people who have contributed in one way or another t - [Till Schulte\-Coerne (@tillsc)](https://github.com/tillsc "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Till Skrodzki (@Grennith)](https://github.com/Grennith "1 total commits to the Home Assistant orga: +1 commit to core +") - [tilphousia (@tilphousia)](https://github.com/tilphousia "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -16986,9 +23061,15 @@ This page contains a list of people who have contributed in one way or another t - [Tim Clephas (@Timple)](https://github.com/Timple "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Tim Coninx (@timconinx)](https://github.com/timconinx "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") - [Tim de Boer (@tim427)](https://github.com/tim427 "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Tim Fisher (@asktimfisher)](https://github.com/asktimfisher "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Tim Gates (@timgates42)](https://github.com/timgates42 "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -17017,16 +23098,27 @@ This page contains a list of people who have contributed in one way or another t 3 commits to core 1 commit to brands ") -- [Tim Rightnour (@garbled1)](https://github.com/garbled1 "6 total commits to the Home Assistant orga: +- [Tim Niemueller (@timn)](https://github.com/timn "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Tim Rightnour (@garbled1)](https://github.com/garbled1 "26 total commits to the Home Assistant orga: +14 commits to core +8 commits to home-assistant.io 2 commits to wheels-custom-integrations -2 commits to core -2 commits to home-assistant.io +1 commit to developers.home-assistant +1 commit to brands +") +- [Tim Riker (@timriker)](https://github.com/timriker "6 total commits to the Home Assistant orga: +6 commits to buildroot ") - [Tim Soderstrom (@m00dawg)](https://github.com/m00dawg "2 total commits to the Home Assistant orga: 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: +- [Tim Stallmann (@timstallmann)](https://github.com/timstallmann "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Tim Stanley (@tim-devel)](https://github.com/tim-devel "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") - [Tim van Cann (@timvancann)](https://github.com/timvancann "12 total commits to the Home Assistant orga: @@ -17046,7 +23138,7 @@ This page contains a list of people who have contributed in one way or another t - [Tim Wilde (@twilde)](https://github.com/twilde "1 total commits to the Home Assistant orga: 1 commit to core ") -- [timfosse (@ludipq)](https://github.com/ludipq "1 total commits to the Home Assistant orga: +- [timfosse (@networkpotato)](https://github.com/networkpotato "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [timkoers (@timkoers)](https://github.com/timkoers "3 total commits to the Home Assistant orga: @@ -17056,18 +23148,15 @@ This page contains a list of people who have contributed in one way or another t - [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 "88 total commits to the Home Assistant orga: -29 commits to core +- [Timmo (@timmo001)](https://github.com/timmo001 "147 total commits to the Home Assistant orga: +73 commits to core +29 commits to home-assistant.io 28 commits to frontend -16 commits to home-assistant.io +7 commits to brands 6 commits to android -5 commits to brands 2 commits to supervisor -1 commit to developers.home-assistant 1 commit to data.home-assistant -") -- [Timo (@timotk)](https://github.com/timotk "1 total commits to the Home Assistant orga: -1 commit to netdisco +1 commit to developers.home-assistant ") - [Timo J\. Rinne (@rinne)](https://github.com/rinne "1 total commits to the Home Assistant orga: 1 commit to brands @@ -17076,9 +23165,19 @@ This page contains a list of people who have contributed in one way or another t 4 commits to brands 2 commits to home-assistant.io ") -- [Timo S (@sti0)](https://github.com/sti0 "2 total commits to the Home Assistant orga: +- [Timo S (@sti0)](https://github.com/sti0 "5 total commits to the Home Assistant orga: +3 commits to home-assistant.io +2 commits to core +") +- [Timothy Kist (@Kisty)](https://github.com/Kisty "6 total commits to the Home Assistant orga: +2 commits to android +1 commit to addons +1 commit to companion.home-assistant +1 commit to frontend 1 commit to core -1 commit to home-assistant.io +") +- [Timothy Lee (@timothytylee)](https://github.com/timothytylee "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [Timothy Macdonald (@tsmacdonald)](https://github.com/tsmacdonald "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -17093,9 +23192,12 @@ This page contains a list of people who have contributed in one way or another t - [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 "5 total commits to the Home Assistant orga: -4 commits to core -1 commit to home-assistant.io +- [tizzen33 (@tizzen33)](https://github.com/tizzen33 "7 total commits to the Home Assistant orga: +5 commits to core +2 commits to home-assistant.io +") +- [TJ Horner (@tjhorner)](https://github.com/tjhorner "1 total commits to the Home Assistant orga: +1 commit to operating-system ") - [TJ Rana (@tjrana)](https://github.com/tjrana "1 total commits to the Home Assistant orga: 1 commit to pi-gen @@ -17106,9 +23208,7 @@ This page contains a list of people who have contributed in one way or another t - [tkacikdominik (@tkacikdominik)](https://github.com/tkacikdominik "1 total commits to the Home Assistant orga: 1 commit to core ") -- [tkdrob (@tkdrob)](https://github.com/tkdrob "82 total commits to the Home Assistant orga: -80 commits to core -1 commit to brands +- [TKTF50 (@TKTF50)](https://github.com/TKTF50 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [tktino (@tktino)](https://github.com/tktino "1 total commits to the Home Assistant orga: @@ -17141,16 +23241,24 @@ This page contains a list of people who have contributed in one way or another t - [Tobias (@tlindener)](https://github.com/tlindener "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Tobias Bielohlawek (@rngtng)](https://github.com/rngtng "1 total commits to the Home Assistant orga: +- [Tobias Bielohlawek (@rngtng)](https://github.com/rngtng "2 total commits to the Home Assistant orga: 1 commit to core +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 Brenner (@brenner-tobias)](https://github.com/brenner-tobias "1 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +") - [Tobias Efinger (@tefinger)](https://github.com/tefinger "5 total commits to the Home Assistant orga: 3 commits to core 2 commits to home-assistant.io ") +- [Tobias Haber (@KartoffelToby)](https://github.com/KartoffelToby "3 total commits to the Home Assistant orga: +2 commits to brands +1 commit 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 addons @@ -17160,30 +23268,42 @@ This page contains a list of people who have contributed in one way or another t - [Tobias Hutterer (@tobiashutterer)](https://github.com/tobiashutterer "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Tobias Kündig (@tobias-kuendig)](https://github.com/tobias-kuendig "1 total commits to the Home Assistant orga: -1 commit to frontend +- [Tobias Klauser (@tklauser)](https://github.com/tklauser "5 total commits to the Home Assistant orga: +5 commits to buildroot +") +- [Tobias Kündig (@tobias-kuendig)](https://github.com/tobias-kuendig "3 total commits to the Home Assistant orga: +3 commits to frontend ") - [Tobias Nordahl Kristensen (@exetico)](https://github.com/exetico "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [Tobias Perschon (@tofuSCHNITZEL)](https://github.com/tofuSCHNITZEL "8 total commits to the Home Assistant orga: -4 commits to home-assistant.io -4 commits to core +- [Tobias Perschon (@tofuSCHNITZEL)](https://github.com/tofuSCHNITZEL "11 total commits to the Home Assistant orga: +6 commits to core +5 commits to home-assistant.io ") -- [Tobias Sauerwein (@cgtobi)](https://github.com/cgtobi "272 total commits to the Home Assistant orga: -197 commits to core -54 commits to home-assistant.io +- [Tobias Sauerwein (@cgtobi)](https://github.com/cgtobi "385 total commits to the Home Assistant orga: +306 commits to core +56 commits to home-assistant.io +10 commits to developers.home-assistant 9 commits to people -8 commits to developers.home-assistant 2 commits to data.home-assistant 1 commit to frontend 1 commit to brands ") +- [tobiasz256 (@tobiasz256)](https://github.com/tobiasz256 "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Tobie Booth (@tobiebooth)](https://github.com/tobiebooth "5 total commits to the Home Assistant orga: 3 commits to core 1 commit to frontend 1 commit to home-assistant.io ") +- [tobim8 (@tobim8)](https://github.com/tobim8 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [tobkim (@tobkim)](https://github.com/tobkim "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Toby Gray (@tobygray)](https://github.com/tobygray "4 total commits to the Home Assistant orga: 4 commits to core ") @@ -17206,10 +23326,25 @@ This page contains a list of people who have contributed in one way or another t - [toddeye (@toddeye)](https://github.com/toddeye "20 total commits to the Home Assistant orga: 20 commits to core ") -- [Tom (@CoMPaTech)](https://github.com/CoMPaTech "30 total commits to the Home Assistant orga: -22 commits to core +- [Toke Høiland\-Jørgensen (@tohojo)](https://github.com/tohojo "2 total commits to the Home Assistant orga: +2 commits to core +") +- [tokenize47 (@tokenize47)](https://github.com/tokenize47 "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") +- [Tom (@CoMPaTech)](https://github.com/CoMPaTech "39 total commits to the Home Assistant orga: +30 commits to core 6 commits to home-assistant.io 2 commits to brands +1 commit to developers.home-assistant +") +- [TOM (@franc6)](https://github.com/franc6 "2 total commits to the Home Assistant orga: +1 commit to brands +1 commit to core +") +- [Tom (@T0mWz)](https://github.com/T0mWz "1 total commits to the Home Assistant orga: +1 commit to core ") - [Tom (@uphillbattle)](https://github.com/uphillbattle "1 total commits to the Home Assistant orga: 1 commit to core @@ -17220,15 +23355,16 @@ 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 "398 total commits to the Home Assistant orga: -306 commits to companion.home-assistant -22 commits to developers.home-assistant +- [Tom Brien (@TomBrien)](https://github.com/TomBrien "455 total commits to the Home Assistant orga: +317 commits to companion.home-assistant +33 commits to home-assistant.io +32 commits to developers.home-assistant +26 commits to core 21 commits to iOS -21 commits to home-assistant.io -16 commits to data.home-assistant +18 commits to data.home-assistant 6 commits to alerts.home-assistant.io -5 commits to core 1 commit to probot-home-assistant +1 commit to brands ") - [Tom Chapin (@tomchapin)](https://github.com/tomchapin "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -17236,15 +23372,17 @@ This page contains a list of people who have contributed in one way or another t - [Tom Dickman (@tdickman)](https://github.com/tdickman "3 total commits to the Home Assistant orga: 3 commits to core ") -- [Tom Duijf (@tomduijf)](https://github.com/tomduijf "70 total commits to the Home Assistant orga: +- [Tom Duijf (@tomduijf)](https://github.com/tomduijf "68 total commits to the Home Assistant orga: 53 commits to core 9 commits to home-assistant.io 6 commits to frontend -2 commits to netdisco ") -- [Tom Harris (@teharris1)](https://github.com/teharris1 "64 total commits to the Home Assistant orga: -50 commits to core -14 commits to home-assistant.io +- [Tom Harris (@teharris1)](https://github.com/teharris1 "90 total commits to the Home Assistant orga: +75 commits to core +15 commits to home-assistant.io +") +- [Tom Hennigan (@tomhennigan)](https://github.com/tomhennigan "1 total commits to the Home Assistant orga: +1 commit to core ") - [Tom Hoover (@tomhoover)](https://github.com/tomhoover "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io @@ -17264,9 +23402,9 @@ This page contains a list of people who have contributed in one way or another t - [Tom L (@Qu3uk)](https://github.com/Qu3uk "10 total commits to the Home Assistant orga: 10 commits to home-assistant.io ") -- [Tom Matheussen (@Tommatheussen)](https://github.com/Tommatheussen "19 total commits to the Home Assistant orga: -6 commits to home-assistant.io -6 commits to core +- [Tom Matheussen (@Tommatheussen)](https://github.com/Tommatheussen "24 total commits to the Home Assistant orga: +10 commits to core +7 commits to home-assistant.io 4 commits to frontend 2 commits to brands 1 commit to developers.home-assistant @@ -17284,19 +23422,27 @@ This page contains a list of people who have contributed in one way or another t 4 commits to frontend 1 commit to home-assistant.io ") +- [Tom Rini (@trini)](https://github.com/trini "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Tom Robinson (@tlrobinson)](https://github.com/tlrobinson "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Tom Schneider (@vigonotion)](https://github.com/vigonotion "19 total commits to the Home Assistant orga: -6 commits to core -5 commits to home-assistant.io +- [Tom Schneider (@vigonotion)](https://github.com/vigonotion "25 total commits to the Home Assistant orga: +10 commits to core +6 commits to home-assistant.io +4 commits to brands 3 commits to android -3 commits to brands -1 commit to developers.home-assistant 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 Sparks (@tomasparks)](https://github.com/tomasparks "4 total commits to the Home Assistant orga: +4 commits to buildroot +") +- [Tom Toor (@currentoor)](https://github.com/currentoor "5 total commits to the Home Assistant orga: +3 commits to core +1 commit to brands +1 commit to home-assistant.io ") - [Tom Waters (@tomwaters)](https://github.com/tomwaters "1 total commits to the Home Assistant orga: 1 commit to core @@ -17305,27 +23451,39 @@ This page contains a list of people who have contributed in one way or another t 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 core +- [Tomas Hellström (@helto4real)](https://github.com/helto4real "10 total commits to the Home Assistant orga: +8 commits to core +1 commit to brands 1 commit to home-assistant.io ") -- [Tomas Kislan (@tkislan)](https://github.com/tkislan "2 total commits to the Home Assistant orga: -1 commit to core +- [Tomas Kislan (@tkislan)](https://github.com/tkislan "3 total commits to the Home Assistant orga: +2 commits to core 1 commit to home-assistant.io ") -- [Tomasz (@Misiu)](https://github.com/Misiu "31 total commits to the Home Assistant orga: -12 commits to frontend -12 commits to core +- [Tomas McGuinness (@tomasmcguinness)](https://github.com/tomasmcguinness "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Tomasz (@Misiu)](https://github.com/Misiu "37 total commits to the Home Assistant orga: +16 commits to core +13 commits to frontend 4 commits to home-assistant.io -2 commits to brands +3 commits to brands 1 commit to wheels-custom-integrations ") - [Tomasz Pieczykolan (@tomaszpieczykolan)](https://github.com/tomaszpieczykolan "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Tomasz Wieczorek (@OldShaterhan)](https://github.com/OldShaterhan "3 total commits to the Home Assistant orga: +1 commit to example-custom-config +1 commit to core +1 commit to home-assistant.io +") - [tomaszduda23 (@tomaszduda23)](https://github.com/tomaszduda23 "1 total commits to the Home Assistant orga: 1 commit to core ") +- [tomaszstrejczek (@tomaszstrejczek)](https://github.com/tomaszstrejczek "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [tombbo (@tombbo)](https://github.com/tombbo "4 total commits to the Home Assistant orga: 3 commits to core 1 commit to home-assistant.io @@ -17333,8 +23491,9 @@ This page contains a list of people who have contributed in one way or another t - [Tomek985 (@Tomek985)](https://github.com/Tomek985 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Tomer (@tomer-w)](https://github.com/tomer-w "1 total commits to the Home Assistant orga: +- [Tomer (@tomer-w)](https://github.com/tomer-w "2 total commits to the Home Assistant orga: 1 commit to addons +1 commit to core ") - [Tomer Figenblat (@TomerFi)](https://github.com/TomerFi "9 total commits to the Home Assistant orga: 5 commits to core @@ -17356,8 +23515,9 @@ This page contains a list of people who have contributed in one way or another t 3 commits to core 1 commit to home-assistant.io ") -- [tomlut (@tomlut)](https://github.com/tomlut "24 total commits to the Home Assistant orga: -24 commits to home-assistant.io +- [tomlut (@tomlut)](https://github.com/tomlut "38 total commits to the Home Assistant orga: +35 commits to home-assistant.io +3 commits to alerts.home-assistant.io ") - [Tommaso Marchionni (@tommasomarchionni)](https://github.com/tommasomarchionni "2 total commits to the Home Assistant orga: 1 commit to core @@ -17388,10 +23548,10 @@ This page contains a list of people who have contributed in one way or another t - [tomtzeng (@tomtzeng)](https://github.com/tomtzeng "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Tomáš Bedřich (@tomasbedrich)](https://github.com/tomasbedrich "3 total commits to the Home Assistant orga: +- [Tomáš Bedřich (@tomasbedrich)](https://github.com/tomasbedrich "5 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +2 commits to brands 1 commit to developers.home-assistant -1 commit to wheels-custom-integrations -1 commit to brands ") - [tonire1702 (@tonire1702)](https://github.com/tonire1702 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -17411,6 +23571,9 @@ This page contains a list of people who have contributed in one way or another t - [tony chang (@idealisms)](https://github.com/idealisms "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Tony Lindgren (@tmlind)](https://github.com/tmlind "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Tony McDonald (@technocoffee)](https://github.com/technocoffee "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -17424,7 +23587,8 @@ This page contains a list of people who have contributed in one way or another t 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: +- [Tony Roman (@ronytomen)](https://github.com/ronytomen "4 total commits to the Home Assistant orga: +2 commits to core 2 commits to home-assistant.io ") - [Tony763 (@Tony763)](https://github.com/Tony763 "3 total commits to the Home Assistant orga: @@ -17447,6 +23611,9 @@ This page contains a list of people who have contributed in one way or another t 1 commit to developers.home-assistant 1 commit to core ") +- [Tor Inge Redalen (@toringer)](https://github.com/toringer "2 total commits to the Home Assistant orga: +2 commits to brands +") - [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 @@ -17479,11 +23646,14 @@ This page contains a list of people who have contributed in one way or another t - [Travis Carr (@tmcarr)](https://github.com/tmcarr "9 total commits to the Home Assistant orga: 9 commits to home-assistant.io ") +- [Travis Glenn Hansen (@travisghansen)](https://github.com/travisghansen "1 total commits to the Home Assistant orga: +1 commit to brands +") - [travislreno (@travislreno)](https://github.com/travislreno "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") -- [trbs (@trbs)](https://github.com/trbs "1 total commits to the Home Assistant orga: -1 commit to netdisco +- [trdischat (@trdischat)](https://github.com/trdischat "2 total commits to the Home Assistant orga: +2 commits to core ") - [Trekky12 (@Trekky12)](https://github.com/Trekky12 "2 total commits to the Home Assistant orga: 1 commit to core @@ -17502,6 +23672,14 @@ This page contains a list of people who have contributed in one way or another t - [Trevor Joynson (@akatrevorjay)](https://github.com/akatrevorjay "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Trevor North (@trvrnrth)](https://github.com/trvrnrth "3 total commits to the Home Assistant orga: +1 commit to addons +1 commit to core +1 commit to home-assistant.io +") +- [Trevor Woerner (@twoerner)](https://github.com/twoerner "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [trevormiller6 (@trevormiller6)](https://github.com/trevormiller6 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -17511,9 +23689,9 @@ This page contains a list of people who have contributed in one way or another t - [Trey Sheldon (@tsheldon)](https://github.com/tsheldon "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [treylok (@treylok)](https://github.com/treylok "6 total commits to the Home Assistant orga: -5 commits to core -1 commit to home-assistant.io +- [treylok (@treylok)](https://github.com/treylok "8 total commits to the Home Assistant orga: +6 commits to core +2 commits to home-assistant.io ") - [trilu2000 (@trilu2000)](https://github.com/trilu2000 "1 total commits to the Home Assistant orga: 1 commit to core @@ -17522,6 +23700,9 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to core ") +- [Trinnik (@Trinnik)](https://github.com/Trinnik "2 total commits to the Home Assistant orga: +2 commits to core +") - [Tristan (@trilleplay)](https://github.com/trilleplay "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") @@ -17529,15 +23710,18 @@ This page contains a list of people who have contributed in one way or another t 2 commits to core 1 commit to home-assistant.io ") +- [Tristan Lelong (@blunderer)](https://github.com/blunderer "7 total commits to the Home Assistant orga: +7 commits to buildroot +") - [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 "5 total commits to the Home Assistant orga: -2 commits to wheels-custom-integrations -2 commits to brands +- [Troy Kelly (@troykelly)](https://github.com/troykelly "11 total commits to the Home Assistant orga: +6 commits to wheels-custom-integrations +4 commits to brands 1 commit to core ") - [Troy Prelog (@tprelog)](https://github.com/tprelog "1 total commits to the Home Assistant orga: @@ -17552,18 +23736,30 @@ This page contains a list of people who have contributed in one way or another t - [Trygve Vea (@kvisle)](https://github.com/kvisle "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Tríona (@TriploidTree)](https://github.com/TriploidTree "1 total commits to the Home Assistant orga: +1 commit 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 ") +- [tschnilo (@tschnilo)](https://github.com/tschnilo "2 total commits to the Home Assistant orga: +2 commits to core +") - [tscibilia (@tscibilia)](https://github.com/tscibilia "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [tslpre (@tslpre)](https://github.com/tslpre "1 total commits to the Home Assistant orga: +1 commit to brands +") - [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 "54 total commits to the Home Assistant orga: -36 commits to core -15 commits to home-assistant.io +- [tsunglung (@tsunglung)](https://github.com/tsunglung "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Tsvi Mostovicz (@tsvi)](https://github.com/tsvi "56 total commits to the Home Assistant orga: +37 commits to core +16 commits to home-assistant.io 2 commits to brands 1 commit to developers.home-assistant ") @@ -17571,12 +23767,22 @@ This page contains a list of people who have contributed in one way or another t 5 commits to home-assistant.io 1 commit to core ") -- [tube0013 (@tube0013)](https://github.com/tube0013 "4 total commits to the Home Assistant orga: +- [tube0013 (@tube0013)](https://github.com/tube0013 "6 total commits to the Home Assistant orga: 4 commits to home-assistant.io +2 commits to core ") - [tucoti (@tucoti)](https://github.com/tucoti "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Tudor Holton (@h6w)](https://github.com/h6w "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Tuen Lee (@leeyuentuen)](https://github.com/leeyuentuen "2 total commits to the Home Assistant orga: +2 commits to core +") +- [Tully Foote (@tfoote)](https://github.com/tfoote "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 core ") @@ -17588,8 +23794,8 @@ This page contains a list of people who have contributed in one way or another t - [Tungsteno74 (@Tungsteno74)](https://github.com/Tungsteno74 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [tuxuser (@tuxuser)](https://github.com/tuxuser "1 total commits to the Home Assistant orga: -1 commit to netdisco +- [tux2000 (@tux2000)](https://github.com/tux2000 "1 total commits to the Home Assistant orga: +1 commit to addons ") - [Twan Coenraad (@tcoenraad)](https://github.com/tcoenraad "2 total commits to the Home Assistant orga: 1 commit to core @@ -17605,6 +23811,9 @@ This page contains a list of people who have contributed in one way or another t - [Twit123 (@Twit123)](https://github.com/Twit123 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [twodice (@twodice)](https://github.com/twodice "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [txNgineer (@txNgineer)](https://github.com/txNgineer "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") @@ -17617,7 +23826,7 @@ This page contains a list of people who have contributed in one way or another t - [Tyler (@TFenby)](https://github.com/TFenby "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Tyler (@tyler-public)](https://github.com/tyler-public "1 total commits to the Home Assistant orga: +- [Tyler (@flamechair)](https://github.com/flamechair "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: @@ -17631,6 +23840,10 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to core ") +- [Tyler Gibson (@tylergibson)](https://github.com/tylergibson "2 total commits to the Home Assistant orga: +1 commit to core +1 commit to home-assistant.io +") - [Tyler Shaw\! (@tylershaw)](https://github.com/tylershaw "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -17640,12 +23853,18 @@ This page contains a list of people who have contributed in one way or another t - [Tyler Szabo (@tylerszabo)](https://github.com/tylerszabo "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [tzagim (@tzagim)](https://github.com/tzagim "1 total commits to the Home Assistant orga: +1 commit to companion.home-assistant +") - [Tõnis Tobre (@tobre6)](https://github.com/tobre6 "1 total commits to the Home Assistant orga: 1 commit to homebridge-homeassistant ") - [u8915055 (@u8915055)](https://github.com/u8915055 "1 total commits to the Home Assistant orga: 1 commit to brands ") +- [Ubaldo Porcheddu (@ubaldus)](https://github.com/ubaldus "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [ubergeek801 (@ubergeek801)](https://github.com/ubergeek801 "5 total commits to the Home Assistant orga: 1 commit to operating-system 1 commit to builder @@ -17660,14 +23879,18 @@ This page contains a list of people who have contributed in one way or another t 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 core +- [uchagani (@uchagani)](https://github.com/uchagani "21 total commits to the Home Assistant orga: +18 commits to core 2 commits to home-assistant.io 1 commit to frontend ") - [uDude (@uDude)](https://github.com/uDude "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [ufodone (@ufodone)](https://github.com/ufodone "5 total commits to the Home Assistant orga: +3 commits to core +2 commits to home-assistant.io +") - [UgaitzEtxebarria (@UgaitzEtxebarria)](https://github.com/UgaitzEtxebarria "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -17678,27 +23901,33 @@ This page contains a list of people who have contributed in one way or another t - [UiGuy (@jjanderson)](https://github.com/jjanderson "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Ulf Magnusson (@ulfalizer)](https://github.com/ulfalizer "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [Uli (@uehler)](https://github.com/uehler "5 total commits to the Home Assistant orga: 5 commits to home-assistant.io ") +- [Ullrich Neiss (@slowflyer)](https://github.com/slowflyer "2 total commits to the Home Assistant orga: +2 commits to core +") - [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 core ") -- [ultratoto14 (@ultratoto14)](https://github.com/ultratoto14 "1 total commits to the Home Assistant orga: -1 commit to netdisco -") - [Umer Salman (@umer936)](https://github.com/umer936 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [unaiur (@unaiur)](https://github.com/unaiur "1 total commits to the Home Assistant orga: -1 commit to core +- [Unai (@unaiur)](https://github.com/unaiur "10 total commits to the Home Assistant orga: +10 commits to core ") - [Underknowledge (@Underknowledge)](https://github.com/Underknowledge "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Unilogic B\.V\. (@unilogicbv)](https://github.com/unilogicbv "34 total commits to the Home Assistant orga: +34 commits to buildroot +") - [unixko (@unixko)](https://github.com/unixko "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io 2 commits to core @@ -17707,37 +23936,61 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to frontend ") -- [upsert (@upsert)](https://github.com/upsert "3 total commits to the Home Assistant orga: -1 commit to netdisco +- [Unsigus (@DCSBL)](https://github.com/DCSBL "24 total commits to the Home Assistant orga: +15 commits to core +3 commits to wheels-custom-integrations +3 commits to brands +3 commits to home-assistant.io +") +- [upsert (@upsert)](https://github.com/upsert "2 total commits to the Home Assistant orga: 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 frontend +- [Urja Rannikko (@urjaman)](https://github.com/urjaman "2 total commits to the Home Assistant orga: +2 commits to buildroot ") -- [uSlackr (@uSlackr)](https://github.com/uSlackr "2 total commits to the Home Assistant orga: +- [uSlackr (@uSlackr)](https://github.com/uSlackr "4 total commits to the Home Assistant orga: +2 commits to core 2 commits to home-assistant.io ") -- [uvjustin (@uvjustin)](https://github.com/uvjustin "68 total commits to the Home Assistant orga: -52 commits to core -7 commits to frontend -3 commits to home-assistant.io -2 commits to android +- [uvjim (@uvjim)](https://github.com/uvjim "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [uvjustin (@uvjustin)](https://github.com/uvjustin "144 total commits to the Home Assistant orga: +113 commits to core +13 commits to frontend +7 commits to android +7 commits to home-assistant.io 2 commits to wheels-custom-integrations 2 commits to brands ") +- [Uwe Kindler (@githubuser0xFFFF)](https://github.com/githubuser0xFFFF "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Vaarlion (@Vaarlion)](https://github.com/Vaarlion "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Vaclav (@bruxy70)](https://github.com/bruxy70 "6 total commits to the Home Assistant orga: -2 commits to brands -2 commits to core -1 commit to wheels-custom-integrations +- [Vaclav (@bruxy70)](https://github.com/bruxy70 "12 total commits to the Home Assistant orga: +5 commits to wheels-custom-integrations +3 commits to brands +3 commits to core 1 commit to home-assistant.io ") - [vacumet (@vacumet)](https://github.com/vacumet "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Vadim Petrov (@imposibrus)](https://github.com/imposibrus "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Vadim Titov (@vadimtitov)](https://github.com/vadimtitov "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Vadym Kochan (@vkochan)](https://github.com/vkochan "40 total commits to the Home Assistant orga: +40 commits to buildroot +") +- [Vadym Kochan (@vkochan-plv)](https://github.com/vkochan-plv "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [vaidyasm (@vaidyasm)](https://github.com/vaidyasm "7 total commits to the Home Assistant orga: 7 commits to home-assistant.io ") @@ -17757,9 +24010,15 @@ This page contains a list of people who have contributed in one way or another t - [Valiceemo (@Valiceemo)](https://github.com/Valiceemo "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [validev (@validev)](https://github.com/validev "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [vanviegen (@vanviegen)](https://github.com/vanviegen "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Vanya Sergeev (@vsergeev)](https://github.com/vsergeev "9 total commits to the Home Assistant orga: +9 commits to buildroot +") - [Varga Tamas (@tamasv)](https://github.com/tamasv "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -17770,9 +24029,19 @@ This page contains a list of people who have contributed in one way or another t 9 commits to home-assistant.io 1 commit to people ") +- [Vasily Khoruzhick (@anarsoul)](https://github.com/anarsoul "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [vatir (@vatir)](https://github.com/vatir "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Vaughan Zeng (@vaughan-zeng)](https://github.com/vaughan-zeng "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [vauriga (@vauriga)](https://github.com/vauriga "1 total commits to the Home Assistant orga: +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 ") @@ -17783,17 +24052,29 @@ This page contains a list of people who have contributed in one way or another t 5 commits to home-assistant.io 3 commits to core ") +- [Vedant Bhamare (@Dark-Knight11)](https://github.com/Dark-Knight11 "7 total commits to the Home Assistant orga: +7 commits to supervisor +") - [Vedeneb (@Vedeneb)](https://github.com/Vedeneb "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [vegascom\-jeff (@vegascom-jeff)](https://github.com/vegascom-jeff "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Vegetto (@angelnu)](https://github.com/angelnu "1 total commits to the Home Assistant orga: 1 commit to core ") +- [veista (@veista)](https://github.com/veista "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Veldkornet (@Veldkornet)](https://github.com/Veldkornet "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Velik123 (@Velik123)](https://github.com/Velik123 "1 total commits to the Home Assistant orga: -1 commit to pyharmony +- [Veli\-Johan Veromann (@velijv)](https://github.com/velijv "11 total commits to the Home Assistant orga: +11 commits to brands +") +- [Venkateswara Rao Mandela (@vmandela)](https://github.com/vmandela "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [Ventilix (@Ventilix)](https://github.com/Ventilix "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -17808,6 +24089,9 @@ This page contains a list of people who have contributed in one way or another t - [vexofp (@vexofp)](https://github.com/vexofp "4 total commits to the Home Assistant orga: 4 commits to open-zwave ") +- [Vicente Bergas (@vicencb)](https://github.com/vicencb "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [Victor Cerutti (@victorcerutti)](https://github.com/victorcerutti "11 total commits to the Home Assistant orga: 5 commits to home-assistant.io 3 commits to frontend @@ -17824,6 +24108,9 @@ This page contains a list of people who have contributed in one way or another t 6 commits to core 1 commit to frontend ") +- [victorclaessen (@victorclaessen)](https://github.com/victorclaessen "1 total commits to the Home Assistant orga: +1 commit to core +") - [Vidar Tyldum (@tyldum)](https://github.com/tyldum "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -17833,6 +24120,9 @@ This page contains a list of people who have contributed in one way or another t - [Viet Dzung (@dzungpv)](https://github.com/dzungpv "1 total commits to the Home Assistant orga: 1 commit to frontend ") +- [Vighnesh Kadam (@vighnesh-kadam)](https://github.com/vighnesh-kadam "3 total commits to the Home Assistant orga: +3 commits to supervisor +") - [Vignesh Venkat (@vickyg3)](https://github.com/vickyg3 "11 total commits to the Home Assistant orga: 7 commits to core 4 commits to home-assistant.io @@ -17841,19 +24131,25 @@ This page contains a list of people who have contributed in one way or another t 3 commits to core 1 commit to home-assistant.io ") +- [viktak (@viktak)](https://github.com/viktak "4 total commits to the Home Assistant orga: +2 commits to wheels-custom-integrations +2 commits to brands +") +- [Viktar Palstsiuk (@vipals)](https://github.com/vipals "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [Viktor Lindgren (@ViktorLindgren95)](https://github.com/ViktorLindgren95 "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 "477 total commits to the Home Assistant orga: -368 commits to core -51 commits to home-assistant.io +- [Ville Skyttä (@scop)](https://github.com/scop "581 total commits to the Home Assistant orga: +474 commits to core +54 commits to home-assistant.io 16 commits to addons -13 commits to netdisco -9 commits to developers.home-assistant -8 commits to frontend +14 commits to developers.home-assistant +11 commits to frontend 4 commits to cli 2 commits to hassio-build 2 commits to supervisor @@ -17868,24 +24164,30 @@ This page contains a list of people who have contributed in one way or another t - [Villhellm (@Villhellm)](https://github.com/Villhellm "28 total commits to the Home Assistant orga: 21 commits to home-assistant.io 3 commits to core -2 commits to developers.home-assistant 2 commits to frontend +2 commits to developers.home-assistant ") -- [Vilppu Vuorinen (@vilppuvuorinen)](https://github.com/vilppuvuorinen "15 total commits to the Home Assistant orga: -9 commits to core +- [Vilppu Vuorinen (@vilppuvuorinen)](https://github.com/vilppuvuorinen "23 total commits to the Home Assistant orga: +17 commits to core 6 commits to home-assistant.io ") +- [Vincent Dehors (@vdehors)](https://github.com/vdehors "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Vincent Etter (@Wookai)](https://github.com/Wookai "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Vincent Fazio (@vfazio)](https://github.com/vfazio "7 total commits to the Home Assistant orga: +7 commits to buildroot +") - [Vincent Filby (@vfilby)](https://github.com/vfilby "1 total commits to the Home Assistant orga: 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 core ") -- [Vincent Le Bourlot (@vlebourl)](https://github.com/vlebourl "6 total commits to the Home Assistant orga: -5 commits to core +- [Vincent Le Bourlot (@vlebourl)](https://github.com/vlebourl "13 total commits to the Home Assistant orga: +12 commits to core 1 commit to home-assistant.io ") - [Vincent Masselis (@VincentMasselis)](https://github.com/VincentMasselis "1 total commits to the Home Assistant orga: @@ -17900,9 +24202,19 @@ This page contains a list of people who have contributed in one way or another t - [Vincent Palmer (@shift)](https://github.com/shift "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") +- [Vincent Prince (@nefethael)](https://github.com/nefethael "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [Vincent Saluzzo (@vincentsaluzzo)](https://github.com/vincentsaluzzo "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Vincent Stehlé (@vstehle)](https://github.com/vstehle "37 total commits to the Home Assistant orga: +37 commits to buildroot +") +- [Vincent Teo (@vinteo)](https://github.com/vinteo "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [Vincent Van Den Berghe (@vandenberghev)](https://github.com/vandenberghev "3 total commits to the Home Assistant orga: 2 commits to core 1 commit to home-assistant.io @@ -17910,11 +24222,18 @@ This page contains a list of people who have contributed in one way or another t - [Vincenzo Chianese (@XVincentX)](https://github.com/XVincentX "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [vindaalex (@vindaalex)](https://github.com/vindaalex "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [Vinicius Tinti (@tinti)](https://github.com/tinti "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Vinilox (@vinilox)](https://github.com/vinilox "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Vinny Furia (@vinnyfuria)](https://github.com/vinnyfuria "1 total commits to the Home Assistant orga: -1 commit to core +- [Vinny Furia (@vinnyfuria)](https://github.com/vinnyfuria "3 total commits to the Home Assistant orga: +3 commits to core ") - [Viorel Stirbu (@viorels)](https://github.com/viorels "2 total commits to the Home Assistant orga: 1 commit to core @@ -17938,6 +24257,12 @@ This page contains a list of people who have contributed in one way or another t - [VivantSenior (@VivantSenior)](https://github.com/VivantSenior "3 total commits to the Home Assistant orga: 3 commits to home-assistant.io ") +- [Vivien Didelot (@vivien)](https://github.com/vivien "29 total commits to the Home Assistant orga: +29 commits to buildroot +") +- [vkorenblit (@vkorenblit)](https://github.com/vkorenblit "15 total commits to the Home Assistant orga: +15 commits to buildroot +") - [Vlad (@vladm)](https://github.com/vladm "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") @@ -17955,8 +24280,8 @@ This page contains a list of people who have contributed in one way or another t - [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 "23 total commits to the Home Assistant orga: -13 commits to core +- [Vladimír Záhradník (@vzahradnik)](https://github.com/vzahradnik "29 total commits to the Home Assistant orga: +19 commits to core 9 commits to home-assistant.io 1 commit to frontend ") @@ -17975,6 +24300,12 @@ This page contains a list of people who have contributed in one way or another t - [vocweb (@vocweb)](https://github.com/vocweb "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [VoiceOfSoftware (@VoiceOfSoftware)](https://github.com/VoiceOfSoftware "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Volker Krause (@vkrause)](https://github.com/vkrause "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Volker Thiel (@riker09)](https://github.com/riker09 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -17985,17 +24316,44 @@ This page contains a list of people who have contributed in one way or another t - [vwir (@vwir)](https://github.com/vwir "1 total commits to the Home Assistant orga: 1 commit to core ") +- [vwt12eh8 (@vwt12eh8)](https://github.com/vwt12eh8 "4 total commits to the Home Assistant orga: +4 commits to brands +") +- [Václav Kubernát (@syyyr)](https://github.com/syyyr "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Víctor Manuel Jáquez Leal (@ceyusa)](https://github.com/ceyusa "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Víctor Martínez (@knoopx)](https://github.com/knoopx "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [w00den (@w00den)](https://github.com/w00den "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [w35l3y (@w35l3y)](https://github.com/w35l3y "2 total commits to the Home Assistant orga: +1 commit to developers.home-assistant +1 commit to core +") +- [Wade Berrier (@wberrier)](https://github.com/wberrier "19 total commits to the Home Assistant orga: +19 commits to buildroot +") - [Wade Dorrell (@waded)](https://github.com/waded "3 total commits to the Home Assistant orga: 2 commits to home-assistant.io 1 commit to addons ") -- [Wagner Sartori Junior (@trunet)](https://github.com/trunet "2 total commits to the Home Assistant orga: -1 commit to netdisco +- [Wadih Zaatar (@wzaatar)](https://github.com/wzaatar "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [Wagner Sartori Junior (@trunet)](https://github.com/trunet "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Waldemar Brodkorb (@wbx-github)](https://github.com/wbx-github "306 total commits to the Home Assistant orga: +306 commits to buildroot +") +- [Waldemar Tomme (@WiiPlayer2)](https://github.com/WiiPlayer2 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Walker Boyle (@walkerdb)](https://github.com/walkerdb "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -18007,12 +24365,24 @@ This page contains a list of people who have contributed in one way or another t - [walthowd (@walthowd)](https://github.com/walthowd "1 total commits to the Home Assistant orga: 1 commit to core ") +- [walzert (@walzert)](https://github.com/walzert "1 total commits to the Home Assistant orga: +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 ") +- [Ward Boumans (@wardboumans)](https://github.com/wardboumans "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [WaRFaiR (@warfair1337)](https://github.com/warfair1337 "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Warren Konkel (@wkonkel)](https://github.com/wkonkel "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Warwick Davison (@Waz-Cpt)](https://github.com/Waz-Cpt "1 total commits to the Home Assistant orga: +1 commit to core +") - [wasper17 (@wasper17)](https://github.com/wasper17 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -18031,16 +24401,37 @@ 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 ") +- [wchan\-ranelagh (@wchan-ranelagh)](https://github.com/wchan-ranelagh "1 total commits to the Home Assistant orga: +1 commit to core +") - [weado (@weado)](https://github.com/weado "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [web\-dc (@web-dc)](https://github.com/web-dc "1 total commits to the Home Assistant orga: +1 commit to core +") +- [webeling67 (@webeling67)](https://github.com/webeling67 "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 core 1 commit to home-assistant.io ") +- [weidi (@weidi)](https://github.com/weidi "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Welby McRoberts (@welbymcroberts)](https://github.com/welbymcroberts "9 total commits to the Home Assistant orga: 9 commits to home-assistant.io ") +- [Werner Pieterson (@wernerhp)](https://github.com/wernerhp "1 total commits to the Home Assistant orga: +1 commit to brands +") +- [Wesley Chow (@wesc)](https://github.com/wesc "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Wesley Vos (@Wesley-Vos)](https://github.com/Wesley-Vos "1 total commits to the Home Assistant orga: +1 commit to frontend +") - [Wesley Young (@wesdyoung)](https://github.com/wesdyoung "1 total commits to the Home Assistant orga: 1 commit to warrant ") @@ -18048,15 +24439,28 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [WhimsySpoon (@WhimsySpoon)](https://github.com/WhimsySpoon "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [WhiteNight121 (@WhiteNight121)](https://github.com/WhiteNight121 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Whiterat (@Wh1terat)](https://github.com/Wh1terat "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") +- [WhiteSource Renovate (@renovate-bot)](https://github.com/renovate-bot "178 total commits to the Home Assistant orga: +178 commits to newsletter-ghost-theme +") - [Whytey (@Whytey)](https://github.com/Whytey "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") -- [Wictor (@wicol)](https://github.com/wicol "1 total commits to the Home Assistant orga: -1 commit to core +- [Wibias (@Wibias)](https://github.com/Wibias "2 total commits to the Home Assistant orga: +2 commits to brands +") +- [Wictor (@wicol)](https://github.com/wicol "3 total commits to the Home Assistant orga: +3 commits to core ") - [wietseschmitt (@wietseschmitt)](https://github.com/wietseschmitt "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -18073,20 +24477,35 @@ This page contains a list of people who have contributed in one way or another t - [wildcomputations (@wildcomputations)](https://github.com/wildcomputations "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [Will Adler (@wtadler)](https://github.com/wtadler "7 total commits to the Home Assistant orga: +5 commits to frontend +2 commits to home-assistant.io +") - [Will Boyce (@wrboyce)](https://github.com/wrboyce "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Will Freeman (@TheRealWaldo)](https://github.com/TheRealWaldo "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [Will Hargrave (@will-h)](https://github.com/will-h "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Will Hayslett (@willhayslett)](https://github.com/willhayslett "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [Will Heid (@bassclarinetl2)](https://github.com/bassclarinetl2 "21 total commits to the Home Assistant orga: 19 commits to home-assistant.io 1 commit to fabric-home-assistant 1 commit to people ") -- [Will Marler (@wmarler)](https://github.com/wmarler "1 total commits to the Home Assistant orga: +- [Will Marler (@wmarler)](https://github.com/wmarler "2 total commits to the Home Assistant orga: +1 commit to core 1 commit to home-assistant.io ") +- [Will Newton (@willnewton)](https://github.com/willnewton "53 total commits to the Home Assistant orga: +53 commits to buildroot +") - [Will Norris (@willnorris)](https://github.com/willnorris "1 total commits to the Home Assistant orga: 1 commit to addons ") @@ -18097,11 +24516,14 @@ This page contains a list of people who have contributed in one way or another t 4 commits to core 2 commits to home-assistant.io ") +- [Will Wagner (@willw-carallon)](https://github.com/willw-carallon "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Willem Burgers (@wburgers)](https://github.com/wburgers "2 total commits to the Home Assistant orga: 2 commits to core ") -- [Willem\-Jan (@liudger)](https://github.com/liudger "10 total commits to the Home Assistant orga: -5 commits to core +- [Willem\-Jan (@liudger)](https://github.com/liudger "11 total commits to the Home Assistant orga: +6 commits to core 4 commits to home-assistant.io 1 commit to brands ") @@ -18131,18 +24553,13 @@ This page contains a list of people who have contributed in one way or another t 1 commit to supervisor 1 commit to home-assistant.io ") -- [William Scanlon (@w1ll1am23)](https://github.com/w1ll1am23 "155 total commits to the Home Assistant orga: -108 commits to core -41 commits to home-assistant.io -2 commits to netdisco -2 commits to developers.home-assistant -1 commit to frontend -1 commit to brands -") - [William Sutton (@zombielinux)](https://github.com/zombielinux "6 total commits to the Home Assistant orga: 4 commits to core 2 commits to home-assistant.io ") +- [William Wennerström (@wstrm)](https://github.com/wstrm "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [williambherman (@williambherman)](https://github.com/williambherman "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") @@ -18152,15 +24569,23 @@ This page contains a list of people who have contributed in one way or another t - [willidh74 (@willidh74)](https://github.com/willidh74 "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [wills106 (@wills106)](https://github.com/wills106 "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [willscottuk (@willscottuk)](https://github.com/willscottuk "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Wim (@wimb0)](https://github.com/wimb0 "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [Wim Fournier (@hsmade)](https://github.com/hsmade "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") -- [Wim Haanstra (@depl0y)](https://github.com/depl0y "14 total commits to the Home Assistant orga: -9 commits to core +- [Wim Haanstra (@depl0y)](https://github.com/depl0y "15 total commits to the Home Assistant orga: +10 commits to core 5 commits to home-assistant.io ") - [wind\-rider (@hansmbakker)](https://github.com/hansmbakker "5 total commits to the Home Assistant orga: @@ -18169,6 +24594,12 @@ This page contains a list of people who have contributed in one way or another t - [winterscar (@winterscar)](https://github.com/winterscar "1 total commits to the Home Assistant orga: 1 commit to developers.home-assistant ") +- [Witold Sowa (@wsowa)](https://github.com/wsowa "1 total commits to the Home Assistant orga: +1 commit to core +") +- [wizmo2 (@wizmo2)](https://github.com/wizmo2 "1 total commits to the Home Assistant orga: +1 commit to brands +") - [wmn79 (@wmn79)](https://github.com/wmn79 "6 total commits to the Home Assistant orga: 5 commits to home-assistant.io 1 commit to open-zwave @@ -18185,9 +24616,15 @@ This page contains a list of people who have contributed in one way or another t 2 commits to home-assistant.io 1 commit to core ") +- [Wojciech M\. Zabolotny (@wzab)](https://github.com/wzab "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [Wojciech Mamak (@atomic7777)](https://github.com/atomic7777 "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Wojciech Niziński (@niziak)](https://github.com/niziak "3 total commits to the Home Assistant orga: +3 commits to buildroot +") - [Wojtek (@wiuwiu)](https://github.com/wiuwiu "1 total commits to the Home Assistant orga: 1 commit to core ") @@ -18199,21 +24636,28 @@ This page contains a list of people who have contributed in one way or another t 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 Ettlinger (@ettisan)](https://github.com/ettisan "8 total commits to the Home Assistant orga: +8 commits to core ") - [Wolfgang Malgadey (@wmalgadey)](https://github.com/wmalgadey "8 total commits to the Home Assistant orga: 7 commits to core 1 commit to home-assistant.io ") +- [WolfRevo (@WolfRevo)](https://github.com/WolfRevo "1 total commits to the Home Assistant orga: +1 commit to brands +") - [Wopalecki (@Wopalecki)](https://github.com/Wopalecki "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Wouter (@wouterpotters)](https://github.com/wouterpotters "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Wouter Schoot (@wschoot)](https://github.com/wschoot "1 total commits to the Home Assistant orga: +- [Wouter Schoot (@wschoot)](https://github.com/wschoot "2 total commits to the Home Assistant orga: 1 commit to supervisor +1 commit to home-assistant.io +") +- [Wouter van Os (@Wouter0100)](https://github.com/Wouter0100 "1 total commits to the Home Assistant orga: +1 commit to companion.home-assistant ") - [Wouter Wolkers (@wwolkers)](https://github.com/wwolkers "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -18224,12 +24668,18 @@ This page contains a list of people who have contributed in one way or another t - [wovka88 (@wovka88)](https://github.com/wovka88 "2 total commits to the Home Assistant orga: 2 commits to addons ") +- [wranglatang (@wranglatang)](https://github.com/wranglatang "1 total commits to the Home Assistant orga: +1 commit to core +") - [wrkn4alivn (@wrkn4alivn)](https://github.com/wrkn4alivn "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") - [Wuppie007 (@Wuppie007)](https://github.com/Wuppie007 "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [wyapx (@wyapx)](https://github.com/wyapx "1 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +") - [wyzbv (@wyzbv)](https://github.com/wyzbv "8 total commits to the Home Assistant orga: 8 commits to open-zwave ") @@ -18242,8 +24692,8 @@ This page contains a list of people who have contributed in one way or another t - [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 +- [Xavi Moreno (@xaviml)](https://github.com/xaviml "2 total commits to the Home Assistant orga: +2 commits 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 @@ -18251,6 +24701,9 @@ This page contains a list of people who have contributed in one way or another t - [Xavier Decuyper (@Savjee)](https://github.com/Savjee "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Xavier Ruppen (@zkrx)](https://github.com/zkrx "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [xdite (@xdite)](https://github.com/xdite "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -18263,6 +24716,9 @@ This page contains a list of people who have contributed in one way or another t - [xfceKris (@xfceKris)](https://github.com/xfceKris "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") +- [Xiaobing Luo (@0lxb)](https://github.com/0lxb "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Xiaonan Shen (@shenxn)](https://github.com/shenxn "80 total commits to the Home Assistant orga: 59 commits to core 15 commits to home-assistant.io @@ -18274,14 +24730,17 @@ This page contains a list of people who have contributed in one way or another t 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 +- [Xinglong Liao (@LiaoXinglong)](https://github.com/LiaoXinglong "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [xlcnd (@xlcnd)](https://github.com/xlcnd "3 total commits to the Home Assistant orga: 1 commit to wheels-custom-integrations 1 commit to brands 1 commit to home-assistant.io ") +- [xonestonex (@xonestonex)](https://github.com/xonestonex "1 total commits to the Home Assistant orga: +1 commit to core +") - [xorbital (@xorbital)](https://github.com/xorbital "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -18289,6 +24748,9 @@ This page contains a list of people who have contributed in one way or another t 21 commits to core 1 commit to addons ") +- [xpac1985 (@xpac1985)](https://github.com/xpac1985 "1 total commits to the Home Assistant orga: +1 commit to core +") - [xPsIXx (@xPsIXx)](https://github.com/xPsIXx "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -18299,25 +24761,55 @@ This page contains a list of people who have contributed in one way or another t 1 commit to core 1 commit to home-assistant.io ") +- [Xuefer (@xuefer)](https://github.com/xuefer "5 total commits to the Home Assistant orga: +5 commits to core +") +- [xuminready (@xuminready)](https://github.com/xuminready "7 total commits to the Home Assistant orga: +7 commits to buildroot +") - [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 ") +- [Yair Ben Avraham (@yairbenavraham)](https://github.com/yairbenavraham "7 total commits to the Home Assistant orga: +7 commits to buildroot +") +- [yangqian (@yangqian)](https://github.com/yangqian "1 total commits to the Home Assistant orga: +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 Droneaud (@ydroneaud)](https://github.com/ydroneaud "2 total commits to the Home Assistant orga: +2 commits to buildroot +") +- [Yann E\. MORIN (@yann-morin-1998)](https://github.com/yann-morin-1998 "2455 total commits to the Home Assistant orga: +2455 commits to buildroot +") +- [Yann E\. MORIN (@ymorin-orange)](https://github.com/ymorin-orange "15 total commits to the Home Assistant orga: +15 commits to buildroot +") - [Yann Jajkiewicz (@yjajkiew)](https://github.com/yjajkiew "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [Yann Sionneau (@fallen)](https://github.com/fallen "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Yannic\-HAW (@Yannic-HAW)](https://github.com/Yannic-HAW "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io ") +- [Yannick Brosseau (@greenscientist)](https://github.com/greenscientist "1 total commits to the Home Assistant orga: +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 Kiekens (@YannickKiekens)](https://github.com/YannickKiekens "1 total commits to the Home Assistant orga: +1 commit to buildroot +") - [Yannick POLLART (@ypollart)](https://github.com/ypollart "8 total commits to the Home Assistant orga: 4 commits to home-assistant.io 4 commits to core @@ -18331,6 +24823,9 @@ 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 ") +- [yanuino (@yanuino)](https://github.com/yanuino "1 total commits to the Home Assistant orga: +1 commit to core +") - [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 @@ -18338,8 +24833,11 @@ This page contains a list of people who have contributed in one way or another t - [Yaron de Leeuw (@jarondl)](https://github.com/jarondl "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Yaroslav (@Yarikx)](https://github.com/Yarikx "2 total commits to the Home Assistant orga: -2 commits to core +- [Yaroslav (@Yarikx)](https://github.com/Yarikx "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Yaroslav Syrytsia (@joy4eg)](https://github.com/joy4eg "1 total commits to the Home Assistant orga: +1 commit to buildroot ") - [yasin (@yasinS)](https://github.com/yasinS "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io @@ -18347,17 +24845,26 @@ This page contains a list of people who have contributed in one way or another t - [Yaw Anokwa (@yanokwa)](https://github.com/yanokwa "1 total commits to the Home Assistant orga: 1 commit to 1password-teams-open-source ") +- [yayitazale (@yayitazale)](https://github.com/yayitazale "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [YcKe (@YcKe)](https://github.com/YcKe "8 total commits to the Home Assistant orga: 8 commits to open-zwave ") - [yeah (@yeah)](https://github.com/yeah "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [yeahme49 (@yeahme49)](https://github.com/yeahme49 "2 total commits to the Home Assistant orga: +2 commits to core +") - [Yegor Vialov (@estevez-dev)](https://github.com/estevez-dev "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Yehuda Davis (@hudcap)](https://github.com/hudcap "2 total commits to the Home Assistant orga: -1 commit to core +- [Yegor Yefremov (@yegorich)](https://github.com/yegorich "620 total commits to the Home Assistant orga: +620 commits to buildroot +") +- [Yehuda Davis (@hudcap)](https://github.com/hudcap "7 total commits to the Home Assistant orga: +6 commits to core 1 commit to home-assistant.io ") - [Yeon Vinzenz Varapragasam (@YeonV)](https://github.com/YeonV "2 total commits to the Home Assistant orga: @@ -18371,29 +24878,44 @@ This page contains a list of people who have contributed in one way or another t 1 commit to frontend 1 commit to home-assistant.io ") +- [Yevhenii Vaskivskyi (@Vaskivskyi)](https://github.com/Vaskivskyi "13 total commits to the Home Assistant orga: +13 commits to brands +") +- [Yi Zheng (@goodmenzy)](https://github.com/goodmenzy "4 total commits to the Home Assistant orga: +4 commits to buildroot +") - [Yien Xu (@yienxu)](https://github.com/yienxu "1 total commits to the Home Assistant orga: 1 commit to core ") -- [yingzong (@yingzong)](https://github.com/yingzong "1 total commits to the Home Assistant orga: -1 commit to warrant +- [yllar (@yllar)](https://github.com/yllar "1 total commits to the Home Assistant orga: +1 commit to core ") -- [Yllelder Bamir (@Yllelder)](https://github.com/Yllelder "2 total commits to the Home Assistant orga: -2 commits to home-assistant.io +- [Yllelder Bamir (@Yllelder)](https://github.com/Yllelder "3 total commits to the Home Assistant orga: +3 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 ") -- [yoflippo (@yoflippo)](https://github.com/yoflippo "1 total commits to the Home Assistant orga: -1 commit to developers.home-assistant +- [yoedf (@yoedf)](https://github.com/yoedf "1 total commits to the Home Assistant orga: +1 commit to core ") -- [yosilevy (@yosilevy)](https://github.com/yosilevy "100 total commits to the Home Assistant orga: -92 commits to frontend +- [Yogotech's GITHub account (@YogoGit)](https://github.com/YogoGit "2 total commits to the Home Assistant orga: +2 commits to home-assistant.io +") +- [Yosi Levy (@yosilevy)](https://github.com/yosilevy "120 total commits to the Home Assistant orga: +112 commits to frontend 4 commits to home-assistant.io 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 +- [Yossi Frances (@yfrans)](https://github.com/yfrans "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") +- [youdroid (@youdroid)](https://github.com/youdroid "4 total commits to the Home Assistant orga: +4 commits to brands +") +- [youknowjack0 (@youknowjack0)](https://github.com/youknowjack0 "2 total commits to the Home Assistant orga: +2 commits to core ") - [Younes Manton (@ymanton)](https://github.com/ymanton "1 total commits to the Home Assistant orga: 1 commit to open-zwave @@ -18420,19 +24942,25 @@ This page contains a list of people who have contributed in one way or another t - [Yum (@goofz)](https://github.com/goofz "2 total commits to the Home Assistant orga: 2 commits to core ") +- [Yurii Monakov (@monakov-y)](https://github.com/monakov-y "1 total commits to the Home Assistant orga: +1 commit to buildroot +") +- [Yuriy Sannikov (@yury-sannikov)](https://github.com/yury-sannikov "1 total commits to the Home Assistant orga: +1 commit to core +") - [Yury Kotlyarov (@yura505)](https://github.com/yura505 "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Yuval (@rt400)](https://github.com/rt400 "2 total commits to the Home Assistant orga: +- [Yuval (@rt400)](https://github.com/rt400 "3 total commits to the Home Assistant orga: +2 commits to brands 1 commit to wheels-custom-integrations -1 commit to brands ") -- [Yuval Aboulafia (@yuvalabou)](https://github.com/yuvalabou "7 total commits to the Home Assistant orga: -4 commits to core -3 commits to home-assistant.io +- [Yuval Aboulafia (@yuvalabou)](https://github.com/yuvalabou "27 total commits to the Home Assistant orga: +23 commits to core +4 commits to home-assistant.io ") -- [Yuxiang Zhu (@vfreex)](https://github.com/vfreex "1 total commits to the Home Assistant orga: -1 commit to core +- [Yuxiang Zhu (@vfreex)](https://github.com/vfreex "2 total commits to the Home Assistant orga: +2 commits to core ") - [Z (@zanerv)](https://github.com/zanerv "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io @@ -18446,22 +24974,28 @@ This page contains a list of people who have contributed in one way or another t 1 commit to open-zwave 1 commit to brands ") -- [Zac (@zacs)](https://github.com/zacs "1 total commits to the Home Assistant orga: +- [Zac (@zacs)](https://github.com/zacs "2 total commits to the Home Assistant orga: +1 commit to brands 1 commit to home-assistant.io ") -- [Zac West (@zacwest)](https://github.com/zacwest "437 total commits to the Home Assistant orga: -407 commits to iOS -18 commits to companion.home-assistant -5 commits to home-assistant.io -3 commits to mobile-apps-fcm-push +- [Zac West (@zacwest)](https://github.com/zacwest "785 total commits to the Home Assistant orga: +610 commits to iOS +89 commits to HAKit +53 commits to companion.home-assistant +17 commits to mobile-apps-fcm-push +7 commits to home-assistant.io +5 commits to core +2 commits to developers.home-assistant 2 commits to alerts.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 core 2 commits to home-assistant.io ") +- [Zach (@ZacheryThomas)](https://github.com/ZacheryThomas "2 total commits to the Home Assistant orga: +1 commit to wheels-custom-integrations +1 commit to brands +") - [Zach (@snowzach)](https://github.com/snowzach "8 total commits to the Home Assistant orga: 6 commits to core 2 commits to home-assistant.io @@ -18469,12 +25003,14 @@ This page contains a list of people who have contributed in one way or another t - [Zachary Priddy (@zpriddy)](https://github.com/zpriddy "1 total commits to the Home Assistant orga: 1 commit to open-zwave ") -- [Zack Arnett (@zsarnett)](https://github.com/zsarnett "318 total commits to the Home Assistant orga: -263 commits to frontend -48 commits to home-assistant.io -5 commits to developers.home-assistant +- [Zack Arnett (@zsarnett)](https://github.com/zsarnett "561 total commits to the Home Assistant orga: +465 commits to frontend +59 commits to home-assistant.io +19 commits to core +7 commits to developers.home-assistant +7 commits to partner.home-assistant +3 commits to newsletter-ghost-theme 1 commit to people -1 commit to core ") - [Zack Lalanne (@zlalanne)](https://github.com/zlalanne "1 total commits to the Home Assistant orga: 1 commit to open-zwave @@ -18489,7 +25025,7 @@ This page contains a list of people who have contributed in one way or another t - [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: +- [Zadkiel Aharonian (@aslafy-z)](https://github.com/aslafy-z "1 total commits to the Home Assistant orga: 1 commit to frontend ") - [zajnic (@zajnic)](https://github.com/zajnic "1 total commits to the Home Assistant orga: @@ -18505,9 +25041,15 @@ This page contains a list of people who have contributed in one way or another t - [Zapfmeister (@Zapfmeister)](https://github.com/Zapfmeister "6 total commits to the Home Assistant orga: 6 commits to addons ") +- [zaubererty (@zaubererty)](https://github.com/zaubererty "2 total commits to the Home Assistant orga: +2 commits to brands +") - [Zeb Palmer (@zebpalmer)](https://github.com/zebpalmer "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") +- [ZeGuigui (@ZeGuigui)](https://github.com/ZeGuigui "2 total commits to the Home Assistant orga: +2 commits to core +") - [Zellux Wang (@zellux)](https://github.com/zellux "2 total commits to the Home Assistant orga: 2 commits to core ") @@ -18518,12 +25060,24 @@ This page contains a list of people who have contributed in one way or another t - [Zen Tormey (@xehn)](https://github.com/xehn "4 total commits to the Home Assistant orga: 4 commits to home-assistant.io ") +- [zeng5200 (@zeng5200)](https://github.com/zeng5200 "3 total commits to the Home Assistant orga: +3 commits to brands +") +- [Zenichi Amano (@crow-misia)](https://github.com/crow-misia "2 total commits to the Home Assistant orga: +2 commits to buildroot +") - [Zep Fietje (@zepfietje)](https://github.com/zepfietje "1 total commits to the Home Assistant orga: 1 commit to frontend ") +- [Zephyr (@JeromeZephyr)](https://github.com/JeromeZephyr "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [ZERBIB Mickael (@Hellorheaven)](https://github.com/Hellorheaven "2 total commits to the Home Assistant orga: 2 commits to open-zwave ") +- [Zero King (@l2dy)](https://github.com/l2dy "1 total commits to the Home Assistant orga: +1 commit to core +") - [zetvio (@zetvio)](https://github.com/zetvio "2 total commits to the Home Assistant orga: 2 commits to core ") @@ -18535,6 +25089,9 @@ This page contains a list of people who have contributed in one way or another t - [zgmnkv (@zgmnkv)](https://github.com/zgmnkv "4 total commits to the Home Assistant orga: 4 commits to open-zwave ") +- [zgyarmati (@zgyarmati)](https://github.com/zgyarmati "47 total commits to the Home Assistant orga: +47 commits to buildroot +") - [Zhao (@zhaokoh)](https://github.com/zhaokoh "2 total commits to the Home Assistant orga: 1 commit to core 1 commit to home-assistant.io @@ -18545,6 +25102,9 @@ This page contains a list of people who have contributed in one way or another t - [Zhong Jianxin (@azuwis)](https://github.com/azuwis "1 total commits to the Home Assistant orga: 1 commit to core ") +- [zhoubest (@zhoubest)](https://github.com/zhoubest "1 total commits to the Home Assistant orga: +1 commit to brands +") - [zhujisheng (@zhujisheng)](https://github.com/zhujisheng "5 total commits to the Home Assistant orga: 3 commits to home-assistant.io 2 commits to core @@ -18556,6 +25116,9 @@ This page contains a list of people who have contributed in one way or another t - [zigul (@zigul)](https://github.com/zigul "1 total commits to the Home Assistant orga: 1 commit to brands ") +- [zimmra (@zimmra)](https://github.com/zimmra "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [zinxes (@zinxes)](https://github.com/zinxes "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") @@ -18578,12 +25141,23 @@ This page contains a list of people who have contributed in one way or another t 10 commits to home-assistant.io 1 commit to brands ") -- [zmarties (@zmarties)](https://github.com/zmarties "5 total commits to the Home Assistant orga: +- [Zixuan Wang (@TheNetAdmin)](https://github.com/TheNetAdmin "1 total commits to the Home Assistant orga: +1 commit to core +") +- [zmarties (@zmarties)](https://github.com/zmarties "9 total commits to the Home Assistant orga: 5 commits to home-assistant.io +3 commits to android +1 commit to frontend ") - [zmrowicki@hotmail\.com (@zmrow)](https://github.com/zmrow "1 total commits to the Home Assistant orga: 1 commit to core ") +- [Zoe ✨ (@zoeisnowooze)](https://github.com/zoeisnowooze "1 total commits to the Home Assistant orga: +1 commit to core +") +- [Zoltán Tóth (@toth2zoltan)](https://github.com/toth2zoltan "2 total commits to the Home Assistant orga: +2 commits to core +") - [zoomix (@zoomix)](https://github.com/zoomix "2 total commits to the Home Assistant orga: 2 commits to developers.home-assistant ") @@ -18600,29 +25174,38 @@ This page contains a list of people who have contributed in one way or another t - [zpetr (@zpetr)](https://github.com/zpetr "1 total commits to the Home Assistant orga: 1 commit to core ") +- [zraken (@zraken)](https://github.com/zraken "1 total commits to the Home Assistant orga: +1 commit to home-assistant.io +") - [zuccs (@zuccs)](https://github.com/zuccs "2 total commits to the Home Assistant orga: 2 commits to home-assistant.io ") -- [ZuluWhiskey (@ZuluWhiskey)](https://github.com/ZuluWhiskey "13 total commits to the Home Assistant orga: -13 commits to home-assistant.io +- [ZuluWhiskey (@ZuluWhiskey)](https://github.com/ZuluWhiskey "17 total commits to the Home Assistant orga: +14 commits to home-assistant.io +2 commits to core +1 commit to developers.home-assistant ") -- [zvldz (@zvldz)](https://github.com/zvldz "2 total commits to the Home Assistant orga: -1 commit to core -1 commit to home-assistant.io +- [zvldz (@zvldz)](https://github.com/zvldz "4 total commits to the Home Assistant orga: +2 commits to core +2 commits to home-assistant.io +") +- [zyell (@Zyell)](https://github.com/Zyell "8 total commits to the Home Assistant orga: +8 commits to core ") - [ZzetT (@ZzetT)](https://github.com/ZzetT "1 total commits to the Home Assistant orga: 1 commit to core ") -- [Álvaro Brey (@alvarobrey)](https://github.com/alvarobrey "1 total commits to the Home Assistant orga: +- [Álvaro Brey (@AlvaroBrey)](https://github.com/AlvaroBrey "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") -- [Álvaro Fernández Rojas (@Noltari)](https://github.com/Noltari "9 total commits to the Home Assistant orga: -7 commits to core -1 commit to brands -1 commit to home-assistant.io +- [Álvaro Fernández Rojas (@Noltari)](https://github.com/Noltari "86 total commits to the Home Assistant orga: +70 commits to core +11 commits to home-assistant.io +4 commits to brands +1 commit to frontend ") -- [Åke Strandberg (@astrandb)](https://github.com/astrandb "4 total commits to the Home Assistant orga: -2 commits to brands +- [Åke Strandberg (@astrandb)](https://github.com/astrandb "9 total commits to the Home Assistant orga: +7 commits to brands 1 commit to wheels-custom-integrations 1 commit to home-assistant.io ") @@ -18632,11 +25215,17 @@ This page contains a list of people who have contributed in one way or another t 1 commit to hassbian-scripts 1 commit to supervised-installer ") +- [Édouard Denommée (@MoronixProduct3)](https://github.com/MoronixProduct3 "1 total commits to the Home Assistant orga: +1 commit to builder +") - [Øystein Hansen (@oeysteinhansen)](https://github.com/oeysteinhansen "1 total commits to the Home Assistant orga: 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 +- [Ģirts (@girtskokars)](https://github.com/girtskokars "1 total commits to the Home Assistant orga: +1 commit to frontend +") +- [Łukasz Szeremeta (@lszeremeta)](https://github.com/lszeremeta "1 total commits to the Home Assistant orga: +1 commit to operating-system ") - [Šimon Let (@curusarn)](https://github.com/curusarn "2 total commits to the Home Assistant orga: 2 commits to 1password-teams-open-source @@ -18645,13 +25234,10 @@ This page contains a list of people who have contributed in one way or another t 4 commits to core 3 commits to home-assistant.io ") -- [Елизаров Роман Русланович (@fantomnotabene)](https://github.com/fantomnotabene "1 total commits to the Home Assistant orga: -1 commit to home-assistant.io -") - [Илья Pupko (@ILAsoft)](https://github.com/ILAsoft "1 total commits to the Home Assistant orga: 1 commit to home-assistant.io ") 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 Tuesday, February 16 2021, 10:01:51 UTC. +This page was last updated Sunday, May 15 2022, 12:20:38 UTC. diff --git a/source/images/blog/2022-05-16-os8/haos-grub2-menu.png b/source/images/blog/2022-05-16-os8/haos-grub2-menu.png new file mode 100644 index 00000000000..560f1ddb8ee Binary files /dev/null and b/source/images/blog/2022-05-16-os8/haos-grub2-menu.png differ diff --git a/source/images/blog/2022-05-16-os8/social.png b/source/images/blog/2022-05-16-os8/social.png new file mode 100644 index 00000000000..19498ad1f3c Binary files /dev/null and b/source/images/blog/2022-05-16-os8/social.png differ diff --git a/source/images/integrations/nmap/nmap_customization_example.png b/source/images/integrations/nmap/nmap_customization_example.png new file mode 100644 index 00000000000..f6e59f68a77 Binary files /dev/null and b/source/images/integrations/nmap/nmap_customization_example.png differ