You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/_posts/2016-11-19-calendar--wink-thermostats--cisco-ios.markdown
+31-26Lines changed: 31 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -14,31 +14,31 @@ For this release we put a lot of focus on finishing our async upgrade and fix a
14
14
15
15
But a new release wouldn't be awesome if it didn't had some new goodies and this release is no different. This release includes a new calendar component by [@mnestor]. It comes now with Google Calendar support, which should allow you to automate things based on your calendar events!
16
16
17
-
##Changes
17
+
### {% linkable_title Changes %}
18
18
19
19
- New [calendar component][google] including Google support ([@mnestor])
20
20
- Final core upgrade for async ([@pvizeli])
21
-
- Neato refactor + sensor support ([@turbokongen])
21
+
-[Neato] refactor + sensor support ([@turbokongen])
22
22
- Device Tracker: [Swisscom Internet-Box][swisscom] now supported ([@betrisey])
- Switch - [Command Line]: Use configured object_id for entity IDs ([@n8henrie])
36
+
-[MQTT] now supports birth and last will messages ([@bestlibre])
37
37
- Better handling of accented characters in slugify ([@magicus])
38
-
- Alarm Control Panel - Envisalink: Add new [keypress service][envisalink] ([@jnimmo])
39
-
- Light - Hue: Add service to [activate scenes][hue] defined in Hue app ([@sdague])
38
+
- Alarm Control Panel - [Envisalink]: Add new keypress service ([@jnimmo])
39
+
- Light - [Hue]: Add service to activate scenes defined in Hue app ([@sdague])
40
40
41
-
##Breaking changes
41
+
### {% linkable_title Breaking changes %}
42
42
43
43
- We have included a fix that impacts how we generate entity ids. This only impacts devices with accented characters. Instead of being stripped out, they are now replaced with the non-accented version. So now `Tèst Mörê` will become `test_more` instead of `tst_mr`.
44
44
- Command line switches will now use the specified object ID for their entity ID instead of basing it off the name.
@@ -65,17 +65,22 @@ But a new release wouldn't be awesome if it didn't had some new goodies and this
Copy file name to clipboardExpand all lines: source/_topics/templating.markdown
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -77,11 +77,14 @@ Home Assistant adds extensions to allow templates to access all of the current s
77
77
- `closest()`will find the closest entity.
78
78
- `relative_time(timestamp)`will format the date time as relative time vs now (ie 7 seconds)
79
79
- `float`will format the output as float.
80
+
- `strptime(string, format)`will parse a string to a datetime based on a [format][strp-format].
80
81
- Filter `round(x)` will convert the input to a number and round it to `x` decimals.
81
82
- Filter `timestamp_local` will convert an UNIX timestamp to local time/data.
82
83
- Filter `timestamp_utc` will convert an UNIX timestamp to UTC time/data.
83
84
- Filter `timestamp_custom(format_string, local_boolean)` will convert an UNIX timestamp to a custom format, the use of a local timestamp is default, supporting [Python format options](https://docs.python.org/3/library/time.html#time.strftime).
0 commit comments