iobroker.leapmotor 0.2.7 → 0.5.0
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 +18 -0
- 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 +192 -209
- package/package.json +4 -4
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
|
+
### **WORK IN PROGRESS**
|
|
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
|
|
@@ -106,6 +122,8 @@ leapmotor.0.<VIN>.pictures.composite_html
|
|
|
106
122
|
### 0.2.1 (2026-06-10)
|
|
107
123
|
- Fix: release script, logo size, workflow improvements
|
|
108
124
|
|
|
125
|
+
Older changes can be found in [CHANGELOG_OLD.md](CHANGELOG_OLD.md).
|
|
126
|
+
|
|
109
127
|
## License
|
|
110
128
|
|
|
111
129
|
MIT License
|
|
@@ -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>
|