Paulus Schoutsen
b0948bef5f
Make State class immutable
2016-02-09 23:27:01 -08:00
Ryan Kraus
7a00bf8696
Fixed time zone conversion with no TZ specified
...
Using .replace to set the current time zone appears to not handle
things correctly. The proper way to do this is apparently .localize.
2016-02-06 21:31:07 -05:00
Paulus Schoutsen
a5db23afa4
Mock util.location by default
2016-02-04 22:26:02 -08:00
Paulus Schoutsen
a0f6f3ac22
Merge pull request #1085 from molobrakos/yaml_safe_load
...
use yaml safe loader
2016-02-01 08:15:32 -08:00
Paulus Schoutsen
0b8e097705
Remove unused environment util
2016-01-31 08:58:30 -08:00
Erik
4b253d17ba
use yaml safe loader
2016-01-31 00:46:08 +01:00
Paulus Schoutsen
ef132e4583
Add tests for color util
2016-01-29 18:44:21 -08:00
Fabian Affolter
7aba78f96e
Update docstrings
2016-01-27 00:08:06 +01:00
Paulus Schoutsen
bc19ef66bf
Move split_entity_id to helpers
2016-01-23 22:49:49 -08:00
Paulus Schoutsen
de08f0afaa
Load YAML config into an ordered dict
2016-01-23 22:41:01 -08:00
Andrew Thigpen
11f32d0500
Add is_state_attr method.
...
Returns True if the entity exists and has an attribute with the given
name and value.
2015-12-31 14:58:18 -06:00
Paulus Schoutsen
586be7fad1
Prevent division by 0 xy->rgb color conversion
2015-12-29 00:09:38 -08:00
Paulus Schoutsen
ab5a3f9de3
Clean up YR sensor
2015-12-27 11:07:25 -08:00
Paulus Schoutsen
f73f824e0e
Make template states var callable
2015-12-12 22:19:37 -08:00
Paulus Schoutsen
360b99be59
Add template is_state method
2015-12-12 22:19:12 -08:00
Paulus Schoutsen
2b975c8620
Add flexible error value for value template parsing
2015-12-12 10:35:15 -08:00
Paulus Schoutsen
b1bf6a609e
Catch exceptions when error rendering templates
2015-12-11 19:07:03 -08:00
Paulus Schoutsen
5c63862054
Fix template rounding
2015-12-11 18:45:53 -08:00
Paulus Schoutsen
d55fda28c2
Add value renderer helper method
2015-12-10 21:38:35 -08:00
Paulus Schoutsen
7acef84aad
Add variable support to template rendering
2015-12-10 21:16:05 -08:00
Paulus Schoutsen
0dcc69d800
Fix template rounding
2015-12-10 20:47:06 -08:00
Paulus Schoutsen
af09a305cf
Add multiply template filter
2015-12-10 20:47:06 -08:00
Paulus Schoutsen
de68d3355a
Add template support
2015-12-10 20:47:05 -08:00
Paulus Schoutsen
a301d869d7
PyLint 1.5 fixes
2015-11-29 13:49:05 -08:00
Paulus Schoutsen
6135b87b1d
Log error if unable to install package
2015-11-15 02:05:13 -08:00
Paulus Schoutsen
4fb301b7a9
Check global installed packages
2015-11-08 22:55:22 -08:00
MakeMeASandwich
e3304caf06
add hyperion light support
2015-10-17 19:36:52 +02:00
Paulus Schoutsen
b05f2e3221
Fix style issue
2015-10-11 11:04:16 -07:00
Paulus Schoutsen
dcfc91e71c
Fix throttle applied to methods
2015-10-11 10:42:42 -07:00
Paulus Schoutsen
47fc1deecb
Fix throttle to work on instance-level
2015-10-08 23:49:55 -07:00
Paulus Schoutsen
9bdfa89b7c
More robust geofence checking
2015-10-02 08:16:53 -07:00
Paulus Schoutsen
2eb36c18bd
Add geofencing to automation
2015-09-29 00:18:52 -07:00
Paulus Schoutsen
30492cc685
Fix tests and linting
2015-09-20 11:46:01 -07:00
Paulus Schoutsen
19d40612e6
Add home_range to device tracker
2015-09-20 09:35:03 -07:00
Paulus Schoutsen
4ad4d74ed4
Fix pip not detecting package installed
2015-09-16 23:18:47 -07:00
Paulus Schoutsen
86aea83f64
Device tracker improvements
2015-09-15 23:35:28 -07:00
Paulus Schoutsen
c18294ee76
Allow triggers to be used as condition
2015-09-15 08:56:06 -07:00
Paulus Schoutsen
cfc23b0091
Speed up tests
2015-09-12 22:56:49 -07:00
Paulus Schoutsen
f9b17ab026
Device tracker rewrite
2015-09-09 23:37:15 -07:00
Paulus Schoutsen
326d23de38
Fix pip checking if zip files are installed
2015-09-08 19:49:27 -07:00
Ryan Kraus
a097e9caf2
Reverted a line in package.py to its previous state.
2015-09-05 04:53:44 -04:00
Ryan Kraus
34c4bb585a
Fix pip installation issues.
...
This commit is to fix issue #325 .
There were three issues with the PIP installations.
1) If multiple instances of the same platform were found, pip could
attempt to install the same dependency multiple times at once by being
run simultaneously in different processes. This would cause pip
failures due to race conditions. This has been fixed by using a thread
lock to allow only one instance of PIP to run at a time.
2) PIP would not check the target if the dependency was already met.
This would lead to PIP attempting to reinstall every dependency on
every boot. This would eventually fail because the package was already
installed, but it significantly increased boot time, especially on
Raspberry Pis.
3) PIP would not upgrade packages that were already installed. Usually,
when a version is specified to PIP, it will install the specified
version if it is not already installed, even without the \-\-upgrade
flag. This behavior did not work when using the \-\-target flag. When
using the target flag, a new install is always attempted, but nothing
will be overwritten unless the \-\-upgrade flag is also given. This
caused new packages to not be installed when their dependencies were
increased. This is fixed by defaulting towards using the
\-\-upgrade flag.
2015-09-05 04:50:35 -04:00
Paulus Schoutsen
a20ab24ba5
Remove unused pip constant
2015-08-29 23:08:33 -07:00
Ryan Kraus
4e01e7ca9b
Pip requirements and fixes.
...
1) Reduced the flags being sent to pip.
2) Required a minimum of pip 7.0.0 for Home Assistant.
2015-08-29 23:17:47 -04:00
Ryan Kraus
6fdf9b8d7c
Many changes to cleanup config directory and lib installations.
...
Cleaned up default config directory determination.
Made bootstrap creators for HA always set config directory.
Made bootstrap creators set the local library in the Python Path.
Moved all exceptions to their own file to make imports easier.
Moved default configuration directory be in the users’ profile.
Moved pip installs to be done to a lib folder in the config directory.
Reduced requirements.txt to only the barebones reqs.
2015-08-29 21:11:24 -04:00
Paulus Schoutsen
086961d109
Add temperature util, helpers
2015-08-16 22:06:01 -07:00
Paulus Schoutsen
b61b3c611d
Extract temperature util
2015-08-16 21:36:33 -07:00
Paulus Schoutsen
d2b5f429fe
Remove deprecated code
2015-08-04 16:21:09 -04:00
Paulus Schoutsen
7870e9a5e2
Minor cleanup core
2015-08-03 17:05:33 +02:00
Paulus Schoutsen
c532a28a98
Increase robustness dependency installation
2015-07-15 18:37:24 -07:00
Paulus Schoutsen
dea0fcc845
Improve virtual env detection
2015-07-11 00:02:42 -07:00
Paulus Schoutsen
2b23eec0f7
Fix pip 1.5.4 compatibility
2015-07-10 21:24:28 -07:00
Paulus Schoutsen
aeae7c2c02
Reorganize util methods
2015-07-07 00:01:17 -07:00
Paulus Schoutsen
b346f6e8ad
Allow installing component dependencies on the fly
2015-07-07 00:00:21 -07:00
Paulus Schoutsen
8a14f46595
Add support to logbook component to browse days
2015-06-14 22:56:55 -07:00
Fabian Affolter
5266e10140
add new methods for date/time output
2015-05-08 17:00:12 +02:00
Paulus Schoutsen
3720333927
UTC bugfixes
2015-04-28 22:38:43 -07:00
Paulus Schoutsen
e0ecb64a10
Use UTC as the internal datetime format
2015-04-28 19:12:05 -07:00