forked from ioBroker/ioBroker.repositories
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sources-dist-stable.json
2017 lines (2017 loc) · 90.3 KB
/
sources-dist-stable.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",
"version": "3.6.2",
"published": "2014-12-04T18:45:44.907Z",
"versionDate": "2019-05-05T21:40:16.837Z"
},
"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",
"version": "2.6.4",
"published": "2018-07-20T14:34:19.324Z",
"versionDate": "2019-07-25T07:28:28.974Z"
},
"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",
"version": "1.0.0",
"published": "2018-07-16T12:45:33.660Z",
"versionDate": "2019-06-24T13:11:58.246Z"
},
"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",
"version": "0.3.1",
"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",
"version": "1.0.0",
"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",
"version": "1.0.6",
"published": "2018-11-10T15:30:17.077Z",
"versionDate": "2019-03-14T21:26:38.647Z"
},
"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",
"version": "1.0.1",
"published": "2018-01-03T16:02:17.077Z",
"versionDate": "2019-03-22T23:34:17.270Z"
},
"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",
"version": "0.2.1",
"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",
"version": "1.1.4",
"published": "2018-06-29T15:39:03.465Z",
"versionDate": "2019-04-08T19:08:30.343Z"
},
"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",
"version": "1.0.6",
"published": "2018-11-01T17:44:00.917Z",
"versionDate": "2019-08-11T10:33:52.764Z"
},
"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",
"version": "0.2.0",
"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",
"version": "0.7.2",
"published": "2017-09-05T15:57:13.123Z",
"versionDate": "2019-04-05T08:11:30.252Z"
},
"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",
"version": "1.3.3",
"published": "2017-09-02T11:56:25.197Z",
"versionDate": "2017-11-08T15:52:45.062Z"
},
"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",
"version": "0.2.4",
"published": "2017-12-22T15:15:44.610Z",
"versionDate": "2019-05-05T08:55:35.100Z"
},
"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",
"version": "1.0.0",
"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",
"version": "1.4.0",
"published": "2019-02-12T20:10:09.422Z",
"versionDate": "2019-06-07T00:17:39.394Z"
},
"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",
"version": "1.8.0",
"published": "2017-07-27T12:44:47.864Z",
"versionDate": "2017-10-26T12:26:27.328Z"
},
"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",
"version": "2.2.3",
"published": "2016-01-18T22:15:11.609Z",
"versionDate": "2019-03-19T22: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",
"version": "2.6.2",
"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",
"version": "0.3.2",
"published": "2019-02-13T23:30:00.339Z",
"versionDate": "2019-06-21T21:00:16.864Z"
},
"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",
"version": "1.0.0",
"published": "2018-05-12T17:59:52.182Z",
"versionDate": "2019-01-20T07:02:31.880Z"
},
"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",
"version": "0.4.0",
"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",
"version": "1.0.5",
"published": "2017-03-29T22:00:25.803Z",
"versionDate": "2019-06-25T21:12:21.098Z"
},
"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",
"version": "2.8.0",
"published": "2017-05-14T10:42:31.173Z",
"versionDate": "2019-03-17T16:16:22.801Z"
},
"deconz": {
"meta": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.deconz/master/io-package.json",
"icon": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.deconz/master/admin/deconz.png",
"type": "hardware",
"version": "1.1.2",
"published": "2018-01-02T18:51:20.942Z",
"versionDate": "2019-05-10T12:07:51.418Z"
},
"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",
"version": "1.5.1",
"published": "2018-06-04T22:51:21.999Z",
"versionDate": "2019-03-14T20:19:44.802Z"
},
"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",
"version": "0.4.0",
"published": "2018-12-07T12:21:59.934Z",
"versionDate": "2019-01-14T12:55:28.572Z"
},
"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",
"version": "1.3.0",
"published": "2017-03-15T12:16:13.934Z",
"versionDate": "2019-04-15T13:06:56.245Z"
},
"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",
"version": "2.4.3",
"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",
"version": "0.8.0",
"published": "2018-01-08T19:33:17.193Z",
"versionDate": "2019-03-17T16:05:38.669Z"
},
"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",
"version": "0.1.2",
"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",
"version": "1.1.0",
"published": "2018-05-11T19:02:48.501Z",
"versionDate": "2019-08-23T15:18:38.382Z"
},
"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",
"version": "1.0.4",
"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",
"version": "0.1.2",
"published": "2019-05-02T13:40:21.690Z",
"versionDate": "2019-03-11T19:16:50.681Z"
},
"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",
"version": "1.2.1",
"published": "2018-07-23T20:26:21.308Z",
"versionDate": "2019-03-12T07:43:45.925Z"
},
"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",
"version": "1.0.1",
"published": "2018-01-08T12:46:49.219Z",
"versionDate": "2019-01-21T17:02:52.934Z"
},
"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",
"version": "0.2.1",
"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",
"version": "0.2.1",
"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",
"version": "1.0.11",
"published": "2016-04-30T13:42:40.309Z",
"versionDate": "2018-11-01T13:31:02.277Z"
},
"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",
"version": "1.3.0",
"published": "2016-05-31T20:33:16.704Z",
"versionDate": "2019-07-22T12:05:54.302Z"
},
"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",
"version": "0.2.15",
"published": "2016-10-10T18:31:04.566Z",
"versionDate": "2018-01-04T17:03:33.067Z"
},
"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",
"version": "0.0.27",
"published": "2017-01-02T10:18:49.955Z",
"versionDate": "2017-05-06T19:12:38.390Z"
},
"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",
"version": "1.9.2",
"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",
"version": "1.0.0",
"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",
"version": "0.2.1",
"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",
"version": "0.1.4",
"published": "2017-01-21T22:19:40.633Z",
"versionDate": "2018-11-11T22:47:47.809Z"
},
"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",
"version": "1.0.5",
"published": "2017-02-23T23:25:42.603Z",
"versionDate": "2019-01-18T06:16:51.257Z"
},
"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",
"version": "0.2.4",
"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",
"version": "1.0.0",
"published": "2018-12-16T11:09:00.000Z",
"versionDate": "2019-05-22T18:59:49.039Z"
},
"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",
"version": "0.4.0",
"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",
"version": "0.3.2",
"published": "2016-01-15T20:18:56.071Z",
"versionDate": "2018-03-07T21:05:22.640Z"
},
"gruenbeck": {
"meta": "https://raw.githubusercontent.com/TA2k/ioBroker.gruenbeck/master/io-package.json",
"icon": "https://raw.githubusercontent.com/TA2k/ioBroker.gruenbeck/master/admin/gruenbeck.png",
"type": "household",
"version": "0.0.12",
"published": "2019-05-06T08:44:23.717Z",
"versionDate": "2019-05-13T09:40:52.412Z"
},
"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",
"version": "0.3.4",
"published": "2017-05-14T19:24:21.906Z",
"versionDate": "2019-02-04T21:11:33.834Z"
},
"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",
"version": "1.0.2",
"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",
"version": "1.1.2",
"published": "2018-06-17T10:47:38.444Z",
"versionDate": "2019-07-08T21:07:12.204Z"
},
"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",
"version": "1.0.1",
"published": "2018-06-22T21:13:14.043Z",
"versionDate": "2019-07-05T08:13:23.881Z"
},
"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",
"version": "1.2.2",
"published": "2015-08-18T08:32:32.461Z",
"versionDate": "2019-03-12T23:47:36.396Z"
},
"heytech": {
"meta": "https://raw.githubusercontent.com/Jey-Cee/ioBroker.heytech/master/io-package.json",
"icon": "https://raw.githubusercontent.com/Jey-Cee/ioBroker.heytech/master/admin/heytech.png",
"type": "hardware",
"version": "0.1.4",
"published": "2019-05-21T12:07:34.468Z",
"versionDate": "2019-05-21T10:07:34.049Z"
},
"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",
"version": "0.1.17",
"published": "2016-01-26T00:32:41.036Z",
"versionDate": "2018-03-26T16:56:13.373Z"
},
"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",
"version": "1.8.6",
"published": "2015-01-02T21:07:06.894Z",
"versionDate": "2019-02-24T20:39:47.245Z"
},
"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",
"version": "2.4.0",
"published": "2015-01-02T23:31:13.087Z",
"versionDate": "2019-07-03T20:28:57.609Z"
},
"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",
"version": "1.9.15",
"published": "2015-01-02T23:35:36.140Z",
"versionDate": "2019-07-01T10:22:35.011Z"
},
"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",
"version": "0.0.11",
"published": "2019-01-23T19:53:36.140Z",
"versionDate": "2019-07-03T17:55:29.534Z"
},
"homeconnect": {
"meta": "https://raw.githubusercontent.com/dna909/ioBroker.homeconnect/master/io-package.json",
"icon": "https://raw.githubusercontent.com/dna909/ioBroker.homeconnect/master/admin/homeconnect.png",
"type": "household",
"version": "0.0.22",
"published": "2019-06-13T06:47:49.181Z",
"versionDate": "2019-07-26T12:38:31.294Z"
},
"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",
"version": "0.3.1",
"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",
"version": "1.0.3",
"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",
"version": "1.0.1",
"published": "2018-04-12T00:00:39.833Z",
"versionDate": "2019-01-21T21:11:03.795Z"
},
"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",
"version": "1.0.10",
"published": "2017-08-08T19:55:36.776Z",
"versionDate": "2019-05-22T19:02:43.991Z"
},
"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",
"version": "1.2.3",
"published": "2015-03-04T22:35:03.350Z",
"versionDate": "2019-07-14T20:21:39.635Z"
},
"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",
"version": "1.7.0",
"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",
"version": "0.1.0",
"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",
"version": "0.1.0",
"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",
"version": "0.0.1",
"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",
"version": "0.1.0",
"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",
"version": "0.1.0",
"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",
"version": "1.0.2",
"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",
"version": "1.0.2",
"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",
"icon": "https://raw.githubusercontent.com/ioBroker/ioBroker.icons-open-icon-library-png/master/admin/icons-open-icon-library-png.png",
"type": "visualization-icons",
"version": "0.1.2",
"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",
"version": "1.0.1",
"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",
"version": "1.6.3",
"published": "2015-12-14T22:28:26.453Z",
"versionDate": "2019-02-24T20:40:31.807Z"
},
"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",
"version": "1.3.7",
"published": "2018-11-25T17:54:38.495Z",
"versionDate": "2019-04-18T12:42:10.826Z"
},
"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",
"version": "0.2.11",
"published": "2017-01-07T12:19:30.574Z",
"versionDate": "2018-12-18T19:08:29.183Z"
},
"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",
"version": "0.3.4",
"published": "2018-09-10T19:15:03.742Z",
"versionDate": "2019-02-15T21:50:28.234Z"
},
"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",
"version": "0.4.3",
"published": "2018-09-22T16:11:37.398Z",
"versionDate": "2019-04-15T07:11:56.014Z"
},
"iqontrol": {
"meta": "https://raw.githubusercontent.com/sbormann/ioBroker.iqontrol/master/io-package.json",
"icon": "https://raw.githubusercontent.com/sbormann/ioBroker.iqontrol/master/admin/iqontrol.png",
"type": "visualization",
"version": "0.1.0",
"published": "2019-04-25T19:54:15.696Z",
"versionDate": "2019-07-27T21:55:25.988Z"
},
"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",
"version": "4.1.12",
"published": "2015-01-02T23:37:49.644Z",
"versionDate": "2019-03-09T18:21:35.383Z"
},
"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",
"version": "0.1.0",
"published": "2017-01-22T15:51:48.773Z",
"versionDate": "2019-01-20T14:42:16.218Z"
},
"js-controller": {
"meta": "https://raw.githubusercontent.com/ioBroker/ioBroker.js-controller/master/io-package.json",
"type": "general",
"version": "1.5.14",
"published": "2015-01-03T14:47:20.911Z",
"versionDate": "2019-07-21T08:48:08.301Z"
},
"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",
"version": "0.1.3",
"published": "2017-07-10T13:01:38.945Z",
"versionDate": "2018-01-07T12:30:32.216Z"
},
"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",
"version": "0.1.0",
"published": "2019-01-12T11:13:41.789Z",
"versionDate": "2019-01-12T11:13:41.033Z"
},
"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",
"version": "0.9.5",
"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",
"version": "1.1.6",
"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",
"version": "0.8.6",
"published": "2015-09-27T07:32:43.557Z",
"versionDate": "2017-06-17T19:02:21.044Z"
},
"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",
"version": "1.0.0",
"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",
"version": "2.5.5",
"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",
"version": "1.0.3",
"published": "2017-02-08T23:54:56.311Z",
"versionDate": "2019-01-18T06:17:33.314Z"
},
"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",
"version": "0.3.2",
"published": "2018-11-05T23:29:40.991Z",
"versionDate": "2018-11-20T20:43:00.292Z"
},
"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",
"version": "1.0.8",
"published": "2016-09-05T17:34:06.772Z",
"versionDate": "2019-03-15T10:09:34.750Z"
},
"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",
"version": "0.0.4",
"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",
"version": "1.0.5",
"published": "2018-04-16T21:15:50.327Z",
"versionDate": "2019-01-21T22:09:09.182Z"
},
"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",
"version": "0.0.5",
"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",
"version": "0.2.16",
"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",
"version": "0.4.2",
"published": "2018-06-10T19:29:40.991Z",
"versionDate": "2019-03-28T14:38:35.309Z"
},
"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",
"version": "1.0.0",
"published": "2017-04-24T19:18:46.399Z",
"versionDate": "2019-02-02T16:03:20.952Z"
},
"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",
"version": "0.0.6",
"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",
"version": "1.1.8",
"published": "2018-05-17T18:33:39.641Z",
"versionDate": "2019-06-10T11:10:52.567Z"
},
"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",
"version": "0.0.7",
"published": "2019-03-19T21:30:00.339Z",
"versionDate": "2019-04-05T20:34:54.480Z"
},
"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",
"version": "0.1.2",
"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",
"version": "1.1.1",
"published": "2017-04-10T20:26:24.569Z",
"versionDate": "2019-07-05T21:35:14.208Z"
},
"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",
"version": "1.1.1",
"published": "2018-03-11T20:48:55.590Z",
"versionDate": "2019-01-04T14:46:44.578Z"
},
"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",
"version": "1.2.1",
"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",
"version": "0.2.0",
"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",
"version": "0.1.0",
"published": "2017-03-16T07:01:19.216Z",
"versionDate": "2017-03-19T22:26:13.507Z"
},
"mercedesme": {
"meta": "https://raw.githubusercontent.com/TA2k/ioBroker.mercedesme/master/io-package.json",
"icon": "https://raw.githubusercontent.com/TA2k/ioBroker.mercedesme/master/admin/mercedesme.png",
"type": "household",
"version": "0.0.12",
"published": "2019-05-17T10:00:00.00Z",
"versionDate": "2019-06-25T11:57:36.465Z"
},
"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",
"version": "1.0.0",
"published": "2018-12-01T20:00:00.00Z",
"versionDate": "2018-12-16T22:20:05.912Z"
},
"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",
"version": "0.1.5",
"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",
"version": "1.2.5",
"published": "2017-06-05T17:40:26.665Z",
"versionDate": "2019-01-25T01:21:13.524Z"
},
"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",
"version": "1.1.0",
"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",
"version": "0.2.0",
"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",
"version": "1.1.5",
"published": "2017-02-05T20:50:25.120Z",
"versionDate": "2018-09-02T15:06:41.833Z"
},
"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",
"version": "1.0.4",
"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",
"version": "0.3.6",
"published": "2017-01-28T00:02:47.304Z",
"versionDate": "2019-01-12T14:30:47.206Z"
},
"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",
"version": "0.2.7",
"published": "2017-08-29T11:37:57.432Z",
"versionDate": "2019-04-16T19:00:04.461Z"
},
"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",
"version": "0.5.0",
"published": "2015-11-08T12:28:29.742Z",
"versionDate": "2019-01-25T01:14:37.302Z"
},
"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",
"version": "2.0.9",
"published": "2015-10-14T20:14:18.945Z",
"versionDate": "2018-10-11T08:06:34.864Z"
},