From 30ce3f1dc31735227a64fe1e4d2b92aafc1c5302 Mon Sep 17 00:00:00 2001 From: proddy Date: Sun, 8 Aug 2021 14:45:24 +0200 Subject: [PATCH] 3.2.1 --- CHANGELOG.md | 19 +++++++++++++++++++ CHANGELOG_LATEST.md | 10 ---------- src/devices/boiler.cpp | 1 - src/version.h | 2 +- 4 files changed, 20 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84360649b..85af0b094 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +# [3.2.1] August 8 2021 + +## Added + +- json body in API can now take device, name, cmd, hc and id +- added example of how to use API directly to control values from Home Assistant +- API calls are shown in debug log (For troubleshooting) + +## Fixed + +- fixed issue with Home Assistant entity naming where boiler's ww was duplicated in entity name +- fixed issue where wwSetTemp was written too instead of wwSelTemp + +## Changed + +- fixed case on mqtt names, like 'wwtankmiddletemp' +- renamed Product ID to 'EMS Product ID' in Home Assistant +- removed brackets around tags, e.g. (hc1) selected room temperature" is now just "hc1 selected room temperature" + # [3.2.0] August 6 2021 ## Added diff --git a/CHANGELOG_LATEST.md b/CHANGELOG_LATEST.md index 6eebf0589..41bf59233 100644 --- a/CHANGELOG_LATEST.md +++ b/CHANGELOG_LATEST.md @@ -2,16 +2,6 @@ ## Added -- json body in API can now take device, name, cmd, hc and id -- added example of how to use API directly to control values from Home Assistant -- API calls are shown in debug log (For troubleshooting) - ## Fixed -- fixed issue with Home Assistant entity naming where boiler's ww was duplicated in entity name - ## Changed - -- fixed case on mqtt names, like 'wwtankmiddletemp' -- renamed Product ID to 'EMS Product ID' in Home Assistant -- removed brackets around tags, e.g. (hc1) selected room temperature" is now just "hc1 selected room temperature" diff --git a/src/devices/boiler.cpp b/src/devices/boiler.cpp index ffdbc9a14..40125656a 100644 --- a/src/devices/boiler.cpp +++ b/src/devices/boiler.cpp @@ -764,7 +764,6 @@ void Boiler::process_UBAMaintenanceData(std::shared_ptr telegram } // Set the warm water temperature 0x33/0x35 or 0xEA -// TODO bool Boiler::set_warmwater_temp(const char * value, const int8_t id) { int v = 0; if (!Helpers::value2number(value, v)) { diff --git a/src/version.h b/src/version.h index db7ef603e..1de096915 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define EMSESP_APP_VERSION "3.2.1b0" +#define EMSESP_APP_VERSION "3.2.2"