iobroker.leapmotor 0.5.3 → 0.5.5
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 +6 -13
- package/admin/index_m.html +11 -0
- package/admin/tab/index_m.html +11 -0
- package/admin/tab.html +20 -0
- package/admin/tab.js +533 -0
- package/admin/tab_m.html +11 -0
- package/io-package.json +28 -28
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -90,6 +90,12 @@ leapmotor.0.<VIN>.pictures.composite_html
|
|
|
90
90
|
| cmd.refresh | Trigger immediate status update | – |
|
|
91
91
|
|
|
92
92
|
## Changelog
|
|
93
|
+
### 0.5.5 (2026-06-29)
|
|
94
|
+
- (placeholder for next release)
|
|
95
|
+
|
|
96
|
+
### 0.5.4 (2026-06-26)
|
|
97
|
+
- (placeholder for next release)
|
|
98
|
+
|
|
93
99
|
### 0.5.3 (2026-06-26)
|
|
94
100
|
- (placeholder for next release)
|
|
95
101
|
|
|
@@ -100,19 +106,6 @@ leapmotor.0.<VIN>.pictures.composite_html
|
|
|
100
106
|
- Fix: use window.setTimeout/setInterval in admin-tab frontend to satisfy repository checker
|
|
101
107
|
- Maintenance: dependency cleanup
|
|
102
108
|
|
|
103
|
-
### 0.5.0 (2026-06-23)
|
|
104
|
-
- New: React admin dashboard with full vehicle control
|
|
105
|
-
- New: climate and charging schedules
|
|
106
|
-
- New: comfort features (sentry mode, seat heat/ventilation, steering wheel heat, speed limit, mirror heat)
|
|
107
|
-
- New: trip detection and daily mileage tracking
|
|
108
|
-
- New: charging cost estimation with dynamic electricity pricing
|
|
109
|
-
- New: vehicle messages and unread count
|
|
110
|
-
- New: vehicle-model-specific feature capability system
|
|
111
|
-
- New: embeddable animated vehicle image for VIS
|
|
112
|
-
|
|
113
|
-
### 0.2.7 (2026-06-13)
|
|
114
|
-
- (see previous release notes)
|
|
115
|
-
|
|
116
109
|
Older changes can be found in [CHANGELOG_OLD.md](CHANGELOG_OLD.md).
|
|
117
110
|
|
|
118
111
|
## License
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
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>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
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.html
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<title>Leapmotor</title>
|
|
6
|
+
<script>
|
|
7
|
+
// Stelle sicher, dass ioBrokers eigene socket.io Client-Library
|
|
8
|
+
// geladen ist, bevor AdminConnection versucht sich zu verbinden.
|
|
9
|
+
(function() {
|
|
10
|
+
var script = document.createElement('script');
|
|
11
|
+
script.src = window.location.protocol + '//' + window.location.hostname + ':' + (window.location.port || 8081) + '/lib/js/socket.io.js';
|
|
12
|
+
document.head.appendChild(script);
|
|
13
|
+
})();
|
|
14
|
+
</script>
|
|
15
|
+
<script type="module" crossorigin src="./tab.js"></script>
|
|
16
|
+
</head>
|
|
17
|
+
<body style="margin:0;padding:0;background:#070d1a">
|
|
18
|
+
<div id="root"></div>
|
|
19
|
+
</body>
|
|
20
|
+
</html>
|