-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
128 lines (128 loc) · 2.73 KB
/
app.json
File metadata and controls
128 lines (128 loc) · 2.73 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"_comment": "This file is generated. Please edit .homeycompose/app.json instead.",
"id": "com.haleyproductions.ruter",
"version": "1.0.2",
"compatibility": ">=12.1.0",
"sdk": 3,
"brandColor": "#0066CC",
"platforms": [
"local"
],
"name": {
"en": "Ruter"
},
"description": {
"en": "Widget for live public transportation departures for your favorite stop, right on your Homey dashboard."
},
"category": [
"internet"
],
"permissions": [],
"images": {
"small": "/assets/images/small.png",
"large": "/assets/images/large.png",
"xlarge": "/assets/images/xlarge.png"
},
"author": {
"name": "Ole Andreas Haley",
"email": "oleandreas86@gmail.com"
},
"widgets": {
"departures": {
"name": {
"en": "Departures"
},
"height": 160,
"transparent": false,
"settings": [
{
"id": "useDefaults",
"type": "checkbox",
"title": {
"en": "Use app defaults (stop & lines)"
},
"value": true
},
{
"id": "maxResults",
"type": "number",
"title": {
"en": "Max departures (override)"
},
"min": 1,
"max": 400
},
{
"id": "minutesAhead",
"type": "number",
"title": {
"en": "Minutes ahead (override)"
},
"min": 5,
"max": 600
},
{
"id": "direction",
"type": "dropdown",
"title": {
"en": "Direction (override)"
},
"values": [
{
"id": "any",
"title": {
"en": "Any"
}
},
{
"id": "outbound",
"title": {
"en": "Outbound"
}
},
{
"id": "inbound",
"title": {
"en": "Inbound"
}
}
]
},
{
"id": "timeFormat",
"type": "dropdown",
"title": {
"en": "Time format (override)"
},
"values": [
{
"id": "auto",
"title": {
"en": "Auto (system locale)"
}
},
{
"id": "24h",
"title": {
"en": "24-hour"
}
},
{
"id": "12h",
"title": {
"en": "12-hour"
}
}
]
}
],
"api": {
"getDepartures": {
"method": "GET",
"path": "/"
}
},
"id": "departures"
}
}
}