iobroker.leapmotor 0.5.2 → 0.5.3

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 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.3 (2026-06-26)
94
+ - (placeholder for next release)
95
+
93
96
  ### 0.5.2 (2026-06-24)
94
97
  - (placeholder for next release)
95
98
 
@@ -110,10 +113,6 @@ leapmotor.0.<VIN>.pictures.composite_html
110
113
  ### 0.2.7 (2026-06-13)
111
114
  - (see previous release notes)
112
115
 
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/io-package.json CHANGED
@@ -1,20 +1,33 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "leapmotor",
4
- "version": "0.5.2",
4
+ "version": "0.5.3",
5
5
  "news": {
6
+ "0.5.3": {
7
+ "en": "New: standard package.test.js test suite using @iobroker/testing for repository compliance",
8
+ "de": "Neu: Standard-Test-Suite (package.test.js) mit @iobroker/testing für Repository-Konformität",
9
+ "ru": "Новое: стандартный набор тестов package.test.js с использованием @iobroker/testing",
10
+ "pt": "Novo: conjunto de testes padrão package.test.js usando @iobroker/testing",
11
+ "nl": "Nieuw: standaard testsuite package.test.js met @iobroker/testing",
12
+ "fr": "Nouveau : suite de tests standard package.test.js utilisant @iobroker/testing",
13
+ "it": "Nuovo: suite di test standard package.test.js con @iobroker/testing",
14
+ "es": "Nuevo: conjunto de pruebas estándar package.test.js usando @iobroker/testing",
15
+ "pl": "Nowość: standardowy zestaw testów package.test.js z @iobroker/testing",
16
+ "uk": "Нове: стандартний набір тестів package.test.js з використанням @iobroker/testing",
17
+ "zh-cn": "新增:使用 @iobroker/testing 的标准测试套件 package.test.js"
18
+ },
6
19
  "0.5.2": {
7
- "en": "",
8
- "de": "",
9
- "ru": "",
10
- "pt": "",
11
- "nl": "",
12
- "fr": "",
13
- "it": "",
14
- "es": "",
15
- "pl": "",
16
- "uk": "",
17
- "zh-cn": ""
20
+ "en": "Fix: complete translations for changelog entries",
21
+ "de": "Fix: vollständige Übersetzungen für Changelog-Einträge",
22
+ "ru": "Исправление: полные переводы для записей журнала изменений",
23
+ "pt": "Correção: traduções completas para entradas do changelog",
24
+ "nl": "Fix: volledige vertalingen voor changelog-items",
25
+ "fr": "Correction : traductions complètes pour les entrées du changelog",
26
+ "it": "Correzione: traduzioni complete per le voci del changelog",
27
+ "es": "Corrección: traducciones completas para las entradas del changelog",
28
+ "pl": "Poprawka: kompletne tłumaczenia dla wpisów dziennika zmian",
29
+ "uk": "Виправлення: повні переклади для записів журналу змін",
30
+ "zh-cn": "修复:完整的更新日志条目翻译"
18
31
  },
19
32
  "0.5.1": {
20
33
  "en": "Fix: use window.setTimeout/setInterval in admin-tab frontend to satisfy repository checker\nMaintenance: dependency cleanup",
@@ -80,19 +93,6 @@
80
93
  "pl": "Poprawka",
81
94
  "uk": "Виправлення",
82
95
  "zh-cn": "修复"
83
- },
84
- "0.2.4": {
85
- "en": "Fix: GitHub release permissions in workflow",
86
- "de": "Fix: GitHub Release Berechtigungen im Workflow",
87
- "ru": "Исправление",
88
- "pt": "Correção",
89
- "nl": "Fix",
90
- "fr": "Correction",
91
- "it": "Correzione",
92
- "es": "Corrección",
93
- "pl": "Poprawka",
94
- "uk": "Виправлення",
95
- "zh-cn": "修复"
96
96
  }
97
97
  },
98
98
  "titleLang": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.leapmotor",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "description": "Leapmotor electric vehicle integration for ioBroker",
5
5
  "author": {
6
6
  "name": "Henrik Schönhofen",
@@ -44,12 +44,11 @@
44
44
  "LICENSE"
45
45
  ],
46
46
  "scripts": {
47
- "lint": "echo \"No linting configured\"",
48
- "test": "echo \"No tests configured\"",
47
+ "test:package": "mocha test/package.test.js --exit",
48
+ "test": "npm run test:package",
49
49
  "release": "release-script",
50
- "test:package": "echo \"No package tests configured\"",
51
- "test:unit": "echo \"No unit tests configured\"",
52
- "test:integration": "echo \"No integration tests configured\""
50
+ "test:integration": "echo \"No integration tests configured\" && exit 0",
51
+ "test:unit": "echo \"No unit tests configured\" && exit 0"
53
52
  },
54
53
  "engines": {
55
54
  "node": ">=22"