Skip to content
This repository was archived by the owner on Jan 29, 2023. It is now read-only.

Commit 1b12368

Browse files
authored
v1.7.6 to fix QNEthernet staticIP bug, etc.
### Releases v1.7.6 1. Fix bug when using `QNEthernet` staticIP. Check [QNEthernet and NativeEthernet staticIP not working with WS Server #39](khoih-prog/WebSockets2_Generic#39) 2. Simplify and add staticIP option to `NativeEthernet` examples. 3. Add support to SAMD21/SAMD51 boards using [Fab_SAM_Arduino core](https://github.com/qbolsee/ArduinoCore-fab-sam) 4. Add `Packages' Patches` for [Fab_SAM_Arduino core](https://github.com/qbolsee/ArduinoCore-fab-sam) 5. Update `Packages' Patches`
1 parent b9ed7e6 commit 1b12368

26 files changed

+55
-29
lines changed

src/EthernetHttpClient_SSL.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
Licensed under MIT license
1111
12-
Version: 1.7.5
12+
Version: 1.7.6
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
2323
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2424
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25+
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2526
*************************************************************************************************************************************/
2627

2728
// Library to simplify HTTP fetching on Arduino

src/EthernetWebServer_SSL-impl.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
Licensed under MIT license
1111
12-
Version: 1.7.5
12+
Version: 1.7.6
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
2323
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2424
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25+
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2526
*************************************************************************************************************************************/
2627

2728
#pragma once

src/EthernetWebServer_SSL.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
Licensed under MIT license
1111
12-
Version: 1.7.5
12+
Version: 1.7.6
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
@@ -22,17 +22,18 @@
2222
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
2323
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2424
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25+
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2526
*************************************************************************************************************************************/
2627

2728
#pragma once
2829

29-
#define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.7.5"
30+
#define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.7.6"
3031

3132
#define ETHERNET_WEBSERVER_SSL_VERSION_MAJOR 1
3233
#define ETHERNET_WEBSERVER_SSL_VERSION_MINOR 7
33-
#define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 5
34+
#define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 6
3435

35-
#define ETHERNET_WEBSERVER_SSL_VERSION_INT 1007005
36+
#define ETHERNET_WEBSERVER_SSL_VERSION_INT 1007006
3637

3738
#define USE_NEW_WEBSERVER_VERSION true
3839

src/EthernetWrapper_SSL.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
Licensed under MIT license
1111
12-
Version: 1.7.5
12+
Version: 1.7.6
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
2323
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2424
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25+
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2526
*************************************************************************************************************************************/
2627
#pragma once
2728

src/Ethernet_HTTPClient/Ethernet_HttpClient.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
Licensed under MIT license
1111
12-
Version: 1.7.5
12+
Version: 1.7.6
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
2323
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2424
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25+
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2526
*************************************************************************************************************************************/
2627

2728
// Class to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_HttpClient.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
Licensed under MIT license
1111
12-
Version: 1.7.5
12+
Version: 1.7.6
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
2323
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2424
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25+
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2526
*************************************************************************************************************************************/
2627

2728
// Class to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_URLEncoder.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
Licensed under MIT license
1111
12-
Version: 1.7.5
12+
Version: 1.7.6
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
2323
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2424
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25+
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2526
*************************************************************************************************************************************/
2627

2728
// Library to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_URLEncoder.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
Licensed under MIT license
1111
12-
Version: 1.7.5
12+
Version: 1.7.6
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
2323
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2424
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25+
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2526
*************************************************************************************************************************************/
2627

2728
// Library to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
Licensed under MIT license
1111
12-
Version: 1.7.5
12+
Version: 1.7.6
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
2323
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2424
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25+
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2526
*************************************************************************************************************************************/
2627

2728
// (c) Copyright Arduino. 2016

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
Licensed under MIT license
1111
12-
Version: 1.7.5
12+
Version: 1.7.6
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
2323
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2424
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25+
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2526
*************************************************************************************************************************************/
2627

2728
// (c) Copyright Arduino. 2016

0 commit comments

Comments
 (0)