iobroker.leapmotor 0.5.3 → 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 +3 -3
- 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 +14 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -90,6 +90,9 @@ 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
|
+
|
|
93
96
|
### 0.5.3 (2026-06-26)
|
|
94
97
|
- (placeholder for next release)
|
|
95
98
|
|
|
@@ -110,9 +113,6 @@ leapmotor.0.<VIN>.pictures.composite_html
|
|
|
110
113
|
- New: vehicle-model-specific feature capability system
|
|
111
114
|
- New: embeddable animated vehicle image for VIS
|
|
112
115
|
|
|
113
|
-
### 0.2.7 (2026-06-13)
|
|
114
|
-
- (see previous release notes)
|
|
115
|
-
|
|
116
116
|
Older changes can be found in [CHANGELOG_OLD.md](CHANGELOG_OLD.md).
|
|
117
117
|
|
|
118
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>
|