From cab5cb4753b93c4ada338d83e02d852a512ec221 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Wed, 4 May 2022 15:34:26 +0200 Subject: [PATCH] Update changelogs --- CHANGELOG.md | 7 +++++-- RELEASENOTES.md | 5 +++++ tasmota/settings.h | 2 +- tools/decode-status.py | 5 +++-- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index deb2e5f28..b93a3270d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,10 @@ All notable changes to this project will be documented in this file. - Command ``EnergyExportActive`` to (p)reset energy export active for supported devices. Currently ADE7880 only (#13515) - Sonoff SPM delayed SetPowerOnState (#13447) - Command ``SetOption139 0/1`` to switch between pressure unit "mmHg" (0) or "inHg" (1) when ``SO24 1`` (#15350) -- Support for flowrate meters like YF-DN50 and similary +- Support for flowrate meters like YF-DN50 and similary (#15474) +- Command ``IfxRp ""|`` adds optional InfluxDb Retention Policy (#15513) +- Command ``SetOption140 0/1`` to switch between MQTT Clean Session (0) or Persistent Session (1) (#15530) +- ESP32 Preparations for Tasmota SafeMode with changed partition scheme allowing larger binaries ### Changed @@ -21,7 +24,7 @@ All notable changes to this project will be documented in this file. - BL09xx negative power presentation (#15374) ### Removed - +- Arduino IDE support ## [Released] diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 3bd937aae..72dabd7ea 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -107,10 +107,14 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo ## Changelog v11.1.0.1 ### Added - Command ``SetOption139 0/1`` to switch between pressure unit "mmHg" (0) or "inHg" (1) when ``SO24 1`` [#15350](https://github.com/arendst/Tasmota/issues/15350) +- Command ``SetOption140 0/1`` to switch between MQTT Clean Session (0) or Persistent Session (1) [#15530](https://github.com/arendst/Tasmota/issues/15530) - Command ``EnergyExportActive`` to (p)reset energy export active for supported devices. Currently ADE7880 only [#13515](https://github.com/arendst/Tasmota/issues/13515) +- Command ``IfxRp ""|`` adds optional InfluxDb Retention Policy [#15513](https://github.com/arendst/Tasmota/issues/15513) - Support for Sonoff MS01 soil moisture sensor [#15335](https://github.com/arendst/Tasmota/issues/15335) - Support for daisy chaining MAX7219 displays [#15345](https://github.com/arendst/Tasmota/issues/15345) - Sonoff SPM delayed SetPowerOnState [#13447](https://github.com/arendst/Tasmota/issues/13447) +- Support for flowrate meters like YF-DN50 and similary [#15474](https://github.com/arendst/Tasmota/issues/15474) +- ESP32 Preparations for Tasmota SafeMode with changed partition scheme allowing larger binaries ### Breaking Changed @@ -122,3 +126,4 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo - BL09xx negative power presentation [#15374](https://github.com/arendst/Tasmota/issues/15374) ### Removed +- Arduino IDE support diff --git a/tasmota/settings.h b/tasmota/settings.h index 35c6b71d5..07792022a 100644 --- a/tasmota/settings.h +++ b/tasmota/settings.h @@ -169,7 +169,7 @@ typedef union { // Restricted by MISRA-C Rule 18.4 bu uint32_t tuya_exclude_from_mqtt : 1; // bit 23 (v11.0.0.5) - SetOption137 - (Tuya) When Set, avoid the (MQTT-) publish of defined Tuya CMDs (see xdrv_16_tuyamcu.ino) if SetOption66 is active uint32_t gui_table_align : 1; // bit 24 (v11.0.0.7) - SetOption138 - (GUI) Align (energy) table values left (0) or right (1) uint32_t mm_vs_inch : 1; // bit 25 (v11.1.0.1) - SetOption139 - (Pressure) Switch between mmHg (0) or inHg (1) when SO24 1 - uint32_t mqtt_persistent : 1; // bit 26 (v11.1.0.1) - SetOption140 - 0=MQTT clean session (default), 1=MQTT persistent session + uint32_t mqtt_persistent : 1; // bit 26 (v11.1.0.1) - SetOption140 - (MQTT) MQTT clean session (0 = default) or persistent session (1) uint32_t spare27 : 1; // bit 27 uint32_t spare28 : 1; // bit 28 uint32_t spare29 : 1; // bit 29 diff --git a/tools/decode-status.py b/tools/decode-status.py index 3227e8a39..a86e10eeb 100755 --- a/tools/decode-status.py +++ b/tools/decode-status.py @@ -194,7 +194,8 @@ a_setoption = [[ "(Tuya) When Set, avoid the (mqtt-) publish of Tuya MCU Heartbeat response if SetOption66 is active", "(GUI) Align (energy) table values left (0) or right (1)", "(Pressure) Switch between mmHg (0) or inHg (1) when SO24 1", - "","", + "(MQTT) MQTT clean session (0 = default) or persistent session (1)", + "", "","","","" ]] @@ -268,7 +269,7 @@ a_features = [[ "USE_HRG15","USE_VINDRIKTNING","USE_SCD40","USE_HM330X", "USE_HDC2010","USE_LSC_MCSL","USE_SONOFF_SPM","USE_SHIFT595", "USE_SDM230","USE_CM110x","USE_BL6523","USE_ADE7880", - "USE_PCF85363","USE_DS3502","USE_IMPROV","", + "USE_PCF85363","USE_DS3502","USE_IMPROV","USE_FLOWRATEMETER", "","","","" ]]