mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-05 09:46:50 +00:00

* 🔥 Removes octopress.js * 🔥 Removes use of root_url var * 🔥 Removes Octopress generator reference from feed * 🔥 Removes delicious support * 🔥 Removes support for Pinboard * 🔥 Removes support for Disqus * 🔥 Removes support for Google Plus * ↩️ Migrate custom after_footer to default template * ↩️ Migrate custom footer to default template * ↩️ Migrate custom header to default template * 🔥 Removes unused template files * 🚀 Places time to read directly in post template * 🚀 Removes unneeded capture from archive_post.html template * 🔥 🚀 Removes unused, but heaving sorting call in component page * 🚀 Merged javascripts into a single file * 🔥 Removes more uses of root_url * 🚀 Removal of unneeded captures from head * 🔥 🚀 Removal of expensive liquid HTML compressor * 🔥 Removes unneeded templates * 🚀 Replaces kramdown with GitHub's CommonMark 🚀 * 💄 Adds Prism code syntax highlighting * ✨ Adds support for redirect in Netlify * ↩️ 🔥 Let Netlify handle all developer doc redirects * ✏️ Fixes typo in redirects file: Netify -> Netlify * 🔥 Removes unused .themes folder * 🔥 Removes unused aside.html template * 🔥 Removes Disqus config leftover * 🔥 Removes rouge highlighter config * 🔥 Removes Octopress 🎉 * 💄 Adjust code block font size and adds soft wraps * 💄 Adds styling for inline code blocks * 💄 Improve styling of note/warning/info boxes + div support * 🔨 Rewrites all note/warning/info boxes
119 lines
4.7 KiB
Markdown
119 lines
4.7 KiB
Markdown
---
|
|
title: "Release notes for May 14, 2015"
|
|
description: "Introducing support for MySensors, InstaPush, Notify My Android, OpenWeatherMap and Jabber."
|
|
date: 2015-05-14 22:25 0000
|
|
date_formatted: "May 14, 2015"
|
|
author: Paulus Schoutsen
|
|
author_twitter: balloob
|
|
categories: Release-Notes
|
|
---
|
|
|
|
Almost three busy weeks have past since the last release. We used this time to finally make the overhaul to use UTC as the internal date time format. We added a bunch of test coverage in the process to make sure the transition went smoothly. Pleas see [the blog post about the UTC refactor](/blog/2015/05/09/utc-time-zone-awareness/#backwards-incompatible-stuff) for backwards incompatible changes.
|
|
|
|
This release includes a significant startup boost for the frontend and a fix for Wemo discovery after their latest firmware upgrade.
|
|
|
|
I would like to give a big shout out to our newest contributor [fabaff](https://github.com/fabaff) for taking the time to improve the documentation.
|
|
|
|
<div class='note'>
|
|
To update to the latest version, run <code>scripts/update</code>. Please report any issues on <a href='https://github.com/home-assistant/home-assistant/issues'>GitHub</a>.
|
|
</div>
|
|
|
|
<!--more-->
|
|
|
|
__Overwriting Entity Attributes__
|
|
Before diving into the newly supported devices and services, I want to highlight an awesome configuration enhancement by [rmkraus](https://github.com/rmkraus): overwriting entity attributes.
|
|
|
|
These new configuration settings allow you to overwrite entity state attributes. The main usage for this is being able to overwrite attributes that influence how an entity is shown in the interface.
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
homeassistant:
|
|
customize:
|
|
light.bowl:
|
|
# hides this entity from the interface
|
|
hidden: true
|
|
light.ceiling:
|
|
# Replaces the state badge with given picture
|
|
entity_picture: http://graph.facebook.com/schoutsen/picture
|
|
```
|
|
|
|
__MySensors__
|
|
<img src='/images/supported_brands/mysensors.png' style='border:none; box-shadow: none; float: right;' height='50' /> [Andythigpen](https://github.com/andythigpen) and [Theolind](https://github.com/theolind) have added support for the [MySensors platform](http://www.mysensors.org) to Home Assistant.
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
sensor:
|
|
platform: mysensors
|
|
port: /dev/ttyACM0
|
|
```
|
|
|
|
__OpenWeatherMap__
|
|
<img src='/images/supported_brands/openweathermap.png' style='border:none; box-shadow: none; float: right;' height='50' /> [Fabaff](https://github.com/fabaff) has contributed support for [OpenWeatherMap](http://openweathermap.org). This will allow you to integrate local meteorological data into Home Assistant.
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
sensor:
|
|
platform: openweathermap
|
|
api_key: YOUR_API_KEY
|
|
monitored_variables:
|
|
- type: 'weather'
|
|
- type: 'temperature'
|
|
- type: 'wind_speed'
|
|
- type: 'humidity'
|
|
- type: 'pressure'
|
|
- type: 'clouds'
|
|
- type: 'rain'
|
|
- type: 'snow'
|
|
```
|
|
|
|
__InstaPush__
|
|
[Fabaff](https://github.com/fabaff) has contributed support for InstaPush. This will allow you send messages from Home Assistant to your iOS and Android devices.
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
notify:
|
|
platform: instapush
|
|
# Get those by creating a new application, event and tracker
|
|
api_key: ABCDEFGHJKLMNOPQRSTUVXYZ
|
|
app_secret: ABCDEFGHJKLMNOPQRSTUVXYZ
|
|
event: ABCDEFGHJKLMNOPQRSTUVXYZ
|
|
tracker: ABCDEFGHJKLMNOPQRSTUVXYZ
|
|
```
|
|
|
|
__XMPP__
|
|
<img src='/images/supported_brands/xmpp.png' style='border:none; box-shadow: none; float: right;' height='50' /> [Fabaff](https://github.com/fabaff) has contributed support for Jabber/XMPP. This will allow you send messages from Home Assistant to anyone on Jabber/XMPP.
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
notify:
|
|
platform: xmpp
|
|
sender: YOUR_JID
|
|
password: YOUR_JABBER_ACCOUNT_PASSWORD
|
|
recipient: YOUR_RECIPIENT
|
|
```
|
|
|
|
__Notify My Android__
|
|
<img src='/images/supported_brands/nma.png' style='border:none; box-shadow: none; float: right;' height='50' /> [Fabaff](https://github.com/fabaff) has contributed support for [Notify My Android](http://www.notifymyandroid.com/). This will allow you to send messages from Home Assistant to your Android device.
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
notify:
|
|
platform: nma
|
|
# Get this by registering a new application on http://www.notifymyandroid.com/
|
|
api_key: ABCDEFGHJKLMNOPQRSTUVXYZ
|
|
```
|
|
|
|
__Time & Date sensor__
|
|
[Fabaff](https://github.com/fabaff) has contributed a time & date sensor. This will allow you to show the current time/date on the dashboard.
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
sensor:
|
|
platform: time_date
|
|
monitored_variables:
|
|
- type: 'time'
|
|
- type: 'date'
|
|
- type: 'date_time'
|
|
- type: 'time_date'
|
|
```
|