diff --git a/_deploy b/_deploy
index a9227948024..6545a2d395c 160000
--- a/_deploy
+++ b/_deploy
@@ -1 +1 @@
-Subproject commit a922794802498d06ecbc2a610ce3088e611bd846
+Subproject commit 6545a2d395cbab1761794d2814929e154998c05e
diff --git a/source/_posts/2015-09-19-alarm-sonos-and-itunes-support.markdown b/source/_posts/2015-09-19-alarm-sonos-and-itunes-support.markdown
new file mode 100644
index 00000000000..9fb7ab40e4f
--- /dev/null
+++ b/source/_posts/2015-09-19-alarm-sonos-and-itunes-support.markdown
@@ -0,0 +1,73 @@
+---
+layout: post
+title: "Alarms, Sonos and iTunes now supported"
+description: "Home Assistant 0.7.3 has been released with support for Sonos, iTunes and improved ."
+date: 2015-09-19 21:47:00 +0700
+date_formatted: "September 19, 2015"
+author: Paulus Schoutsen
+comments: true
+categories: release-notes
+---
+
+It's like someone opened a can of rock solid developers and emptied it above our
+[chat channel](https://gitter.im/balloob/home-assistant) because it exploded with
+great conversations and solid contributions. Featured in release 0.7.3: Sonos, iTunes, Alarm component and Automation upgrade.
+
+See [GitHub](https://github.com/balloob/home-assistant/releases/tag/0.7.3) for more detailed release notes.
+
+_Migration note: the `scheduler` component has been removed in favor of the `automation` component._
+
+__Sonos__
+
+Sonos support has been added by [@rhooper](https://github.com/rhooper) and [@SEJeff](https://github.com/SEJeff). Home Assistant is now able to automatically
+detect Sonos devices in your network and set them up for you. It will allow you to control music
+playing on your Sonos and change the volume.
+
+__iTunes and airplay speakers__
+
+[@maddox](https://github.com/maddox) has contributed support for controlling iTunes and airplay speakers. For this to work you will
+have to run [itunes-api](https://github.com/maddox/itunes-api) on your Mac as middleware.
+
+```
+# Example configuration.yaml entry
+media_player:
+ platform: itunes
+ name: iTunes
+ host: http://192.168.1.50
+ port: 8181
+```
+
+
+
+__Automation__
+Automation has gotten a lot of love. It now supports conditions, multiple triggers and new types of
+triggers. The best to get started with it is to head over to the new
+[getting started with automation](/getting-started/automation.html) page.
+
+```yaml
+# Example of entry in configuration.yaml
+automation:
+ alias: Light on in the evening
+ trigger:
+ - platform: sun
+ event: sunset
+ offset: "-01:00:00"
+ - platform: state
+ entity_id: group.all_devices
+ state: home
+ condition:
+ - platform: state
+ entity_id: group.all_devices
+ state: home
+ - platform: time
+ after: "16:00:00"
+ before: "23:00:00"
+ action:
+ service: homeassistant.turn_on
+ entity_id: group.living_room
+```
+
+__Verisure Alarms__
+
+We now support arming and disarming your verisure alarm from within Home Assistant thanks to added
+support by [@persandstrom](https://github.com/persandstrom).
diff --git a/source/components/automation.markdown b/source/components/automation.markdown
index 07e4a00af6c..a4927480050 100644
--- a/source/components/automation.markdown
+++ b/source/components/automation.markdown
@@ -17,7 +17,7 @@ A configuration section of an automation requires a `trigger` and an `action` se
full configuration but only the relevant part.
```yaml
-# Example of a full entry in configuration.yaml
+# Example of entry in configuration.yaml
automation:
alias: Light on in the evening
trigger:
@@ -32,8 +32,8 @@ automation:
entity_id: group.all_devices
state: home
- platform: time
- after: 16:00:00
- before: 23:00:00
+ after: "16:00:00"
+ before: "23:00:00"
action:
service: homeassistant.turn_on
entity_id: group.living_room
@@ -101,12 +101,12 @@ automation:
platform: state
entity_id: device_tracker.paulus
# Optional
- from: not_home
- to: home
+ from: "not_home"
+ to: "home"
```
- Use quotes around your values for state_from
and state_to
to avoid the YAML parser interpreting some values as booleans.
+ Use quotes around your values for from
and to
to avoid the YAML parser interpreting some values as booleans.
-iTunes itself can not be remotely controlled. In order to control your iTunes, -you'll need to install middleware named itunes-api. itunes-api is a simple REST -server that talks to a local instance of iTunes via Applescript. It's very easy to set up -and run. You can find more about it on it's [GitHub repo](https://github.com/maddox/itunes-api). -
- - To add iTunes to your installation, add the following to your `configuration.yaml` file: ``` diff --git a/source/components/media_player.sonos.markdown b/source/components/media_player.sonos.markdown index 617c6982d6a..6632add1ea7 100644 --- a/source/components/media_player.sonos.markdown +++ b/source/components/media_player.sonos.markdown @@ -9,7 +9,7 @@ sharing: true footer: true --- -