forked from ioBroker/ioBroker.fullcalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
io-package.json
139 lines (139 loc) · 4.37 KB
/
io-package.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
{
"common": {
"name": "fullcalendar",
"version": "0.2.4",
"news": {
"0.2.4": {
"en": "Translations",
"de": "Übersetzungen",
"ru": "Поправлен перевод"
},
"0.2.3": {
"en": "Fix interval settings\nUpdate fullcalendar library",
"de": "Intervalleinstellungen korrigiert\nUpdate fullcalendar library",
"ru": "Исправлена ошибка с интервалом\nОбновлена библиотека fullcalendar"
},
"0.2.1": {
"en": "Fixed error",
"de": "Fehler gefixt",
"ru": "Исправлена ошибка"
},
"0.2.0": {
"en": "Support of new admin",
"de": "Unterstützung von neuen Admin",
"ru": "Поддержка нового admin"
},
"0.1.1": {
"en": "fix double event by creation",
"de": "Korrigiert Doppel-Event",
"ru": "Исправлено появление 2х событий"
},
"0.1.0": {
"en": "initial commit",
"de": "initial Commit",
"ru": "Первая версия"
}
},
"title": "Calendar schedule",
"desc": {
"en": "This adapter allows planing with calendar",
"de": "Adapter für geplante Aktionen in ioBroker mittels Kalender",
"ru": "Драйвер позволяет планировать с помощью календаря"
},
"authors": [
"bluefox <[email protected]>"
],
"license": "CC BY-NC 4.0",
"platform": "javascript/Node.js",
"icon": "fullcalendar.png",
"mode": "daemon",
"keywords": [
"schedule",
"calendar"
],
"messagebox": true,
"extIcon": "https://raw.githubusercontent.com/ioBroker/ioBroker.fullcalendar/master/admin/fullcalendar.png",
"readme": "https://github.com/ioBroker/ioBroker.fullcalendar/blob/master/README.md",
"loglevel": "info",
"adminTab": {
"singleton": false,
"name": "Calendar",
"fa-icon": "calendar_today"
},
"dependencies": [
{
"admin": ">=2.0.0"
}
],
"enabled": true,
"type": "date-and-time",
"noConfig": false
},
"native": {
"debounce": 1000,
"changesRelogInterval": 0,
"ackType": "any",
"changesMinDelta": 0,
"allEventsEnabled": false,
"allEventsMax": 1000,
"allEventsSaveOnDisk": false,
"eventsPath": "calendar/",
"cfgEventsEnabled": true,
"cfgEventsMax": 1000,
"cfgEventsSaveOnDisk": false
},
"instanceObjects": [
{
"_id": "info",
"type": "channel",
"common": {
"name": "Information"
},
"native": {}
},
{
"_id": "info.lastConfiguredEvent",
"type": "state",
"common": {
"role": "state",
"name": "Last configured event",
"type": "json",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "info.lastEvent",
"type": "state",
"common": {
"role": "state",
"name": "Any last event",
"type": "json",
"read": true,
"write": false
},
"native": {}
}
],
"objects": [
{
"_id": "_design/schedule",
"language": "javascript",
"views": {
"schedule": {
"map": "function(doc) { if (doc.type === 'schedule') emit(doc.common.name, doc); }"
}
}
},
{
"_id": "_design/custom",
"language": "javascript",
"views": {
"state": {
"map": "function (doc) { if (doc.type === 'state' && doc.common && doc.common.custom) emit(doc._id, doc.common.custom) }"
}
}
}
]
}