-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode.json
181 lines (181 loc) · 5.44 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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"name": "Plugin: schedule.json",
"permissions": {
"network": "Has to fetch schedule from remote site"
},
"options": [{
"title": "Fonts",
"type": "section"
}, {
"title": "Room Name",
"ui_width": 6,
"name": "font_room",
"type": "font",
"default": "silkscreen.ttf"
}, {
"title": "Talk Title",
"ui_width": 6,
"name": "font_talk",
"type": "font",
"default": "silkscreen.ttf"
}, {
"title": "Day",
"ui_width": 6,
"name": "font_day",
"type": "font",
"default": "silkscreen.ttf"
}, {
"title": "Clock",
"ui_width": 6,
"name": "font_clock",
"type": "font",
"default": "silkscreen.ttf"
}, {
"title": "Track Name",
"ui_width": 6,
"name": "font_track",
"type": "font",
"default": "silkscreen.ttf"
}, {
"title": "all other text",
"ui_width": 6,
"name": "font_text",
"type": "font",
"default": "silkscreen.ttf"
}, {
"title": "Standalone Options",
"type": "section",
"name": "top_level_config",
"condition": ["node", "is_top_level"]
}, {
"title": "Topbar Font Size",
"ui_width": 4,
"name": "standalone_topbar_size",
"condition": ["config", "top_level_config"],
"type": "integer",
"default": 70,
"hint": "Font size for the header content (clock and day)"
}, {
"title": "Talk Font Size",
"ui_width": 4,
"name": "standalone_talk_size",
"condition": ["config", "top_level_config"],
"type": "integer",
"default": 50,
"hint": "Font size for talk titles. Room name and speaker names will use 80% of that."
}, {
"title": "Padding",
"ui_width": 4,
"name": "standalone_padding",
"condition": ["config", "top_level_config"],
"type": "integer",
"default": 20,
"hint": "Padding to the screen edge and between all content"
}, {
"title": "Design",
"type": "section"
}, {
"title": "Show Language",
"ui_width": 4,
"name": "show_language",
"type": "boolean",
"default": true
}, {
"title": "Show Track",
"ui_width": 4,
"name": "show_track",
"type": "boolean",
"default": true
}, {
"title": "Clock Format",
"ui_width": 4,
"name": "clock_format",
"type": "string",
"default": "%H:%M",
"hint": "strftime() format specifier"
}, {
"title": "Hide Talks Older Than",
"ui_width": 4,
"name": "hide_talks_older_than_minutes",
"type": "integer",
"default": 25,
"hint": "Hide talks from schedule view if they started more than X minutes ago. Talks that have already ended will never be shown."
}, {
"title": "Schedule",
"type": "section"
}, {
"title": "JSON flavour",
"ui_width": 12,
"name": "json_flavour",
"type": "select",
"default": "voc-schema",
"options": [
["pretalx-broadcast-tools", "pretalx-broadcast-tools (input event URL below)"],
["voc-schema", "schema-compatible JSON (input JSON URL below)"]
]
}, {
"title": "Schedule URL",
"ui_width": 12,
"name": "schedule_url",
"type": "string",
"default": "https://pretalx.example.com/my-super-cool-event/"
}, {
"title": "Rooms",
"type": "section",
"condition": ["!", ["config", "top_level_config"]],
"intro": "You can configure which device should be assigned to which room, so each device can show room-specific content. Devices which do not have a room set will still show content like 'all talks', but skip any pages which have room-specific content assigned."
}, {
"title": "Rooms",
"name": "rooms",
"doc_link": true,
"type": "list",
"condition": ["!", ["config", "top_level_config"]],
"itemname": "Room",
"items": [{
"title": "Room Name or UUID",
"ui_width": 6,
"name": "name",
"type": "string",
"hint": "Name of this room in your events native language or room UUID",
"default": ""
}, {
"title": "Serial",
"ui_width": 6,
"name": "serial",
"type": "device",
"default": ""
}, {
"title": "Text block A",
"ui_width": 6,
"name": "text_a",
"type": "text",
"hint": "Room-Specific text A",
"rows": 6,
"default": ""
}, {
"title": "Text block B",
"ui_width": 6,
"name": "text_b",
"type": "text",
"hint": "Room-Specific text B",
"rows": 6,
"default": ""
}, {
"title": "Image A",
"ui_width": 6,
"name": "image_a",
"hint": "Room-Specific image A",
"type": "resource",
"valid": ["image"],
"default": "empty.png"
}, {
"title": "Image B",
"ui_width": 6,
"name": "image_b",
"hint": "Room-Specific image B",
"type": "resource",
"valid": ["image"],
"default": "empty.png"
}]
}]
}