Merge branch 'current' into next

This commit is contained in:
Franck Nijhof 2020-05-30 12:35:26 +02:00
commit 993d3936b4
No known key found for this signature in database
GPG Key ID: D62583BA8AB11CA3
8 changed files with 75 additions and 16 deletions

View File

@ -101,8 +101,8 @@ social:
# Home Assistant release details # Home Assistant release details
current_major_version: 0 current_major_version: 0
current_minor_version: 110 current_minor_version: 110
current_patch_version: 3 current_patch_version: 4
date_released: 2020-05-26 date_released: 2020-05-28
# Either # or the anchor link to latest release notes in the blog post. # Either # or the anchor link to latest release notes in the blog post.
# Must be prefixed with a # and have double quotes around it. # Must be prefixed with a # and have double quotes around it.

View File

@ -36,7 +36,7 @@ friendly_name:
required: false required: false
type: string type: string
hidden: hidden:
description: Set to `true` to hide the entity. description: Set to `true` to hide the entity in the automatically generated Lovelace view.
required: false required: false
type: boolean type: boolean
default: false default: false

View File

@ -40,3 +40,7 @@ device_id:
In some cases it can be that your device is not discovered. In that case let your phone scan for Bluetooth devices while you restart Home Assistant. Just hit `Scan` on your phone all the time until Home Assistant is fully restarted and the device should appear in `known_devices.yaml`. In some cases it can be that your device is not discovered. In that case let your phone scan for Bluetooth devices while you restart Home Assistant. Just hit `Scan` on your phone all the time until Home Assistant is fully restarted and the device should appear in `known_devices.yaml`.
For additional configuration variables check the [Device tracker page](/integrations/device_tracker/). For additional configuration variables check the [Device tracker page](/integrations/device_tracker/).
## `bluetooth_tracker.update` service
The `bluetooth_tracker.update` service can be used to manually trigger a Bluetooth scan. An example of when this service can be useful is to trigger scans based on other events like doors being opened, beacons are in range or buttons are pressed.

View File

@ -54,6 +54,9 @@ the possibility to show the location of the ISS on OpenStreetMap.
{% raw %} {% raw %}
```yaml ```yaml
# Example configuration.yaml entry # Example configuration.yaml entry
- platform: iss
show_on_map: true
camera: camera:
- platform: generic - platform: generic
name: ISS name: ISS

View File

@ -75,4 +75,4 @@ Set the latency of a speaker.
| Service data attribute | Optional | Description | | Service data attribute | Optional | Description |
| ---------------------- | -------- | ----------- | | ---------------------- | -------- | ----------- |
| `entity_id` | yes | String or list of `entity_id`s for which latency will be adjusted. | `entity_id` | yes | String or list of `entity_id`s for which latency will be adjusted.
| `latency` | yes | Latency in ms. | `latency` | no | Latency in ms.

View File

@ -318,7 +318,7 @@ Text repeater:
disable_notification: true disable_notification: true
inline_keyboard: inline_keyboard:
- "Edit message:/edit_msg, Don't:/do_nothing" - "Edit message:/edit_msg, Don't:/do_nothing"
- "Remove this button:/remove button" - "Remove this button:/remove_button"
``` ```
{% endraw %} {% endraw %}
@ -347,11 +347,11 @@ Message editor:
title: '*Message edit*' title: '*Message edit*'
inline_keyboard: inline_keyboard:
- "Edit message:/edit_msg, Don't:/do_nothing" - "Edit message:/edit_msg, Don't:/do_nothing"
- "Remove this button:/remove button" - "Remove this button:/remove_button"
message: > message: >
Callback received from {{ trigger.event.data.from_first }}. Callback received from {{ trigger.event.data.from_first }}.
Message id: {{ trigger.event.data.message.message_id }}. Message id: {{ trigger.event.data.message.message_id }}.
Data: {{ trigger.event.data.data }} Data: {{ trigger.event.data.data|replace("_", "\_") }}
``` ```
{% endraw %} {% endraw %}
@ -366,7 +366,7 @@ Keyboard editor:
platform: event platform: event
event_type: telegram_callback event_type: telegram_callback
event_data: event_data:
command: '/remove button' command: '/remove_button'
action: action:
- service: telegram_bot.answer_callback_query - service: telegram_bot.answer_callback_query
data_template: data_template:

View File

