-
Notifications
You must be signed in to change notification settings - Fork 0
/
node.json
172 lines (169 loc) · 4.08 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
{
"name": "Twitter Module",
"permissions": {
"network": "Needs to access twitter API"
},
"deferred": [
"content.lua"
],
"options": [{
"title": "Generic",
"type": "section"
}, {
"title": "Mode",
"ui_width": 3,
"name": "mode",
"type": "select",
"options": [
["timeline", "Show user tweets"],
["favs", "Show user likes"],
["search", "Search tweets"]
],
"default": "search"
}, {
"title": "Query/Username",
"ui_width": 3,
"name": "query",
"type": "string",
"default": "infobeamer"
}, {
"title": "Number of tweets",
"ui_width": 3,
"name": "count",
"type": "select",
"options": [
[10, "10 tweets"],
[20, "20 (default)"],
[40, "40 tweets"],
[80, "80 tweets"]
],
"default": 20
}, {
"title": "Poll interval",
"ui_width": 3,
"name": "poll_interval",
"type": "select",
"options": [
[0, "Do not poll (use bundled tweets)"],
[2, "2 Minutes"],
[5, "5 Minutes (default)"],
[10, "10 Minutes"]
],
"default": 5
}, {
"title": "Exlude tweets before",
"ui_width": 3,
"name": "not_before",
"type": "string",
"default": "01.01.2016",
"hint": "Please use the DD.MM.YYYY format"
}, {
"title": "Filter garbage",
"ui_width": 3,
"hint": "Remote RT/default profiles, dots and garbage profiles",
"name": "filter_garbage",
"type": "boolean",
"default": true
}, {
"title": "Broadcast to scroller",
"ui_width": 3,
"name": "include_in_scroller",
"hint": "Add all tweets as content to the scroller",
"type": "boolean",
"default": true
},
{
"title": "Presentation",
"type": "section"
}, {
"title": "Profile Background",
"ui_width": 3,
"name": "profile_box",
"type": "resource",
"valid": ["image"],
"default": "empty.png"
}, {
"title": "Profile Text",
"ui_width": 3,
"name": "profile_color",
"type": "color",
"default": [1,1,1,1]
}, {
"title": "Tweet Background",
"ui_width": 3,
"name": "content_box",
"type": "resource",
"valid": ["image"],
"default": "empty.png"
}, {
"title": "Tweet Color",
"ui_width": 3,
"name": "content_color",
"type": "color",
"default": [1,1,1,1]
},
{
"title": "Font",
"ui_width": 3,
"name": "font",
"type": "font",
"doc_link": true,
"default": "Sansation_Regular.ttf"
}, {
"title": "Color",
"ui_width": 3,
"type": "color",
"name": "color",
"default": [1,1,1,1]
}, {
"title": "Margin",
"ui_width": 3,
"name": "margin",
"type": "select",
"options": [
[0, "0"],
[10, "10"],
[20, "20"],
[30, "30"],
[40, "40"]
],
"default": 10
}, {
"title": "Logo",
"ui_width": 3,
"name": "show_logo",
"type": "boolean",
"default": true
},
{
"title": "Authentication",
"type": "section"
}, {
"title": "API Key",
"ui_width": 6,
"name": "consumer_key",
"type": "string",
"default": ""
},{
"title": "API Secret",
"ui_width": 6,
"name": "consumer_secret",
"type": "string",
"default": ""
}, {
"title": "Access Token",
"ui_width": 6,
"name": "access_token",
"type": "string",
"default": ""
},{
"title": "Access Token Secret",
"ui_width": 6,
"name": "access_token_secret",
"type": "string",
"default": ""
}],
"deferred": [
"tile.lua"
]
}