forked from ioBroker/ioBroker.repositories
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sources-dist.json
1842 lines (1842 loc) · 88.2 KB
/
sources-dist.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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"admin": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.admin/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.admin/master/admin/admin.png",
"type": "general",
"published": "2014-12-04T18:45:44.907Z",
"versionDate": "2018-09-22T09:45:38.378Z"
},
"admin-2": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.admin/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.admin/master/admin/admin.png",
"type": "general",
"published": "2018-04-12T17:51:06.332Z",
"versionDate": "2018-04-12T19:47:36.285Z"
},
"alexa2": {
"meta": "https://raw.githubusercontent.com/Apollon77/ioBroker.alexa2/master/io-package.json",
"icon": "https://raw.githubusercontent.com/Apollon77/ioBroker.alexa2/master/admin/alexa.png",
"type": "iot-systems",
"published": "2018-07-20T14:34:19.324Z",
"versionDate": "2018-09-18T10:22:49.075Z"
},
"alpha2": {
"meta": "https://raw.githubusercontent.com/Eisbaeeer/ioBroker.alpha2/master/io-package.json",
"icon": "https://raw.githubusercontent.com/Eisbaeeer/ioBroker.alpha2/master/admin/mh-logo.png",
"type": "climate-control",
"published": "2018-07-16T12:45:33.660Z",
"versionDate": "2018-07-31T06:55:20.832Z"
},
"amazon-dash": {
"meta": "https://raw.githubusercontent.com/PArns/ioBroker.amazon-dash/master/io-package.json",
"icon": "https://raw.githubusercontent.com/PArns/ioBroker.amazon-dash/master/admin/amazon-dash.png",
"type": "hardware",
"published": "2016-09-05T19:03:16.756Z",
"versionDate": "2018-12-17T20:44:12.999Z"
},
"artnet": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.artnet/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.artnet/master/admin/artnet.png",
"type": "lighting",
"published": "2016-10-13T18:11:08.868Z",
"versionDate": "2018-02-18T21:10:14.190Z"
},
"asterisk": {
"meta": "https://raw.githubusercontent.com/schmupu/ioBroker.asterisk/master/io-package.json",
"icon": "https://raw.githubusercontent.com/schmupu/ioBroker.asterisk/master/admin/asterisk.png",
"type": "communication",
"published": "2018-11-10T15:30:17.077Z",
"versionDate": "2019-01-27T20:15:02.589Z"
},
"asuswrt": {
"meta": "https://raw.githubusercontent.com/mcdhrts/ioBroker.asuswrt/master/io-package.json",
"icon": "https://raw.githubusercontent.com/mcdhrts/ioBroker.asuswrt/master/admin/asuswrt.png",
"type": "hardware",
"published": "2018-01-03T16:02:17.077Z",
"versionDate": "2018-01-03T16:02:17.077Z"
},
"b-control-em": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.b-control-em/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.b-control-em/master/admin/bcontrol.png",
"type": "energy",
"published": "2015-01-02T17:10:47.222Z",
"versionDate": "2016-11-03T21:54:23.135Z"
},
"backitup": {
"meta": "https://raw.githubusercontent.com/simatec/ioBroker.backitup/master/io-package.json",
"icon": "https://raw.githubusercontent.com/simatec/ioBroker.backitup/master/admin/backitup.png",
"type": "general",
"published": "2018-06-29T15:39:03.465Z",
"versionDate": "2018-10-16T12:37:54.127Z"
},
"beckhoff": {
"meta": "https://raw.githubusercontent.com/dkleber89/ioBroker.beckhoff/master/io-package.json",
"icon": "https://raw.githubusercontent.com/dkleber89/ioBroker.beckhoff/master/admin/beckhoff.png",
"type": "hardware",
"published": "2018-11-01T17:44:00.917Z",
"versionDate": "2018-11-24T21:01:12.187Z"
},
"benq": {
"meta": "https://raw.githubusercontent.com/instalator/ioBroker.benq/master/io-package.json",
"icon": "https://raw.githubusercontent.com/instalator/ioBroker.benq/master/admin/benq.png",
"type": "multimedia",
"published": "2017-07-20T16:42:10.650Z",
"versionDate": "2017-11-13T13:38:26.649Z"
},
"ble": {
"meta": "https://raw.githubusercontent.com/AlCalzone/ioBroker.ble/master/io-package.json",
"icon": "https://raw.githubusercontent.com/AlCalzone/ioBroker.ble/master/admin/ble.png",
"type": "hardware",
"published": "2017-09-05T15:57:13.123Z",
"versionDate": "2018-03-28T10:31:58.677Z"
},
"bmw": {
"meta": "https://raw.githubusercontent.com/frankjoke/ioBroker.bmw/master/io-package.json",
"icon": "https://raw.githubusercontent.com/frankjoke/ioBroker.bmw/master/admin/bmw.png",
"type": "hardware",
"published": "2017-09-02T11:56:25.197Z",
"versionDate": "2017-11-08T15:52:45.062Z"
},
"boblight": {
"meta": "https://raw.githubusercontent.com/ruhigundrelaxed/ioBroker.boblight/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ruhigundrelaxed/ioBroker.boblight/master/admin/boblight.png",
"type": "lighting",
"published": "2017-06-01T18:13:03.877Z",
"versionDate": "2017-06-01T18:13:03.877Z"
},
"bosesoundtouch": {
"meta": "https://raw.githubusercontent.com/SwedishChef1/ioBroker.bosesoundtouch/master/io-package.json",
"icon": "https://raw.githubusercontent.com/SwedishChef1/ioBroker.bosesoundtouch/master/admin/bosesoundtouch.png",
"type": "multimedia",
"published": "2017-12-22T15:15:44.610Z",
"versionDate": "2018-11-11T20:09:11.995Z"
},
"botvac": {
"meta": "https://raw.githubusercontent.com/Pmant/ioBroker.botvac/master/io-package.json",
"icon": "https://raw.githubusercontent.com/Pmant/ioBroker.botvac/master/admin/botvac.png",
"type": "household",
"published": "2016-07-24T22:08:47.215Z",
"versionDate": "2017-11-16T01:18:08.412Z"
},
"bring": {
"meta": "https://raw.githubusercontent.com/foxriver76/ioBroker.bring/master/io-package.json",
"icon": "https://raw.githubusercontent.com/foxriver76/ioBroker.bring/master/admin/bring.png",
"type": "household",
"published": "2019-02-12T20:10:09.422Z",
"versionDate": "2019-02-27T09:46:38.997Z"
},
"broadlink2": {
"meta": "https://raw.githubusercontent.com/frankjoke/ioBroker.broadlink2/master/io-package.json",
"icon": "https://raw.githubusercontent.com/frankjoke/ioBroker.broadlink2/master/admin/broadlink.png",
"type": "iot-systems",
"published": "2017-07-27T12:44:47.864Z",
"versionDate": "2018-02-03T23:30:44.105Z"
},
"chromecast": {
"meta": "https://raw.githubusercontent.com/angelnu/ioBroker.chromecast/master/io-package.json",
"icon": "https://raw.githubusercontent.com/angelnu/ioBroker.chromecast/master/admin/chromecast.png",
"type": "multimedia",
"published": "2016-01-18T22:15:11.609Z",
"versionDate": "2018-07-26T22:02:40.457Z"
},
"cloud": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.cloud/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.cloud/master/admin/cloud.png",
"type": "communication",
"published": "2016-06-24T18:36:32.658Z",
"versionDate": "2018-06-18T20:44:54.968Z"
},
"comfoair": {
"meta": "https://raw.githubusercontent.com/forelleblau/ioBroker.comfoair/master/io-package.json",
"icon": "https://raw.githubusercontent.com/forelleblau/ioBroker.comfoair/master/admin/comfoair.png",
"type": "climate-control",
"published": "2019-02-13T23:30:00.339Z",
"versionDate": "2019-02-13T23:30:00.213Z"
},
"contactid": {
"meta": "https://raw.githubusercontent.com/schmupu/ioBroker.contactid/master/io-package.json",
"icon": "https://raw.githubusercontent.com/schmupu/ioBroker.contactid/master/admin/contactid.png",
"type": "alarm",
"published": "2018-05-12T17:59:52.182Z",
"versionDate": "2019-01-20T07:02:31.880Z"
},
"corrently": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.corrently/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.corrently/master/admin/corrently.png",
"type": "misc-data",
"published": "2019-02-07T23:30:01.182Z",
"versionDate": "2019-02-07T23:30:01.182Z"
},
"cul": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.cul/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.cul/master/admin/busware.jpg",
"type": "iot-systems",
"published": "2015-04-16T19:14:41.319Z",
"versionDate": "2018-03-07T21:23:43.326Z"
},
"daikin": {
"meta": "https://raw.githubusercontent.com/Apollon77/ioBroker.daikin/master/io-package.json",
"icon": "https://raw.githubusercontent.com/Apollon77/ioBroker.daikin/master/admin/daikin.jpg",
"type": "climate-control",
"published": "2017-03-29T22:00:25.803Z",
"versionDate": "2018-04-29T16:18:30.803Z"
},
"daswetter": {
"meta": "https://raw.githubusercontent.com/rg-engineering/ioBroker.daswetter/master/io-package.json",
"icon": "https://raw.githubusercontent.com/rg-engineering/ioBroker.daswetter/master/admin/daswettercom.png",
"type": "weather",
"published": "2017-05-14T10:42:31.173Z",
"versionDate": "2018-08-26T09:22:08.844Z"
},
"deconz": {
"meta": "https://raw.githubusercontent.com/jey-cee/ioBroker.deconz/master/io-package.json",
"icon": "https://raw.githubusercontent.com/jey-cee/ioBroker.deconz/master/admin/deconz.png",
"type": "hardware",
"published": "2018-01-02T18:51:20.942Z",
"versionDate": "2018-09-14T18:32:07.470Z"
},
"denon": {
"meta": "https://raw.githubusercontent.com/foxriver76/ioBroker.denon/master/io-package.json",
"icon": "https://raw.githubusercontent.com/foxriver76/ioBroker.denon/master/admin/denon.png",
"type": "multimedia",
"published": "2018-06-04T22:51:21.999Z",
"versionDate": "2019-01-31T13:44:45.702Z"
},
"discovergy": {
"meta": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.discovergy/master/io-package.json",
"icon": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.discovergy/master/admin/discovergy.png",
"type": "energy",
"published": "2018-12-07T12:21:59.934Z",
"versionDate": "2018-12-07T12:21:59.934Z"
},
"discovery": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.discovery/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.discovery/master/admin/discovery.png",
"type": "general",
"published": "2017-03-15T12:16:13.934Z",
"versionDate": "2018-09-28T11:41:21.063Z"
},
"doorbird": {
"meta": "https://raw.githubusercontent.com/BuZZy1337/ioBroker.doorbird/master/io-package.json",
"icon": "https://raw.githubusercontent.com/BuZZy1337/ioBroker.doorbird/master/admin/doorbird.png",
"type": "iot-systems",
"published": "2018-06-26T19:02:07.676Z",
"versionDate": "2018-09-18T18:23:14.957Z"
},
"dwd": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.dwd/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.dwd/master/admin/dwd.png",
"type": "weather",
"published": "2015-01-02T17:23:09.173Z",
"versionDate": "2018-09-02T13:16:56.278Z"
},
"ebus": {
"meta": "https://raw.githubusercontent.com/rg-engineering/ioBroker.ebus/master/io-package.json",
"icon": "https://raw.githubusercontent.com/rg-engineering/ioBroker.ebus/master/admin/ebus.png",
"type": "hardware",
"published": "2018-01-08T19:33:17.193Z",
"versionDate": "2018-07-09T16:47:03.897Z"
},
"egigeozone": {
"meta": "https://raw.githubusercontent.com/BasGo/ioBroker.egigeozone/master/io-package.json",
"icon": "https://raw.githubusercontent.com/BasGo/ioBroker.egigeozone/master/admin/egigeozone.png",
"type": "geoposition",
"published": "2017-09-28T10:21:33.986Z",
"versionDate": "2017-10-18T11:52:23.439Z"
},
"ekey": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.ekey/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.ekey/master/admin/ekey.png",
"type": "hardware",
"published": "2018-05-11T19:02:48.501Z",
"versionDate": "2018-05-11T19:35:48.404Z"
},
"email": {
"meta": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.email/master/io-package.json",
"icon": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.email/master/admin/email.png",
"type": "messaging",
"published": "2015-01-02T23:50:13.927Z",
"versionDate": "2018-03-27T13:04:52.307Z"
},
"emby": {
"meta": "https://raw.githubusercontent.com/thewhobox/ioBroker.emby/master/io-package.json",
"icon": "https://raw.githubusercontent.com/thewhobox/ioBroker.emby/master/admin/emby.png",
"type": "multimedia",
"published": "2019-03-04T17:40:13.927Z",
"versionDate": "2019-03-04T17:40:52.307Z"
},
"energymanager": {
"meta": "https://raw.githubusercontent.com/unltdnetworx/ioBroker.energymanager/master/io-package.json",
"icon": "https://raw.githubusercontent.com/unltdnetworx/ioBroker.energymanager/master/admin/energymanager.png",
"type": "energy",
"published": "2018-07-23T20:26:21.308Z",
"versionDate": "2019-01-21T18:07:47.485Z"
},
"enet": {
"meta": "https://raw.githubusercontent.com/SebastianSchultz/ioBroker.enet/master/io-package.json",
"icon": "https://raw.githubusercontent.com/SebastianSchultz/ioBroker.enet/master/admin/enet.png",
"type": "iot-systems",
"published": "2018-01-08T12:46:49.219Z",
"versionDate": "2018-04-15T12:37:18.748Z"
},
"epson_stylus_px830": {
"meta": "https://raw.githubusercontent.com/Pix---/ioBroker.epson_stylus_px830/master/io-package.json",
"icon": "https://raw.githubusercontent.com/Pix---/ioBroker.epson_stylus_px830/master/admin/epson_stylus_px830.png",
"type": "infrastructure",
"published": "2016-06-27T10:18:05.711Z",
"versionDate": "2018-08-08T17:17:13.372Z"
},
"fakeroku": {
"meta": "https://raw.githubusercontent.com/Pmant/ioBroker.fakeroku/master/io-package.json",
"icon": "https://raw.githubusercontent.com/Pmant/ioBroker.fakeroku/master/admin/fakeroku.png",
"type": "multimedia",
"published": "2017-02-05T13:08:56.966Z",
"versionDate": "2017-02-26T12:55:57.949Z"
},
"feiertage": {
"meta": "https://raw.githubusercontent.com/Pix---/ioBroker.feiertage/master/io-package.json",
"icon": "https://raw.githubusercontent.com/Pix---/ioBroker.feiertage/master/admin/feiertage.png",
"type": "date-and-time",
"published": "2016-04-30T13:42:40.309Z",
"versionDate": "2018-09-15T07:45:18.860Z"
},
"fhem": {
"meta": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.fhem/master/io-package.json",
"icon": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.fhem/master/admin/fhem.png",
"type": "iot-systems",
"published": "2016-05-31T20:33:16.704Z",
"versionDate": "2018-11-08T11:49:07.877Z"
},
"find-my-iphone": {
"meta": "https://raw.githubusercontent.com/soef/ioBroker.find-my-iphone/master/io-package.json",
"icon": "https://raw.githubusercontent.com/soef/ioBroker.find-my-iphone/master/admin/find-my-iphone.png",
"type": "geoposition",
"published": "2016-10-10T18:31:04.566Z",
"versionDate": "2018-03-13T18:33:43.970Z"
},
"firetv": {
"meta": "https://raw.githubusercontent.com/soef/ioBroker.firetv/master/io-package.json",
"icon": "https://raw.githubusercontent.com/soef/ioBroker.firetv/master/admin/firetv.png",
"type": "multimedia",
"published": "2017-01-02T10:18:49.955Z",
"versionDate": "2018-01-07T12:30:05.613Z"
},
"flot": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.flot/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.flot/master/admin/flot.png",
"type": "visualization",
"published": "2015-06-10T19:35:14.599Z",
"versionDate": "2018-08-17T22:26:18.573Z"
},
"foobar2000": {
"meta": "https://raw.githubusercontent.com/instalator/ioBroker.foobar2000/master/io-package.json",
"icon": "https://raw.githubusercontent.com/instalator/ioBroker.foobar2000/master/admin/foobar2000.png",
"type": "multimedia",
"published": "2016-10-20T10:58:40.127Z",
"versionDate": "2017-11-13T13:55:05.948Z"
},
"fritzbox": {
"meta": "https://raw.githubusercontent.com/ruhr70/ioBroker.fritzbox/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ruhr70/ioBroker.fritzbox/master/admin/fritzbox.png",
"type": "infrastructure",
"published": "2015-07-04T18:44:53.023Z",
"versionDate": "2015-07-04T18:44:53.023Z"
},
"fritzdect": {
"meta": "https://raw.githubusercontent.com/foxthefox/ioBroker.fritzdect/master/io-package.json",
"icon": "https://raw.githubusercontent.com/foxthefox/ioBroker.fritzdect/master/admin/fritzdect_logo.png",
"type": "hardware",
"published": "2017-01-21T22:19:40.633Z",
"versionDate": "2018-10-08T19:39:37.135Z"
},
"fronius": {
"meta": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.fronius/master/io-package.json",
"icon": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.fronius/master/admin/fronius.png",
"type": "energy",
"published": "2017-02-23T23:25:42.603Z",
"versionDate": "2017-08-25T14:35:09.185Z"
},
"fullcalendar": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.fullcalendar/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.fullcalendar/master/admin/fullcalendar.png",
"type": "date-and-time",
"published": "2017-06-12T22:10:16.740Z",
"versionDate": "2017-11-23T22:24:52.267Z"
},
"fullybrowser": {
"meta": "https://raw.githubusercontent.com/arteck/ioBroker.fullybrowser/master/io-package.json",
"icon": "https://raw.githubusercontent.com/arteck/ioBroker.fullybrowser/master/admin/fully.png",
"type": "utility",
"published": "2018-12-16T11:09:00.000Z",
"versionDate": "2018-12-16T11:09:00.000Z"
},
"g-homa": {
"meta": "https://raw.githubusercontent.com/AlCalzone/ioBroker.g-homa/master/io-package.json",
"icon": "https://raw.githubusercontent.com/AlCalzone/ioBroker.g-homa/master/admin/g-homa.png",
"type": "iot-systems",
"published": "2017-08-23T11:28:42.347Z",
"versionDate": "2018-07-31T10:33:48.669Z"
},
"geofency": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.geofency/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.geofency/master/admin/geofency.png",
"type": "geoposition",
"published": "2016-01-15T20:18:56.071Z",
"versionDate": "2018-03-07T21:05:22.640Z"
},
"habpanel": {
"meta": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/master/io-package.json",
"icon": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/master/admin/habpanel.png",
"type": "visualization",
"published": "2017-05-14T19:24:21.906Z",
"versionDate": "2017-05-20T22:08:33.817Z"
},
"haier": {
"meta": "https://raw.githubusercontent.com/instalator/ioBroker.haier/master/io-package.json",
"icon": "https://raw.githubusercontent.com/instalator/ioBroker.haier/master/admin/haier.png",
"type": "climate-control",
"published": "2017-08-26T18:38:38.677Z",
"versionDate": "2018-09-27T10:47:50.333Z"
},
"ham": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.ham/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.ham/master/admin/ham.png",
"type": "iot-systems",
"published": "2018-06-17T10:47:38.444Z",
"versionDate": "2018-06-27T14:16:40.671Z"
},
"ham-wemo": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.ham-wemo/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.ham-wemo/master/admin/ham-wemo.png",
"type": "iot-systems",
"published": "2018-06-22T21:13:14.043Z",
"versionDate": "2018-06-23T21:46:33.559Z"
},
"harmony": {
"meta": "https://raw.githubusercontent.com/Pmant/ioBroker.harmony/master/io-package.json",
"icon": "https://raw.githubusercontent.com/Pmant/ioBroker.harmony/master/admin/harmony.png",
"type": "multimedia",
"published": "2015-08-18T08:32:32.461Z",
"versionDate": "2019-02-22T14:16:35.430Z"
},
"hid": {
"meta": "https://raw.githubusercontent.com/soef/ioBroker.hid/master/io-package.json",
"icon": "https://raw.githubusercontent.com/soef/ioBroker.hid/master/admin/hid.png",
"type": "utility",
"published": "2016-01-26T00:32:41.036Z",
"versionDate": "2018-03-26T16:56:13.373Z"
},
"hilink": {
"meta": "https://raw.githubusercontent.com/bondrogeen/iobroker.hilink/master/io-package.json",
"icon": "https://raw.githubusercontent.com/bondrogeen/iobroker.hilink/master/admin/hilink.png",
"type": "hardware",
"published": "2017-09-23T22:28:29.721Z",
"versionDate": "2018-06-13T15:53:05.040Z"
},
"history": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.history/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.history/master/admin/history.png",
"type": "storage",
"published": "2015-01-02T21:07:06.894Z",
"versionDate": "2018-07-03T20:39:40.455Z"
},
"hm-rega": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.hm-rega/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.hm-rega/master/admin/homematic.png",
"type": "iot-systems",
"published": "2015-01-02T23:31:13.087Z",
"versionDate": "2019-02-07T18:01:59.849Z"
},
"hm-rpc": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.hm-rpc/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.hm-rpc/master/admin/homematic.png",
"type": "iot-systems",
"published": "2015-01-02T23:35:36.140Z",
"versionDate": "2019-02-02T00:14:09.143Z"
},
"hmip": {
"meta": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.hmip/master/io-package.json",
"icon": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.hmip/master/admin/homematic.png",
"type": "hardware",
"published": "2019-01-17T20:53:36.140Z",
"versionDate": "2019-01-17T20:53:36.140Z"
},
"hombot": {
"meta": "https://raw.githubusercontent.com/AlGu1/ioBroker.hombot/master/io-package.json",
"icon": "https://raw.githubusercontent.com/AlGu1/ioBroker.hombot/master/admin/hombot.png",
"type": "household",
"published": "2019-03-13T16:10:00.000Z",
"versionDate": "2019-03-13T16:10:00.000Z"
},
"homee": {
"meta": "https://raw.githubusercontent.com/Apollon77/ioBroker.homee/master/io-package.json",
"icon": "https://raw.githubusercontent.com/Apollon77/ioBroker.homee/master/admin/homee.png",
"type": "iot-systems",
"published": "2018-07-27T06:47:49.181Z",
"versionDate": "2018-07-27T06:47:49.311Z"
},
"homepilot": {
"meta": "https://raw.githubusercontent.com/Pix---/ioBroker.homepilot/master/io-package.json",
"icon": "https://raw.githubusercontent.com/Pix---/ioBroker.homepilot/master/admin/homepilot.png",
"type": "iot-systems",
"published": "2016-07-09T11:17:48.404Z",
"versionDate": "2018-08-03T10:36:43.114Z"
},
"hp-ilo": {
"meta": "https://raw.githubusercontent.com/SebastianSchultz/ioBroker.hp-ilo/master/io-package.json",
"icon": "https://raw.githubusercontent.com/SebastianSchultz/ioBroker.hp-ilo/master/admin/hp-ilo.png",
"type": "hardware",
"published": "2018-04-12T00:00:39.833Z",
"versionDate": "2018-04-15T09:40:06.939Z"
},
"hs100": {
"meta": "https://raw.githubusercontent.com/arteck/ioBroker.hs100/master/io-package.json",
"icon": "https://raw.githubusercontent.com/arteck/ioBroker.hs100/master/admin/hs100.png",
"type": "hardware",
"published": "2017-08-08T19:55:36.776Z",
"versionDate": "2018-12-01T20:50:49.195Z"
},
"hue": {
"meta": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.hue/master/io-package.json",
"icon": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.hue/master/admin/hue.jpeg",
"type": "lighting",
"published": "2015-03-04T22:35:03.350Z",
"versionDate": "2018-08-17T21:45:06.259Z"
},
"hyperion": {
"meta": "https://raw.githubusercontent.com/ruhigundrelaxed/ioBroker.hyperion/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ruhigundrelaxed/ioBroker.hyperion/master/admin/hyperion.png",
"type": "lighting",
"published": "2018-01-13T21:02:52.556Z",
"versionDate": "2018-01-13T21:03:25.954Z"
},
"i2c": {
"meta": "https://raw.githubusercontent.com/UncleSamSwiss/ioBroker.i2c/master/io-package.json",
"icon": "https://raw.githubusercontent.com/UncleSamSwiss/ioBroker.i2c/master/admin/i2c.png",
"type": "hardware",
"published": "2017-07-27T19:16:54.429Z",
"versionDate": "2018-07-23T20:02:23.923Z"
},
"ical": {
"meta": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.ical/master/io-package.json",
"icon": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.ical/master/admin/ical.png",
"type": "date-and-time",
"published": "2015-02-22T11:33:05.718Z",
"versionDate": "2018-12-03T21:21:49.728Z"
},
"icons-addictive-flavour-png": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-addictive-flavour-png/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-addictive-flavour-png/master/admin/icons-addictive-flavour-png.png",
"type": "visualization-icons",
"published": "2015-05-20T18:40:16.922Z",
"versionDate": "2015-05-20T18:40:16.922Z"
},
"icons-fatcow-hosting": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-fatcow-hosting/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-fatcow-hosting/master/admin/icons-fatcow-hosting.png",
"type": "visualization-icons",
"published": "2016-11-28T20:43:40.799Z",
"versionDate": "2016-11-28T20:43:40.799Z"
},
"icons-icons8": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-icons8/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-icons8/master/admin/icons8.png",
"type": "visualization-icons",
"published": "2016-04-30T08:36:47.965Z",
"versionDate": "2016-04-30T08:36:47.965Z"
},
"icons-material-png": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-material-png/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-material-png/master/admin/icons-material-png.png",
"type": "visualization-icons",
"published": "2015-05-20T18:40:46.087Z",
"versionDate": "2015-05-20T18:40:46.087Z"
},
"icons-material-svg": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-material-svg/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-material-svg/master/admin/icons-material-svg.png",
"type": "visualization-icons",
"published": "2015-05-20T18:41:10.070Z",
"versionDate": "2015-05-20T18:41:10.070Z"
},
"icons-mfd-png": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-mfd-png/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-mfd-png/master/admin/icons-mfd-png.png",
"type": "visualization-icons",
"published": "2015-05-20T18:42:58.330Z",
"versionDate": "2017-01-05T14:57:49.822Z"
},
"icons-mfd-svg": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-mfd-svg/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-mfd-svg/master/admin/icons-mfd-svg.png",
"type": "visualization-icons",
"published": "2015-05-20T18:39:41.938Z",
"versionDate": "2017-01-05T14:59:10.673Z"
},
"icons-open-icon-library-png": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-open-icon-library-png/master/io-package.json",
"url": "https://github.com/ioBroker/ioBroker.icons-open-icon-library-png/tarball/master",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-open-icon-library-png/master/admin/icons-open-icon-library-png.png",
"type": "visualization-icons",
"published": "2015-05-31T17:49:40.646Z",
"versionDate": "2016-01-20T21:53:59.227Z"
},
"icons-ultimate-png": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-ultimate-png/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-ultimate-png/master/admin/icons-ultimate-png.png",
"type": "visualization-icons",
"published": "2015-05-20T18:45:26.242Z",
"versionDate": "2017-11-19T14:16:30.769Z"
},
"influxdb": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.influxdb/master/admin/influxdb.png",
"type": "storage",
"published": "2015-12-14T22:28:26.453Z",
"versionDate": "2018-06-23T22:02:00.018Z"
},
"info": {
"meta": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.info/master/io-package.json",
"icon": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.info/master/admin/info.png",
"type": "misc-data",
"published": "2017-12-08T12:55:08.977Z",
"versionDate": "2018-01-02T22:58:38.495Z"
},
"innogy-smarthome": {
"meta": "https://raw.githubusercontent.com/PArns/ioBroker.innogy-smarthome/master/io-package.json",
"icon": "https://raw.githubusercontent.com/PArns/ioBroker.innogy-smarthome/master/admin/innogy-smarthome.png",
"type": "iot-systems",
"published": "2017-01-07T12:19:30.574Z",
"versionDate": "2018-12-18T20:32:26.148Z"
},
"intesishome": {
"meta": "https://raw.githubusercontent.com/maxtox/ioBroker.intesishome/master/io-package.json",
"icon": "https://raw.githubusercontent.com/maxtox/ioBroker.intesishome/master/admin/intesishome.png",
"type": "climate-control",
"published": "2018-04-25T22:24:42.884Z",
"versionDate": "2018-06-04T20:06:07.872Z"
},
"iogo": {
"meta": "https://raw.githubusercontent.com/nisiode/ioBroker.iogo/master/io-package.json",
"icon": "https://raw.githubusercontent.com/nisiode/ioBroker.iogo/master/admin/iogo.png",
"type": "visualization",
"published": "2018-09-10T19:15:03.742Z",
"versionDate": "2018-10-07T18:54:02.574Z"
},
"iot": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.iot/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.iot/master/admin/iot.png",
"type": "communication",
"published": "2018-09-22T16:11:37.398Z",
"versionDate": "2018-10-21T17:40:32.063Z"
},
"javascript": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.javascript/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.javascript/master/admin/javascript.png",
"type": "logic",
"published": "2015-01-02T23:37:49.644Z",
"versionDate": "2018-03-05T17:30:25.901Z"
},
"jeelink": {
"meta": "https://raw.githubusercontent.com/foxthefox/ioBroker.jeelink/master/io-package.json",
"icon": "https://raw.githubusercontent.com/foxthefox/ioBroker.jeelink/master/admin/jeelab_logo.png",
"type": "hardware",
"published": "2017-01-22T15:51:48.773Z",
"versionDate": "2018-10-03T18:10:25.918Z"
},
"js-controller": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.js-controller/master/io-package.json",
"url": "https://github.com/ioBroker/ioBroker.js-controller/tarball/master",
"type": "general",
"published": "2015-01-03T14:47:20.911Z",
"versionDate": "2018-09-15T17:06:19.700Z"
},
"js2fs": {
"meta": "https://raw.githubusercontent.com/soef/ioBroker.js2fs/master/io-package.json",
"icon": "https://raw.githubusercontent.com/soef/ioBroker.js2fs/master/admin/js2fs.png",
"type": "utility",
"published": "2017-07-10T13:01:38.945Z",
"versionDate": "2018-02-17T14:21:52.699Z"
},
"kecontact": {
"meta": "https://raw.githubusercontent.com/UncleSamSwiss/ioBroker.kecontact/master/io-package.json",
"icon": "https://raw.githubusercontent.com/UncleSamSwiss/ioBroker.kecontact/master/admin/charger.png",
"type": "hardware",
"published": "2017-06-11T17:00:43.355Z",
"versionDate": "2017-07-04T19:02:53.685Z"
},
"klf200": {
"meta": "https://raw.githubusercontent.com/MiSchroe/ioBroker.klf200/master/io-package.json",
"icon": "https://raw.githubusercontent.com/MiSchroe/ioBroker.klf200/master/admin/klf200.png",
"type": "hardware",
"published": "2018-08-05T19:05:55.098Z",
"versionDate": "2018-08-15T13:21:11.372Z"
},
"km200": {
"meta": "https://raw.githubusercontent.com/frankjoke/ioBroker.km200/master/io-package.json",
"icon": "https://raw.githubusercontent.com/frankjoke/ioBroker.km200/master/admin/km200.png",
"type": "climate-control",
"published": "2016-11-18T21:35:17.155Z",
"versionDate": "2017-11-21T19:01:28.669Z"
},
"knx": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.knx/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.knx/master/admin/knx.png",
"type": "iot-systems",
"published": "2015-09-27T07:32:43.557Z",
"versionDate": "2018-08-16T21:42:30.966Z"
},
"kodi": {
"meta": "https://raw.githubusercontent.com/instalator/ioBroker.kodi/master/io-package.json",
"icon": "https://raw.githubusercontent.com/instalator/ioBroker.kodi/master/admin/kodi.png",
"type": "multimedia",
"published": "2016-05-22T15:47:37.487Z",
"versionDate": "2017-11-13T13:51:22.286Z"
},
"kress": {
"meta": "https://raw.githubusercontent.com/MeisterTR/ioBroker.kress/master/io-package.json",
"icon": "https://raw.githubusercontent.com/MeisterTR/ioBroker.kress/master/admin/kress.png",
"type": "garden",
"published": "2018-08-09T11:36:22.480Z",
"versionDate": "2018-08-09T18:26:15.009Z"
},
"landroid": {
"meta": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.landroid/master/io-package.json",
"icon": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.landroid/master/admin/landroid.png",
"type": "garden",
"published": "2017-02-08T23:54:56.311Z",
"versionDate": "2017-08-16T07:28:52.121Z"
},
"landroid-s": {
"meta": "https://raw.githubusercontent.com/MeisterTR/ioBroker.landroid-s/master/io-package.json",
"icon": "https://raw.githubusercontent.com/MeisterTR/ioBroker.landroid-s/master/admin/landroid-s.png",
"type": "garden",
"published": "2017-07-22T11:45:31.427Z",
"versionDate": "2018-08-09T18:25:54.887Z"
},
"lcn": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.lcn/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.lcn/master/admin/lcn.png",
"type": "iot-systems",
"published": "2018-11-05T23:29:40.991Z",
"versionDate": "2018-09-23T21:10:12.043Z"
},
"lgtv": {
"meta": "https://raw.githubusercontent.com/SebastianSchultz/ioBroker.lgtv/master/io-package.json",
"icon": "https://raw.githubusercontent.com/SebastianSchultz/ioBroker.lgtv/master/admin/lgtv.png",
"type": "multimedia",
"published": "2016-09-05T17:34:06.772Z",
"versionDate": "2018-04-15T13:04:45.337Z"
},
"lgtv-rs": {
"meta": "https://raw.githubusercontent.com/instalator/ioBroker.lgtv-rs/master/io-package.json",
"icon": "https://raw.githubusercontent.com/instalator/ioBroker.lgtv-rs/master/admin/lg.png",
"type": "multimedia",
"published": "2017-09-07T14:22:57.452Z",
"versionDate": "2018-01-03T16:54:03.114Z"
},
"lgtv11": {
"meta": "https://raw.githubusercontent.com/SebastianSchultz/ioBroker.lgtv11/master/io-package.json",
"icon": "https://raw.githubusercontent.com/SebastianSchultz/ioBroker.lgtv11/master/admin/lgtv2011.png",
"type": "multimedia",
"published": "2018-04-16T21:15:50.327Z",
"versionDate": "2018-05-08T11:50:37.020Z"
},
"lifx": {
"meta": "https://raw.githubusercontent.com/foxthefox/ioBroker.lifx/master/io-package.json",
"icon": "https://raw.githubusercontent.com/foxthefox/ioBroker.lifx/master/admin/lifx_logo.png",
"type": "lighting",
"published": "2017-01-22T13:26:57.226Z",
"versionDate": "2018-02-11T14:11:47.663Z"
},
"lightify": {
"meta": "https://raw.githubusercontent.com/soef/ioBroker.lightify/master/io-package.json",
"icon": "https://raw.githubusercontent.com/soef/ioBroker.lightify/master/admin/lightify.png",
"type": "lighting",
"published": "2016-03-16T00:01:08.739Z",
"versionDate": "2018-01-07T13:09:47.916Z"
},
"link": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.link/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.link/master/admin/link.png",
"type": "communication",
"published": "2018-06-10T19:29:40.991Z",
"versionDate": "2018-09-23T21:10:12.043Z"
},
"loxone": {
"meta": "https://raw.githubusercontent.com/UncleSamSwiss/ioBroker.loxone/master/io-package.json",
"icon": "https://raw.githubusercontent.com/UncleSamSwiss/ioBroker.loxone/master/admin/loxone.png",
"type": "iot-systems",
"published": "2017-04-24T19:18:46.399Z",
"versionDate": "2017-10-08T11:32:10.068Z"
},
"luftdaten": {
"meta": "https://raw.githubusercontent.com/klein0r/ioBroker.luftdaten/master/io-package.json",
"icon": "https://raw.githubusercontent.com/klein0r/ioBroker.luftdaten/master/admin/luftdaten.png",
"type": "weather",
"published": "2018-05-14T13:52:35.278Z",
"versionDate": "2018-07-12T10:20:03.935Z"
},
"lupusec": {
"meta": "https://raw.githubusercontent.com/schmupu/ioBroker.lupusec/master/io-package.json",
"icon": "https://raw.githubusercontent.com/schmupu/ioBroker.lupusec/master/admin/lupusec.png",
"type": "alarm",
"published": "2018-05-17T18:33:39.641Z",
"versionDate": "2019-01-29T20:53:15.763Z"
},
"luxtronik1": {
"meta": "https://raw.githubusercontent.com/forelleblau/ioBroker.luxtronik1/master/io-package.json",
"icon": "https://raw.githubusercontent.com/forelleblau/ioBroker.luxtronik1/master/admin/luxtronik1.png",
"type": "climate-control",
"published": "2019-03-19T21:30:00.339Z",
"versionDate": "2019-03-19T21:30:00.339Z"
},
"material": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.material/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.material/master/admin/material.png",
"type": "visualization",
"published": "2017-06-26T21:15:39.259Z",
"versionDate": "2018-10-20T13:13:04.897Z"
},
"maxcube": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.maxcube/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.maxcube/master/admin/maxcube.png",
"type": "climate-control",
"published": "2017-06-08T08:46:50.814Z",
"versionDate": "2017-06-11T18:41:50.446Z"
},
"maxcul": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.maxcul/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.maxcul/master/admin/maxcul.png",
"type": "iot-systems",
"published": "2017-04-10T20:26:24.569Z",
"versionDate": "2018-03-25T17:15:26.198Z"
},
"mbus": {
"meta": "https://raw.githubusercontent.com/Apollon77/ioBroker.mbus/master/io-package.json",
"icon": "https://raw.githubusercontent.com/Apollon77/ioBroker.mbus/master/admin/mbus.png",
"type": "energy",
"published": "2018-03-11T20:48:55.590Z",
"versionDate": "2019-01-04T15:45:00.000Z"
},
"mclighting": {
"meta": "https://raw.githubusercontent.com/instalator/ioBroker.mclighting/master/io-package.json",
"icon": "https://raw.githubusercontent.com/instalator/ioBroker.mclighting/master/admin/mclighting.png",
"type": "lighting",
"published": "2018-03-24T09:36:03.416Z",
"versionDate": "2018-04-02T17:14:04.440Z"
},
"megad": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.megad/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.megad/master/admin/megad.png",
"type": "hardware",
"published": "2015-03-20T23:02:25.119Z",
"versionDate": "2016-08-14T09:59:28.919Z"
},
"megadd": {
"meta": "https://raw.githubusercontent.com/ausHaus/ioBroker.megadd/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ausHaus/ioBroker.megadd/master/admin/megad.png",
"type": "hardware",
"published": "2017-03-16T06:32:47.034Z",
"versionDate": "2017-03-19T22:15:18.026Z"
},
"megaesp": {
"meta": "https://raw.githubusercontent.com/ausHaus/ioBroker.megaesp/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ausHaus/ioBroker.megaesp/master/admin/megad.png",
"type": "hardware",
"published": "2017-03-16T07:01:19.216Z",
"versionDate": "2017-03-19T22:26:13.507Z"
},
"meross": {
"meta": "https://raw.githubusercontent.com/Apollon77/ioBroker.meross/master/io-package.json",
"icon": "https://raw.githubusercontent.com/Apollon77/ioBroker.meross/master/admin/meross.png",
"type": "iot-systems",
"published": "2018-12-01T20:00:00.00Z",
"versionDate": "2018-12-16T23:00:00.000Z"
},
"miele": {
"meta": "https://raw.githubusercontent.com/soef/ioBroker.miele/master/io-package.json",
"icon": "https://raw.githubusercontent.com/soef/ioBroker.miele/master/admin/xmiele.png",
"type": "household",
"published": "2016-01-23T09:52:24.818Z",
"versionDate": "2017-10-18T07:45:58.707Z"
},
"mihome": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.mihome/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.mihome/master/admin/mihome.png",
"type": "iot-systems",
"published": "2017-06-05T17:40:26.665Z",
"versionDate": "2018-10-20T13:34:06.588Z"
},
"mihome-airpurifier": {
"meta": "https://raw.githubusercontent.com/JoJ123/ioBroker.mihome-airpurifier/master/io-package.json",
"icon": "https://raw.githubusercontent.com/JoJ123/ioBroker.mihome-airpurifier/master/admin/mihome-airpurifier.png",
"type": "climate-control",
"published": "2018-12-18T12:20:09.290Z",
"versionDate": "2019-01-06T16:20:25.837Z"
},
"mihome-lamp": {
"meta": "https://raw.githubusercontent.com/MeisterTR/ioBroker.mihome-lamp/master/io-package.json",
"icon": "https://raw.githubusercontent.com/MeisterTR/ioBroker.mihome-lamp/master/admin/mihome-lamp.png",
"type": "lighting",
"published": "2017-08-09T04:28:19.180Z",
"versionDate": "2018-09-16T05:04:24.948Z"
},
"mihome-plug": {
"meta": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.mihome-plug/master/io-package.json",
"icon": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.mihome-plug/master/admin/mihome-plug.png",
"type": "hardware",
"published": "2017-08-04T16:03:47.676Z",
"versionDate": "2018-09-02T12:30:55.974Z"
},
"mihome-vacuum": {
"meta": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.mihome-vacuum/master/io-package.json",
"icon": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.mihome-vacuum/master/admin/mihome-vacuum.png",
"type": "household",
"published": "2017-02-05T20:50:25.120Z",
"versionDate": "2018-09-02T15:06:41.833Z"
},
"miio": {
"meta": "https://raw.githubusercontent.com/smarthomefans/ioBroker.miio/master/io-package.json",
"icon": "https://raw.githubusercontent.com/smarthomefans/ioBroker.miio/master/admin/miio.png",
"type": "iot-systems",
"published": "2019-04-03T00:05:54.455Z",
"versionDate": "2019-04-04T22:16:54.455Z"
},
"mikrotik": {
"meta": "https://raw.githubusercontent.com/instalator/ioBroker.mikrotik/master/io-package.json",
"icon": "https://raw.githubusercontent.com/instalator/ioBroker.mikrotik/master/admin/mikrotik.png",
"type": "hardware",
"published": "2017-07-27T16:46:54.455Z",
"versionDate": "2018-09-27T12:03:42.278Z"
},
"milight": {
"meta": "https://raw.githubusercontent.com/foxthefox/ioBroker.milight/master/io-package.json",
"icon": "https://raw.githubusercontent.com/foxthefox/ioBroker.milight/master/admin/easybulb_logo.png",
"type": "lighting",
"published": "2017-01-28T00:02:47.304Z",
"versionDate": "2018-02-11T14:42:12.512Z"
},
"milight-smart-light": {
"meta": "https://raw.githubusercontent.com/Steiger04/ioBroker.milight-smart-light/master/io-package.json",
"icon": "https://raw.githubusercontent.com/Steiger04/ioBroker.milight-smart-light/master/admin/lib/images/milight-smart-light-md.png",
"type": "lighting",
"published": "2017-08-29T11:37:57.432Z",
"versionDate": "2018-01-21T20:07:49.681Z"
},
"mobile": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.mobile/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.mobile/master/admin/mobile.png",
"type": "visualization",
"published": "2015-11-08T12:28:29.742Z",
"versionDate": "2017-07-12T11:25:03.265Z"
},
"modbus": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.modbus/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.modbus/master/admin/modbus.png",
"type": "protocols",
"published": "2015-10-14T20:14:18.945Z",
"versionDate": "2018-10-11T08:06:34.864Z"
},
"mpd": {
"meta": "https://raw.githubusercontent.com/instalator/ioBroker.mpd/master/io-package.json",
"icon": "https://raw.githubusercontent.com/instalator/ioBroker.mpd/master/admin/mpd.png",
"type": "multimedia",
"published": "2016-12-15T15:55:12.928Z",
"versionDate": "2018-03-05T15:00:17.421Z"
},
"mqtt": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.mqtt/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.mqtt/master/admin/mqtt.png",
"type": "protocols",
"published": "2014-11-28T14:42:57.910Z",
"versionDate": "2018-12-03T21:21:22.443Z"
},
"mqtt-client": {
"meta": "https://raw.githubusercontent.com/Pmant/ioBroker.mqtt-client/master/io-package.json",
"icon": "https://raw.githubusercontent.com/Pmant/ioBroker.mqtt-client/master/admin/mqtt-client.png",
"type": "protocols",
"published": "2016-06-19T20:44:36.935Z",
"versionDate": "2018-01-30T14:48:13.680Z"
},
"musiccast": {
"meta": "https://raw.githubusercontent.com/foxthefox/ioBroker.musiccast/master/io-package.json",
"icon": "https://raw.githubusercontent.com/foxthefox/ioBroker.musiccast/master/admin/musiccast.png",
"type": "multimedia",
"published": "2017-05-01T13:50:35.419Z",
"versionDate": "2018-06-04T05:33:37.024Z"
},
"mysensors": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.mysensors/master/io-package.json",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.mysensors/master/admin/mysensors.png",
"type": "iot-systems",
"published": "2016-02-24T21:13:56.700Z",
"versionDate": "2018-02-05T10:56:56.462Z"
},
"nanoleaf-lightpanels": {
"meta": "https://raw.githubusercontent.com/daniel-2k/ioBroker.nanoleaf-lightpanels/master/io-package.json",
"icon": "https://raw.githubusercontent.com/daniel-2k/ioBroker.nanoleaf-lightpanels/master/admin/nanoleaf-lightpanels.png",
"type": "lighting",
"published": "2018-05-03T18:41:42.916Z",
"versionDate": "2018-10-15T16:47:50.402Z"
},
"nello": {
"meta": "https://raw.githubusercontent.com/Zefau/ioBroker.nello/master/io-package.json",
"icon": "https://raw.githubusercontent.com/Zefau/ioBroker.nello/master/admin/nello.png",
"type": "hardware",
"published": "2018-12-09T12:08:00.000Z",
"versionDate": "2018-02-03T21:29:00.000Z"
},
"netatmo": {
"meta": "https://raw.githubusercontent.com/PArns/ioBroker.netatmo/master/io-package.json",
"icon": "https://raw.githubusercontent.com/PArns/ioBroker.netatmo/master/admin/netatmo.png",
"type": "weather",
"published": "2016-06-01T20:14:22.572Z",
"versionDate": "2018-04-26T19:52:53.375Z"
},
"nibeuplink": {
"meta": "https://raw.githubusercontent.com/sebilm/ioBroker.nibeuplink/master/io-package.json",
"icon": "https://raw.githubusercontent.com/sebilm/ioBroker.nibeuplink/master/admin/nibeuplink.png",
"published": "2019-03-24T15:12:00.840Z",