forked from domoticz/domoticz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHistory.txt
More file actions
2217 lines (2170 loc) · 139 KB
/
History.txt
File metadata and controls
2217 lines (2170 loc) · 139 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
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
Version 2026.xxxx
- Added: BuienRadar, new rain sensor based on last 24 hour value instead of rain rate
- Added: CounterHelper, support for additional counter device types
- Added: MCP, battery level and RSSI/signal level included in device search and listing tools
- Added: MCP, completion/complete support with prompt argument and resource URI autocompletion
- Added: MCP, create_sensor and create_device as aliases for create_virtual_sensor tool
- Added: MCP, delete_event tool for removing automation event scripts (admin only)
- Added: MCP, domoticz://sensor-types resource listing all available virtual sensor types with mapped values
- Added: MCP, get_sensor_history tool with daily calendar data for all sensor types and event log for switches/scenes
- Added: MCP, new prompts: battery_status, climate_overview, create_automation, daily_report, energy_report, hardware_health, scene_optimizer, security_check
- Added: Matter, hardware driver for python-matterjs-server via WebSocket; supports on/off, dimmer, temperature, humidity, pressure, illuminance, occupancy, contact, CO2/CO/NO2/PM2.5/PM10, power/energy, door lock, window covering, and battery level
- Added: Counter/Gas report, custom contract-year view with per-period breakdown and forecast for remaining months based on previous year data; forecast bars shown in chart with lighter colour
- Added: Counter/Gas report, export to Excel, CSV, and clipboard buttons on all device report pages (counter, rain, temperature, wind)
- Added: Counter log, right-click context menu on anomalous spike bars with options to spread the value across preceding empty days or delete it (admin only)
- Added: Counter log, "Fix Weekly Pattern" option in the Weekly Generated Pattern and Days/Hourly Energy chart menus to remove spike contamination from running averages (admin only)
- Added: Counter log, "Fix Counter/Price Spikes" option in Last Month, Last Year and shortlog chart context menus to repair corrupted price entries and counter resets (admin only)
- Added: DaikinModbus, energy metering based on accumulated power usage
- Added: Enever, current electricity and gas prices are now available in the event system
- Added: Dashboard, room plan selector lists available dynamic dashboard layouts, and dynamic dashboard navigation lists available room plans for cross-navigation
- Added: Dashboard, click device name to open the device log; P1 gas/water values shown on two lines in dashboard widgets; switch widgets support list layout
- Added: Dashboard Dynamic, new opt-in modular drag-and-drop dashboard with a widget library, multiple named dashboards per user, kiosk/auto-swipe mode, screen standby, and layout import/export; enable in My Profile → Use Dynamic Dashboard
- Added: Dashboard Dynamic, over 35 built-in widgets covering energy, weather, devices, controls, charts, calendars, cameras, and custom content (HTML, text, image, website embed)
- Added: Dashboard Dynamic, font size option (Default / Larger / Large / Extra large) for Quick Actions, Quick Stat and Room/Plan list mode widgets
- Added: Dashboard Dynamic, dial widget shows red bezel ring when a device has timed out
- Added: Dashboard Dynamic, temperature dial now shows barometer pressure and weather forecast when the sensor provides them
- Added: Dashboard Dynamic, dial widget supports On/Off and PushOn/PushOff switch devices
- Added: Dashboard Dynamic, dial and gauge widgets support configurable multi-range color zones (normal/warning/critical); replaces the single warn/crit threshold pair
- Added: Dashboard Dynamic, gauge widget auto-detects unit from device data; humidity and barometer values displayed inside the arc
- Changed: Dashboard Dynamic, P1 dial now shows signed net power (negative = importing, positive = exporting) instead of absolute value with direction label
- Added: Devices, search filter is now preserved when navigating to a device log and pressing Back; cleared when changing room plan
- Added: Gas device, Water counter now displays the value unit (m3) in the device state
- Added: P1 log, cumulative energy chart with usage/return toggle buttons, Net (usage minus return) series option, and x-axis zoom
- Added: P1 energy report, custom contract-year date range view with per-period breakdown and forecast for remaining months
- Added: Theme system, CSS variable-based theming using --dz-* custom properties; theme authors can now override colours with a single :root block in dark.css instead of complex selector chains (see doc/Theming.wiki)
- Added: Rain report, total rainfall summary row in year and month report tables
- Added: Scheduler, switching to a timer plan now immediately applies the most recently elapsed timer in the new plan to each device; lights, switches, blinds, dimmers, and thermostat setpoints snap to the correct state at the moment of the plan switch
- Added: Text/Alert sensors, HTML <div> elements are now allowed in widget display
- Added: PhilipsHue, automatic bridge version detection (V2 HTTPS/443, V1 HTTPS/443, V1 HTTP/80); port no longer needs manual configuration
- Added: PhilipsHue V2, real-time sensor updates via Server-Sent Events (SSE); instant state changes without waiting for the next poll cycle
- Added: PhilipsHue V2, new sensor types: grouped motion, grouped light level, camera motion, security area motion, button remotes, and bell button (doorbell)
- Changed: Counter log, "Fix Counter Spikes" renamed to "Fix Counter/Price Spikes"; now also detects and repairs corrupted price entries in the calendar caused by counter spikes
- Changed: Counter log, "Fix Counter Spikes" admin button is now visible in the counter log footer
- Changed: DaikinModbus, improved register handling, NodeID/ChildID stability, and hardware name included in API calls
- Changed: Netatmo, improved connection handling
- Changed: Security Panel page redesigned to match Domoticz glass-card style (login/about page look)
- Changed: Theme system, css/widgets.css renamed to css/variables.css; legacy themes importing via legacy.css are unaffected
- Fixed: Counter and Temperature log, trendline tooltip now shows the calculated value at every data point instead of only at the start and end of the line (#6757)
- Fixed: Counter log, calendar entries with negative values caused by counter resets or rollovers are now detected and zeroed by "Fix Counter/Price Spikes"
- Fixed: Counter log, "Fix Counter/Price Spikes" now detects and repairs value spikes caused by a device being offline for multiple days (accumulated usage spread across the offline period); isolated spikes with no preceding zero-value days are zeroed out
- Fixed: Counter log, monthly/yearly charts incorrectly spreading a day's value across preceding zero-value days (#6703)
- Fixed: Counter log, spreading a spiked counter value across previous empty days now also distributes the associated price proportionally
- Fixed: Log charts, month/year/day range charts now always extend to today; a red highlight indicates the period with no recorded data
- Fixed: Log charts, report overview charts did not had a fixed height; this could cause chart regrows on a certain browser
- Fixed: Counter log, Weekly Generated Pattern heatmap could show extreme values caused by spike contamination in running hourly averages
- Fixed: Contact and DoorContact switches now show correct Open/Closed icon state in the dashboard
- Fixed: CounterHelper, MQTT Wh unit mismatch causing incorrect energy offset values
- Fixed: Dashboard, mobile dashboard no longer shows dynamic dashboard layouts in the room plan selector
- Fixed: Dashboard, selecting a room plan from the classic dashboard no longer incorrectly switches to the dynamic dashboard
- Fixed: Dashboard Dynamic, room plan dropdown now scrolls vertically instead of overflowing; added divider above room plan section
- Fixed: Dashboard, counter devices no longer show 'undefined' after their value when vunit is absent
- Fixed: Dashboard, Security type devices marked as favorites are now displayed in the Dashboard tab
- Fixed: Dashboard Dynamic, deleting a widget and pressing Save now correctly persists the change
- Fixed: Dashboard Dynamic, self-sufficiency percentage now correctly credits battery discharge as local generation for battery-equipped systems (#6724)
- Fixed: Dashboard Dynamic, Weather Forecast widget now refreshes at midnight to show the correct day
- Fixed: Dashboard Dynamic, dial widget hides Off level in selector when LevelOffHidden is set
- Fixed: Dashboard Dynamic, dial widget now prompts for passcode when activating protected switch or selector devices
- Fixed: Dashboard Dynamic, Google Calendar widget now scrolls correctly
- Fixed: Dashboard Dynamic, quick actions widget now prompts for passcode when activating protected devices
- Fixed: kWh counter, improved auto-detection of spike threshold in FixKwhCounterSpikes
- Fixed: MQTT-AD, cold and warm white channel values are now always sent together (#6719)
- Fixed: MCP, server is now enabled by default; use -nomcp flag to disable (previously required -llmmcp flag to enable)
- Fixed: Mobile dashboard, iOS "Force Desktop Mode" setting is now correctly applied; UA-based phone detection restored for iPhone and Android phones
- Fixed: PhilipsHue SSE, application shutdown hang when event stream was idle
- Fixed: PhilipsHue V2, battery level for motion/temperature/light level sensors reported as 255 instead of actual level
- Fixed: PhilipsHue v2, thread-safety race condition causing concurrent API call errors
- Fixed: Mutex, possible C++ backend deadlock resolved
- Fixed: Python plugin framework, spurious NullStream initialization errors on Python < 3.13 (#6688)
- Fixed: Python plugins, GIL released during blocking SQL calls preventing multi-second latency spikes in other plugin threads (#6718)
- Fixed: Python plugins, WebSocket fragmented messages and 64-bit frame lengths are now correctly handled
- Fixed: Setup menu, large gaps between dropdown dividers caused by the service worker serving a stale version of the stylesheet after a Domoticz update
- Fixed: SolarEdge, energy sensor data corrected; lifetime data was incorrectly showing accumulated values (#6751)
- Fixed: Text device utility widget now preserves HTML style attributes (color, font-size, etc.)
- Fixed: Thermostat6, bigtext on the favorites dashboard now shows correct order: temperature first, setpoint in parentheses, then humidity and barometer
- Fixed: Thermostat6, widgets no longer show EvoHome heat-level color (red) when setpoint is high; EvoHome colors are now restricted to EvoHome Zone/Hot Water devices
- Fixed: Widgets, brief visual flash of incorrect content on initial page load in switches, temperature and weather tabs
- Fixed: WOL, DNS lookup skipped for magic packet targets; improved getaddrinfo error reporting
Version 2026.1 (March 25th 2026)
- Added: Alexa Smart Home v3 API endpoint (see ALEXA.md)
- Added: Battery SOC mode selection for Energy Dashboard with voltage display
- Added: Current sensor log with 3-phase support and compare chart
- Added: Energy Dashboard, Battery Energy In/Out device settings and price tracking (not visible yet)
- Added: Blinds + Stop type
- Added: Comparing charts, show average across years in tooltip for month/quarter grouping
- Added: Configurable pricing resolution (15/30/60 minutes) for dynamic energy contracts (with adapted P1 and kWh graphs)
- Added: Counter hourly chart resolution toggle (1h/15m/30m) when sub-hourly pricing is configured
- Added: Counter log, anomalous meter spike highlighting in year/month charts
- Added: Counter log, calendar heatmap, weekly pattern heatmap, and cumulative year-to-date comparison charts
- Added: Counter log, cumulative energy chart for kWh instantAndCounter devices
- Added: Dashboard, setpoint display and editing for all setpoint devices
- Added: Docker environment variable support for admin provisioning (DOMOTICZ_ADMIN_PASSWORD, DOMOTICZ_ADMIN_USERNAME)
- Added: dzVents, at_startup trigger for scripts that should run once at Domoticz startup
- Added: Enever, updated providers and API v3
- Added: Enphase, battery storage sensors (reserve SOC, available energy, max capacity, storage mode, charge from grid control)
- Added: Enphase, Encharge battery temperature sensor
- Added: Enphase, grid status reporting for battery systems
- Added: EventSystem support for Thermostat 6 devices (Blockly/Lua/Python event triggers)
- Added: HaveSetPoint JSON API flag for Thermostat 6 and Setpoint devices (third-party app compatibility)
- Added: LibreHardwareMonitor, cross-platform HTTP support with mode selector and extended sensors
- Added: Log pages, current conditions KPI cards and advanced charts
- Added: Logitech Media Server, SqueezeLite ESP32 support
- Added: MCP, search_devices tool for device name discovery
- Added: MQTT-AD, added support for Climate high/low set points
- Added: MQTT-AD: Added Fan speed-range
- Added: MQTT-AD: Added support for flow meter reported in l/min
- Added: MQTT-AD: Calculate temperature trends for climate devices
- Added: MQTT-AD: Fan, make it possible to send separate ON/OFF commands
- Added: MQTT-AD: handling FAN on/off status commands
- Added: MQTT-AD: Reinstate 'total_increasing' support for kWh sensors
- Added: MQTT-AD: Thermostat 6, add setpoint timer/schedule support
- Added: New update scripts that are able to check if system meets requirements
- Added: Notification support for Thermostat 6 devices (temperature, humidity, barometer thresholds)
- Added: Open-Meteo, native weather hardware plugin (no API key required)
- Added: OpenWeatherMap, support for free API plan
- Added: P1 log, calendar heatmap with return energy and price display
- Added: P1 log, return energy shown in Today card when delivery is available
- Added: Philips Hue v2 API, just for Door/Window Contacts (state/tamper/battery)
- Added: PV Output, added consumption
- Added: Python plugin API, Domoticz.SendNotification() native notification method for plugins
- Added: Python plugin framework, extended settings with number/boolean/slider inputs, groups and conditional visibility (#6674)
- Added: Python plugin framework, shared="true" attribute for main interpreter execution
- Added: Re-added rain report
- Added: Re-added wind report
- Added: Re-added wind-rose direction chart to Wind sensor log
- Added: RFXCom, Support Orcon FAN device (#6500)
- Added: RFXCOM, Teleinfo 1200/19200 async mode support
- Added: RTL433, Support UV sensors named 'uvi'
- Added: Room plans, allow unused devices to be added to a plan and shown when that plan is selected
- Added: Scene log, on/off activity charts
- Added: Search filter on selected (right) side of user shared devices selector
- Added: SolarEdge, web portal polling for per-optimizer, per-string and per-inverter energy and real-time data
- Added: SolarEdge API, battery detection (#6593)
- Added: SolarEdge API, energy details sensors (production, consumption, self-consumption, feed-in, purchased)
- Added: SolarEdge API, site overview sensors (current power, energy today/month/year/lifetime)
- Added: Support for the Model Context Protocol (/mcp) for use with AI Agents
- Added: Thermostat, combined Temperature/Setpoint display
- Added: Web Interface, Admin API (FixKwhCounterSpikes) to detect and fix historical kWh counter spikes with dry-run support
- Added: Web Interface, Better XSS prevention
- Added: Web Interface, Close other menu option
- Added: Web Interface, dark chart theme for log charts
- Added: Web Interface, Event folders with multi-select drag-and-drop organization
- Added: Web Interface, First-run setup wizard for admin account creation, replacing default credentials
- Added: Web Interface, Modernized log viewer with WebSocket live streaming, level filtering, search/regex, render cap, and performance optimizations
- Added: Web Interface, Passkey (WebAuthn/FIDO2) authentication support - register and sign in with Windows Hello, Touch ID, or security keys
- Added: Web Interface, Passkey management in My Profile (register, view device info, delete)
- Added: Web Interface, single custom template shown as direct navigation link instead of dropdown
- Added: Web Interface, weather animations for temperature and weather display
- Added: Weather tab, room plan selector
- Added: Wind log, wind speed frequency histogram with Weibull distribution curve
- Fixed: Access denied for non-admin users with no shared devices configured
- Fixed: Application hang on shutdown when Python event scripts are active
- Fixed: Buienradar, fallback when station measurements are empty
- Fixed: CalcMeterPrice/CalcMultiMeterPrice off-by-one price error with dynamic tariffs (Fixes #6181)
- Fixed: Chart zoom buttons (notable on iOS devices)
- Fixed: Barometer compare chart and database normalization
- Fixed: Chart logs now using real time values
- Fixed: Chart series visibility not persisting after page reload
- Fixed: Compare chart values displayed incorrectly for multiple sensor types (#6591)
- Fixed: Crash after device_update when getUnit() returned stale data
- Fixed: Crash when a live device update arrives while the Devices tab is still loading
- Fixed: Counter Statistics Chart tooltip showing incorrect day name (Fixes #6542)
- Fixed: Database backup/restore stability (#6577)
- Fixed: Dashboard, sun rise/set times missing on mobile dashboard initial load
- Fixed: Deleting a scene/group could accidentally delete a device
- Fixed: dzVents, counterToday/counterDeliveredToday returning stale values after midnight for idle devices (Fixes #6221)
- Fixed: dzVents Lua table corruption when exception occurs during notification or device data export (Fixes #6030)
- Fixed: dzVents SendNotification, SendEmail, and SendSMS command handling
- Fixed: dzVents Thermostat 6 updateSetPoint() now uses proper SetSetPoint command path for correct event propagation
- Fixed: Energy Dashboard layout order and positioning (Fixes #6625)
- Fixed: Event system not processing events when device update rate is high (e.g. faulty sensors)
- Fixed: Event system thread could silently stop on unhandled exceptions, causing all scripts to stop working
- Fixed: Flash of unfiltered devices on live updates in web interface
- Fixed: Floorplan, Text Sensor display
- Fixed: General/kWh device with EnergyMeterMode=1 could never be updated when created from Python plugin with numeric Type/SubType (Fixes #6194)
- Fixed: Kodi, Possible memory leak in Kodi Notification when destination is unreachable
- Fixed: kWh counter returning 0 instead of last known value during periods with no readings
- Fixed: Log rotation via SIGHUP broken under systemd (non-daemon mode)
- Fixed: Memory leak in Python event scripts caused by missing reference count decrement in user variables (Fixes #5091)
- Fixed: Missing Passkeys column on fresh Docker installs causing SQL errors (#6601)
- Fixed: MQTT, crashes and race conditions in message handling
- Fixed: MQTTPush/InfluxPush crash on shutdown (#6600)
- Fixed: Negative rain values at midnight when counter resets (Fixes #6571)
- Fixed: Open-Meteo, improved validation of API responses and coordinate precision
- Fixed: OpenZWave setpoint devices
- Fixed: P1 Gas Counter returning 0.0 when no meter data exists for today
- Fixed: P1Power hourly graph empty due to incorrect SQL format escaping in pricing resolution grouping
- Fixed: P1Power hourly graph using wrong price and missing date range filter (Fixes #6181)
- Fixed: Philips Hue v1 API crashes Domoticz in certain cases since Hue Bridge firmware 1.74 (added extra validations)
- Fixed: Pinger blocking webserver thread during ping operations
- Fixed: Plugin devices, LightingLog User field now shows actual user instead of hardware name (Fixes #6538)
- Fixed: Python 3.13+ sub-interpreter crash due to missing __builtins__ injection
- Fixed: Python plugin C extension crash on plugin restart
- Fixed: Python plugin Domoticz.Debug() and Domoticz.Log() not respecting plugin-level debugging setting (#6636)
- Fixed: Python plugin custom device option updates not saved to database (#6454)
- Fixed: Python plugin TCP/TLS connection stability issues
- Fixed: Python/Lua scripts last_update_string not updating for unchanged-value devices (Fixes #6638)
- Fixed: RFXCom, uninitialized value in decode_Fan for non-Orcon devices
- Fixed: RTL433 hangs on stop/update (#6597)
- Fixed: Scheduler Monthly_Weekday and Yearly_Weekday (Fixes #6452)
- Fixed: Scene triggering delay caused by event system thread pool saturation
- Fixed: Segfault when running --help or --version (#6618)
- Fixed: Service worker not loading when Domoticz is accessed remotely via HTTPS
- Fixed: Session invalidation race condition during web session renewal
- Fixed: Slider drag on touch devices
- Fixed: SolarEdge API, battery critical sensor using wrong type and grid/storage power direction detection
- Fixed: SolarEdge API, power readings persisting stale values when idle
- Fixed: Temperature Compare Chart (Min/Max values)
- Fixed: Text sensor edit dialog, Enter key now inserts newlines instead of submitting
- Fixed: Water device log displaying value in incorrect unit
- Fixed: Web update not restarting properly when Python plugins are active (#6602)
- Fixed: Web update script not starting due to systemd-run failure (#6622)
- Fixed: WebSocket thread-safety races in session and log callbacks
- Fixed: WOL, Corrected magic packet creation and supporting IPv6 broadcast
- Changed: -nocache command line option now also uninstalls the service-worker
- Changed: Domoticz Remote, do not force re-enable RemoteSharedPort on startup
- Changed: Energy Dashboard restyled with dark glass-morphism theme and neon glow effects
- Changed: Enphase, default to new firmware info request
- Changed: Enphase, start working with correct values from the beginning
- Changed: FCM/Google Cloud Messaging Notifications, now needed to enter private API from console in settings
- Changed: In-service/Oauth2, Added Logo to login form
- Changed: Installer, improved package detection and channel reconfigure path
- Changed: Internal code cleanup/enhancements
- Changed: MQTT, huge speed improvements
- Changed: MQTT-AD: better initial device naming
- Changed: Netatmo, using new API scopes/code
- Changed: P1 Energy log, cumulative year chart shows thicker line for current year with shared crosshair tooltip showing all years simultaneously
- Changed: P1 Energy log, Return and Energy Returned series in day chart displayed as positive values with y-axis starting at zero
- Changed: P1 Energy log, Usage/Hour chart redesigned with independent resolution (1h/15m) and range (All/1d/Day) zoom controls
- Changed: Philips Hue, Added extra validations since Hue Bridge firmware 1.74.1974063020 crashes Domoticz in certain cases
- Changed: Philips Hue, now used HTTP scheme (HTTP/HTTPS) based on port number (80/443)
- Changed: Python plugin framework, case-insensitive keyword arguments (#6048)
- Changed: Tado, token now refreshed with correct refresh token interval
- Changed: Viewer users can now change their profile settings
- Changed: Web Interface, Event editor labels changed from Off/On to Disabled/Enabled
- Changed: Web Interface, navbar and settings panel redesigned with glassmorphism theme and menu icons
- Updated: More strings available for translation (e.g. 'Last Seen')
- Updated: Translations
### Breaking Changes
- Added system dependency: `libmosquitto1`. You might need to the updaterelease/updatebeta commandline twice **twice** to ensure proper installation, or run the setup curl command again.
Version 2025.2 (October 13th 2025)
- Added: EnergyDashboard, add option for (Outside) Temperature Sensor
- Added: Enever, Added Pure Energy, removed obsolete providers
- Added: Enphase, display a error is a IQ inverter has not been received for more then a day
- Added: Kodi, support for 'tvshow' type
- Added: MQTT-AD, added support for Climate action_template/state
- Added: MQTT-AD, added support for IR Blaster (Tuya iH-F8260)
- Added: MQTT-AD, support for disabling cover stop button
- Added: New Blinds type "Blinds + Stop"
- Added: MQTT-AD, handling battery low boolean sensors
- Added: MQTT-AD, allow publishing messages
- Added: P1 Chart, Report: Added Total Column (Usage-Return)
- Added: Rain Rate notification
- Added: Support for Humidity only graph
- Fixed: MQTT-AD, fix issue where brightness and RGB command topic are different
- Fixed: MQTT-AD, preserve select options when updating a device
- Fixed: Replace device now also copies 'Options' field
- Fixed: mDNS, possible crash when web server (non) SSL was disabled, or a invalid port was specified
- Fixed: Charts, after deleting a datapoint, the browser was not correctly refreshed
- Changed: Enphase query Token method
- Changed: mDNS, hostname now lowercase
- Changed: MQTT-AD, added support for color_temp_command_template
- Changed: TADO, Added fixed API endpoint
- Changed: TADO, Add poll interval option
- Changed: MQTT, not publishing devices that are not used
- Changed: Philips Hue now uses HTTPS to be compliant with new Hue Bridge
- Updated: Windows libraries
Version 2025.1 (May 5th 2025)
- Added: Battery level for Setpoint sensors
- Added: Charts, zoom option for 'Day' view
- Added: Data Pushers, added P1 actual value
- Added: EnOcean, now able to choose an optional base_id as sender_id instead of the chip_id (#6213)
- Added: Floorplan, Add support for stop button (Ventation blinds)
- Added: RFXCom, Updated SDK
- Added: Support for Honeywell Series 5/PIR
- Added: Text sensor, now posible to edit direct from the GUI
- Added: YouLess, added Water meter
- Added: More default icons
- Added: MQTT-AD, added support for Gas device class
- Added: MQTT-AD, added support for Text device class
- Added: MQTT-AD, better precision for kWh sensors
- Added: MQTT-AD, enabled 'device_automation' component to be compatible with upcoming (2025) Zigbee2MQTT version
- Added: MQTT-AD, handling single onoff color mode as a normal light/switch
- Added: MQTT-AD, power sensors for the Tuya SPM02
- Added: MQTT-AD, support sensors that report humidity but sends 'null' values
- Added: MQTT-AD, support for string field state objects
- Added: MQTT Push 'Retained' mode option
- Added: Rain devices can now be replacement with different types of rain devices
- Added: RFXCom, Falmec Support
- Added: RTL433, Support Generic Switch (Door) sensor
- Added: Tado, oauth2 support
- Changed: dzVents, possible to pass a Domoticz device ID in notify() through the extra parameter
- Changed: Energy Dashboard now also available for non-admin users
- Changed: Energy Dashboard, Text object clipping rectangle
- Changed: Google Firebase Cloud Messaging (FCM) alternative way to pass a Domoticz device ID through the extra field ('|Device=<devidx>')
- Changed: Internal webserver refactoring
- Changed: Netatmo Improved and automated login process for devices (to obtain client ID and Password with user selectable scopes)
- Changed: Removed Highcharts 'Download PNG/JPG/SVG' buttons until export server is fixed
- Changed: Using OpenStreetMap for Latitude/Longitude query in settings
- Changed: Hardware/User/Application/Variables setup page (update/delete/add buttons)
- Changed: Smoke Detectors are now able (internally) to use keep-alive timestamps
- Fixed: Application shutdown, solved possible crash (#6310)
- Fixed: AtagOne, fixed getting device_id and better debuginfo
- Fixed: Charts, dynamic title based on selected range
- Fixed: Computed Meter summation
- Fixed: Custom Icons, making sure they are valid and loaded OK
- Fixed: Floorplan, corrected open/close icon behaviour
- Fixed: Floorplan, now handles protected selectors
- Fixed: MQTT Push, making sure direct push is working
- Fixed: Possible mutex lock issue when logging
- Fixed: Pushers, corrected Gas value rounding
- Fixed: Python framework, invalid sValue when creating a General/kWh sensor
- Fixed: RFXCom 868 MHz Weather device
- Fixed: RFXCom, WS90 Weather device
- Removed: Thermosmart thermostat (Product no longer supported/available by the manufacturer)
- Removed: API: Old RType calls have been replaced
- Updated: HighCharts
- Updated: Self Signed Certificate (Valid till 2035)
- Updated: Translations
Version 2024.7 (July 13th 2024)
- Added: P1 Meter, Report, Header now also supports simple mode (No T1/T2/R1/R2 but just total)
- Fixed: Google Cloud Messaging (GCM/FCM) possible crash when notification needed to be send
Version 2024.6 (July 8th 2024)
- Fixed: EventSystem, LOG_FORCE now always logged
- Changed: Google Cloud Messaging (GCM) now uses the new v1 API of Google's Firebase Cloud Messaging (FCM)
Version 2024.5 (July 7th 2024)
- Added: Currency Symbol in Location Settings
- Added: dzVents, Added historical data helper 'med' to calculate the median value
- Added: dzVents, Improved logging
- Added: Energy Dashboard
- Added: Enever, Added Budget Energy and Eneco
- Added: Enphase, Live storage data
- Added: Enphase, Option for more Inverter details (ac/dc voltage, temperature, lastupdate)
- Added: Event Editor, Close/Close All menu dropdown
- Added: Event Editor, Storing/Loading opened events
- Added: Hour chart for P1 log
- Added: MQTT-AD Climate Fan Mode
- Added: MQTT-AD Climate Swing Mode
- Added: OpenWeatherMap, API 3.0 support
- Added: P1 Meter, option to specify view (low/high tariff or simple (dynamic contract))
- Added: Possible to query a range of device states via JSON
- Added: SolarEdge, polling Storage devices
- Fixed: Data Pushers, Forecast for Weather Station subtypes
- Fixed: Floorplan, better detection of switches
- Fixed: Hardware Setup, hiding extra parameters when selecting a python plugin
- Fixed: PythonEx framework, two notifications where send for switch type devices
- Fixed: Python framework, custom image loading
- Removed: Cereal Proxy (not used anymore)
- Changed: EvoHome, now making use of general logging system
- Changed: MQTT-AD, now also handles brightness scale number values as string
- Changed: SBFSpot, disabled error 28 error
- Changed: Selector switch now displays correct state in Data field (and devices overview)
Version 2024.4 (January 30th 2024)
- Fixed: cWebm, fixing high CPU load caused by time jumps
- Fixed: Memory leak in master/client setup
- Fixed: Python, device creation with options was not working correctly
- Fixed: Room Selection, switching to default room did not always work
- Fixed: Temperature compare chart for Fahrenheit
Version 2024.3 (January 24th 2024)
- Added: Domoticz Remote Server, added better error message if remote Domoticz device could not be created because accepting new devices is disabled under settings
- Added: InfluxDB Data push, add error message when return status code is forbidden
- Fixed: Alert sensor notification
- Fixed: Scripts/Lua/Blockly, setting a setPoint
Version 2024.2 (January 15th 2024)
- Added: Compare chart for most sensor types
- Added: Email, Splitting mime attachments over multiple lines
- Added: Notifications, Option to enable/disable
- Added: OpenZwave is back.... (No Support)
- Updated: Translations
- Changed: Comparing charts now uses correct Y-Axis label
- Changed: Internal, Last received is now handled differently, should solve possible hardware timeout issues
- Changed: MQTT, QoS is now set to 1 for all messages
- Fixed: MQTT-AD: Fan creation
- Fixed: Timer Plans, now also duplicates scenes
Version 2024.1 (January 1th 2024)
- Added: AlfenEve, added charging indication switch
- Added: AlfenEve, added option to specify charge current (or disable this)
- Added: AlfenEve, added Solar charging mode and settings
- Added: Counter report, now possible to remove data point (via shift click) from month chart
- Added: Devices overview, Setpoint log button
- Added: Enever, added support for providers Atoom Alliantie, Energie van Ons, Vandebron, Wout Energie
- Added: Enever, option to specify different providers for Gas/Electricity
- Added: Enever: added two user variables for average gas/electricity price
- Added: Enphase, counter helper to prevent turnover caused by powerloss, reboot or other envoy issues
- Added: Enphase, Initial support for Encharge battery status (needs more work)
- Added: Livesearch, included hardware name and optimized search algorithm to search all entered strings
- Added: Managed Counters, now possible to use negative values
- Added: Mitsubishi WF RAC Airconditioning
- Added: MQTT-AD, added support for climate min_temp/max_temp and temp_step
- Added: MQTT-AD, added support for number voc type
- Added: MQTT-AD, added support for Wh and Wm sensors
- Added: MQTT-AD, don't add new devices when this is disabled in the system
- Added: MQTT-AD: Fan percentage_command_template merged with preset_modes
- Added: MQTT, added option to specify devices to be published to MQTT
- Added: P1 Meter report, now possible to remove data point (via shift click) from month chart
- Added: Persistent Timers (will work in all timer plans)
- Added: SetPoint devices can now be configured with a custom unit, min/max and step size and have a custom icon
- Added: Support for Python 3.12
- Added: TeleInfo, added Tempo field
- Added: Temp/Hum/Baro or combination can be replaced by any other Temp/Hum/Baro or combination
- Added: Temperature report, now possible to remove data point (via shift click) from variation chart
- Changed: Floorplan, better display of current state for counter devices
- Changed: Floorplan, Sound Icon state (0 dB = Off else On)
- Changed: MQTT-AD: better device name generation
- Changed: Netatmo login, now using the API Token
- Fixed: EventSystem, corrected event of RGB/W/WW devices
- Fixed: Export to csv from Charts
- Fixed: MQTT-AD, RGB dimmers did not work correctly in scenes/timers
- Fixed: MQTT-AD: better handling of Push-On/Push-Off devices
- Fixed: MQTT-AD: better handling of Switch commands that needs a 'state' object
- Fixed: MQTT-AD: fixed brightness for HS lights
- Fixed: MQTT-AD: prevent blind from updating on non-numeric state changes
- Fixed: P1 Meter, buffer size increased because of large datagrams on some meters
- Fixed: Python memory leak
- Fixed: Sunset/rise timers now correctly set the time for next day
- Fixed: Switches defined with "Off Delay" are not set to "Off" at startup
- Removed: OpenZWave (Move to ZWaveJS-UI in combination with MQTT Auto Discovery)
- Removed: RFXCom, firmware update via web interface (use RFXFlash instead)
Version 2023.2 (July 21 2023)
- Added: 2FA/TOTP (Time-based One-Time Password) and HOTP (HMAC-based One-Time Password)
- Added: Alfen Eve Charger hardware
- Added: Allow a 'user' with shared devices to set it's own favorite devices
- Added: Custom pages, new Angular template examples
- Added: Custom pages, now need at least a user with Viewer rights
- Added: Enever hardware (Live Dutch Gas/Electricity prices for various providers)
- Added: Enphase, (V7 firmware) added support for enabling/disabling power production
- Added: Device reordering for Users with devices
- Added: Libre Hardware Monitor (Windows System monitor replacement for Open Hardware Monitor)
- Added: LUA: Added name state to devicechanged_ext table
- Added: RFXCom, Updated SDK
- Added: RTL433, Added support for volume_m3 meter
- Added: MQTT-AD, added support for number (config) types
- Added: P1 Meter, added Actual Usage/Delivery (total of L1 + L2 + L3)
- Added: P1 Meter, added calculated kWh devices per phase for usage and delivery
- Added: P1 Meter, new way of displaying returned energy
- Added: Users with admin rights and selected devices will now see only those devices
- Added: Users devices editor, option to remove all nodes/devices
- Added: Visual Crossing (replacement for Darksky/Forecast)
- Added: -nocache command line option (ask browser not to cache pages)
- Fixed: Blinds percentage timers
- Fixed: Chime structure check
- Fixed: Counter day charts, better hourly bars and usage
- Fixed: Device reordering when a room plan was selected
- Fixed: Forecast button now displays a working forecast
- Fixed: Install and update fixed for Raspberry Pi 4 with 32bit (armhf) userland
- Fixed: Floorplan Percentage icon with custom icon
- Fixed: Settings/Floorplan, Scene Names value was not saved
- Changed: API: Old RType calls have been replaced with normal calls
- Changed: MQTT-AD, better Unit calculation for scene/action devices
- Changed: Debuglogging: setting debugflags automatically sets loglevel DEBUG
- Updated: Plugin manager: ready for Python 3.11
- Removed: native GoodWe hardware (use the new GoodWe python plugin instead)
Version 2023.1 (February 14 2023)
- For a full overview visit: https://www.domoticz.com/wiki/Domoticz_versions_-_Commits for details
- Added: Accept JWT tokens as authentication and Authorization Bearer tokens (either from internal or external IAM service)
- Added: Blinds, added option to schedule 0%
- Added: dzVents, OpenURL PATCH method
- Added: Enphase, redesign and added battery readings (Supports firmware V7)
- Added: Internal OAuth2/OIDC IAM service supporting 4 different flows (OAuth2 (RFC6749), PKCE extension (RFC7636) and JWT Tokens (RFC7519))
- Added: MQTT, added support for Lock status
- Added: MQTT, added support for wildcards in discovery topics
- Added: MQTT, climate preset mode
- Added: New 'auth' debug flag to see IAM related messages
- Added: Now 'Applications' can be registered to get secure access to Domoticz, see 'setup' menu (standard DomoticzUI app is registered by default)
- Added: P1 Meter, added number of (long) power failures, voltage sags/swells
- Added: SECURITY_SETUP.md describing the new/improved security setup
- Added: Support for basic OpenID Connect Discovery ('https://<DOMOTICZURL>/.well-known/openid-configuration')
- Added: Search option in Switches/Scenes/Temperature/Utility and Weather tab
- Added: The Security realm can be configured using the 'vhostname' option (default domoticz.com)
- Added: Timer, Grid option for selected switches and thermostat. Big thanks to syrhus/labelette91580 and xbeaudouin
- Added: User device selection now displays type/subtype
- Changed: All security related setting are now in 1 settings tab
- Changed: By default prompt for login to only allow secure access
- Changed: Default 'admin' user is generated with standard password (see Users)
- Changed: Dimmer, restores to previous Set Level state after Off
- Changed: Implicit adding local IP to 'trusted networks' has been removed. Needs to be set explicitly for security reasons!
- Changed: Lots of security related code cleanup and improvements
- Changed: Menu option for 'Users' moved to main 'Setup' menu list
- Changed: MQTT timeout increased to 2 minutes
- Changed: The following proxy headers are now properly supported 'Forwarded' (RFC7239), 'X-Forwarder-For' and 'X-Real-IP' (in that order)
- Changed: The secure server (HTTPS) sends proper CORS and Security headers
- Fixed: Dashboard, scenes/lights hidden when this was disabled in user settings
- Fixed: Dashboard, mobile display did not display P1 meter current return value correctly
- Fixed: Dashboard, not showing disabled sections (temperature/weather/utility) when a device has multiple properties (for instance temperature + weather)
- Fixed: Highcharts dropdown menu z-index problem
- Fixed: Logout now returns 204 instead of 401
- Fixed: Waterflow sensor custom icon
- Fixed: Making sure Custom icons are valid (when someone manually edits the database)
- Fixed: Mobile display text objects with long lines
- Fixed: MQTT-AD Climate, fixed setpoint temperature display
- Fixed: Navigation bar display issues on some mobile devices
- Fixed: Setpoint popup when using protection
Version 2022.2 (November 5 2022)
- Added: Blockly, added 'Toggle' set command
- Added: Camera, camera Aspect Ratio
- Added: Commandline option '-weblog <weblogfile>' which creates Apache Combined Logformat logs containg all webrequests
- Added: Counters, support for larger counter values/usage
- Added: Dashboard, temperature Trend indication
- Added: Docker startup script (for instance to install additional packages)
- Added: EcoDevices, complete support for EcoDevices RT2 with firmware 3.00.xx
- Added: FritzBox, more statistics
- Added: Fritzbox, up/download statistics
- Added: MQTT Auto Discovery Protocol (Zigbee2MQTT/ Z-Wave JS UI)
- Added: P1 Meter, added Current L1/L2/L3 sensor for delivered
- Added: Philips Hue, support color change on some vendors bulb (like LIDL)
- Added: RFXCom, added internal support for Novy Mood, Level Sensor
- Added: SolarEdge, more sensors support
- Added: UVI device, added multiply field to widget
- Added: Xiaomi Gateway, new model for wired single key switch
- Updated: Mercedes EV, new Token URL (changed November 2022)
- Changed: All inverted Blinds types should not be used anymore, instead use the regular blinds and set the needed Reverse option
- Changed: Blinds working (see https://www.domoticz.com/wiki/Blinds)
- Changed: Energy devices have more precision
- Changed: kWh devices MAX Power per phase from 10000 to 18400 (230V*80A)
- Changed: P1 Meter, changed P1 Max W from 17250 (25A) to 55200 (80A)
- Changed: P1 Meter, speed up CRC calculation
- Changed: Webserver, removing AppCache, switching to service worker
- Fixed: Blockly, keeping last dim level when switching OFF, option for Close state
- Fixed: Counter incremental, counter in report (when used with meter offset)
- Fixed: Counter short-term log 1 hour offset
- Fixed: Counters, rounding (number of decimals) in GUI
- Fixed: Crash when secure webserver could not start and applying settings
- Fixed: Dimmer, better handling of last dimmer level when switching on/off
- Fixed: EvoHome, correct state/mode for EvoHome type
- Fixed: Floorplan, custom utility icons corrected in Floorplan
- Fixed: Floorplan, fixed blinds state icon/switching
- Fixed: Floorplan, making sure the Door Lock is switchable in the Floorplan
- Fixed: Floorplans, fixed issues with the displaying of some icons
- Fixed: Notification system, prevent double start
- Fixed: P1 Meter, fix for Sibelga smart meters that use a too long string as an identifier
- Fixed: RFXCom, corrected RFXCom solar sensor reading
- Fixed: Temperature, corrected chill calculation
- Fixed: WebGUI, making sure status does not wrap in mobile mode
- Removed: AppCache
- Deprecated: OpenZWave, please move to MQTT Auto Discovery and ZWave JS UI (Project stopped a long time ago!)
Version 2022.1 (January 31 2022)
- Added: Added Irrigation icon (also thanks to dbemowsk)
- Added: Build system, Added unit tests
- Added: Device support for Xiaomi Aqara Wireless Relay Controller (2 Channels) | LLKZMK11LM | relay.c2acn01
- Added: EnOcean, added more hardware support
- Added: EvoHome, Now supports the latest version of the OT Bridge messages
- Added: InfluxDB Data push, Influx 2.0 support
- Added: InfluxDB, Alert and Current devices data push to influxdb
- Added: MQTT Auto Discovery hardware (for Zigbee2MQTT/ZWaveJS2MQTT and others)
- Added: New widgets for Blinds (percentage) + Stop and Blinds (percentage) Inverted + Stop
- Added: Notifications, Extra security checks for HTTP actions
- Added: Notifications, Optional action to execute (http/script) per notificaton
- Added: Replace device for setpoint types
- Added: RTL433, add support for light_klx field (SendLuxSensor)
- Added: Scenes, Added 'Toggle' for switch actions
- Added: Teleinfo, Add support for EAIT/SINSTI/STGE (Linky standard mode)
- Added: Teleinfo. more permissive detection between historic/standard mode
- Added: The Things Network (TTN), Switch to new V3 stack
- Added: Webserver, Increased range of www/ssl port to 49151
- Added: Webserver, Improve webserver security
- Added: Webserver, Improved robustness of processing Settings update
- Added: Wind Meter, Angle rotation
- Updated: dzVents ( https://www.domoticz.com/wiki/DzVents:_next_generation_LUA_scripting )
- Updated: Denkovi, Improved http communication
- Updated: OpenZWave; Added support for Electric pulse sensor, Heatit ZM Single Relay ZW164 Indoor Siren 6+
- Updated: Python Plugin code and framework robustness
- Updated: RFXCom, Updated RFXCom SDK version to 9.31
- Updated: Translations
- Changed: default journal mode for windows now WAL (write ahead) add command line option to override
- Changed: Webserver, updated internals
- Fixed: Charts, changes, bug fixes, Computed kWh, usage calculation, zoom
- Fixed: EvoHome, Fix Web API crash when a new zone wass added
- Fixed: Notifications, Email notification fix jpeg inline attachment handling for K9 mail
- Fixed: OpenWeatherMap, Fix to resolve OWM City for default location. Used by OWM based forecast screen
Version 2021.1 (April 17 2021)
- Added: Added option to set loglevel per hardware device
- Added: Added optional parameter 'level' to addlogmessage JSON
- Added: AirconWithMe wifi module
- Added: Allow complete IPv6 address in local network setting
- Added: Allow custom icons for thermostat setpoints on floorplan
- Added: Allow custom icons for utility sensors
- Added: Build systems for linux based on github actions
- Added: Build system for docker
- Added: Counter meter type now supports a divider
- Added: Custom icons for RGB/W
- Added: GUI; Auto refresh feature for graphical logs
- Added: Hardware Monitor, Add clock speeds for Raspberry Pi
- Added: Honeywell, Add cooling control and Fahrenheit support
- Added: Internal light commands for Fan types Casafan, FT1211R, Falmec, LucciAirDCII, IthoECO and Novy
- Added: Inverted energy icon colors in report
- Added: Max. Watt settings for power devices (defaults to 6000W)
- Added: Mercedes Me API's (BYOCAR) as an (e)Vehicle supporting lock/open, odo, fuellevel
- Added: Meteorologisk (Meteorologisk institutt Norway) hardware support
- Added: P1 Meter, added support for Encryption
- Added: RFXCom Byron BY doorbell
- Added: RSSI support for Distance Sensor, Moisture Sensor, Watt Meter, kWh Meter
- Added: RTL433, Added RF Signal Strength in device tab based on reported SNR
- Added: RTL433, Added Pressure (PSI) type
- Added: RTL433, Added UV type
- Added: RTL433, Added X-10 Security support
- Added: RTL433, Switched to Json input
- Added: Teleinfo over TCP
- Added: Websocket notification for secondary/sub devices
- Added: ZWave, Legend and tooltips in Neighbors overview
- Updated: API/JSON: added API to delete daterange in history logs for one ID
- Updated: Blebox; use of the latest SwitchBox APIthe latest SwitchBox API
- Updated: dzVents; version 3.1.7 ( https://www.domoticz.com/wiki/DzVents:_next_generation_LUA_scripting )
- Updated: eVehicles; added ODO meter, unlock/open alert, max charge level to Tesla module
- Updated: eVehicles; added option to manual set API key
- Updated: EvoHome; decode, display and store hotwater setpoint
- Updated: GUI; Lay-out of notifications tab
- Updated: MQTT; added option to choose notification subsystem
- Updated: MQTT; added publish schemes: device index, device name and Added custom topics for in- and outbound messages
- Updated: OpenZWave; configuration files
- Updated: OpenZWave; Added Volatile Organic Compound sensor
- Updated: Openweathermap; use latest API and overall improvements
- Updated: OTGW; ready for firmware 5.0 and added domestic hot water flow rate
- Updated: Plugin manager: ready for Python 3.9+
- Updated: Plugwise; update of scene selector and added a migration process
- Updated: SolarEdge; add support for 3 Phase inverters
- Updated: Tado; add support for per-zone Open Window Detection
- Updated: TTNMQTT; Better GPS/Locations handling, distance calculation (Geofencing)
- Updated: TTNMQTT; Improved calculation and storage of signal-levels
- Updated: USBTin; Added support for Bloc 9
- Updated: Xiaomi; added new device types
- Changed: Devices, ZWave, each node as separate hardware for easy selection
- Changed: Differentiate kWh, kVah, kVar and kVarh
- Changed: During a database backup we now 'sleep' when the status != OK
- Changed: Energy devices allow negative values
- Changed: Use of Clang-Tidy rules to force ++ coding consistency
- Fixed: Annatherm Presets usage in Events. Please use the following percentages: 10% for Home, 20% for Away, 30% Night 40% for Vacation
- Fixed: Cache refresh issue on Safari
- Fixed: Changing a value from a Thermostat Setpoint via the JSON API/MQTT resulted in a double event trigger
- Fixed: Control for thermostat setpoints on floorplan
- Fixed: Compiling on systems with recent Python versions
- Fixed: Distance sensor was converting to miles instead of inches
- Fixed: Icon uploading from Linux clients/browsers
- Fixed: Floorplan uploading
- Fixed: Font in events editor on MacOS
- Fixed: Motherboard Sensors for big partitions
- Fixed: Possible crash in CEventSystem::SetEventTrigger
- Fixed: Preserve custom icon and description when switching device from used -> unused -> used
- Fixed: Prevent duplicate keys in preferences table
- Fixed: Pushtype selection mechanism
- Fixed: Sound device was incorrectly displayed on the Floorplan
- Fixed: Tado Zone/Home limit, setpoint mix-up
- Fixed: User field in device logging for switches, -text-devices and for groups/scenes
- Fixed: Windows installation respects configured log parameters
- Fixed: Zwave various issues
Version 2020.2 (April 26th 2020)
- Added: GUI: New Update controller code
- Added: GUI: Real-time updates of history-logs on device / scene changes
- Fixed: Battery level Real-time updates
- Fixed: Daikin wifi adaptor module
- Fixed: Delete device now propagates to all relevant tables
- Fixed: Possible security issue in the websocket layer
- Fixed: Unwanted RFY protection popup
- Updated: BuienRadar, Now possible to enter Station_ID or Latitude/Longitude
- Updated: Deprecated Google Cloud Messaging system(gcm) replaced by Firebase Cloud Messaging (fcm)
- Updated: dzVents version 3.0.2 ( https://www.domoticz.com/wiki/DzVents:_next_generation_LUA_scripting#History )
- Updated: OpenZWave configuration files
- Updated: OpenZWave library for windows
- Updated: MQTT add option to enable/disable loop prevention
- Changed: Removed external library dependencies from repository
- Updated: Translations
- Updated: TTNMQTT, improved handling CayenneLPP channels
Version 2020.1 (March 22th 2020)
- Added: BuienRadar
- Added: DarkSky CloudCover sensor
- Added: eVehicles framework, with Tesla as first hardware module
- Added: EventSystem, option in Settings to enable/disable URL call logging containing full URL path
- Added: Floorplan, add support for SVG
- Added: GUI, OpenZWave added Refresh Node Information button, styling
- Added: GUI: real-time updates on Devices tab (Websockets)
- Added: GUI: Sun/Rain icons
- Added: Hue, Add Support for Geo fence sensor, dimmer switches and Hue LCG002 GU10 spot
- Added: Octoprint hardware module
- Added: OpenZWave, JSON call to retrieve current battery levels for all nodes
- Added: OpenZWave, Support for Loudness sensor
- Added: OpenZWave, Support for Particulate_Mater_2_5 (Dust) sensor (ug/m3)
- Added: OpenZWave, Support for Smoke density (%)
- Added: OpenZWave, Support for Volatile_Organic_Compound (CO2, ppm)
- Added: OpenZWave, Support for Frequency sensor
- Added: Option to replace switch with another (same type)
- Added: Per User favorites (with viewer rights)
- Added: RFXCom Added datatimeout for external P1 sensor
- Added: RTL433, added Power (Watt) type
- Added: RTL433, added rainfall_mm type
- Added: Xiaomi, added Wireless Single Wall Switch
- Added: DisableLogAutoUpdate and AddDBLogEntry device options for counters, to be enabled from plugins
- Fixed: API, allow variabletype to be entered as text or integer in adduservariable and updateuservariable (#3320)
- Fixed: GUI, Choosing Icon for ARC type switches
- Fixed: GUI, Dashboard icon incremental counter (energy generated) not correct (#3231)
- Fixed: GUI, device table initial order column
- Fixed: GUI, Switch Log, date parsing in device log (#3206)
- Fixed: GUI, Floorplan, contact type can no longer be switch
- Fixed: GUI, Floorplan, custom image for Custom Sensor
- Fixed: GUI, Floorplan, fixed blind switching (#3267)
- Fixed: GUI, Weight Log now displays correct Unit (#3211)
- Fixed: GUI, OpenZWave Abort Include/Exclude button
- Fixed: Blockly, handling incorrect time field
- Fixed: Enery Generated report icon colors
- Fixed: Evohome Web for updated library
- Fixed: Google Notification System
- Fixed: PhilipsHue
- Fixed: SMS Notification System
- Fixed: Telegram notification when odd number of underscores in text
- Fixed: Youless, possible buffer overflow (#3261)
- Updated: Domoticz scripts now run directly in the background
- Updated: dzVents version 3.0.1 ( https://www.domoticz.com/wiki/DzVents:_next_generation_LUA_scripting#History )
- Updated: HighCharts
- Updated: Lua 5.3
- Updated: Mosquitto 1.68
- Updated: OpenZWave version 1.6
- Updated: P1: Add support for Belgian and Luxembourgian meters
- Updated: SQLite 3.31.1
- Updated: Translations
Version 4.10717 (May 9th 2019)
- Fixed: dzVents, Allowing no error message for HTTP calls (#3191)
- Fixed: EcoCompteur now uses the port specified in the hardware setup (#3184)
- Fixed: Log for Weight sensor (#3192)
- Fixed: issue with Session ID/Login
- Fixed: issue with slightly too large labels for the selector switch (#3187)
- Updated: dzVents (version 2.4.19, See dzVents/documentation/history.md)
Version 4.10658 (May 5th 2019)
- Added: [BleBox] Add support for airSensor and use the newest api for shutterBox
- Added: Alecto WS5500 Added (pTypeWeather)
- Added: Anna Thermostat Added ability to select presets on the Anna via selector switch. Added ability to update the state of the proximity switch in the Anna thermostat.
- Added: Better graph display for thermostat devices
- Added: Blinds T14/R15/T16 to lights.html
- Added: CayenneLPP, added initial support for LPP_UNIXTIME
- Added: Cereal Proxy
- Added: Custom icons for: Contact Door Contact Push On Push Off Door Lock Door Lock Inverted
- Added: Devices Tab, Scene/Group log icon added
- Added: EnOcean3 Added EPP D2-03-0A
- Added: EventSystem logging name when issuing thermostat SetPoint/Mode/Fan command
- Added: EvoHome radiator Valve Value to Pushers InfluxDB worker
- Added: Experimental support for WebSockets protocol
- Added: Hardware setup, support /dev/serial/by-id on Linux
- Added: InfluxDB Data push, support for Username/Password
- Added: InfluxDB: added option for remote proxy path
- Added: Logitech Media Server, added 'daphile' to the list of supported models
- Added: Make Telegram notification silent when priority is negative
- Added: Maverick 773 BBQ Temperature meter now using fixed ID as there is a new id generated between transmitter and controller every 15 minutes
- Added: New Aqara Wireless Mini Switch
- Added: New Hardware, The Things Network with CayenneLPP application(s)
- Added: On/Off chart to Lights log
- Added: OpenZWave, controller options for RetryTimeout, AssumeAwake and PerformReturnRoutes can now be set
- Added: OpenZWave, handling 'kVAh' unit
- Added: OpenZWave, support for Seismic Intensity sensor
- Added: Report for Counter Incremental devices
- Added: RFLink support for Blyss type (with high unit number)
- Added: RFXCom Added Noise Level for Pro firmware
- Added: RFXCom Lucci Fan DC
- Added: RFXCom ProXL implementation
- Added: RFXCom Supporting detection of Pro2, Pro XL1
- Added: RFXMeter, Option to specify meter divider
- Added: RFXMeter, Option to specify meter divider
- Added: RTL433, Add support for wind_speed wind_gust wind_direction
- Added: RTL433, added support for WGR800,PCR800
- Added: RTL433, Added Moisture sensor
- Added: RTL433, support for sensors reporting in Fahrenheit
- Added: Serial port for Freescale imx6 devices
- Added: Support Aqara Vibration Sensor (v1)
- Added: Support double click and long press feature for "Xiaomi Wireless Dual Wall Switch"
- Added: Support for NodeOn Soft Button TSB-2-1-01
- Added: Support for Westinghouse FAN
- Added: Taiwanese language (big thanks to berry lin!)
- Added: The Things Network, add GPS coordinate in Uservariable
- Added: Time/Sun set/rise to events frame
- Added: Timer Plan, duplicate option
- Added: Touch Device unction
- Added: Trend calculator (only for temperatures at the moment)
- Added: Using MapQuest Geo API in settings
- Added: Wind sensor without Temp and Chill
- Added: Xiaomi Gateway Aqara Cube report battery status
- Removed: LogitechMediaServer: HTTP timeout as a configurable option
- Fixed: [Satel Integra] fix for Inetgra256 and allow to change names
- Fixed: Anna to work with both firmwares
- Fixed: Arilux
- Fixed: Corrected water graph display
- Fixed: Correcting cost calculation for P1 Meter reports with return usage
- Fixed: Custom Icon upload message
- Fixed: DarkSky possible wind-chill callsign issue
- Fixed: Date parsing in Safari
- Fixed: Devices tab, removed unnecessary zwave node id as this is part of the ID already
- Fixed: Do not allow enters/returns in arguments (thanks to Fabio Carretto)
- Fixed: Doorcontact, On/Off delay where hidden
- Fixed: EvoHome hot water graphs
- Fixed: Evohome SYNC bug
- Fixed: Fan/RMP sensor
- Fixed: Fix for running as non-privileged user
- Fixed: Forecast button, displaying correct units
- Fixed: Honeywell thermostat fixes and improvements
- Fixed: I2C/BME280, Corrected oversampling
- Fixed: Increased heartbeat_check timeout to 5 minutes (process rebooted while doing a large database operation (migration of a sensor))
- Fixed: Kodi Notification setup display (hops)
- Fixed: Light Log Set 'Level' for RGB switches
- Fixed: MySensors IR switching
- Fixed: Next Protect, removing Heat/US checks
- Fixed: On/Off actions where incorrectly handled when setting the a RGB/W Color
- Fixed: P1 Smart Meter report chart, limit number of decimals in tooltip
- Fixed: Philips Hue, should work correctly now again
- Fixed: Possible SQL Injection Vulnerability (Thanks to Fabio Carretto!)
- Fixed: Prevent touch stcroll while using jQuery wheel color picker
- Fixed: Put correct node name in button titles in association group view
- Fixed: Python Plugin protocols now always use Parameters values for Username/Password during authentication rather than cached values
- Fixed: Rain device for DarkSky
- Fixed: Selector selected color
- Fixed: Shared server via mydomoticz bug.
- Fixed: Temp+Hum log button in devices view
- Fixed: Temperature sorting in report
- Fixed: timer where one part of the combination is even or odd week
- Fixed: Xiaomi Gateway Lum issue
- Fixed: Xiaomi, using correct (application default) way to update temp/hum/pressure
- Fixed: YouLess meter report
- Fixed: Various, see github, thanks to all who contributed!!
- Updated: dzVents (version 2.4.18, See dzVents/documentation/history.md)
- Updated: Event Editor
- Updated: New Gui pages/code for Utility/Weather/Temperature/Devices/Hardware Setup
- Updated: OZW configuration files
- Updated: Translations
- Updated: Weather Underground for use with the new API, option to specify Lat/Long as location
- Updated: Winddelen, using new API URL now, and including some more sensors
Version 4.9700 (June 23th 2018)
- Added: Blockly, now possible to directly add/update Text devices
- Added: Blockly: now possible to use expressions in debug messages like "My temperature is {{temperaturedevice[1234]}} degrees" (see http://www.domoticz.com/wiki/Events)
- Added: Camera: support for HTTPS url's
- Added: Comm5 SM-xxxx sensors support
- Added: Command line option '-noupdates' to stop using the internal update functionality Corrected 'Proxy' settings in the settings page (missing element closing tag)
- Added: Denkovi Smartden IP In (32) with LAN Interface
- Added: Disabling the option to downgrade Domoticz and use a newer database (because of database migrations)
- Added: Door Lock Inverted
- Added: EcoCompteur device
- Added: eHouse BMS / Home Automation System Integration
- Added: Forcing appcache to be refreshed on every new build
- Added: Functionality to allow Python Plugins to integrate with the Domoticz Security Panel
- Added: HardwareMonitor monitor own process memory usage
- Added: Honeywell Lyric thermostat
- Added: I2C: support for MCP23017 (16bit I2C GPIO expander)
- Added: Initial support for FS20
- Added: KMTronic TCP Temperature hardware
- Added: Langiage "Persian" (Big tankgs to "foademadi", "maziar.hafezi" and "reza.hadipour2002")
- Added: Language "Albanian" (Big thanks to "arbenik")
- Added: Language "Bosnian" (Big thanks to "Vedran")
- Added: Language "Catalan" (Big thanks to "delfisastre")
- Added: Logitech Media Server: Added option to remove unused nodes
- Added: RFXtrx Lucci Fan DC Added
- Added: MQTT Push message on scene/group switch event
- Added: MySensors: handling of I_INCLUSION_MODE message.
- Added: MySensors: support for SmartSleep option (gateway 2.x)
- Added: Netatmo: rssi support
- Added: New Managed meter type
- Added: OnkyoAVTCP: Add source selection, detection via NRIQSTN
- Added: OpenWeatherMap: cloud sensor
- Added: RFXCom: support for WIND7, RAIN7/RAIN8/RAIN9
- Added: Rtl_433: support for wind sensors, HH and LL humidity values
- Added: Selector Switch: correcting display for all UTF8 characters now
- Added: Styles folder can have its own images folder to overwrite stock images
- Added: Telegram notifications
- Added: Voltage/Current for Armbian Kernal 4.14+
- Added: Webserver: automatically reload SSL certificates and DH params3
- Added: Xiaomi Aqara Cube
- Added: ZWave node ID to log
- Removed: NMA Notification system (the service has stopped)
- Updated: Dzvents (version 2.4.6, See dzVents/documentation/history.md)
- Updated: OenZWave driver and configuration files
- Updated: Translation files
- Updated: Various internal libraries (C++/WWW)
- Changed: Floorplans now stored in database
- Changed: Improved color dimmer support
- Changed: Internal HUE/RGB/W/WW handling
- Changed: Philips Hue: internal code
- Fixed: Various, see github
Version 3.8153 (July 30th 2017)
- Fixed: Camera Editor, will now always refresh thumbnail in table
- Fixed: Devices could become invisible when a scene/group was added to the 'hidden devices' room plan with the same idx
- Fixed: JSon float/nan value, solved by upgrading JSonCPP
- Fixed: OZW, when a value is updated and the sensor did not exists before (for example a kWh sensor), it is created (saves a restart)
- Fixed: Daemonize compatible with Systemd forking type
- Changed: Blinds T5 till T13 new DeviceID generation, could cause new sensors
- Changed: Lessen rounding errors for computed energy
- Changed: Minimized On/Off/Script execution time
- Changed: SolarEdgeAPI, now only needs API Key
- Changed: Support symlinks for plugin and theme directories
- Changed: Switch type 'Door Lock' renamed to 'Door Contact'
- Changed: Temperature Only charts will not display the Humidity axis
- Changed: Wind Direction Graph, if sensor does not supports 'Gust', the 'Speed' value is used
- Changed: Updated OpenZWave (and configuration files)
- Added: Added a new parameter to disable the logging of event script triggers 'Script event triggered: ...'
- Added: AppLamp/LimitLess bridge V6.0 RGBW/RGBWW
- Added: Blinds T1 till T13 new supports the Stop button
- Added: Blockly/Lua Set SetPoint option
- Added: Devices, Log icon for Blinds
- Added: Dummy Hardware, Temp+Baro
- Added: Estonian Language support (big thanks to Kuido)
- Added: EvohomeWeb support (Thanks to Gordon3!)
- Added: General/Text sensor now able to be shared
- Added: I2C BME280 sensor (temp+hum+baro)
- Added: I2C for non arm systems
- Added: InfluxDB Data push
- Added: Latvian Language support (big thanks to Edgars)
- Added: Netatmo Home Coach support
- Added: Notification for Dummy Soil/Moisture sensor
- Added: Notification for Dummy Temp/Hum/Baro sensor
- Added: Notification for Alert Sensor via udevice JSON call
- Added: Onkyo AV Receiver (Thanks to dwmw2!)
- Added: Option to replace an Meter device
- Added: OZW, Added support for Atmospheric Pressure sensor
- Added: Python Plugin System
- Added: RFXtrx Lucci Fan Added
- Added: RFXtrx RFY2 protocol Added
- Added: RFXtrx Kangtai / Cotech Added
- Added: RTL433 (Thanks to Petri Ahone!)
- Added: SolarEdgeAPI, support for multiple inverters
- Added: Support for Ble Box hardware
- Added: Support for different usage/return costs for electricity
- Added: Support for Intergas InComfort LAN2RF Gateway
- Added: Support for Open Weather Map
- Added: Support for Open Web Net
- Added: Support for XiaomiGateway Gateway
- Added: Support for YeeLight
- Added: Support for Youless LS120
- Added: Switch type 'Door Lock'
- Added: SysFS GPIO (Thanks to hvbommel/jvandenbroek!)
- Added: Teleinfo : Added a switch indicating the current cost slot
- Added: Timer Plan editor
- Removed: Razberry ZWave handling method. Existing users need to migrate to OpenZWave
- Integrated dzVents 2.0.0: See dzVents/documentation/history.md
Version 3.5878 (November 10th 2016)
- Fixes and various improvements
Version 3.5837 (October 30th 2016)
- Fixed: Blockly/Lua, FOR and RANDOM are now again in minutes
- Changed: Shortlog charts for Temperature, Current and Smartlog are now using a spline
- Changed: Lua/Blockly, Notifications are now not blocking
Version 3.5834 (October 29th 2016)
- Added: TSL2561 illuminance I2C sensor (ldrolez)
- Added: AccuWeather support
- Added: Air Quality graph, Avarage and Previous month/year
- Added: Atag One Thermostat support
- Added: Blockly/Lua Camera device, to send camera snapshots with subject after xx seconds
- Added: Blockly upgraded to latest version (fixed and cleaned some code as well), this fixes problem with long sensor lists
- Added: Blockly, option to excecute a script in the DO statement
- Added: Custom Sensor
- Added: Denkovi Smartden with LAN Interface
- Added: Devices Tab, Log icon for Pressure
- Added: Dust Sensor (ug/m3)
- Added: Error Log, option to send error logs by email
- Added: Hourly rainrate for all rain sensors
- Added: MySensors, Added Acknowledge Timeout per Child sensor
- Added: MySensors, S_WATER_QUALITY, water PH
- Added: MySensors, S_WATER_QUALITY, water ORP redox potential in mV
- Added: MySensors, S_WATER_QUALITY, water electric conductivity S/cm (microSiemens/cm)
- Added: MySensors, S_POWER, Reactive power: volt-ampere reactive (var)
- Added: MySensors, S_POWER, Apparent power: volt-ampere (VA)
- Added: MySensors, S_POWER, Ratio of real power to apparent power: floating point value in the range [-1,..,1]
- Added: Nefit Easy, User Mode (as switch, On=Clock, Off=Manual), Flow Temperature, Hot Water Mode
- Added: Notifications, custom notification text helpers $name and $value
- Added: OpenZWave, Aeotec ZWave+ USB Controller, Enable/Disable blinking mode (@Schmart, Thanks for the magic codes!)
- Added: OpenZWave, Node table, now also displays Manufacturer, Product ID and Product Type
- Added: OpenZWave, When including Thermostat Setpoints, the zwave Label will be used as Name by default
- Added: RFXMeter, Option to specify meter offset
- Added: P1 Electra Report, Now also displaying the counters for Return
- Added: RFLink: Displaying firmware version in the hardware setup
- Added: RFXCom, Blinds T12 (Confexx)
- Added: S0 Meter TCP
- Changed: I2C sensors grouping (ldrolez)
- Changed: ETH-8020, ignoring return message as it always returns (no more Success message)
- Changed: EventSystem, weather/rain value is now the rain-rate
- Changed: Forecast.io to DarkSky
- Changed: OpenZWave, Better support for Thermostat Modes
- Changed: Stable ID generation for Philips Hue scenes (you need to delete all scenes and restart the hue hardware or domoticz)