mirror of
https://github.com/Kunsi/scheduled-plugin-pretalx-broadcast-tools.git
synced 2024-11-22 01:51:03 +00:00
147 lines
4.1 KiB
JSON
147 lines
4.1 KiB
JSON
{
|
|
"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": "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",
|
|
"name": "rooms",
|
|
"doc_link": true,
|
|
"type": "list",
|
|
"itemname": "Room",
|
|
"hint": "Define all rooms in your schedule and assign them to devices",
|
|
"items": [{
|
|
"title": "Room Name",
|
|
"ui_width": 6,
|
|
"name": "name",
|
|
"type": "string",
|
|
"hint": "Name of this room in your events native language",
|
|
"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"
|
|
}]
|
|
}]
|
|
}
|