Skip to content

Commit 904f72b

Browse files
committed
automatically updated release notes for mega-20200703
1 parent cb0ff5a commit 904f72b

File tree

1 file changed

+97
-0
lines changed

1 file changed

+97
-0
lines changed

dist/Release_notes.txt

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,100 @@
1+
-------------------------------------------------
2+
Changes in release mega-20200703 (since mega-20200608)
3+
-------------------------------------------------
4+
5+
Release date: vr 3 jul 2020 13:15:58 CEST
6+
7+
Florin (1):
8+
Disable Arduino OTA by default for ESP32
9+
10+
Gijs Noorlander (31):
11+
[ESP32] Only define FEATURE_ARDUINO_OTA in build config, not in .h files
12+
[Build] Disable test_beta_ESP8266_4M1M for now as it is too big
13+
[PIO] Use espressif8266@2.5.2 with fixed esp8266_stack_decoder
14+
[Controller] Memory optimization for sending SENSOR_TYPE_STRING
15+
[Controller] Check if controller host/IP is set before MQTT connect
16+
[MQTT] Add function to check MQTT queue full state
17+
[Cleanup] Free ControllerSettings as soon as possible to free memory
18+
[Cleanup] Try to use move constructor when adding to controller queue
19+
[Controller] Cache needed controller info to reduce memory usage
20+
[MQTT] More efficient MQTT copy incoming messages
21+
[Controller] Check if MakeControllerSettings failed due to low RAM
22+
[MQTT import] Check if MakeControllerSettings failed due to out of RAM
23+
Fix merge issue WiFiConnected changed to NetworkConnected
24+
[P001 Switch] Reduce stack usage on PLUGIN_WEBFORM_LOAD
25+
[Blynk] Reduce stack usage on Blynk_get
26+
[Web Frontend] Reduce stack usage on DST configuration
27+
[Python] Update package versions in requirements.txt
28+
addFormSelectorI2C Fix high stack usage (#3130)
29+
Minimize stack allocation in plugins
30+
[Build] Add LittleFS to lib_ignore
31+
[build] Exclude function from build for minimal OTA
32+
[C011] Generic HTTP Advanced Reduce stack usage (#3123)
33+
[Controller] Check success of controller settings allocation processing queue
34+
[HTTP controller] Memory optimization, prevent copy queue element
35+
[Build] Allow building using SD support for special debug builds
36+
[Frontend] Use stringProvider on some more strings
37+
[Domoticz HTTP] Make sending slightly more efficient
38+
[Web interface] Fix bug in I2C address selector
39+
[Rules] Fix rules handling of set 2...4 when using admin login (#3113)
40+
[Syslog] Fix high stack usage for Syslog (#3128)
41+
[Documentation] Add documentation on the log settings.
42+
43+
Grzegorz Dziubak (1):
44+
Update _P047_i2c-soil-moisture-sensor.ino
45+
46+
Michał Obrembski (10):
47+
Initial Ethernet support
48+
Added displaying Ethernet parameter in sysinfo and root page
49+
Added configuration of Eth Phy via Hardware settings web page
50+
Added Olimex ESP32-PoE board to DeviceModel and default settings
51+
Increased BUILD number to 20107
52+
Fix build on devices without Ethernet.
53+
Remove ifdefs for Ethernet in settings
54+
Renamed functions in ESPEasyEth, added eth* prefix
55+
Moved WifiGetHostname into more generic createRFCCompliantHostname
56+
Added basic implementation of Ethernet Static IP
57+
58+
Pavel Moravec (1):
59+
Fixed IP address range checking
60+
61+
Peter Kretz (24):
62+
atlas Sensor for pH an Redox (ORP) added
63+
- Atlas EZO new webserver added - Serial --> logging - No [TESTING]
64+
Extended the great work from Michał Obrembski mobrembski, so that: - mqtt works - WifiConnected works as EthernetConnected
65+
- Moved ETHEvent from ESPEasy.ino to ESPEasyEthEvent.ino - Corrected Hostname Setting - ESPEasy P2P works now with some minor changes for IP-Address Handling in Network.ino
66+
Change requested by TD-er review: clarification of build file https://github.com/letscontrolit/ESPEasy/pull/2962/files/8ba2bb88eadb98c4691cbb1f40c4d5466cb7b5b8
67+
ESP32 with Ethernet or Wifi, not both at the same time configurable via Hardware Page. - ESP P2P is working - Only ETH.beginPacket() with Standard Parameter is working at the moment, configuration will follow. - Network.in not cpp/h files but this will be changed in future - Some TODO: PKR: comments will be removed in the future, too
68+
Removed some comments Build now working with HAS_ETHERNET not defined
69+
- Ethernet Commands - remove useless comments - ETH.config moved after ETH.begin - Added note: Be aware with ESPEasyP2P Network, since IP Address will change. There could be conflicts. - Ethernet JSON - Ethernet Variables
70+
- ETHEvents moved to WifiEvents, because they are the same type
71+
ESPEasyEth.ino --> ESPEasyEth.cpp/h Network.ino --> Network.cpp/h
72+
ESPEasyWiFi_credentials.ino --> cpp/h ESPEasyWiFi_ProcessEvent.ino --> cpp/h ESPEasyWiFi.ino --> cpp/h
73+
Network.h/cpp --> ESPEasyNetwork.h/cpp
74+
removed upload flags
75+
- New events: ETHERNET#Connected and ETHERNET#Disconnected
76+
Fixed https://travis-ci.org/github/letscontrolit/ESPEasy/builds/680698472 ci build error
77+
Fixed ci compile bug https://travis-ci.org/github/letscontrolit/ESPEasy/builds/680724129
78+
Fixed bug reported by mobremski
79+
- UDP / ESPEasyP2P now works for ETHERNET - Hostname Handling refactored for better overview: - String NetworkGetHostNameFromSettings() returns Settings.getHostname() - String NetworkCreateRFCCompliantHostname() creates a RFCcompliant Hostname from Settings.cpp - String NetworkGetHostname() returns the Hostname prevoiusly set in ETH or Wifi dependong on Mode - MacAddress Handling refactored - String NetworkMacAddress() returns the Mac addres of ETH or Wifi depending on Mode - String WifiSoftAPmacAddress() returns WiFi.softAPmacAddress(mac) as String
80+
This String function is not needed, because there is a ETH.macAddress() which returns a String. I changed it to the byte version of the function and now uint8_t * NetworkMacAddressAsBytes(uint8_t* mac) returns either this in Ethernet mode or WiFi.macAddress(mac) in Wifi mode.
81+
Check changed as requested by TD-er
82+
addFormNote(F("Be aware with ESPEasyP2P Network, since IP Address will change. There could be conflicts.")); not used anymore because P2P UDP works good
83+
removede personal upload flags
84+
_P124_Atlas_EZO_pH.ino and _P222_Atlas_EZO_ORP.ino deleted since ther are not in ESPEasy but in Playground. There is another Issu, to put them in ESPEasy mega
85+
- Error in Network Name fpr WiFi fixed - logging improvements
86+
87+
bccrew (1):
88+
Change FormSubHeader to clarify difference between IP settings of LAN or WiFi
89+
90+
tonhuisman (5):
91+
[P064] Gesture - APDS-9960 plugin: Added switching plugin mode and settings to fine-tune without recompiling source [APDS-9960 library] Added extensions and applied fixes from original Github project (including not merged yet improvements) [P064] Added/updated documentation for Gesture - APDS-9960 plugin [Documentation] Updated footer copyright notice to show 2018..2020
92+
[P064] Made code-readability and other improvements as TD-er suggested, fixed a swapped argument bug
93+
[Tasks] Call PLUGIN_INIT/PLUGIN_EXIT using TaskEnable/TaskDisable from rules
94+
[Transformation] Add P/p (Password display)
95+
[Transformation] Optimizations for Password transformation
96+
97+
198
-------------------------------------------------
299
Changes in release mega-20200608 (since mega-20200515)
3100
-------------------------------------------------

0 commit comments

Comments
 (0)