iobroker.leapmotor 0.5.4 → 0.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -16
- package/admin/index_m.html +10 -3
- package/admin/tab/index_m.html +10 -3
- package/admin/tab/tab.js +103 -103
- package/admin/tab.js +103 -103
- package/build/main.js +27 -2
- package/io-package.json +43 -42
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -90,28 +90,20 @@ leapmotor.0.<VIN>.pictures.composite_html
|
|
|
90
90
|
| cmd.refresh | Trigger immediate status update | – |
|
|
91
91
|
|
|
92
92
|
## Changelog
|
|
93
|
-
### 0.5.
|
|
93
|
+
### 0.5.7 (2026-06-29)
|
|
94
94
|
- (placeholder for next release)
|
|
95
95
|
|
|
96
|
-
### 0.5.
|
|
96
|
+
### 0.5.6 (2026-06-29)
|
|
97
97
|
- (placeholder for next release)
|
|
98
98
|
|
|
99
|
-
### 0.5.
|
|
99
|
+
### 0.5.5 (2026-06-29)
|
|
100
100
|
- (placeholder for next release)
|
|
101
101
|
|
|
102
|
-
### 0.5.
|
|
103
|
-
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
- New: React admin dashboard with full vehicle control
|
|
108
|
-
- New: climate and charging schedules
|
|
109
|
-
- New: comfort features (sentry mode, seat heat/ventilation, steering wheel heat, speed limit, mirror heat)
|
|
110
|
-
- New: trip detection and daily mileage tracking
|
|
111
|
-
- New: charging cost estimation with dynamic electricity pricing
|
|
112
|
-
- New: vehicle messages and unread count
|
|
113
|
-
- New: vehicle-model-specific feature capability system
|
|
114
|
-
- New: embeddable animated vehicle image for VIS
|
|
102
|
+
### 0.5.4 (2026-06-26)
|
|
103
|
+
- (placeholder for next release)
|
|
104
|
+
|
|
105
|
+
### 0.5.3 (2026-06-26)
|
|
106
|
+
- (placeholder for next release)
|
|
115
107
|
|
|
116
108
|
Older changes can be found in [CHANGELOG_OLD.md](CHANGELOG_OLD.md).
|
|
117
109
|
|
package/admin/index_m.html
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<html
|
|
3
|
-
<
|
|
4
|
-
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<title>Leapmotor</title>
|
|
6
|
+
<script type="module" crossorigin src="./tab.js"></script>
|
|
7
|
+
</head>
|
|
8
|
+
<body style="margin:0;padding:0;background:#070d1a">
|
|
9
|
+
<div id="root"></div>
|
|
10
|
+
</body>
|
|
11
|
+
</html>
|
package/admin/tab/index_m.html
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<html
|
|
3
|
-
<
|
|
4
|
-
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<title>Leapmotor</title>
|
|
6
|
+
<script type="module" crossorigin src="./tab.js"></script>
|
|
7
|
+
</head>
|
|
8
|
+
<body style="margin:0;padding:0;background:#070d1a">
|
|
9
|
+
<div id="root"></div>
|
|
10
|
+
</body>
|
|
11
|
+
</html>
|