iobroker.leapmotor 0.2.4 → 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 +20 -25
- 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 +892 -227
- package/io-package.json +192 -170
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# ioBroker.leapmotor
|
|
4
4
|
|
|
5
|
-
[](https://github.com/backfisch88/ioBroker.leapmotor)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
7
|
|
|
8
8
|
Unofficial Leapmotor electric vehicle integration for ioBroker. Tested on T03.
|
|
@@ -90,29 +90,28 @@ 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)
|
|
93
95
|
|
|
94
|
-
### 0.
|
|
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
|
|
96
105
|
|
|
97
|
-
### 0.2.
|
|
98
|
-
-
|
|
106
|
+
### 0.2.7 (2026-06-13)
|
|
107
|
+
- (see previous release notes)
|
|
99
108
|
|
|
100
|
-
### 0.2.
|
|
101
|
-
-
|
|
109
|
+
### 0.2.5 (2026-06-12)
|
|
110
|
+
- fix: use dynamic vehicle name from API in HTML dashboard
|
|
111
|
+
- fix: remove debug log messages
|
|
102
112
|
|
|
103
|
-
### 0.2.
|
|
104
|
-
-
|
|
105
|
-
- Automatic token refresh
|
|
106
|
-
- Picture cache
|
|
107
|
-
- All remote commands require PIN verification
|
|
108
|
-
|
|
109
|
-
## Legal Notice
|
|
110
|
-
|
|
111
|
-
This adapter is **not affiliated with, endorsed by, or officially connected to Leapmotor** or any of its subsidiaries or affiliates.
|
|
112
|
-
|
|
113
|
-
Use at your own risk. The authors accept no liability for any damage caused by the use of this software.
|
|
114
|
-
|
|
115
|
-
## Changelog
|
|
113
|
+
### 0.2.4 (2026-06-12)
|
|
114
|
+
- Fix: GitHub release permissions in workflow
|
|
116
115
|
|
|
117
116
|
### 0.2.3 (2026-06-12)
|
|
118
117
|
- Fix: add missing news entries
|
|
@@ -123,11 +122,7 @@ Use at your own risk. The authors accept no liability for any damage caused by t
|
|
|
123
122
|
### 0.2.1 (2026-06-10)
|
|
124
123
|
- Fix: release script, logo size, workflow improvements
|
|
125
124
|
|
|
126
|
-
|
|
127
|
-
- Full release: status, consumption, pictures, composite HTML dashboard
|
|
128
|
-
- Automatic token refresh
|
|
129
|
-
- Picture cache
|
|
130
|
-
- All remote commands require PIN verification
|
|
125
|
+
Older changes can be found in [CHANGELOG_OLD.md](CHANGELOG_OLD.md).
|
|
131
126
|
|
|
132
127
|
## License
|
|
133
128
|
|
|
@@ -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>
|