-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
115 lines (115 loc) · 3.45 KB
/
plugin.json
File metadata and controls
115 lines (115 loc) · 3.45 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
{
"name": "Tickarr",
"version": "0.1.01",
"logo": "logo.png",
"description": "Dynamic text overlays for IPTV channels — SiriusXM Now Playing, Sports Ticker, Custom Text",
"author": "jstevenscl",
"actions": [
{
"id": "_header_nowplaying",
"type": "info",
"label": "── SiriusXM Now Playing ──"
},
{
"id": "enable_nowplaying",
"label": "Enable Now Playing",
"confirm": {
"message": "This will clone a stream profile for each selected channel. Channels already enabled will be skipped. Continue?"
}
},
{
"id": "disable_nowplaying",
"label": "Disable Now Playing",
"confirm": {
"message": "This will restore the original stream profile and remove ticker data for the selected Now Playing channel(s). Continue?"
}
},
{
"id": "_header_custom",
"type": "info",
"label": "── Custom Text ──"
},
{
"id": "enable_custom",
"label": "Enable Custom Text",
"confirm": {
"message": "This will clone a stream profile for each selected channel with your custom text overlay. Channels that already have any ticker type enabled will be skipped. Continue?"
}
},
{
"id": "update_custom",
"label": "Update Custom Text"
},
{
"id": "disable_custom",
"label": "Disable Custom Ticker",
"confirm": {
"message": "This will restore the original stream profile and remove ticker data for the selected Custom Text channel(s). Continue?"
}
},
{
"id": "_header_sports",
"type": "info",
"label": "── Sports Ticker ──"
},
{
"id": "enable_sports",
"label": "Enable Sports Ticker",
"confirm": {
"message": "This will clone a stream profile for each selected channel with a live sports score ticker. Channels that already have any ticker type enabled will be skipped. Continue?"
}
},
{
"id": "disable_sports",
"label": "Disable Sports Ticker",
"confirm": {
"message": "This will restore the original stream profile and remove ticker data for the selected Sports Ticker channel(s). Continue?"
}
},
{
"id": "_header_manage",
"type": "info",
"label": "── Manage ──"
},
{
"id": "view_active",
"label": "View Active Tickers"
},
{
"id": "refresh_channels",
"label": "Refresh Channel Data"
},
{
"id": "disable_all",
"label": "Disable All Tickers",
"confirm": {
"message": "This will restore original stream profiles and remove ticker data for ALL enabled channels. Continue?"
}
},
{
"id": "clean_orphans",
"label": "Clean Orphaned Profiles",
"confirm": {
"message": "This will delete all Tickarr-cloned stream profiles that have no active channel mapping. Continue?"
}
},
{
"id": "redis_diag",
"label": "Redis Diagnostics"
},
{
"id": "reload_poller",
"label": "Reload Poller",
"confirm": {
"message": "This will restart the background polling thread. Active ticker data will resume within 15 seconds. Continue?"
}
},
{
"id": "restart_dispatcharr",
"label": "Restart Dispatcharr",
"confirm": {
"message": "This will send a graceful restart signal to Dispatcharr. The page will go offline briefly — refresh in about 15 seconds. Continue?"
}
}
]
}