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

Commit 58ec6f5

Browse files
authored
v1.5.1 to update to arduino.tips
### Releases v1.5.1 1. Change from `arduino.cc` to `arduino.tips` in HTTP examples 2. Add `lib_ldf_mode = chain+` in `platformio.ini`
1 parent 96b7508 commit 58ec6f5

23 files changed

+72
-49
lines changed

src/EthernetHttpClient_SSL_STM32.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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
------- ----------- ---------- -----------
@@ -20,7 +20,8 @@
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

src/EthernetWebServer_SSL_STM32-impl.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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
------- ----------- ---------- -----------
@@ -22,7 +22,8 @@
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

src/EthernetWebServer_SSL_STM32.h

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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
------- ----------- ---------- -----------
@@ -22,7 +22,8 @@
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
@@ -54,13 +55,13 @@
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

src/EthernetWebServer_SSL_STM32.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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
------- ----------- ---------- -----------
@@ -22,7 +22,8 @@
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

src/Ethernet_HTTPClient/Ethernet_HttpClient.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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
------- ----------- ---------- -----------
@@ -22,7 +22,8 @@
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

src/Ethernet_HTTPClient/Ethernet_HttpClient.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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
------- ----------- ---------- -----------
@@ -22,7 +22,8 @@
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

src/Ethernet_HTTPClient/Ethernet_URLEncoder.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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
------- ----------- ---------- -----------
@@ -22,7 +22,8 @@
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

src/Ethernet_HTTPClient/Ethernet_URLEncoder.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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
------- ----------- ---------- -----------
@@ -22,7 +22,8 @@
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

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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
------- ----------- ---------- -----------
@@ -22,7 +22,8 @@
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

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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
------- ----------- ---------- -----------
@@ -22,7 +22,8 @@
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

0 commit comments

Comments
 (0)