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 7
7
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
8
8
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
9
9
10
- Version: 1.5.0
10
+ Version: 1.5.1
11
11
12
12
Version Modified By Date Comments
13
13
------- ----------- ---------- -----------
20
20
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
21
21
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
22
22
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
24
25
****************************************************************************************************************************/
25
26
26
27
// Library to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 9
9
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
11
11
12
- Version: 1.5.0
12
+ Version: 1.5.1
13
13
14
14
Version Modified By Date Comments
15
15
------- ----------- ---------- -----------
22
22
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
23
23
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24
24
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
26
27
****************************************************************************************************************************/
27
28
28
29
#pragma once
Original file line number Diff line number Diff line change 9
9
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
11
11
12
- Version: 1.5.0
12
+ Version: 1.5.1
13
13
14
14
Version Modified By Date Comments
15
15
------- ----------- ---------- -----------
22
22
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
23
23
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24
24
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
26
27
****************************************************************************************************************************/
27
28
28
29
#pragma once
54
55
55
56
#endif
56
57
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 "
58
59
59
60
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_MAJOR 1
60
61
#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
62
63
63
- #define ETHERNET_WEBSERVER_SSL_STM32_VERSION_INT 1005000
64
+ #define ETHERNET_WEBSERVER_SSL_STM32_VERSION_INT 1005001
64
65
65
66
// ///////////////////////////////////////////////////////////////////////
66
67
Original file line number Diff line number Diff line change 9
9
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
11
11
12
- Version: 1.5.0
12
+ Version: 1.5.1
13
13
14
14
Version Modified By Date Comments
15
15
------- ----------- ---------- -----------
22
22
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
23
23
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24
24
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
26
27
****************************************************************************************************************************/
27
28
28
29
#pragma once
Original file line number Diff line number Diff line change 9
9
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
11
11
12
- Version: 1.5.0
12
+ Version: 1.5.1
13
13
14
14
Version Modified By Date Comments
15
15
------- ----------- ---------- -----------
22
22
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
23
23
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24
24
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
26
27
****************************************************************************************************************************/
27
28
28
29
// Class to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 9
9
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
11
11
12
- Version: 1.5.0
12
+ Version: 1.5.1
13
13
14
14
Version Modified By Date Comments
15
15
------- ----------- ---------- -----------
22
22
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
23
23
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24
24
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
26
27
****************************************************************************************************************************/
27
28
28
29
// Class to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 9
9
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
11
11
12
- Version: 1.5.0
12
+ Version: 1.5.1
13
13
14
14
Version Modified By Date Comments
15
15
------- ----------- ---------- -----------
22
22
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
23
23
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24
24
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
26
27
****************************************************************************************************************************/
27
28
28
29
// Library to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 9
9
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
11
11
12
- Version: 1.5.0
12
+ Version: 1.5.1
13
13
14
14
Version Modified By Date Comments
15
15
------- ----------- ---------- -----------
22
22
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
23
23
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24
24
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
26
27
****************************************************************************************************************************/
27
28
28
29
// Library to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 9
9
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
11
11
12
- Version: 1.5.0
12
+ Version: 1.5.1
13
13
14
14
Version Modified By Date Comments
15
15
------- ----------- ---------- -----------
22
22
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
23
23
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24
24
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
26
27
****************************************************************************************************************************/
27
28
28
29
// (c) Copyright Arduino. 2016
Original file line number Diff line number Diff line change 9
9
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10
10
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
11
11
12
- Version: 1.5.0
12
+ Version: 1.5.1
13
13
14
14
Version Modified By Date Comments
15
15
------- ----------- ---------- -----------
22
22
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
23
23
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24
24
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
26
27
****************************************************************************************************************************/
27
28
28
29
// (c) Copyright Arduino. 2016
You can’t perform that action at this time.
0 commit comments