diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8856242..598ac8c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,8 +14,8 @@ If you don't find anything, please [open a new issue](https://github.com/khoih-p Please ensure to specify the following: -* Arduino IDE version (e.g. 1.8.15) or Platform.io version -* Board Core Version (e.g. ESP32 core v1.0.6 0r v2.0.0-rc1) +* Arduino IDE version (e.g. 1.8.16) or Platform.io version +* Board Core Version (e.g. ESP32 core v2.0.0) * Contextual information (e.g. what you were trying to achieve) * Simplest possible steps to reproduce * Anything that might be relevant in your opinion, such as: @@ -26,11 +26,11 @@ Please ensure to specify the following: ### Example ``` -Arduino IDE version: 1.8.15 +Arduino IDE version: 1.8.16 WT32_ETH01 board -ESP32 core v1.0.6 +ESP32 core v2.0.0 OS: Ubuntu 20.04 LTS -Linux xy-Inspiron-3593 5.4.0-80-generic #90-Ubuntu SMP Fri Jul 9 22:49:44 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux +Linux xy-Inspiron-3593 5.4.0-86-generic #97-Ubuntu SMP Fri Sep 17 19:19:40 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux Context: I encountered a crash while trying to use the Timer Interrupt. diff --git a/README.md b/README.md index 987e0ac..a58ca8e 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,7 @@ * [Features](#features) * [Why Async is better](#why-async-is-better) * [Currently supported Boards](#currently-supported-boards) -* [Changelog](#changelog) - * [Releases v1.2.4](#releases-v124) - * [Releases v1.2.3](#releases-v123) +* [Changelog](changelog.md) * [Prerequisites](#prerequisites) * [Installation](#installation) * [Use Arduino Library Manager](#use-arduino-library-manager) @@ -86,7 +84,6 @@ * [1. AsyncMultiWebServer_WT32_ETH01 on WT32-ETH01 with ETH_PHY_LAN8720](#1-asyncmultiwebserver_wt32_eth01-on-wt32-eth01-with-eth_phy_lan8720) * [Debug](#debug) * [Troubleshooting](#troubleshooting) -* [Releases](#releases) * [Issues](#issues) * [TO DO](#to-do) * [DONE](#done) @@ -134,30 +131,12 @@ to apply the better and faster **asynchronous** feature of the **powerful** [ESP --- --- -## Changelog - -#### Releases v1.2.4 - -1. Fix library compile error with ESP32 core v2.0.0-rc1+. Check [Fix compiler error for ESP32-C3 and mbed TLS v2.7.0+ #970](https://github.com/me-no-dev/ESPAsyncWebServer/pull/970) -2. Verify compatibility with new ESP32 core v2.0.0-rc1+ - - -#### Releases v1.2.3 - -1. Initial coding to port [ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer) to WT32_ETH01 boards using builtin LAN8720A Ethernet. -2. Add more examples. -3. Add debugging features. -4. Bump up to v1.2.3 to sync with [ESPAsyncWebServer v1.2.3](https://github.com/me-no-dev/ESPAsyncWebServer). - ---- ---- ## Prerequisites - 1. [`Arduino IDE 1.8.15+` for Arduino](https://www.arduino.cc/en/Main/Software) - 2. [`ESP32 Core 1.0.6+`](https://github.com/espressif/arduino-esp32) for ESP32-based boards. [![Latest release](https://img.shields.io/github/release/espressif/arduino-esp32.svg)](https://github.com/espressif/arduino-esp32/releases/latest/) - 3. [`ESP32 Core 2.0.0-rc1+`](https://github.com/espressif/arduino-esp32) for ESP32-based boards to use experimental ESP32 core v2.0.0-rc1. - 4. [`AsyncTCP library v1.1.1+`](https://github.com/me-no-dev/AsyncTCP). + 1. [`Arduino IDE 1.8.16+`](https://www.arduino.cc/en/Main/Software) + 2. [`ESP32 Core 2.0.0+`](https://github.com/espressif/arduino-esp32) for ESP32-based boards. [![Latest release](https://img.shields.io/github/release/espressif/arduino-esp32.svg)](https://github.com/espressif/arduino-esp32/releases/latest/) + 3. [`AsyncTCP library v1.1.1+`](https://github.com/me-no-dev/AsyncTCP). --- @@ -1514,7 +1493,7 @@ Following are debug terminal output and screen shots when running example [Async ``` Starting AsyncMultiWebServer_WT32_ETH01 on WT32-ETH01 with ETH_PHY_LAN8720 -AsyncWebServer_WT32_ETH01 v1.2.4 +AsyncWebServer_WT32_ETH01 v1.2.5 ETH MAC: A8:03:2A:A1:61:73, IPv4: 192.168.2.232 FULL_DUPLEX, 100Mbps @@ -1588,37 +1567,6 @@ Submit issues to: [AsyncWebServer_WT32_ETH01 issues](https://github.com/khoih-pr --- --- -## Releases - -#### Releases v1.2.4 - -1. Fix library compile error with ESP32 core v2.0.0-rc1+. Check [Fix compiler error for ESP32-C3 and mbed TLS v2.7.0+ #970](https://github.com/me-no-dev/ESPAsyncWebServer/pull/970) -2. Verify compatibility with new ESP32 core v2.0.0-rc1+ - -#### Releases v1.2.3 - -1. Initial coding to port [ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer) to WT32_ETH01 boards using builtin LAN8720A Ethernet. -2. Add more examples. -3. Add debugging features. -4. Bump up to v1.2.3 to sync with [ESPAsyncWebServer v1.2.3](https://github.com/me-no-dev/ESPAsyncWebServer). - ---- - -#### Currently Supported Boards - -1. **WT32_ETH01 boards** using ESP32-based boards and LAN8720A Ethernet - - ---- - -This library is based on, modified from: - -1. [Hristo Gochkov's ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer) - -to apply the better and faster **asynchronous** feature of the [ESPAsyncWebServer Library](https://github.com/me-no-dev/ESPAsyncWebServer) into WT32_ETH01 boards using LAN8720A Ethernet. - ---- ---- ### Contributions and Thanks diff --git a/changelog.md b/changelog.md new file mode 100644 index 0000000..ecda65f --- /dev/null +++ b/changelog.md @@ -0,0 +1,42 @@ +# AsyncWebServer_WT32_ETH01 + +[![arduino-library-badge](https://www.ardu-badge.com/badge/AsyncWebServer_WT32_ETH01.svg?)](https://www.ardu-badge.com/AsyncWebServer_WT32_ETH01) +[![GitHub release](https://img.shields.io/github/release/khoih-prog/AsyncWebServer_WT32_ETH01.svg)](https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01/releases) +[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](#Contributing) +[![GitHub issues](https://img.shields.io/github/issues/khoih-prog/AsyncWebServer_WT32_ETH01.svg)](http://github.com/khoih-prog/AsyncWebServer_WT32_ETH01/issues) + +--- +--- + +## Table of contents + +* [Changelog](#changelog) + * [Releases v1.2.5](#releases-v125) + * [Releases v1.2.4](#releases-v124) + * [Releases v1.2.3](#releases-v123) + + +--- +--- + +## Changelog + +### Releases v1.2.5 + +1. Update `platform.ini` and `library.json` to use original `khoih-prog` instead of `khoih.prog` after PIO fix + + +#### Releases v1.2.4 + +1. Fix library compile error with ESP32 core v2.0.0-rc1+. Check [Fix compiler error for ESP32-C3 and mbed TLS v2.7.0+ #970](https://github.com/me-no-dev/ESPAsyncWebServer/pull/970) +2. Verify compatibility with new ESP32 core v2.0.0-rc1+ + + +#### Releases v1.2.3 + +1. Initial coding to port [ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer) to WT32_ETH01 boards using builtin LAN8720A Ethernet. +2. Add more examples. +3. Add debugging features. +4. Bump up to v1.2.3 to sync with [ESPAsyncWebServer v1.2.3](https://github.com/me-no-dev/ESPAsyncWebServer). + + diff --git a/examples/AsyncFSBrowser_WT32_ETH01/AsyncFSBrowser_WT32_ETH01.ino b/examples/AsyncFSBrowser_WT32_ETH01/AsyncFSBrowser_WT32_ETH01.ino index 584c58d..c1639dd 100644 --- a/examples/AsyncFSBrowser_WT32_ETH01/AsyncFSBrowser_WT32_ETH01.ino +++ b/examples/AsyncFSBrowser_WT32_ETH01/AsyncFSBrowser_WT32_ETH01.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01 Licensed under GPLv3 license - - Version: 1.2.4 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 - 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ *****************************************************************************************************************************/ #if !( defined(ESP32) ) diff --git a/examples/AsyncMultiWebServer_WT32_ETH01/AsyncMultiWebServer_WT32_ETH01.ino b/examples/AsyncMultiWebServer_WT32_ETH01/AsyncMultiWebServer_WT32_ETH01.ino index 87339f1..529ff67 100644 --- a/examples/AsyncMultiWebServer_WT32_ETH01/AsyncMultiWebServer_WT32_ETH01.ino +++ b/examples/AsyncMultiWebServer_WT32_ETH01/AsyncMultiWebServer_WT32_ETH01.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01 Licensed under GPLv3 license - - Version: 1.2.4 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 - 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ *****************************************************************************************************************************/ #if !( defined(ESP32) ) diff --git a/examples/AsyncSimpleServer_WT32_ETH01/AsyncSimpleServer_WT32_ETH01.ino b/examples/AsyncSimpleServer_WT32_ETH01/AsyncSimpleServer_WT32_ETH01.ino index 7f48713..45b5d95 100644 --- a/examples/AsyncSimpleServer_WT32_ETH01/AsyncSimpleServer_WT32_ETH01.ino +++ b/examples/AsyncSimpleServer_WT32_ETH01/AsyncSimpleServer_WT32_ETH01.ino @@ -21,13 +21,6 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - - Version: 1.2.4 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 - 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ *****************************************************************************************************************************/ #if !( defined(ESP32) ) diff --git a/examples/Async_AdvancedWebServer/Async_AdvancedWebServer.ino b/examples/Async_AdvancedWebServer/Async_AdvancedWebServer.ino index 38285e2..4407e17 100644 --- a/examples/Async_AdvancedWebServer/Async_AdvancedWebServer.ino +++ b/examples/Async_AdvancedWebServer/Async_AdvancedWebServer.ino @@ -36,13 +36,6 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Version: 1.2.4 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 - 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ *****************************************************************************************************************************/ #if !( defined(ESP32) ) diff --git a/examples/Async_HelloServer/Async_HelloServer.ino b/examples/Async_HelloServer/Async_HelloServer.ino index 093269c..7eb009a 100644 --- a/examples/Async_HelloServer/Async_HelloServer.ino +++ b/examples/Async_HelloServer/Async_HelloServer.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01 Licensed under GPLv3 license - - Version: 1.2.4 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 - 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ *****************************************************************************************************************************/ #if !( defined(ESP32) ) diff --git a/examples/Async_HelloServer2/Async_HelloServer2.ino b/examples/Async_HelloServer2/Async_HelloServer2.ino index 0e1290d..f9de7d5 100644 --- a/examples/Async_HelloServer2/Async_HelloServer2.ino +++ b/examples/Async_HelloServer2/Async_HelloServer2.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01 Licensed under GPLv3 license - - Version: 1.2.4 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 - 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ *****************************************************************************************************************************/ #if !( defined(ESP32) ) diff --git a/examples/Async_PostServer/Async_PostServer.ino b/examples/Async_PostServer/Async_PostServer.ino index 841c348..a789ba4 100644 --- a/examples/Async_PostServer/Async_PostServer.ino +++ b/examples/Async_PostServer/Async_PostServer.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01 Licensed under GPLv3 license - - Version: 1.2.4 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 - 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ *****************************************************************************************************************************/ #if !( defined(ESP32) ) diff --git a/examples/Async_RegexPatterns_WT32_ETH01/Async_RegexPatterns_WT32_ETH01.ino b/examples/Async_RegexPatterns_WT32_ETH01/Async_RegexPatterns_WT32_ETH01.ino index 1f539b1..990939f 100644 --- a/examples/Async_RegexPatterns_WT32_ETH01/Async_RegexPatterns_WT32_ETH01.ino +++ b/examples/Async_RegexPatterns_WT32_ETH01/Async_RegexPatterns_WT32_ETH01.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01 Licensed under GPLv3 license - - Version: 1.2.4 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 - 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ *****************************************************************************************************************************/ // // A simple server implementation with regex routes: diff --git a/library.json b/library.json index 5cf28f8..5f8f90a 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name":"AsyncWebServer_WT32_ETH01", - "version": "1.2.4", + "version": "1.2.5", "description":"Asynchronous HTTP and WebSocket Server Library for WT32_ETH01 (ESP32 + LAN8720)", "keywords":"http, async, async-webserver, websocket, webserver, esp32, wt32-eth01, lan8720, lan8720a", "authors": diff --git a/library.properties b/library.properties index 17be5e8..599f276 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=AsyncWebServer_WT32_ETH01 -version=1.2.4 +version=1.2.5 author=Hristo Gochkov,Khoi Hoang maintainer=Khoi Hoang license=GPLv3 diff --git a/src/AsyncEventSource.cpp b/src/AsyncEventSource.cpp index 4808600..f191714 100644 --- a/src/AsyncEventSource.cpp +++ b/src/AsyncEventSource.cpp @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #include "Arduino.h" diff --git a/src/AsyncEventSource.h b/src/AsyncEventSource.h index 93fd4bc..e88f866 100644 --- a/src/AsyncEventSource.h +++ b/src/AsyncEventSource.h @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #ifndef ASYNCEVENTSOURCE_H_ diff --git a/src/AsyncJson.h b/src/AsyncJson.h index 4bde6de..c337680 100644 --- a/src/AsyncJson.h +++ b/src/AsyncJson.h @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ /* Async Response to use with ArduinoJson and AsyncWebServer diff --git a/src/AsyncWebServer_WT32_ETH01.cpp b/src/AsyncWebServer_WT32_ETH01.cpp index b01128a..2f76260 100644 --- a/src/AsyncWebServer_WT32_ETH01.cpp +++ b/src/AsyncWebServer_WT32_ETH01.cpp @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #include "AsyncWebServer_WT32_ETH01.h" diff --git a/src/AsyncWebServer_WT32_ETH01.h b/src/AsyncWebServer_WT32_ETH01.h index c6e7d05..7af30a9 100644 --- a/src/AsyncWebServer_WT32_ETH01.h +++ b/src/AsyncWebServer_WT32_ETH01.h @@ -22,18 +22,19 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #ifndef _AsyncWebServer_WT32_ETH01_H_ #define _AsyncWebServer_WT32_ETH01_H_ -#define ASYNC_WEBSERVER_WT32_ETH01_VERSION "AsyncWebServer_WT32_ETH01 v1.2.4" +#define ASYNC_WEBSERVER_WT32_ETH01_VERSION "AsyncWebServer_WT32_ETH01 v1.2.5" #if ESP32 #warning Using ESP32 architecture for WebServer_WT32_ETH01 diff --git a/src/AsyncWebServer_WT32_ETH01_Debug.h b/src/AsyncWebServer_WT32_ETH01_Debug.h index 5141fd6..707bcfd 100644 --- a/src/AsyncWebServer_WT32_ETH01_Debug.h +++ b/src/AsyncWebServer_WT32_ETH01_Debug.h @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #pragma once diff --git a/src/AsyncWebSocket.cpp b/src/AsyncWebSocket.cpp index 5da6f71..ccc76cf 100644 --- a/src/AsyncWebSocket.cpp +++ b/src/AsyncWebSocket.cpp @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #include "Arduino.h" diff --git a/src/AsyncWebSocket.h b/src/AsyncWebSocket.h index 99ef471..f224b59 100644 --- a/src/AsyncWebSocket.h +++ b/src/AsyncWebSocket.h @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #ifndef ASYNCWEBSOCKET_H_ diff --git a/src/AsyncWebSynchronization.h b/src/AsyncWebSynchronization.h index ba98bac..c8f0f1f 100644 --- a/src/AsyncWebSynchronization.h +++ b/src/AsyncWebSynchronization.h @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #ifndef ASYNCWEBSYNCHRONIZATION_H_ diff --git a/src/StringArray.h b/src/StringArray.h index 8b653a5..a8e5f52 100644 --- a/src/StringArray.h +++ b/src/StringArray.h @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #ifndef STRINGARRAY_H_ diff --git a/src/WT32_ETH01_SPIFFSEditor.cpp b/src/WT32_ETH01_SPIFFSEditor.cpp index 191c821..1b47f0e 100644 --- a/src/WT32_ETH01_SPIFFSEditor.cpp +++ b/src/WT32_ETH01_SPIFFSEditor.cpp @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #include "WT32_ETH01_SPIFFSEditor.h" diff --git a/src/WT32_ETH01_SPIFFSEditor.h b/src/WT32_ETH01_SPIFFSEditor.h index 3471014..6dd62ec 100644 --- a/src/WT32_ETH01_SPIFFSEditor.h +++ b/src/WT32_ETH01_SPIFFSEditor.h @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #ifndef WT32_ETH01_SPIFFSEditor_H_ diff --git a/src/WebAuthentication.cpp b/src/WebAuthentication.cpp index 9f221eb..1fbd49e 100644 --- a/src/WebAuthentication.cpp +++ b/src/WebAuthentication.cpp @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #include "WebAuthentication.h" diff --git a/src/WebAuthentication.h b/src/WebAuthentication.h index fed5365..a0d1471 100644 --- a/src/WebAuthentication.h +++ b/src/WebAuthentication.h @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #ifndef WEB_AUTHENTICATION_H_ diff --git a/src/WebHandlerImpl.h b/src/WebHandlerImpl.h index b0f3955..41fd065 100644 --- a/src/WebHandlerImpl.h +++ b/src/WebHandlerImpl.h @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #ifndef ASYNCWEBSERVERHANDLERIMPL_H_ diff --git a/src/WebHandlers.cpp b/src/WebHandlers.cpp index 15ab36c..eaef44b 100644 --- a/src/WebHandlers.cpp +++ b/src/WebHandlers.cpp @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #include "AsyncWebServer_WT32_ETH01.h" diff --git a/src/WebRequest.cpp b/src/WebRequest.cpp index be3d83a..a738b8d 100644 --- a/src/WebRequest.cpp +++ b/src/WebRequest.cpp @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ //#include "ESPAsyncWebServer.h" diff --git a/src/WebResponseImpl.h b/src/WebResponseImpl.h index a15c904..c9be0d7 100644 --- a/src/WebResponseImpl.h +++ b/src/WebResponseImpl.h @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #ifndef ASYNCWEBSERVERRESPONSEIMPL_H_ diff --git a/src/WebResponses.cpp b/src/WebResponses.cpp index cebe69d..9def81d 100644 --- a/src/WebResponses.cpp +++ b/src/WebResponses.cpp @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #include "AsyncWebServer_WT32_ETH01.h" diff --git a/src/WebServer.cpp b/src/WebServer.cpp index b751dd7..749e1ba 100644 --- a/src/WebServer.cpp +++ b/src/WebServer.cpp @@ -22,12 +22,13 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Version: 1.2.4 + Version: 1.2.5 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3 1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+ + 1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #include "AsyncWebServer_WT32_ETH01.h"