Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
d8883c2
Add here_travel_time
eifinger Jun 18, 2019
e83616a
Bump herepy version to 0.6.2
eifinger Jun 23, 2019
5b9536e
Update requirements_all.txt
eifinger Jun 23, 2019
a23f33d
Disable pylint and catch errors
eifinger Jun 24, 2019
8eacfdd
Add herepy to requirements_test_all
eifinger Jun 24, 2019
89a9941
Correctly place test req for herepy
eifinger Jun 24, 2019
4c313f3
use homeassistant.const.LENGTH_METERS
eifinger Jun 27, 2019
7dff64c
Implemented Requested Changes
eifinger Jul 7, 2019
d32a36a
Better error message for cryptic error code
eifinger Jul 8, 2019
50e5fe9
add requested changes
eifinger Jul 12, 2019
fe43802
add_entities instead of async
eifinger Jul 12, 2019
914bf43
Add route attr and distance in km instead of m
eifinger Jul 15, 2019
f88cb4a
fix linting errors
eifinger Jul 15, 2019
d3a60eb
attribute duration in minutes instead of seconds
eifinger Jul 15, 2019
bfd0376
Correct pattern for longitude
eifinger Jul 16, 2019
0dcd6fd
dont split attribute but rather local var
eifinger Jul 17, 2019
4518fc7
move strings to const and use travelTime
eifinger Jul 21, 2019
18be524
Add tests
eifinger Jul 21, 2019
bae4f89
Add route for pedestrian and public
eifinger Jul 22, 2019
92b8bd6
fix public transport route generation
eifinger Jul 22, 2019
a1871a2
remove print statement
eifinger Jul 22, 2019
7b58b62
Standalone pytest
eifinger Jul 22, 2019
f38d859
Use hass fixture and increase test cov
eifinger Jul 23, 2019
8a421fd
Clean up redundant code
eifinger Jul 23, 2019
901fa40
Add type annotations
eifinger Jul 23, 2019
0899f0c
Readd _resolve_zone and add a test for it
eifinger Jul 23, 2019
54e5e2e
Full test cov
eifinger Jul 23, 2019
488bb68
use caplog
eifinger Jul 23, 2019
1b0d4d4
Add origin/destination attributes
eifinger Jul 24, 2019
4d25279
Add mode: bicycle
eifinger Aug 5, 2019
77f491e
black
eifinger Aug 6, 2019
38d2d33
Add mode: publicTransportTimeTable
eifinger Aug 6, 2019
7a14c7a
Fix error for publicTransportTimeTable
eifinger Aug 7, 2019
c1832d0
split up config options
eifinger Aug 8, 2019
c0151f4
More type hints
eifinger Aug 8, 2019
861347f
implement *_entity_id
eifinger Aug 13, 2019
662edf4
align attributes with google_travel_time
eifinger Aug 15, 2019
b0cae59
route in lib
eifinger Sep 21, 2019
42ce221
Update requirements_all.txt
eifinger Sep 21, 2019
95ef6ad
remove DATA_KEY
eifinger Sep 21, 2019
422b51b
Use ATTR_MODE
eifinger Sep 21, 2019
2e0a8e5
add attribution
eifinger Sep 21, 2019
96cf329
Only add attribution if not none
eifinger Sep 21, 2019
f068508
Add debug log for raw response
eifinger Sep 22, 2019
83257f7
Add _build_hass_attribution
eifinger Sep 22, 2019
9016fd7
clearer var names in credentials check
eifinger Sep 22, 2019
a26194e
async _are_valid_client_credentials
eifinger Sep 22, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ homeassistant/components/gtfs/* @robbiet480
homeassistant/components/harmony/* @ehendrix23
homeassistant/components/hassio/* @home-assistant/hass-io
homeassistant/components/heos/* @andrewsayre
homeassistant/components/here_travel_time/* @eifinger
homeassistant/components/hikvision/* @mezz64
homeassistant/components/hikvisioncam/* @fbradyirl
homeassistant/components/history/* @home-assistant/core
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/here_travel_time/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""The here_travel_time component."""
12 changes: 12 additions & 0 deletions homeassistant/components/here_travel_time/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"domain": "here_travel_time",
"name": "HERE travel time",
"documentation": "https://www.home-assistant.io/components/here_travel_time",
"requirements": [
"herepy==0.6.3.1"
],
"dependencies": [],
"codeowners": [
"@eifinger"
]
}
Loading