Skip to content

Commit a699ee0

Browse files
committed
before update 0.9.2
1 parent 45997a8 commit a699ee0

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Looking for the documentation, go here (work in progress): <br> https://github.
5757

5858
| Version | Release notes |
5959
|-|-|
60-
| 0.9.2 | Bugfix: Alternating values on status bits (thanks @binsentsu)<br>Bugfix: Blue blinking leds of nodemcu should be off using WebUI (thanks @fsfikke)|New feature: Reset wifi button in webUI (thanks @DaveDavenport)<br>Improved: More UI improvements (thanks @rlagerweij)<br>Improved: Serial handling improvements<br>Fixed: Codecleanup (removal of errorprone string functions), removal of potential bufferoverflow, removed all warnings in code compile (thanks @DaveDavenport)<br>Improved: Reboot logging, now includes external watchdog reason.
60+
| 0.9.2 | New feature: Just In Time Home Assistant Auto Discovery topics. Now only sensors that actually have msgids from OpenTherm are send to Home Assistant. (thanks to @rlagerweij)<br>Improvement: Climate Entity (Home Assistant) got improved to detect Thermostat availablity (by @sergantd)<br>Bugfix: Alternating values on status bits (thanks @binsentsu)<br>Bugfix: Blue blinking leds of nodemcu should be off using WebUI (thanks @fsfikke)|New feature: Reset wifi button in webUI (thanks @DaveDavenport)<br>Improved: More UI improvements (thanks @rlagerweij)<br>Improved: Serial handling improvements<br>Fixed: Codecleanup (removal of errorprone string functions), removal of potential bufferoverflow, removed all warnings in code compile (thanks @DaveDavenport)<br>Improved: Reboot logging, now includes external watchdog reason.|
6161
| 0.9.1 | New feature: Added new set commands topics for most OTGW features, read more on the wiki<br>New feature: Reset bootlog to filesystem, for debug purposes<br>Improved: Stability, due to removal of ESP based auto-wifi-reconnect<br>Improved: the OT decoding algoritm, so values on MQTT, REST and WebUI now should be more reliable<br>Added: Override decoding of B and T when followed by A and R of the same MsgID, because this means OTGW overrides messages<br>Improved: No messages on versions when not connected to internet<br>Added: Proper msgid 100: remote override room setpoint flags decoding<br>Added: Missing some msgids to OT decoding|
6262
| 0.9.0 | New: Adding time setup commands for Thermostat<br>Fixed: Improved OT status (incl. VH and Solar) message decoding<br>Fixed: Statusbit decoding in webUI<br>Improved: Better wifi auto-reconnect (ESP based)<BR>Improved: Wifi reconnection logic, reboot if 15 min not connected<br>New: NTP hostname setting in webUI<br>Changed: removed ezTime NTP library, moved to ConfigTime NTP and AceTime|
6363
| 0.8.6 | Improving wifi reconnect (without reboot)<br>Fix: Double definition to a HA sensor<br>Adding: OEMDiagnosticCode topic to HA Discovery<br>Bugfix: UI now labels OEM DiagnosticCode correctly, and added the real OEM Fault code|

version.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
#define _VERSION_MAJOR 0
33
#define _VERSION_MINOR 9
44
#define _VERSION_PATCH 2
5-
#define _VERSION_BUILD 1596
6-
#define _VERSION_GITHASH "e4a642c"
7-
#define _VERSION_PRERELEASE beta
5+
#define _VERSION_BUILD 1597
6+
#define _VERSION_GITHASH "45997a8"
7+
//#define _VERSION_PRERELEASE beta //uncomment to define prerelease labels: alpha - beta - rc
88
#define _VERSION_DATE "08-01-2022"
9-
#define _VERSION_TIME "12:32:33"
9+
#define _VERSION_TIME "12:46:16"
1010
#define _SEMVER_CORE "0.9.2"
11-
#define _SEMVER_BUILD "0.9.2+1596"
12-
#define _SEMVER_GITHASH "0.9.2+e4a642c"
13-
#define _SEMVER_FULL "0.9.2-beta+e4a642c"
14-
#define _SEMVER_NOBUILD "0.9.2-beta (08-01-2022)"
15-
#define _VERSION "0.9.2-beta+e4a642c (08-01-2022)"
11+
#define _SEMVER_BUILD "0.9.2+1597"
12+
#define _SEMVER_GITHASH "0.9.2+45997a8"
13+
#define _SEMVER_FULL "0.9.2+45997a8"
14+
#define _SEMVER_NOBUILD "0.9.2 (08-01-2022)"
15+
#define _VERSION "0.9.2+45997a8 (08-01-2022)"
1616
//The version information is created automatically, more information here: https://github.com/rvdbreemen/autoinc-semver

0 commit comments

Comments
 (0)