This repository was archived by the owner on Jan 29, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 23 files changed +72
-49
lines changed Expand file tree Collapse file tree 23 files changed +72
-49
lines changed Original file line number Diff line number Diff line change 77 Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
88 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
99
10- Version: 1.5.0
10+ Version: 1.5.1
1111
1212 Version Modified By Date Comments
1313 ------- ----------- ---------- -----------
2020 1.4.3 K Hoang 02/03/2022 Fix decoding error bug
2121 1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
2222 1.4.5 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
23- 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default.
23+ 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default
24+ 1.5.1 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2425 ****************************************************************************************************************************/
2526
2627// Library to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 99 Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
1010 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1111
12- Version: 1.5.0
12+ Version: 1.5.1
1313
1414 Version Modified By Date Comments
1515 ------- ----------- ---------- -----------
2222 1.4.3 K Hoang 02/03/2022 Fix decoding error bug
2323 1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
2424 1.4.5 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
25- 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default.
25+ 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default
26+ 1.5.1 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2627 ****************************************************************************************************************************/
2728
2829#pragma once
Original file line number Diff line number Diff line change 99 Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
1010 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1111
12- Version: 1.5.0
12+ Version: 1.5.1
1313
1414 Version Modified By Date Comments
1515 ------- ----------- ---------- -----------
2222 1.4.3 K Hoang 02/03/2022 Fix decoding error bug
2323 1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
2424 1.4.5 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
25- 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default.
25+ 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default
26+ 1.5.1 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2627 ****************************************************************************************************************************/
2728
2829#pragma once
5455
5556#endif
5657
57- #define ETHERNET_WEBSERVER_SSL_STM32_VERSION " EthernetWebServer_SSL_STM32 v1.5.0 "
58+ #define ETHERNET_WEBSERVER_SSL_STM32_VERSION " EthernetWebServer_SSL_STM32 v1.5.1 "
5859
5960#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_MAJOR 1
6061#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_MINOR 5
61- #define ETHERNET_WEBSERVER_SSL_STM32_VERSION_PATCH 0
62+ #define ETHERNET_WEBSERVER_SSL_STM32_VERSION_PATCH 1
6263
63- #define ETHERNET_WEBSERVER_SSL_STM32_VERSION_INT 1005000
64+ #define ETHERNET_WEBSERVER_SSL_STM32_VERSION_INT 1005001
6465
6566// ///////////////////////////////////////////////////////////////////////
6667
Original file line number Diff line number Diff line change 99 Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
1010 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1111
12- Version: 1.5.0
12+ Version: 1.5.1
1313
1414 Version Modified By Date Comments
1515 ------- ----------- ---------- -----------
2222 1.4.3 K Hoang 02/03/2022 Fix decoding error bug
2323 1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
2424 1.4.5 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
25- 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default.
25+ 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default
26+ 1.5.1 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2627 ****************************************************************************************************************************/
2728
2829#pragma once
Original file line number Diff line number Diff line change 99 Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
1010 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1111
12- Version: 1.5.0
12+ Version: 1.5.1
1313
1414 Version Modified By Date Comments
1515 ------- ----------- ---------- -----------
2222 1.4.3 K Hoang 02/03/2022 Fix decoding error bug
2323 1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
2424 1.4.5 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
25- 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default.
25+ 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default
26+ 1.5.1 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2627 ****************************************************************************************************************************/
2728
2829// Class to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 99 Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
1010 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1111
12- Version: 1.5.0
12+ Version: 1.5.1
1313
1414 Version Modified By Date Comments
1515 ------- ----------- ---------- -----------
2222 1.4.3 K Hoang 02/03/2022 Fix decoding error bug
2323 1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
2424 1.4.5 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
25- 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default.
25+ 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default
26+ 1.5.1 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2627 ****************************************************************************************************************************/
2728
2829// Class to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 99 Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
1010 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1111
12- Version: 1.5.0
12+ Version: 1.5.1
1313
1414 Version Modified By Date Comments
1515 ------- ----------- ---------- -----------
2222 1.4.3 K Hoang 02/03/2022 Fix decoding error bug
2323 1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
2424 1.4.5 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
25- 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default.
25+ 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default
26+ 1.5.1 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2627 ****************************************************************************************************************************/
2728
2829// Library to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 99 Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
1010 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1111
12- Version: 1.5.0
12+ Version: 1.5.1
1313
1414 Version Modified By Date Comments
1515 ------- ----------- ---------- -----------
2222 1.4.3 K Hoang 02/03/2022 Fix decoding error bug
2323 1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
2424 1.4.5 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
25- 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default.
25+ 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default
26+ 1.5.1 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2627 ****************************************************************************************************************************/
2728
2829// Library to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 99 Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
1010 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1111
12- Version: 1.5.0
12+ Version: 1.5.1
1313
1414 Version Modified By Date Comments
1515 ------- ----------- ---------- -----------
2222 1.4.3 K Hoang 02/03/2022 Fix decoding error bug
2323 1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
2424 1.4.5 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
25- 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default.
25+ 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default
26+ 1.5.1 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2627 ****************************************************************************************************************************/
2728
2829// (c) Copyright Arduino. 2016
Original file line number Diff line number Diff line change 99 Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
1010 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1111
12- Version: 1.5.0
12+ Version: 1.5.1
1313
1414 Version Modified By Date Comments
1515 ------- ----------- ---------- -----------
2222 1.4.3 K Hoang 02/03/2022 Fix decoding error bug
2323 1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
2424 1.4.5 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
25- 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default.
25+ 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default
26+ 1.5.1 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2627 ****************************************************************************************************************************/
2728
2829// (c) Copyright Arduino. 2016
You can’t perform that action at this time.
0 commit comments