iobroker.leapmotor 0.2.7 → 0.5.1
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 +17 -8
- package/admin/tab/tab.html +20 -0
- package/admin/tab/tab.js +533 -0
- package/build/leapmotor-client.js +30 -1
- package/build/main.js +890 -225
- package/io-package.json +79 -83
- package/package.json +7 -12
package/README.md
CHANGED
|
@@ -90,6 +90,22 @@ leapmotor.0.<VIN>.pictures.composite_html
|
|
|
90
90
|
| cmd.refresh | Trigger immediate status update | – |
|
|
91
91
|
|
|
92
92
|
## Changelog
|
|
93
|
+
### 0.5.1 (2026-06-24)
|
|
94
|
+
- (placeholder for next release)
|
|
95
|
+
|
|
96
|
+
### 0.5.0 (2026-06-23)
|
|
97
|
+
- New: React admin dashboard with full vehicle control
|
|
98
|
+
- New: climate and charging schedules
|
|
99
|
+
- New: comfort features (sentry mode, seat heat/ventilation, steering wheel heat, speed limit, mirror heat)
|
|
100
|
+
- New: trip detection and daily mileage tracking
|
|
101
|
+
- New: charging cost estimation with dynamic electricity pricing
|
|
102
|
+
- New: vehicle messages and unread count
|
|
103
|
+
- New: vehicle-model-specific feature capability system
|
|
104
|
+
- New: embeddable animated vehicle image for VIS
|
|
105
|
+
|
|
106
|
+
### 0.2.7 (2026-06-13)
|
|
107
|
+
- (see previous release notes)
|
|
108
|
+
|
|
93
109
|
### 0.2.5 (2026-06-12)
|
|
94
110
|
- fix: use dynamic vehicle name from API in HTML dashboard
|
|
95
111
|
- fix: remove debug log messages
|
|
@@ -97,14 +113,7 @@ leapmotor.0.<VIN>.pictures.composite_html
|
|
|
97
113
|
### 0.2.4 (2026-06-12)
|
|
98
114
|
- Fix: GitHub release permissions in workflow
|
|
99
115
|
|
|
100
|
-
|
|
101
|
-
- Fix: add missing news entries
|
|
102
|
-
|
|
103
|
-
### 0.2.2 (2026-06-11)
|
|
104
|
-
- Fix: workflow, test scripts
|
|
105
|
-
|
|
106
|
-
### 0.2.1 (2026-06-10)
|
|
107
|
-
- Fix: release script, logo size, workflow improvements
|
|
116
|
+
Older changes can be found in [CHANGELOG_OLD.md](CHANGELOG_OLD.md).
|
|
108
117
|
|
|
109
118
|
## License
|
|
110
119
|
|
|
@@ -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>
|