diff --git a/Gemfile b/Gemfile index 0f2caeb2e21..319ea3796ce 100644 --- a/Gemfile +++ b/Gemfile @@ -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 diff --git a/Gemfile.lock b/Gemfile.lock index c6cf8feb471..e2f78cff947 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -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) diff --git a/source/_integrations/satel_integra.markdown b/source/_integrations/satel_integra.markdown index 4016711d83f..ff328755342 100644 --- a/source/_integrations/satel_integra.markdown +++ b/source/_integrations/satel_integra.markdown @@ -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: diff --git a/source/_integrations/tts.markdown b/source/_integrations/tts.markdown index 4a1d6614eca..39e370ec8a7 100644 --- a/source/_integrations/tts.markdown +++ b/source/_integrations/tts.markdown @@ -110,26 +110,26 @@ Say to all `media_player` device entities: ```yaml # Replace google_translate_say with _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" ```