From 89ddf1497a1b56825e791e50807cdb59a22171c0 Mon Sep 17 00:00:00 2001 From: aidbish <38182386+aidbish@users.noreply.github.com> Date: Thu, 27 Dec 2018 13:53:49 +1000 Subject: [PATCH 1/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d3fa81e..971d1b8 100755 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ You will need to copy the following files into your home assistant configuration alarm.yaml *This files stores your alarm configuration. An options page will be created for this file* custom_components/alarm_control_panel/bwalarm.py *The brains of the operation. This is the logic of the custom alarm system* panels/alarm.html *This is the interface for the custom alarm component. It's actually optional as the alarm will function without it but recommended for ease of setup* -www/alarm/[ALL FILES] *These files control how the interface looks and feels* -www/lib/[ALL FILES] *These files add additional functionality to the interface in order to work* +www/alarm/ [COPY ALL FILES] *These files control how the interface looks and feels* +www/lib/ [COPY ALL FILES] *These files add additional functionality to the interface in order to work* www/images/ha.png *An image file used for the interface log* To get things working with Home Assistant (HA) you will need to adjust your configuration.yaml to instruct HA to use your new custom alarm component, add the following to this file: From 0fff4b46162940bac25bfbac18cf2cb674fcf568 Mon Sep 17 00:00:00 2001 From: aidbish <38182386+aidbish@users.noreply.github.com> Date: Thu, 27 Dec 2018 13:54:57 +1000 Subject: [PATCH 2/3] Update README.md Made it more obvious that all files need to be copied --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 971d1b8..7572287 100755 --- a/README.md +++ b/README.md @@ -16,9 +16,12 @@ This is very much a community project so if you wish to chip in then please do!! You will need to copy the following files into your home assistant configuration directory alarm.yaml *This files stores your alarm configuration. An options page will be created for this file* + custom_components/alarm_control_panel/bwalarm.py *The brains of the operation. This is the logic of the custom alarm system* panels/alarm.html *This is the interface for the custom alarm component. It's actually optional as the alarm will function without it but recommended for ease of setup* + www/alarm/ [COPY ALL FILES] *These files control how the interface looks and feels* + www/lib/ [COPY ALL FILES] *These files add additional functionality to the interface in order to work* www/images/ha.png *An image file used for the interface log* From 50efb1c032900a20d348d44eb47931a3a94b8d7a Mon Sep 17 00:00:00 2001 From: aidbish <38182386+aidbish@users.noreply.github.com> Date: Mon, 11 Feb 2019 19:58:21 +1000 Subject: [PATCH 3/3] Update bwalarm.py --- custom_components/alarm_control_panel/bwalarm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/alarm_control_panel/bwalarm.py b/custom_components/alarm_control_panel/bwalarm.py index 39c05f2..8fedd7a 100755 --- a/custom_components/alarm_control_panel/bwalarm.py +++ b/custom_components/alarm_control_panel/bwalarm.py @@ -19,7 +19,7 @@ """ -REQUIREMENTS = ['ruamel.yaml==0.15.42'] +REQUIREMENTS = ['ruamel.yaml>=0.15.42'] import asyncio import sys