Browse Source

0.6.9 release

pull/903/head
lumapu 2 years ago
parent
commit
7e1f1cece4
  1. 52
      src/CHANGES.md
  2. 2
      src/defines.h
  3. 4
      src/platformio.ini

52
src/CHANGES.md

@ -1,37 +1,15 @@
# Development Changes Changelog v0.6.9
## 0.6.8 - 2023-04-19 * LEDs are now configurable to show if 1st inverter is available and if MqTT is connected
* fix #892 `zeroYieldDay` loop was not applied to all channels * LED are configurable to active high or low
* improved MqTT
## 0.6.7 - 2023-04-13 * fix WiFi hostname during boot up
* merge PR #883, improved store of settings and javascript, thx @tastendruecker123 * improved login: only one session at the same time is possible
* support `.` and `,` as floating point seperator in setup #881 * fix UI: login screen for small displays; burger menu height; small modifications for import button (in setup)
* improved WiFi reconnect
## 0.6.6 - 2023-04-12 * optimized performance: browser caching was improved to reduce requests from ESP
* increased distance for `import` button in mobile view #879 * improved NRF24 communication for more stable data transmission
* changed `led_high_active` to `bool` #879 * added / fixed MqTT subscription `ctrl/power/[IV-ID]`
* improved save settings
## 0.6.5 - 2023-04-11 * improved UI in setup: now `.` and `,` are allowed as floating point seperator
* fix #845 MqTT subscription for `ctrl/power/[IV-ID]` was missing * fix zero yield day functionality
* merge PR #876, check JSON settings during read for existance
* **NOTE:** incompatible change: renamed `led_high_active` to `act_high`, maybe setting must be changed after update
* merge PR #861 do not send channel metric if channel is disabled
## 0.6.4 - 2023-04-06
* merge PR #846, improved NRF24 communication and MI, thx @beegee3 & @rejoe2
* merge PR #859, fix burger menu height, thx @ThomasPohl
## 0.6.3 - 2023-04-04
* fix login, password length was not checked #852
* merge PR #854 optimize browser caching, thx @tastendruecker123 #828
* fix WiFi reconnect not working #851
* updated issue templates #822
## 0.6.2 - 2023-04-04
* fix login from multiple clients #819
* fix login screen on small displays
## 0.6.1 - 2023-04-01
* merge LED fix - LED1 shows MqTT state, LED configureable active high/low #839
* only publish new inverter data #826
* potential fix of WiFi hostname during boot up #752

2
src/defines.h

@ -13,7 +13,7 @@
//------------------------------------- //-------------------------------------
#define VERSION_MAJOR 0 #define VERSION_MAJOR 0
#define VERSION_MINOR 6 #define VERSION_MINOR 6
#define VERSION_PATCH 8 #define VERSION_PATCH 9
//------------------------------------- //-------------------------------------
typedef struct { typedef struct {

4
src/platformio.ini

@ -38,9 +38,9 @@ lib_deps =
nrf24/RF24 @ ^1.4.5 nrf24/RF24 @ ^1.4.5
paulstoffregen/Time @ ^1.6.1 paulstoffregen/Time @ ^1.6.1
https://github.com/bertmelis/espMqttClient#v1.4.2 https://github.com/bertmelis/espMqttClient#v1.4.2
bblanchon/ArduinoJson @ ^6.21.0 bblanchon/ArduinoJson @ ^6.21.2
https://github.com/JChristensen/Timezone @ ^1.2.4 https://github.com/JChristensen/Timezone @ ^1.2.4
olikraus/U8g2 @ ^2.34.16 olikraus/U8g2 @ ^2.34.17
zinggjm/GxEPD2 @ ^1.5.0 zinggjm/GxEPD2 @ ^1.5.0

Loading…
Cancel
Save