mirror of https://github.com/lumapu/ahoy.git
Frank
2 years ago
24 changed files with 312 additions and 371 deletions
@ -0,0 +1,45 @@ |
|||
{ |
|||
"folders": [ |
|||
{ |
|||
"path": "." |
|||
}, |
|||
{ |
|||
"path": "src" |
|||
} |
|||
], |
|||
"settings": { |
|||
"files.associations": { |
|||
"algorithm": "cpp", |
|||
"array": "cpp", |
|||
"chrono": "cpp", |
|||
"deque": "cpp", |
|||
"format": "cpp", |
|||
"forward_list": "cpp", |
|||
"functional": "cpp", |
|||
"initializer_list": "cpp", |
|||
"iterator": "cpp", |
|||
"list": "cpp", |
|||
"memory": "cpp", |
|||
"queue": "cpp", |
|||
"random": "cpp", |
|||
"regex": "cpp", |
|||
"vector": "cpp", |
|||
"xhash": "cpp", |
|||
"xlocmon": "cpp", |
|||
"xlocnum": "cpp", |
|||
"xmemory": "cpp", |
|||
"xstring": "cpp", |
|||
"xtree": "cpp", |
|||
"xutility": "cpp", |
|||
"*.tcc": "cpp", |
|||
"string": "cpp", |
|||
"unordered_map": "cpp", |
|||
"unordered_set": "cpp", |
|||
"string_view": "cpp", |
|||
"sstream": "cpp", |
|||
"istream": "cpp", |
|||
"ostream": "cpp" |
|||
}, |
|||
"editor.formatOnSave": false |
|||
} |
|||
} |
@ -1,33 +1,16 @@ |
|||
Changelog v0.6.0 |
|||
# Development Changes |
|||
|
|||
## General |
|||
* improved night time calculation time to 1 minute after last communication pause #515 |
|||
* refactored code for better readability |
|||
* improved Hoymiles commuinication (retransmits, immediate power limit transmission, timing at all) |
|||
* renamed firmware binaries |
|||
* add login / logout to menu |
|||
* add display support for `SH1106`, `SSD1306`, `Nokia` and `ePaper 1.54"` (ESP32 only) |
|||
* add yield total correction - move your yield to a new inverter or correct an already used inverter |
|||
* added import / export feature |
|||
* added `Prometheus` endpoints |
|||
* improved wifi connection and stability (connect to strongest AP) |
|||
* addded Hoymiles alarm IDs to log |
|||
* improved `System` information page (eg. radio statitistics) |
|||
* improved UI (repsonsive design, (optional) dark mode) |
|||
* improved system stability (reduced `heap-fragmentation`, don't break settings on failure) #644, #645 |
|||
* added support for 2nd generation of Hoymiles inverters, MI series |
|||
* improved JSON API for more stable WebUI |
|||
* added option to disable input display in `/live` (`max-power` has to be set to `0`) |
|||
* updated documentation |
|||
* improved settings on ESP32 devices while setting SPI pins (for `NRF24` radio) |
|||
## 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 |
|||
|
|||
## MqTT |
|||
* added `comm_disabled` #529 |
|||
* added fixed interval option #542, #523 |
|||
* improved communication, only required publishes |
|||
* improved retained flags |
|||
* added `set_power_limit` acknowledge MQTT publish #553 |
|||
* added feature to reset values on midnight, communication pause or if the inverters are not available |
|||
* partially added Hoymiles alarm ID |
|||
* improved autodiscover (added total values on multi-inverter setup) |
|||
* improved `clientID` a part of the MAC address is added to have an unique name |
|||
## 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 |
|||
|
@ -1,5 +1,5 @@ |
|||
<link rel="stylesheet" type="text/css" href="colors.css"/> |
|||
<link rel="stylesheet" type="text/css" href="style.css"/> |
|||
<link rel="stylesheet" type="text/css" href="style.css?v={#VERSION}"/> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|||
<meta charset="UTF-8"> |
|||
<script type="text/javascript" src="api.js"></script> |
|||
<script type="text/javascript" src="api.js?v={#VERSION}"></script> |
|||
<link rel="stylesheet" type="text/css" href="colors.css?v={#VERSION}"/> |
Loading…
Reference in new issue