From c70282c78659fec0d3ef4d3c743048fc2ff400f4 Mon Sep 17 00:00:00 2001 From: lumapu Date: Fri, 18 Aug 2023 00:50:09 +0200 Subject: [PATCH] * 0.7.36 release --- scripts/applyPatches.py | 3 ++ src/CHANGES.md | 68 +++++++++-------------------------------- src/defines.h | 2 +- 3 files changed, 18 insertions(+), 55 deletions(-) diff --git a/scripts/applyPatches.py b/scripts/applyPatches.py index d63fa1a1e..7250f5cb6 100644 --- a/scripts/applyPatches.py +++ b/scripts/applyPatches.py @@ -3,6 +3,9 @@ Import("env") def applyPatch(libName, patchFile): + if os.path.exists('.pio/libdeps/' + env['PIOENV'] + '/' + libName) == False: + return + os.chdir('.pio/libdeps/' + env['PIOENV'] + '/' + libName) process = subprocess.run(['git', 'apply', '--reverse', '--check', '../../../../' + patchFile], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) diff --git a/src/CHANGES.md b/src/CHANGES.md index c55031483..f788eef30 100644 --- a/src/CHANGES.md +++ b/src/CHANGES.md @@ -1,55 +1,15 @@ -# Development Changes - -## 0.7.35 - 2023-08-17 -* fixed timestamp for alarms send over MqTT -* auto-patch of `AsyncWebServer` #834, #1036 -* Update documentation in Git regarding `ESP8266` default NRF24 pin assignments - -## 0.7.34 - 2023-08-16 -* fixed timezone offset of alarms -* added `AC` and `DC` to `/live` #1098 +Changelog v0.7.36 + +* added Ethernet variant +* fix configuration of ePaper +* fix MI inverter support +* endpoints `/api/record/live`, `/api/record/alarm`, `/api/record/config`, `/api/record/info` are obsolete +* added `/api/inverter/alarm/[ID]` to read inverter alarms +* added Alarms in Live View as modal window +* added MqTT transmission of last 10 alarms +* updated documentation * changed `ESP8266` default NRF24 pin assignments (`D3` = `CE` and `D4` = `IRQ`) -* fixed background of modal window for bright color -* fix MI chrashes -* fix some lost debug messages -* merged PR #1095, MI fixes for 0.7.x versions -* fix scheduled reboot #1097 -* added vector graphic logo `/doc/logo.svg` -* merge PR #1093, improved Nokia5110 display layout - -## 0.7.33 - 2023-08-15 -* add alarms overview to WebGui #608 -* fix webGui total values #1084 - -## 0.7.32 - 2023-08-14 -* fix colors of live view #1091 - -## 0.7.31 - 2023-08-13 -* fixed docu #1085 -* changed active power limit MqTT messages to QOS2 #1072 -* improved alarm messages, added alarm-id to log #1089 -* trigger power limit read on next day (if inverter was offline meanwhile) -* disabled improv implementation to check if it is related to 'Schwuppdizitaet' -* changed live view to gray once inverter isn't available -* added inverter status to API -* changed sum of totals on WebGui depending on inverter status #1084 -* merge maximum power (AC and DC) from PR #1080 - -## 0.7.30 - 2023-08-10 -* attempt to improve speed / repsonse times (Schwuppdizitaet) #1075 - -## 0.7.29 - 2023-08-09 -* MqTT alarm data was never sent, fixed -* REST API: added alarm data -* REST API: made get record obsolete -* REST API: added power limit acknowledge `/api/inverter/id/[0-x]` #1072 - -## 0.7.28 - 2023-08-08 -* fix MI inverter support #1078 - -## 0.7.27 - 2023-08-08 -* added compile option for ethernet #886 -* fix ePaper configuration, missing `Busy`-Pin #1075 - -## 0.7.26 -* last Release +* changed live view to gray once inverter isn't available -> fast identify if inverters are online +* added information about maximum power (AC and DC) +* updated documentation +* several small fixes diff --git a/src/defines.h b/src/defines.h index 9d3f6247f..8b6c0dab7 100644 --- a/src/defines.h +++ b/src/defines.h @@ -13,7 +13,7 @@ //------------------------------------- #define VERSION_MAJOR 0 #define VERSION_MINOR 7 -#define VERSION_PATCH 34 +#define VERSION_PATCH 36 //------------------------------------- typedef struct {