+ Release 0.64.1 - February 27
+
If you need help…
…don’t hesitate to use our very active forums or join us for a little chat. The release notes have comments enabled but it’s preferred if you use the former communication channels. Thanks.
Reporting Issues
diff --git a/components/telegram_bot/index.html b/components/telegram_bot/index.html
index d4be9d8620..b5ad157349 100644
--- a/components/telegram_bot/index.html
+++ b/components/telegram_bot/index.html
@@ -103,7 +103,7 @@
target |
yes |
- An array of pre-authorized chat_ids to send the notification to. Defaults to the first allowed chat_id. |
+ An array of pre-authorized chat_ids or user_ids to send the notification to. Defaults to the first allowed chat_id. |
parse_mode |
@@ -176,7 +176,7 @@
target |
yes |
- An array of pre-authorized chat_ids to send the notification to. Defaults to the first allowed chat_id. |
+ An array of pre-authorized chat_ids or user_ids to send the notification to. Defaults to the first allowed chat_id. |
disable_notification |
@@ -239,7 +239,7 @@
target |
yes |
- An array of pre-authorized chat_ids to send the notification to. Defaults to the first allowed chat_id. |
+ An array of pre-authorized chat_ids or user_ids to send the notification to. Defaults to the first allowed chat_id. |
disable_notification |
@@ -302,7 +302,7 @@
target |
yes |
- An array of pre-authorized chat_ids to send the notification to. Defaults to the first allowed chat_id. |
+ An array of pre-authorized chat_ids or user_ids to send the notification to. Defaults to the first allowed chat_id. |
disable_notification |
@@ -345,7 +345,7 @@
target |
yes |
- An array of pre-authorized chat_ids to send the notification to. Defaults to the first allowed chat_id. |
+ An array of pre-authorized chat_ids or user_ids to send the notification to. Defaults to the first allowed chat_id. |
disable_notification |
@@ -677,7 +677,7 @@
- service: telegram_bot.edit_message
data_template:
message_id: '{{ trigger.event.data.message.message_id }}'
- chat_id: '{{ trigger.event.data.user_id }}'
+ chat_id: '{{ trigger.event.data.chat_id }}'
title: '*Message edit*'
inline_keyboard:
- "Edit message:/edit_msg, Don't:/do_nothing"
@@ -704,7 +704,7 @@
- service: telegram_bot.edit_replymarkup
data_template:
message_id: 'last'
- chat_id: '{{ trigger.event.data.user_id }}'
+ chat_id: '{{ trigger.event.data.chat_id }}'
inline_keyboard:
- "Edit message:/edit_msg, Don't:/do_nothing"
@@ -756,7 +756,7 @@
assert event_id == 'telegram_callback'
data_callback = payload_event['data']
callback_id = payload_event['id']
- user_id = payload_event['user_id']
+ chat_id = payload_event['chat_id']
# keyboard = ["Edit message:/edit_msg, Don't:/do_nothing",
# "Remove this button:/remove button"]
keyboard = [[("Edit message", "/edit_msg"),
@@ -776,7 +776,7 @@
title = '*Message edit*'
msg = 'Callback received from %s. Message id: %s. Data: ``` %s ```'
self.call_service('telegram_bot/edit_message',
- chat_id=user_id,
+ chat_id=chat_id,
message_id=msg_id,
title=title,
message=msg % (user, msg_id, data_callback),
@@ -792,7 +792,7 @@
# Edit the keyboard
new_keyboard = keyboard[:1]
self.call_service('telegram_bot/edit_replymarkup',
- chat_id=user_id,
+ chat_id=chat_id,
message_id='last',
inline_keyboard=new_keyboard)
diff --git a/components/verisure/index.html b/components/verisure/index.html
index dfb09abfc9..a24e707ca4 100644
--- a/components/verisure/index.html
+++ b/components/verisure/index.html
@@ -103,7 +103,7 @@
mouse (Optional): Set to 1 to show mouse detectors, 0 to disable. Default 1.
door_window (Optional): Set to 1 to show door and window sensors, 0 to disable. Default 1.
code_digits (Optional): Number of digits in PIN code. Default 4.
- giid (Optional): The GIID of your installation (If you have more then one alarm system).
+ giid (Optional): The GIID of your installation (If you have more then one alarm system). To find the GIID for your systems run ‘python verisure.py EMAIL PASSWORD installations’
diff --git a/docs/configuration/events/index.html b/docs/configuration/events/index.html
index eb2fdc5379..b80bfbb85b 100644
--- a/docs/configuration/events/index.html
+++ b/docs/configuration/events/index.html
@@ -79,6 +79,9 @@
Home Assistant contains a few built-in events that are used to coordinate between various components.
Event homeassistant_start
Event homeassistant_start
is fired when all components from the configuration have been intitialized. This is the event that will start the timer firing off time_changed
events.
+
+ Starting 0.42, it is no longer possible to listen for event homeassistant_start
. Use the ‘homeassistant’ platform instead.
+
Event homeassistant_stop
Event homeassistant_stop
is fired when Home Assistant is shutting down. It should be used to close any open connection or release any resources.
Event state_changed
diff --git a/index.html b/index.html
index 175a87b2d8..e92d346441 100644
--- a/index.html
+++ b/index.html
@@ -97,7 +97,7 @@ Home Assistant is an open-source home automation platform running on Python 3. T
Current Version: 0.64.0
Released: February 26, 2018