-
Notifications
You must be signed in to change notification settings - Fork 0
/
module.json
executable file
·57 lines (57 loc) · 1.24 KB
/
module.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"singleton": true,
"category": "support_external_ui",
"author": "Ralph Wetzel",
"homepage": "https://github.com/ralphwetzel/bridge4kt",
"icon": "house.png",
"moduleName": "Bridge4KT",
"version": "1.5.1",
"serial": "20210801|192031",
"tick": 1627838431457,
"maturity": "stable",
"repository": {
"type": "git",
"source": "https://github.com/ralphwetzel/bridge4kt"
},
"defaults": {
"title": "__m_title__",
"description": "__m_descr__",
"name": "__m_title__",
"pin": "",
"config": ""
},
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"required": true
},
"pin": {
"type": "string",
"readonly": true
},
"config": {
"type": "string",
"readonly": true
}
},
"required": false
},
"options": {
"fields": {
"name": {
"label": "__l_options__",
"helper": "Hint: If your bridge doesn't shop up in the Home app, try altering this label. Sometimes this helps..."
},
"pin": {
"label": "__l_pin__"
},
"config": {
"type": "textarea",
"label": "__l_config__"
}
}
},
"postRender": "loadFunction:postRender.js"
}