@ -771,6 +771,58 @@ Experiencing issues introduced by this release? Please report them in our [issue
[roku docs]: /integrations/roku/ [roku docs]: /integrations/roku/
[velux docs]: /integrations/velux/ [velux docs]: /integrations/velux/
## Release 0.110.4 - May 28
- Add ability to ignore heos discovery ([@bdraco] - [#34653]) ([heos docs])
- Fix Android TV icon when screencap option is disabled ([@JeffLIrion] - [#35710]) ([androidtv docs])
- Let PAHO MQTT client handle connection to MQTT server ([@emontnemery] - [#35983]) ([mqtt docs])
- Use a single service browser for zeroconf discovery ([@bdraco] - [#35997]) ([zeroconf docs])
- Check todoist due date is not None in async_get_events ([@gadgetchnnel] - [#36140]) ([todoist docs])
- Fix cloud connection within API ([@2Fake] - [#36158]) ([devolo_home_control docs])
- Revert DSMR not calling entity methods ([@balloob] - [#36179]) ([dsmr docs])
- Fix empty preset element in ONVIF response ([@hunterjm] - [#36182]) ([onvif docs])
- Update cast to use shared zeroconf ([@bdraco] - [#35570]) ([cast docs])
- Bump zeroconf, pychromecast. Log if zeroconf.get_service_info fails. ([@emontnemery] - [#36185]) ([cast docs]) ([zeroconf docs])
- Fix roku select source with app ids ([@ctalkington] - [#36191]) ([roku docs])
- Prevent AirVisual from polling ([@bachya] - [#36199]) ([airvisual docs])
- Fix custom position range ([@emontnemery] - [#36222]) ([mqtt docs])
- Correct MQTT device trigger reconfiguration with same topic ([@emontnemery] - [#36234]) ([mqtt docs])
[#34653]: https://github.com/home-assistant/core/pull/34653
[#35570]: https://github.com/home-assistant/core/pull/35570
[#35710]: https://github.com/home-assistant/core/pull/35710
[#35983]: https://github.com/home-assistant/core/pull/35983
[#35997]: https://github.com/home-assistant/core/pull/35997
[#36140]: https://github.com/home-assistant/core/pull/36140
[#36158]: https://github.com/home-assistant/core/pull/36158
[#36179]: https://github.com/home-assistant/core/pull/36179
[#36182]: https://github.com/home-assistant/core/pull/36182
[#36185]: https://github.com/home-assistant/core/pull/36185
[#36191]: https://github.com/home-assistant/core/pull/36191
[#36199]: https://github.com/home-assistant/core/pull/36199
[#36222]: https://github.com/home-assistant/core/pull/36222
[#36234]: https://github.com/home-assistant/core/pull/36234
[@2Fake]: https://github.com/2Fake
[@JeffLIrion]: https://github.com/JeffLIrion
[@bachya]: https://github.com/bachya
[@balloob]: https://github.com/balloob
[@bdraco]: https://github.com/bdraco
[@ctalkington]: https://github.com/ctalkington
[@emontnemery]: https://github.com/emontnemery
[@gadgetchnnel]: https://github.com/gadgetchnnel
[@hunterjm]: https://github.com/hunterjm
[airvisual docs]: /integrations/airvisual/
[androidtv docs]: /integrations/androidtv/
[cast docs]: /integrations/cast/
[devolo_home_control docs]: /integrations/devolo_home_control/
[dsmr docs]: /integrations/dsmr/
[heos docs]: /integrations/heos/
[mqtt docs]: /integrations/mqtt/
[onvif docs]: /integrations/onvif/
[roku docs]: /integrations/roku/
[todoist docs]: /integrations/todoist/
[zeroconf docs]: /integrations/zeroconf/
## All changes ## All changes
<details> <details>

View File

@ -118,7 +118,7 @@ If you would like to test next release before anyone else, you can install the b
[odroid-c2]: https://github.com/home-assistant/operating-system/releases/download/4.8/hassos_odroid-c2-4.8.img.gz [odroid-c2]: https://github.com/home-assistant/operating-system/releases/download/4.8/hassos_odroid-c2-4.8.img.gz
[odroid-n2]: https://github.com/home-assistant/operating-system/releases/download/4.8/hassos_odroid-n2-4.8.img.gz [odroid-n2]: https://github.com/home-assistant/operating-system/releases/download/4.8/hassos_odroid-n2-4.8.img.gz
[odroid-xu4]: https://github.com/home-assistant/operating-system/releases/download/4.8/hassos_odroid-xu4-4.8.img.gz [odroid-xu4]: https://github.com/home-assistant/operating-system/releases/download/4.8/hassos_odroid-xu4-4.8.img.gz
[intel-nuc]: https://github.com/home-assistant/operating-system/releases/download/3.13/hassos_intel-nuc-3.13.img.gz [intel-nuc]: https://github.com/home-assistant/operating-system/releases/download/4.8/hassos_intel-nuc-4.8.img.gz
[vmdk]: https://github.com/home-assistant/operating-system/releases/download/4.8/hassos_ova-4.8.vmdk.gz [vmdk]: https://github.com/home-assistant/operating-system/releases/download/4.8/hassos_ova-4.8.vmdk.gz
[vhdx]: https://github.com/home-assistant/operating-system/releases/download/4.8/hassos_ova-4.8.vhdx.gz [vhdx]: https://github.com/home-assistant/operating-system/releases/download/4.8/hassos_ova-4.8.vhdx.gz
[vdi]: https://github.com/home-assistant/operating-system/releases/download/4.8/hassos_ova-4.8.vdi.gz [vdi]: https://github.com/home-assistant/operating-system/releases/download/4.8/hassos_ova-4.8.vdi.gz