diff --git a/atom.xml b/atom.xml index cd28f980c3..0a9541478c 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@
Alexa will now respond with a random phrase each time. You can use the include for as many different intents as you like so you only need to create the list once.
++As of April 2017, the random filter has been somewhat broken. You’ll get a random response the first time this runs, but subsequent commands will reply with the same randomly-chosen phrase. On reboot, Home Assistant will pick a new random choice, but you’re stuck with that choice till you reboot. To get around that, use the following code in alexa_confirm.yaml: +
+ >
+ {% set responses = [
+ "OK",
+ "Sure",
+ "If you insist",
+ "Done",
+ "No worries",
+ "I can do that",
+ "Leave it to me",
+ "Consider it done",
+ "As you wish",
+ "By your command",
+ "Affirmative",
+ "Yes oh revered one",
+ "I will",
+ "As you decree, so shall it be",
+ "No Problem"
+ ] %}
+ {% set rindex = (range(0, (responses | length - 1) )|random) -%}
+ {{responses[rindex]}}
+
+
+As of version 0.31 Home Assistant supports the new Alexa Flash Briefing Skills API. A Flash Briefing Skill adds a new Flash Briefing source that is generated by Home Assistant.
For installation instructions, see [the Trådfri component][/components/tradfri/].
+For installation instructions, see the Trådfri component.