Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

Commit

Permalink
v2.4.1 to support WIZNet W6100
Browse files Browse the repository at this point in the history
### Releases v2.4.1

1. Add support to `WIZNet W6100` using IPv4
  • Loading branch information
khoih-prog authored Jan 7, 2023
1 parent f5f4bcc commit dcf4d57
Show file tree
Hide file tree
Showing 18 changed files with 39 additions and 21 deletions.
3 changes: 2 additions & 1 deletion src/EthernetHttpClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version: 2.4.0
Version: 2.4.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -25,6 +25,7 @@
2.2.4 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
2.3.0 K Hoang 15/11/2022 Add new features, such as CORS. Update code and examples to send big data
2.4.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2.4.1 K Hoang 06/01/2023 Add support to `WIZNet W6100` using IPv4
*************************************************************************************************************************************/

// Library to simplify HTTP fetching on Arduino
Expand Down
3 changes: 2 additions & 1 deletion src/EthernetWebServer-impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version: 2.4.0
Version: 2.4.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -25,6 +25,7 @@
2.2.4 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
2.3.0 K Hoang 15/11/2022 Add new features, such as CORS. Update code and examples to send big data
2.4.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2.4.1 K Hoang 06/01/2023 Add support to `WIZNet W6100` using IPv4
*************************************************************************************************************************************/

#pragma once
Expand Down
9 changes: 5 additions & 4 deletions src/EthernetWebServer.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version: 2.4.0
Version: 2.4.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -25,6 +25,7 @@
2.2.4 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
2.3.0 K Hoang 15/11/2022 Add new features, such as CORS. Update code and examples to send big data
2.4.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2.4.1 K Hoang 06/01/2023 Add support to `WIZNet W6100` using IPv4
*************************************************************************************************************************************/

#pragma once
Expand All @@ -34,13 +35,13 @@

/////////////////////////////////////////////////////////////////////////

#define ETHERNET_WEBSERVER_VERSION "EthernetWebServer v2.4.0"
#define ETHERNET_WEBSERVER_VERSION "EthernetWebServer v2.4.1"

#define ETHERNET_WEBSERVER_VERSION_MAJOR 2
#define ETHERNET_WEBSERVER_VERSION_MINOR 4
#define ETHERNET_WEBSERVER_VERSION_PATCH 0
#define ETHERNET_WEBSERVER_VERSION_PATCH 1

#define ETHERNET_WEBSERVER_VERSION_INT 2004000
#define ETHERNET_WEBSERVER_VERSION_INT 2004001

/////////////////////////////////////////////////////////////////////////

Expand Down
3 changes: 2 additions & 1 deletion src/EthernetWebServer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version: 2.4.0
Version: 2.4.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -25,6 +25,7 @@
2.2.4 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
2.3.0 K Hoang 15/11/2022 Add new features, such as CORS. Update code and examples to send big data
2.4.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2.4.1 K Hoang 06/01/2023 Add support to `WIZNet W6100` using IPv4
*************************************************************************************************************************************/

#pragma once
Expand Down
3 changes: 2 additions & 1 deletion src/Ethernet_HTTPClient/Ethernet_HttpClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version: 2.4.0
Version: 2.4.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -25,6 +25,7 @@
2.2.4 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
2.3.0 K Hoang 15/11/2022 Add new features, such as CORS. Update code and examples to send big data
2.4.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2.4.1 K Hoang 06/01/2023 Add support to `WIZNet W6100` using IPv4
*************************************************************************************************************************************/

// Class to simplify HTTP fetching on Arduino
Expand Down
3 changes: 2 additions & 1 deletion src/Ethernet_HTTPClient/Ethernet_HttpClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version: 2.4.0
Version: 2.4.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -25,6 +25,7 @@
2.2.4 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
2.3.0 K Hoang 15/11/2022 Add new features, such as CORS. Update code and examples to send big data
2.4.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2.4.1 K Hoang 06/01/2023 Add support to `WIZNet W6100` using IPv4
*************************************************************************************************************************************/

// Class to simplify HTTP fetching on Arduino
Expand Down
3 changes: 2 additions & 1 deletion src/Ethernet_HTTPClient/Ethernet_URLEncoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version: 2.4.0
Version: 2.4.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -25,6 +25,7 @@
2.2.4 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
2.3.0 K Hoang 15/11/2022 Add new features, such as CORS. Update code and examples to send big data
2.4.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2.4.1 K Hoang 06/01/2023 Add support to `WIZNet W6100` using IPv4
*************************************************************************************************************************************/

// Library to simplify HTTP fetching on Arduino
Expand Down
3 changes: 2 additions & 1 deletion src/Ethernet_HTTPClient/Ethernet_URLEncoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version: 2.4.0
Version: 2.4.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -25,6 +25,7 @@
2.2.4 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
2.3.0 K Hoang 15/11/2022 Add new features, such as CORS. Update code and examples to send big data
2.4.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2.4.1 K Hoang 06/01/2023 Add support to `WIZNet W6100` using IPv4
*************************************************************************************************************************************/

