iobroker.staticsfilefolder 0.0.29 → 0.0.30
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 -0
- package/admin/i18n/de.json +5 -0
- package/admin/i18n/en.json +5 -0
- package/admin/i18n/es.json +5 -0
- package/admin/i18n/fr.json +5 -0
- package/admin/i18n/it.json +5 -0
- package/admin/i18n/nl.json +5 -0
- package/admin/i18n/pl.json +5 -0
- package/admin/i18n/pt.json +5 -0
- package/admin/i18n/ru.json +5 -0
- package/admin/i18n/uk.json +5 -0
- package/admin/i18n/zh-cn.json +5 -0
- package/admin/jsonConfig.json +15 -46
- package/io-package.json +14 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -64,6 +64,9 @@ Once configured and the instance is running (green status):
|
|
|
64
64
|
Placeholder for the next version (at the beginning of the line):
|
|
65
65
|
### **WORK IN PROGRESS**
|
|
66
66
|
-->
|
|
67
|
+
### 0.0.30
|
|
68
|
+
* Resolved jsonConfig schema validation requirements and added admin i18n translation files.
|
|
69
|
+
|
|
67
70
|
### 0.0.29
|
|
68
71
|
* Fixed tsconfig type checking configuration for adapter build.
|
|
69
72
|
|
package/admin/jsonConfig.json
CHANGED
|
@@ -5,61 +5,30 @@
|
|
|
5
5
|
"webInstance": {
|
|
6
6
|
"type": "instance",
|
|
7
7
|
"adapter": "web",
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"en": "Extend WEB adapter:",
|
|
11
|
-
"de": "WEB-Adapter erweitern:",
|
|
12
|
-
"ru": "Расширить веб-адаптер:",
|
|
13
|
-
"pt": "Estender o adaptador WEB:",
|
|
14
|
-
"nl": "Breid WEB-adapter uit:",
|
|
15
|
-
"fr": "Étendre l'adaptateur WEB :",
|
|
16
|
-
"it": "Estendi l'adattatore WEB:",
|
|
17
|
-
"es": "Ampliar el adaptador WEB:",
|
|
18
|
-
"pl": "Rozszerz adapter WEB:",
|
|
19
|
-
"uk": "Розширити веб-адаптер:",
|
|
20
|
-
"zh-cn": "扩展WEB适配器:",
|
|
21
|
-
"az": "WEB adapteri genişləndir:"
|
|
22
|
-
},
|
|
8
|
+
"label": "Extend WEB adapter:",
|
|
9
|
+
"xs": 12,
|
|
23
10
|
"sm": 12,
|
|
24
|
-
"md": 6
|
|
11
|
+
"md": 6,
|
|
12
|
+
"lg": 6,
|
|
13
|
+
"xl": 6
|
|
25
14
|
},
|
|
26
15
|
"route": {
|
|
27
16
|
"type": "text",
|
|
28
|
-
"label":
|
|
29
|
-
|
|
30
|
-
"de": "Routenpfad:",
|
|
31
|
-
"ru": "Путь маршрута:",
|
|
32
|
-
"pt": "Caminho da rota:",
|
|
33
|
-
"nl": "Routetracé:",
|
|
34
|
-
"fr": "Chemin d'accès:",
|
|
35
|
-
"it": "Percorso della rotta:",
|
|
36
|
-
"es": "Ruta de acceso:",
|
|
37
|
-
"pl": "Ścieżka trasy:",
|
|
38
|
-
"uk": "Шлях маршруту:",
|
|
39
|
-
"zh-cn": "路由路径:",
|
|
40
|
-
"az": "Marşrut yolu:"
|
|
41
|
-
},
|
|
17
|
+
"label": "Route path:",
|
|
18
|
+
"xs": 12,
|
|
42
19
|
"sm": 12,
|
|
43
|
-
"md": 6
|
|
20
|
+
"md": 6,
|
|
21
|
+
"lg": 6,
|
|
22
|
+
"xl": 6
|
|
44
23
|
},
|
|
45
24
|
"dirname": {
|
|
46
25
|
"type": "text",
|
|
47
|
-
"label":
|
|
48
|
-
|
|
49
|
-
"de": "Verzeichnis für statische Dateien:",
|
|
50
|
-
"ru": "Каталог статических файлов:",
|
|
51
|
-
"pt": "Diretório de arquivos estáticos:",
|
|
52
|
-
"nl": "Bestandsmap voor statische bestanden:",
|
|
53
|
-
"fr": "Répertoire des fichiers statiques :",
|
|
54
|
-
"it": "Directory dei file statici:",
|
|
55
|
-
"es": "Directorio de archivos estáticos:",
|
|
56
|
-
"pl": "Katalog plików statycznych:",
|
|
57
|
-
"uk": "Каталог статичних файлів:",
|
|
58
|
-
"zh-cn": "静态文件目录:",
|
|
59
|
-
"az": "Statik Fayllar Qovluğu:"
|
|
60
|
-
},
|
|
26
|
+
"label": "Static Files Directory:",
|
|
27
|
+
"xs": 12,
|
|
61
28
|
"sm": 12,
|
|
62
|
-
"md": 12
|
|
29
|
+
"md": 12,
|
|
30
|
+
"lg": 12,
|
|
31
|
+
"xl": 12
|
|
63
32
|
}
|
|
64
33
|
}
|
|
65
34
|
}
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "staticsfilefolder",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.30",
|
|
5
5
|
"news": {
|
|
6
|
+
"0.0.30": {
|
|
7
|
+
"en": "Resolved jsonConfig schema validation requirements and added admin i18n translation files.",
|
|
8
|
+
"de": "jsonConfig-Schema-Validierungsanforderungen behoben und Admin-i18n-Übersetzungsdateien hinzugefügt.",
|
|
9
|
+
"ru": "Устранены требования валидации схемы jsonConfig и добавлены файлы перевода admin i18n.",
|
|
10
|
+
"pt": "Resolvidos os requisitos de validação do esquema jsonConfig e adicionados arquivos de tradução i18n do admin.",
|
|
11
|
+
"nl": "jsonConfig schema-validatievereisten opgelost en admin i18n vertaalbestanden toegevoegd.",
|
|
12
|
+
"fr": "Exigences de validation du schéma jsonConfig résolues et fichiers de traduction i18n admin ajoutés.",
|
|
13
|
+
"it": "Risolti i requisiti di validazione dello schema jsonConfig e aggiunti i file di traduzione i18n admin.",
|
|
14
|
+
"es": "Se resolvieron los requisitos de validación del esquema jsonConfig y se agregaron archivos de traducción i18n de administración.",
|
|
15
|
+
"pl": "Rozwiązano wymagania walidacji schematu jsonConfig i dodano pliki tłumaczeń admin i18n.",
|
|
16
|
+
"uk": "Усунено вимоги валідації схеми jsonConfig та додано файли перекладу admin i18n.",
|
|
17
|
+
"zh-cn": "解决了 jsonConfig 模式验证要求并添加了 admin i18n 翻译文件。"
|
|
18
|
+
},
|
|
6
19
|
"0.0.29": {
|
|
7
20
|
"en": "Fixed tsconfig type checking configuration for adapter build.",
|
|
8
21
|
"de": "Typprüfungs-Konfiguration in tsconfig für den Adapter-Build behoben.",
|