This repository was archived by the owner on Jul 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode.json
162 lines (162 loc) · 3.19 KB
/
node.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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "Sold out events",
"permissions": {
"network": "Needs to access to sold out events feed"
},
"options": [
{
"title": "Feed Configuration",
"type": "section"
},
{
"title": "Feed URL",
"ui_width": 9,
"name": "sold_out_feed_url",
"doc_link": true,
"type": "string",
"default": "http://localhost/"
},
{
"title": "Update interval",
"name": "update_interval",
"type": "duration",
"ui_width": 3,
"hint": "Update frequency in minutes",
"default": 5
},
{
"title": "Auth?",
"name": "use_auth",
"type": "boolean",
"ui_width": 2,
"hint": "Does the URL require authentication?",
"default": true
},
{
"title": "Username",
"ui_width": 5,
"name": "feed_username",
"type": "string"
},
{
"title": "Password",
"ui_width": 5,
"name": "feed_password",
"type": "string"
},
{
"title": "Content Configuration",
"type": "section"
},
{
"title": "Show today only?",
"name": "today_only",
"type": "boolean",
"ui_width": 3,
"hint": "During the festival we only show events today",
"default": true
},
{
"title": "Events per page",
"name": "events_per_page",
"type": "integer",
"ui_width": 4,
"default": 10
},
{
"title": "Page switch time",
"name": "switch_time",
"type": "duration",
"ui_width": 4,
"hint": "Duration in seconds to show each page for",
"default": 10
},
{
"title": "No events text",
"ui_width": 10,
"name": "no_events_text",
"type": "string",
"default": "There are currently no sold out events"
},
{
"type": "font",
"title": "Font",
"name": "font",
"ui_width": 4,
"default": "silkscreen.ttf"
},
{
"title": "Font size",
"name": "font_size",
"type": "integer",
"ui_width": 4,
"default": 54
},
{
"title": "Font colour",
"name": "font_colour",
"type": "color",
"ui_width": 4,
"default": [
1,
1,
1,
1
]
},
{
"title": "Logo",
"ui_width": 4,
"name": "logo",
"type": "resource",
"valid": [
"image"
],
"default": "empty.png"
},
{
"title": "Margin",
"name": "margin",
"type": "integer",
"ui_width": 4,
"default": 40
},
{
"title": "Background colour",
"name": "background_colour",
"type": "color",
"ui_width": 4,
"default": [
0,
0,
0,
1
]
},
{
"title": "Screen Configuration",
"type": "section"
},
{
"title": "Automatic resolution",
"ui_width": 4,
"name": "auto_resolution",
"type": "boolean",
"default": false
},
{
"title": "Manual width",
"ui_width": 4,
"name": "width",
"type": "integer",
"default": 1920
},
{
"title": "Manual height",
"ui_width": 4,
"name": "height",
"type": "integer",
"default": 1080
}
]
}