iobroker.leapmotor 0.5.2 → 0.5.4
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 -7
- package/admin/index_m.html +4 -0
- package/admin/tab/index_m.html +4 -0
- package/admin/tab.html +20 -0
- package/admin/tab.js +533 -0
- package/admin/tab_m.html +11 -0
- package/io-package.json +38 -38
- package/package.json +5 -6
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.4 (2026-06-26)
|
|
94
|
+
- (placeholder for next release)
|
|
95
|
+
|
|
96
|
+
### 0.5.3 (2026-06-26)
|
|
97
|
+
- (placeholder for next release)
|
|
98
|
+
|
|
93
99
|
### 0.5.2 (2026-06-24)
|
|
94
100
|
- (placeholder for next release)
|
|
95
101
|
|
|
@@ -107,13 +113,6 @@ leapmotor.0.<VIN>.pictures.composite_html
|
|
|
107
113
|
- New: vehicle-model-specific feature capability system
|
|
108
114
|
- New: embeddable animated vehicle image for VIS
|
|
109
115
|
|
|
110
|
-
### 0.2.7 (2026-06-13)
|
|
111
|
-
- (see previous release notes)
|
|
112
|
-
|
|
113
|
-
### 0.2.5 (2026-06-12)
|
|
114
|
-
- fix: use dynamic vehicle name from API in HTML dashboard
|
|
115
|
-
- fix: remove debug log messages
|
|
116
|
-
|
|
117
116
|
Older changes can be found in [CHANGELOG_OLD.md](CHANGELOG_OLD.md).
|
|
118
117
|
|
|
119
118
|
## License
|
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>
|