Merge branch 'current' into next

This commit is contained in:
Franck Nijhof 2021-05-20 14:26:41 +02:00
commit 09cd04ee79
No known key found for this signature in database
GPG Key ID: D62583BA8AB11CA3
4 changed files with 10 additions and 10 deletions

View File

@ -21,7 +21,7 @@ group :jekyll_plugins do
end
gem 'sinatra', '2.1.0'
gem 'nokogiri', '1.11.4'
gem 'nokogiri', '1.11.5'
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
# and associated library

View File

@ -74,10 +74,10 @@ GEM
multi_json (1.15.0)
mustermann (1.1.1)
ruby2_keywords (~> 0.0.1)
nokogiri (1.11.4)
nokogiri (1.11.5)
mini_portile2 (~> 2.5.0)
racc (~> 1.4)
nokogiri (1.11.4-x64-mingw32)
nokogiri (1.11.5-x64-mingw32)
racc (~> 1.4)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
@ -130,7 +130,7 @@ DEPENDENCIES
jekyll-sitemap (= 1.4.0)
jekyll-time-to-read (= 0.1.2)
jekyll-toc (= 0.17.1)
nokogiri (= 1.11.4)
nokogiri (= 1.11.5)
rake (= 13.0.3)
sass-globbing (= 1.1.5)
sassc (= 2.1.0)

View File

@ -57,7 +57,7 @@ port:
default: 7094
type: integer
code:
description: The INTEGRA ID (found in DLOADX under "Communication configuration" or in polish "Komunikacja Konfiguracji" section), it's needed for making use of the switchable_outputs.
description: User password, it's needed for making use of the switchable_outputs. It's recommended not to use admin password.
required: false
type: string
partitions:

View File

@ -110,26 +110,26 @@ Say to all `media_player` device entities:
```yaml
# Replace google_translate_say with <platform>_say when you use a different platform.
service: tts.google_translate_say
entity_id: "all"
data:
message: "May the Force be with you."
entity_id: all
message: "May the force be with you."
```
Say to the `media_player.floor` device entity:
```yaml
service: tts.google_translate_say
entity_id: media_player.floor
data:
message: "May the Force be with you."
entity_id: media_player.floor
message: "May the force be with you."
```
Say to the `media_player.floor` device entity in French:
```yaml
service: tts.google_translate_say
entity_id: media_player.floor
data:
entity_id: media_player.floor
message: "Que la force soit avec toi."
language: "fr"
```