// Library to simplify HTTP fetching on Arduino
Expand Down
3 changes: 2 additions & 1 deletion src/Ethernet_HTTPClient/Ethernet_WebSocketClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version: 2.4.0
Version: 2.4.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -25,6 +25,7 @@
2.2.4 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
2.3.0 K Hoang 15/11/2022 Add new features, such as CORS. Update code and examples to send big data
2.4.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2.4.1 K Hoang 06/01/2023 Add support to `WIZNet W6100` using IPv4
*************************************************************************************************************************************/

// (c) Copyright Arduino. 2016
Expand Down
3 changes: 2 additions & 1 deletion src/Ethernet_HTTPClient/Ethernet_WebSocketClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version: 2.4.0
Version: 2.4.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -25,6 +25,7 @@
2.2.4 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
2.3.0 K Hoang 15/11/2022 Add new features, such as CORS. Update code and examples to send big data
2.4.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2.4.1 K Hoang 06/01/2023 Add support to `WIZNet W6100` using IPv4
*************************************************************************************************************************************/

// (c) Copyright Arduino. 2016
Expand Down
3 changes: 2 additions & 1 deletion src/Parsing-impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version: 2.4.0
Version: 2.4.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -25,6 +25,7 @@
2.2.4 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
2.3.0 K Hoang 15/11/2022 Add new features, such as CORS. Update code and examples to send big data
2.4.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2.4.1 K Hoang 06/01/2023 Add support to `WIZNet W6100` using IPv4
**********************************************************************************************************************************/

#pragma once
Expand Down
3 changes: 2 additions & 1 deletion src/detail/Debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version: 2.4.0
Version: 2.4.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -25,6 +25,7 @@
2.2.4 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
2.3.0 K Hoang 15/11/2022 Add new features, such as CORS. Update code and examples to send big data
2.4.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2.4.1 K Hoang 06/01/2023 Add support to `WIZNet W6100` using IPv4
*************************************************************************************************************************************/

#pragma once
Expand Down
3 changes: 2 additions & 1 deletion src/detail/ESP_RequestHandlersImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version: 2.4.0
Version: 2.4.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -26,6 +26,7 @@
2.2.4 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
2.3.0 K Hoang 15/11/2022 Add new features, such as CORS. Update code and examples to send big data
2.4.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2.4.1 K Hoang 06/01/2023 Add support to `WIZNet W6100` using IPv4
*************************************************************************************************************************************/

#pragma once
Expand Down
3 changes: 2 additions & 1 deletion src/detail/RequestHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version: 2.4.0
Version: 2.4.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -25,6 +25,7 @@
2.2.4 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
2.3.0 K Hoang 15/11/2022 Add new features, such as CORS. Update code and examples to send big data
2.4.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2.4.1 K Hoang 06/01/2023 Add support to `WIZNet W6100` using IPv4
*************************************************************************************************************************************/

#pragma once
Expand Down
3 changes: 2 additions & 1 deletion src/detail/RequestHandlersImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version: 2.4.0
Version: 2.4.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -25,6 +25,7 @@
2.2.4 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
2.3.0 K Hoang 15/11/2022 Add new features, such as CORS. Update code and examples to send big data
2.4.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2.4.1 K Hoang 06/01/2023 Add support to `WIZNet W6100` using IPv4
*************************************************************************************************************************************/

#pragma once
Expand Down
3 changes: 2 additions & 1 deletion src/detail/esp_detail/mimetable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version: 2.4.0
Version: 2.4.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -26,6 +26,7 @@
2.2.4 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
2.3.0 K Hoang 15/11/2022 Add new features, such as CORS. Update code and examples to send big data
2.4.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2.4.1 K Hoang 06/01/2023 Add support to `WIZNet W6100` using IPv4
*************************************************************************************************************************************/

#if (ESP32 || ESP8266)
Expand Down
3 changes: 2 additions & 1 deletion src/detail/esp_detail/mimetable.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version: 2.4.0
Version: 2.4.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -26,6 +26,7 @@
2.2.4 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
2.3.0 K Hoang 15/11/2022 Add new features, such as CORS. Update code and examples to send big data
2.4.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2.4.1 K Hoang 06/01/2023 Add support to `WIZNet W6100` using IPv4
*************************************************************************************************************************************/

#pragma once
Expand Down
3 changes: 2 additions & 1 deletion src/detail/mimetable.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version: 2.4.0
Version: 2.4.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -25,6 +25,7 @@
2.2.4 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
2.3.0 K Hoang 15/11/2022 Add new features, such as CORS. Update code and examples to send big data
2.4.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2.4.1 K Hoang 06/01/2023 Add support to `WIZNet W6100` using IPv4
*************************************************************************************************************************************/

#pragma once
Expand Down

0 comments on commit dcf4d57

Please sign in to comment.