Skip to content

Commit 0471df8

Browse files
committed
doc updates
1 parent f0458ab commit 0471df8

File tree

3 files changed

+104
-13
lines changed

3 files changed

+104
-13
lines changed

docs/_sass/custom/custom.scss

Lines changed: 35 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,42 @@
1-
table {
2-
border-collapse: collapse;
3-
border: none;
4-
}
51

6-
td, th {
7-
border: none;
2+
3+
.styled-table {
4+
border-collapse: collapse;
5+
font-size: 1.5em;
6+
font-weight: 500;
7+
8+
// font-size: 1.125rem !important;
9+
// font-family: system-ui, -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif, "Segoe UI Emoji";
10+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
11+
}
12+
13+
.styled-table tr {
14+
background-color: red;
15+
color: #000;
16+
text-align: center;
17+
font-size: 20px;
18+
19+
}
20+
21+
.styled-table th, .styled-table td {
22+
padding: 12px 15px;
823
}
924

25+
.styled-table thead tr {
26+
border-bottom: 3px solid #009879;
27+
}
28+
29+
.styled-table-row {
30+
border-bottom: 3px solid #009879;
31+
}
32+
33+
.styled-table-col {
34+
border-right: 3px solid #009879;
35+
}
36+
37+
1038
.table-wrapper {
11-
box-shadow: none;
39+
box-shadow: none;
1240
}
1341

1442
#fade {

docs/index.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ function lightbox_close() {
3838

3939
<div id="fade" onClick="lightbox_close();"></div>
4040

41-
<table border="0">
41+
<table border="0" class="noBorder">
4242
<tr>
43-
<td width="55%" class="aTable"><a href="#" onclick="lightbox_open();"><img src="./images/widget_charging.png" width="400" /></a>
43+
<td width="55%"><a href="#" onclick="lightbox_open();"><img src="./images/widget_charging.png" width="400" /></a>
4444
<br/><center>Click to show app in action</center>
4545
</td>
4646
<td>
@@ -59,9 +59,11 @@ function lightbox_close() {
5959
</tr>
6060
</table>
6161

62-
It provides a limited feature set but has a fresher more responsive UI, providing both widget and Siri/Shortcuts integration.
62+
Features Include:
6363
{: .fs-6 .fw-300 }
6464

65-
Note: bluelink-scriptable currently supports the US and Canadian Bluelink regions, tested on Hyundai and Kia for Canada and just Hyundai for US.
66-
67-
I am actively looking for e-gmp car owners from other regions that would be willing to work with me so I can develop and test the APIs for their regions (Europe specifically). If your willing please [DM me on reddit](https://www.reddit.com/user/andyfase/). It would likely take less than a couple of days to implement and maybe 2 hours of active time using your bluelink account.
65+
- Auto Updating Widget
66+
- Fresh and more responsive app UI
67+
- Siri voice support "Hey Siri, ask the car", "Warm the car"
68+
- Automations via IOS Shortcuts like walk-away lock and auto warm the car on a schedule
69+
{: .fs-6 .fw-300 }

docs/pages/region.md

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
title: Region / Brand Support
3+
layout: home
4+
nav_order: 1
5+
---
6+
7+
# Region and Brand Support
8+
{: .fs-9 }
9+
10+
The app uses the publically exposed BlueLink API, it is un-documented and varies in specification across both manufacturer and region.
11+
{: .fs-6 .fw-300 }
12+
13+
As such support for each region / manufacturer requires custom development and testing. The current level of support is shown below.
14+
{: .fs-5 .fw-300 }
15+
16+
I am actively looking for e-gmp car owners from regions/manufacturers I do not currently support that would be willing to provide access to their account so I can develop support for there manufactuer and/or region. If your willing please [DM me on reddit](https://www.reddit.com/user/andyfase/).
17+
{: .fs-5 .fw-300 }
18+
19+
# Current Known Region Support
20+
{: .fs-7 }
21+
22+
<table class="styled-table">
23+
<thead>
24+
<tr>
25+
<th class="styled-table-col">Brand</th>
26+
<th>Region</th>
27+
<th>Support</th>
28+
</tr>
29+
</thead>
30+
<tbody>
31+
<tr>
32+
<td rowspan=3 class="styled-table-col">Hyundai</td>
33+
<td>Canada</td>
34+
<td>&#x2705;</td>
35+
</tr>
36+
<tr>
37+
<td>US</td>
38+
<td style="text-size: 40">&#x2705;</td>
39+
</tr>
40+
<tr class="styled-table-row">
41+
<td>Europe</td>
42+
<td>&#x274C;</td>
43+
</tr>
44+
<tr>
45+
<td rowspan=3 class="styled-table-col">Kia</td>
46+
<td>Canada</td>
47+
<td>&#x2705;</td>
48+
</tr>
49+
<tr>
50+
<td>US</td>
51+
<td>&#x274C;</td>
52+
</tr>
53+
<tr>
54+
<td>Europe</td>
55+
<td>&#x274C;</td>
56+
</tr>
57+
</tbody>
58+
</table>
59+
60+
61+
----

0 commit comments

Comments
 (0)