This repository was archived by the owner on Jan 29, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 26 files changed +55
-29
lines changed
Expand file tree Collapse file tree 26 files changed +55
-29
lines changed Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
You can’t perform that action at this time.
0 commit comments