iobroker.ical 1.16.1 → 1.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +12 -9
- package/admin/jsonConfig.json +44 -23
- package/io-package.json +29 -29
- package/main.js +590 -318
- package/package.json +18 -19
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2014-
|
|
3
|
+
Copyright (c) 2014-2025, bluefox <dogafox@gmail.com>
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -31,13 +31,22 @@ Sentry reporting, starting with js-controller 3.0, means that this adapter can u
|
|
|
31
31
|
Placeholder for the next version (at the beginning of the line):
|
|
32
32
|
### **WORK IN PROGRESS**
|
|
33
33
|
-->
|
|
34
|
+
### 1.17.0 (2025-09-15)
|
|
35
|
+
* (jens-maus) fixed adapter warnings and responsive design suggestions.
|
|
36
|
+
* (jens-maus) updated dependencies.
|
|
37
|
+
* (jens-maus) update node-ical to latest 0.21.0.
|
|
38
|
+
|
|
39
|
+
### 1.16.2 (2025-06-16)
|
|
40
|
+
|
|
41
|
+
* (@GermanBluefox) Small fix in the configuration dialog
|
|
42
|
+
|
|
34
43
|
### 1.16.1 (2024-11-01)
|
|
35
|
-
* (jens-maus) fix issue with handling rrule timezones incorrect with latest node-ical (#708).
|
|
44
|
+
* (jens-maus) fix issue with handling rrule timezones incorrect with the latest node-ical (#708).
|
|
36
45
|
* (jens-maus) update node-ical to latest 0.20.1
|
|
37
46
|
* (jens-maus) save cached files to os tmpdir instead.
|
|
38
47
|
|
|
39
48
|
### 1.16.0 (2024-10-29)
|
|
40
|
-
* (cvoelkel76)
|
|
49
|
+
* (cvoelkel76) added checkbox to allow exactly matching of a calendar event.
|
|
41
50
|
* (jens-maus) update node-ical to latest 0.20.0
|
|
42
51
|
* (klein0r) Breaking change: Removed trigger state (subscribe is deprecated in js-controller 6.x)
|
|
43
52
|
* (simatec) Responsive design added
|
|
@@ -46,17 +55,11 @@ Sentry reporting, starting with js-controller 3.0, means that this adapter can u
|
|
|
46
55
|
* (mcm1957) Adapter requires node.js >= 18 and js-controller >= 5 now
|
|
47
56
|
* (mcm1957) Dependencies have been updated
|
|
48
57
|
|
|
49
|
-
### 1.14.3 (2024-02-28)
|
|
50
|
-
* (jens-maus) update node-ical to latest 0.18.0
|
|
51
|
-
|
|
52
|
-
### 1.14.2 (2024-01-29)
|
|
53
|
-
* (jens-maus) update node-ical to latest 0.17.2
|
|
54
|
-
|
|
55
58
|
## License
|
|
56
59
|
|
|
57
60
|
The MIT License (MIT)
|
|
58
61
|
|
|
59
|
-
Copyright (c) 2014-
|
|
62
|
+
Copyright (c) 2014-2025, bluefox <dogafox@gmail.com>
|
|
60
63
|
|
|
61
64
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
62
65
|
of this software and associated documentation files (the "Software"), to deal
|
package/admin/jsonConfig.json
CHANGED
|
@@ -16,8 +16,9 @@
|
|
|
16
16
|
"step": 1,
|
|
17
17
|
"xs": 12,
|
|
18
18
|
"sm": 12,
|
|
19
|
-
"md":
|
|
19
|
+
"md": 6,
|
|
20
20
|
"lg": 4,
|
|
21
|
+
"xl": 4,
|
|
21
22
|
"label": "Preview days"
|
|
22
23
|
},
|
|
23
24
|
"daysPast": {
|
|
@@ -26,8 +27,9 @@
|
|
|
26
27
|
"step": 1,
|
|
27
28
|
"xs": 12,
|
|
28
29
|
"sm": 12,
|
|
29
|
-
"md":
|
|
30
|
+
"md": 6,
|
|
30
31
|
"lg": 4,
|
|
32
|
+
"xl": 4,
|
|
31
33
|
"label": "Past days"
|
|
32
34
|
},
|
|
33
35
|
"ignoreCaseInEventname": {
|
|
@@ -35,16 +37,19 @@
|
|
|
35
37
|
"newLine": true,
|
|
36
38
|
"xs": 12,
|
|
37
39
|
"sm": 12,
|
|
38
|
-
"md":
|
|
40
|
+
"md": 6,
|
|
39
41
|
"lg": 4,
|
|
42
|
+
"xl": 4,
|
|
40
43
|
"label": "Ignore case for event-search"
|
|
41
44
|
},
|
|
42
45
|
"exactMatchInEventname": {
|
|
43
46
|
"type": "checkbox",
|
|
44
47
|
"newLine": true,
|
|
48
|
+
"xs": 12,
|
|
45
49
|
"sm": 12,
|
|
46
|
-
"md":
|
|
50
|
+
"md": 6,
|
|
47
51
|
"lg": 4,
|
|
52
|
+
"xl": 4,
|
|
48
53
|
"label": "Exact Match for event-search"
|
|
49
54
|
}
|
|
50
55
|
}
|
|
@@ -57,8 +62,10 @@
|
|
|
57
62
|
"type": "select",
|
|
58
63
|
"xs": 12,
|
|
59
64
|
"sm": 12,
|
|
60
|
-
"md":
|
|
65
|
+
"md": 6,
|
|
61
66
|
"lg": 4,
|
|
67
|
+
"xl": 4,
|
|
68
|
+
"noTranslation": true,
|
|
62
69
|
"options": [
|
|
63
70
|
{
|
|
64
71
|
"label": "English",
|
|
@@ -69,11 +76,11 @@
|
|
|
69
76
|
"value": "de"
|
|
70
77
|
},
|
|
71
78
|
{
|
|
72
|
-
"label": "
|
|
79
|
+
"label": "Русский",
|
|
73
80
|
"value": "ru"
|
|
74
81
|
},
|
|
75
82
|
{
|
|
76
|
-
"label": "
|
|
83
|
+
"label": "Português",
|
|
77
84
|
"value": "pt"
|
|
78
85
|
},
|
|
79
86
|
{
|
|
@@ -81,7 +88,7 @@
|
|
|
81
88
|
"value": "nl"
|
|
82
89
|
},
|
|
83
90
|
{
|
|
84
|
-
"label": "
|
|
91
|
+
"label": "Français",
|
|
85
92
|
"value": "fr"
|
|
86
93
|
},
|
|
87
94
|
{
|
|
@@ -89,7 +96,7 @@
|
|
|
89
96
|
"value": "it"
|
|
90
97
|
},
|
|
91
98
|
{
|
|
92
|
-
"label": "
|
|
99
|
+
"label": "Español",
|
|
93
100
|
"value": "es"
|
|
94
101
|
}
|
|
95
102
|
],
|
|
@@ -101,16 +108,18 @@
|
|
|
101
108
|
"newLine": true,
|
|
102
109
|
"xs": 12,
|
|
103
110
|
"sm": 12,
|
|
104
|
-
"md":
|
|
111
|
+
"md": 6,
|
|
105
112
|
"lg": 4,
|
|
113
|
+
"xl": 4,
|
|
106
114
|
"label": "Use by full day"
|
|
107
115
|
},
|
|
108
116
|
"defColor": {
|
|
109
117
|
"type": "color",
|
|
110
118
|
"xs": 12,
|
|
111
119
|
"sm": 12,
|
|
112
|
-
"md":
|
|
120
|
+
"md": 6,
|
|
113
121
|
"lg": 4,
|
|
122
|
+
"xl": 4,
|
|
114
123
|
"label": "Default color for HTML"
|
|
115
124
|
},
|
|
116
125
|
"dataPaddingWithZeros": {
|
|
@@ -118,16 +127,18 @@
|
|
|
118
127
|
"newLine": true,
|
|
119
128
|
"xs": 12,
|
|
120
129
|
"sm": 12,
|
|
121
|
-
"md":
|
|
130
|
+
"md": 6,
|
|
122
131
|
"lg": 4,
|
|
132
|
+
"xl": 4,
|
|
123
133
|
"label": "Padding date with '0'"
|
|
124
134
|
},
|
|
125
135
|
"replaceDates": {
|
|
126
136
|
"type": "checkbox",
|
|
127
137
|
"xs": 12,
|
|
128
138
|
"sm": 12,
|
|
129
|
-
"md":
|
|
139
|
+
"md": 6,
|
|
130
140
|
"lg": 4,
|
|
141
|
+
"xl": 4,
|
|
131
142
|
"label": "Replace dates with words"
|
|
132
143
|
},
|
|
133
144
|
"everyCalOneColor": {
|
|
@@ -135,16 +146,18 @@
|
|
|
135
146
|
"newLine": true,
|
|
136
147
|
"xs": 12,
|
|
137
148
|
"sm": 12,
|
|
138
|
-
"md":
|
|
149
|
+
"md": 6,
|
|
139
150
|
"lg": 4,
|
|
151
|
+
"xl": 4,
|
|
140
152
|
"label": "Every calendar has own color"
|
|
141
153
|
},
|
|
142
154
|
"colorize": {
|
|
143
155
|
"type": "checkbox",
|
|
144
156
|
"xs": 12,
|
|
145
157
|
"sm": 12,
|
|
146
|
-
"md":
|
|
158
|
+
"md": 6,
|
|
147
159
|
"lg": 4,
|
|
160
|
+
"xl": 4,
|
|
148
161
|
"label": "Colorize HTML"
|
|
149
162
|
},
|
|
150
163
|
"forceFullday": {
|
|
@@ -152,16 +165,18 @@
|
|
|
152
165
|
"newLine": true,
|
|
153
166
|
"xs": 12,
|
|
154
167
|
"sm": 12,
|
|
155
|
-
"md":
|
|
168
|
+
"md": 6,
|
|
156
169
|
"lg": 4,
|
|
170
|
+
"xl": 4,
|
|
157
171
|
"label": "Hide Start-End of events"
|
|
158
172
|
},
|
|
159
173
|
"hideYear": {
|
|
160
174
|
"type": "checkbox",
|
|
161
175
|
"xs": 12,
|
|
162
176
|
"sm": 12,
|
|
163
|
-
"md":
|
|
177
|
+
"md": 6,
|
|
164
178
|
"lg": 4,
|
|
179
|
+
"xl": 4,
|
|
165
180
|
"label": "Hide Year"
|
|
166
181
|
},
|
|
167
182
|
"arrowAlreadyStarted": {
|
|
@@ -169,16 +184,18 @@
|
|
|
169
184
|
"newLine": true,
|
|
170
185
|
"xs": 12,
|
|
171
186
|
"sm": 12,
|
|
172
|
-
"md":
|
|
187
|
+
"md": 6,
|
|
173
188
|
"lg": 4,
|
|
189
|
+
"xl": 4,
|
|
174
190
|
"label": "Add arrow for started events"
|
|
175
191
|
},
|
|
176
192
|
"addColorBox": {
|
|
177
193
|
"type": "checkbox",
|
|
178
194
|
"xs": 12,
|
|
179
195
|
"sm": 12,
|
|
180
|
-
"md":
|
|
196
|
+
"md": 6,
|
|
181
197
|
"lg": 4,
|
|
198
|
+
"xl": 4,
|
|
182
199
|
"label": "Add event color if available"
|
|
183
200
|
}
|
|
184
201
|
}
|
|
@@ -193,6 +210,7 @@
|
|
|
193
210
|
"sm": 12,
|
|
194
211
|
"md": 12,
|
|
195
212
|
"lg": 12,
|
|
213
|
+
"xl": 12,
|
|
196
214
|
"label": "Calendars",
|
|
197
215
|
"items": [
|
|
198
216
|
{
|
|
@@ -372,8 +390,9 @@
|
|
|
372
390
|
"newLine": true,
|
|
373
391
|
"xs": 12,
|
|
374
392
|
"sm": 12,
|
|
375
|
-
"md":
|
|
393
|
+
"md": 6,
|
|
376
394
|
"lg": 4,
|
|
395
|
+
"xl": 4,
|
|
377
396
|
"label": "Use custom user agent"
|
|
378
397
|
},
|
|
379
398
|
"customUserAgent": {
|
|
@@ -381,8 +400,9 @@
|
|
|
381
400
|
"type": "text",
|
|
382
401
|
"xs": 12,
|
|
383
402
|
"sm": 12,
|
|
384
|
-
"md":
|
|
385
|
-
"lg":
|
|
403
|
+
"md": 6,
|
|
404
|
+
"lg": 4,
|
|
405
|
+
"xl": 4,
|
|
386
406
|
"label": "User agent HTTP header"
|
|
387
407
|
}
|
|
388
408
|
}
|
|
@@ -397,6 +417,7 @@
|
|
|
397
417
|
"sm": 12,
|
|
398
418
|
"md": 12,
|
|
399
419
|
"lg": 12,
|
|
420
|
+
"xl": 12,
|
|
400
421
|
"label": "Events",
|
|
401
422
|
"items": [
|
|
402
423
|
{
|
|
@@ -551,4 +572,4 @@
|
|
|
551
572
|
}
|
|
552
573
|
}
|
|
553
574
|
}
|
|
554
|
-
}
|
|
575
|
+
}
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "ical",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.17.0",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.17.0": {
|
|
7
|
+
"en": "fixed adapter warnings and responsive design suggestions.\nupdated dependencies.\nupdate node-ical to latest 0.21.0.",
|
|
8
|
+
"de": "Behobene Adapter-Warnungen und Vorschläge für responsives Design.\nAbhängigkeiten aktualisiert.\nAktualisiere node-ical auf die neueste Version 0.21.0.",
|
|
9
|
+
"ru": "исправлены предупреждения адаптера и учтены рекомендации по адаптивному дизайну.\nобновлены зависимости.\nОбновить библиотеку node-ical до последней версии 0.21.0.",
|
|
10
|
+
"pt": "corrigidas advertências do adaptador e sugestões de design responsivo.\natualizadas dependências.\nAtualize node-ical para a versão mais recente 0.21.0.",
|
|
11
|
+
"nl": "adapterwaarschuwingen opgelost en suggesties voor responsief ontwerp.\nbijgewerkte afhankelijkheden.\nUpdate node-ical naar de nieuwste versie 0.21.0.",
|
|
12
|
+
"fr": "correction des avertissements de l'adaptateur et des suggestions de design réactif.\nMise à jour des dépendances.\nMettre à jour node-ical à la dernière version 0.21.0.",
|
|
13
|
+
"it": "Corretti avvisi dell'adattatore e suggerimenti per il design responsive.\nAggiornate le dipendenze.\nAggiornare node-ical alla versione più recente 0.21.0.",
|
|
14
|
+
"es": "Se corrigieron advertencias del adaptador y sugerencias de diseño receptivo.\nactualizadas las dependencias.\nActualizar node-ical a la última versión 0.21.0.",
|
|
15
|
+
"pl": "naprawione ostrzeżenia adaptera i sugestie dotyczące responsywnej szaty graficznej.\nZaktualizowano zależności.\nZaktualizuj node-ical do najnowszej wersji 0.21.0.",
|
|
16
|
+
"uk": "виправлені попередження адаптера та рекомендації щодо адаптивного дизайну.\nоновлено залежності.\nОновлення node-ical до останньої версії 0.21.0.",
|
|
17
|
+
"zh-cn": "修复了适配器的警告和响应式设计建议。\n更新了依赖项。\n更新node-ical到最新的版本0.21.0。"
|
|
18
|
+
},
|
|
19
|
+
"1.16.2": {
|
|
20
|
+
"en": "Small fix in the configuration dialog",
|
|
21
|
+
"de": "Kleine Fixierung im Konfigurationsdialog",
|
|
22
|
+
"ru": "Небольшое исправление в диалоге конфигурации",
|
|
23
|
+
"pt": "Pequena correção na janela de configuração",
|
|
24
|
+
"nl": "Kleine correctie in het configuratievenster",
|
|
25
|
+
"fr": "Petite correction dans la boîte de dialogue de configuration",
|
|
26
|
+
"it": "Piccola correzione nella finestra di dialogo di configurazione",
|
|
27
|
+
"es": "Ajuste pequeño en el diálogo de configuración",
|
|
28
|
+
"pl": "Małe poprawki w oknie konfiguracji",
|
|
29
|
+
"uk": "Невелика фіксація в діалоговому вікні конфігурації",
|
|
30
|
+
"zh-cn": "配置对话框中的小修补"
|
|
31
|
+
},
|
|
6
32
|
"1.16.1": {
|
|
7
33
|
"en": "fix issue with handling rrule timezones incorrect with latest node-ical (#708).\nupdate node-ical to latest 0.20.1\nsave cached files to os tmpdir instead.",
|
|
8
34
|
"de": "problem mit dem umgang mit rrule zeitzonen falsch mit neusten node-ical (#708).\nupdate node-ical bis neueste 0.20.1\nspeichern sie cache-dateien auf os tmpdir statt.",
|
|
@@ -67,32 +93,6 @@
|
|
|
67
93
|
"pl": "aktualizacja node- ical do najnowszej 0, 17, 2",
|
|
68
94
|
"uk": "оновлення вершини-ical до останнього 0.17.2 км",
|
|
69
95
|
"zh-cn": "将节点更新为最新的 0.17.2 (中文(简体) )"
|
|
70
|
-
},
|
|
71
|
-
"1.14.1": {
|
|
72
|
-
"en": "Create dummy file in files tab\nFixed recurring events",
|
|
73
|
-
"de": "Erstellen Sie Dummy-Datei in Dateien Tab\nFeste wiederkehrende Ereignisse",
|
|
74
|
-
"ru": "Создать файл dummy в вкладке\nИсправленные повторяющиеся события",
|
|
75
|
-
"pt": "Criar arquivo fictício na guia de arquivos\nCorrigido eventos recorrentes",
|
|
76
|
-
"nl": "Pummelbestand aanmaken in tabblad bestanden\nVaste terugkerende gebeurtenissen",
|
|
77
|
-
"fr": "Créer un fichier fictif dans l'onglet fichiers\nÉvénements récurrents fixes",
|
|
78
|
-
"it": "Crea file fittizio nella scheda file\nEventi ricorrenti fissi",
|
|
79
|
-
"es": "Crear archivo dummy en la pestaña archivos\nActos recurrentes fijos",
|
|
80
|
-
"pl": "Utwórz plik atrapy w zakładce pliki\nNaprawiono powtarzające się zdarzenia",
|
|
81
|
-
"uk": "Створіть файл dummy у вкладці файлів\nВиправлено повторювані події",
|
|
82
|
-
"zh-cn": "在文件标签中创建模拟文件\n固定经常性活动"
|
|
83
|
-
},
|
|
84
|
-
"1.14.0": {
|
|
85
|
-
"en": "Allow to set custom http user agent\nAdded option to use files tab for calendar files",
|
|
86
|
-
"de": "Erlauben Sie, benutzerdefinierte http-Benutzer-Agent\nOption hinzugefügt, um Dateien Tab für Kalenderdateien zu verwenden",
|
|
87
|
-
"ru": "Разрешить настроить пользовательский\nДобавлена возможность использования вкладки файлов для календарных файлов",
|
|
88
|
-
"pt": "Permitir definir agente de usuário http personalizado\nOpção adicionada para usar a guia de arquivos para arquivos de calendário",
|
|
89
|
-
"nl": "Aangepaste http-gebruikeragent instellen\nToegevoegd optie om bestanden te gebruiken tabblad voor agendabestanden",
|
|
90
|
-
"fr": "Permettre de définir un agent utilisateur http personnalisé\nAjout d'une option pour utiliser l'onglet fichiers pour les fichiers calendrier",
|
|
91
|
-
"it": "Consentire di impostare personalizzato http user agent\nAggiunta opzione per utilizzare scheda file per i file del calendario",
|
|
92
|
-
"es": "Permitir establecer un agente de usuario http personalizado\nOpción adicional para usar la pestaña de archivos para archivos de calendario",
|
|
93
|
-
"pl": "Zezwalaj na ustawianie niestandardowych użytkowników http\nDodano opcję użycia zakładki plików do plików kalendarza",
|
|
94
|
-
"uk": "Дозвольте встановити користувальницький агент\nДодана можливість використовувати вкладку файлів для календарних файлів",
|
|
95
|
-
"zh-cn": "允许设置自定义 http 用户代理\n为日历文件使用文件标签添加了选项"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
|
@@ -164,12 +164,12 @@
|
|
|
164
164
|
},
|
|
165
165
|
"dependencies": [
|
|
166
166
|
{
|
|
167
|
-
"js-controller": ">=
|
|
167
|
+
"js-controller": ">=6.0.11"
|
|
168
168
|
}
|
|
169
169
|
],
|
|
170
170
|
"globalDependencies": [
|
|
171
171
|
{
|
|
172
|
-
"admin": ">=6.
|
|
172
|
+
"admin": ">=7.6.17"
|
|
173
173
|
}
|
|
174
174
|
]
|
|
175
175
|
},
|