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

Commit fc40649

Browse files
authored
v1.3.1 to change PIO lib_compat_mode
### Releases v1.3.1 1. Change option for **PIO** `lib_compat_mode` from default `soft` to `strict` to minimize compile error in cross-platform 2. Update `Packages' Patches`
1 parent 01dbda9 commit fc40649

22 files changed

+109
-45
lines changed

src/EthernetHttpClient_SSL_STM32.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
99
Licensed under MIT license
1010
11-
Version: 1.3.0
11+
Version: 1.3.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -19,7 +19,8 @@
1919
1.2.0 K Hoang 20/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
2020
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
2121
1.3.0 K Hoang 11/04/2021 Add support to LAN8720 using STM32F4 or STM32F7
22-
*****************************************************************************************************************************/
22+
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
23+
*************************************************************************************************************************************/
2324

2425
// Library to simplify HTTP fetching on Arduino
2526
// (c) Copyright Arduino. 2016

src/EthernetWebServer_SSL_STM32-impl.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
1010
Licensed under MIT license
1111
12-
Version: 1.3.0
12+
Licensed under MIT license
13+
14+
Version: 1.3.1
1315
1416
Version Modified By Date Comments
1517
------- ----------- ---------- -----------
@@ -20,7 +22,8 @@
2022
1.2.0 K Hoang 20/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
2123
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
2224
1.3.0 K Hoang 11/04/2021 Add support to LAN8720 using STM32F4 or STM32F7
23-
*****************************************************************************************************************************/
25+
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
26+
*************************************************************************************************************************************/
2427

2528
#pragma once
2629

src/EthernetWebServer_SSL_STM32.h

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
1010
Licensed under MIT license
1111
12-
Version: 1.3.0
12+
Licensed under MIT license
13+
14+
Version: 1.3.1
1315
1416
Version Modified By Date Comments
1517
------- ----------- ---------- -----------
@@ -20,11 +22,12 @@
2022
1.2.0 K Hoang 20/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
2123
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
2224
1.3.0 K Hoang 11/04/2021 Add support to LAN8720 using STM32F4 or STM32F7
23-
*****************************************************************************************************************************/
25+
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
26+
*************************************************************************************************************************************/
2427

2528
#pragma once
2629

27-
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION "EthernetWebServer_SSL_STM32 v1.3.0"
30+
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION "EthernetWebServer_SSL_STM32 v1.3.1"
2831

2932
#if !( defined(STM32F0) || defined(STM32F1) || defined(STM32F2) || defined(STM32F3) ||defined(STM32F4) || defined(STM32F7) || \
3033
defined(STM32L0) || defined(STM32L1) || defined(STM32L4) || defined(STM32H7) ||defined(STM32G0) || defined(STM32G4) || \

src/Ethernet_HTTPClient/Ethernet_HttpClient.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
1010
Licensed under MIT license
1111
12-
Version: 1.3.0
12+
Licensed under MIT license
13+
14+
Version: 1.3.1
1315
1416
Version Modified By Date Comments
1517
------- ----------- ---------- -----------
@@ -20,7 +22,8 @@
2022
1.2.0 K Hoang 20/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
2123
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
2224
1.3.0 K Hoang 11/04/2021 Add support to LAN8720 using STM32F4 or STM32F7
23-
*****************************************************************************************************************************/
25+
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
26+
*************************************************************************************************************************************/
2427

2528
// Class to simplify HTTP fetching on Arduino
2629
// (c) Copyright 2010-2011 MCQN Ltd

src/Ethernet_HTTPClient/Ethernet_HttpClient.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
1010
Licensed under MIT license
1111
12-
Version: 1.3.0
12+
Licensed under MIT license
13+
14+
Version: 1.3.1
1315
1416
Version Modified By Date Comments
1517
------- ----------- ---------- -----------
@@ -20,7 +22,8 @@
2022
1.2.0 K Hoang 20/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
2123
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
2224
1.3.0 K Hoang 11/04/2021 Add support to LAN8720 using STM32F4 or STM32F7
23-
*****************************************************************************************************************************/
25+
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
26+
*************************************************************************************************************************************/
2427

2528
// Class to simplify HTTP fetching on Arduino
2629
// (c) Copyright MCQN Ltd. 2010-2012

src/Ethernet_HTTPClient/Ethernet_URLEncoder.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
1010
Licensed under MIT license
1111
12-
Version: 1.3.0
12+
Licensed under MIT license
13+
14+
Version: 1.3.1
1315
1416
Version Modified By Date Comments
1517
------- ----------- ---------- -----------
@@ -20,7 +22,8 @@
2022
1.2.0 K Hoang 20/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
2123
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
2224
1.3.0 K Hoang 11/04/2021 Add support to LAN8720 using STM32F4 or STM32F7
23-
*****************************************************************************************************************************/
25+
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
26+
*************************************************************************************************************************************/
2427

2528
// Library to simplify HTTP fetching on Arduino
2629
// (c) Copyright Arduino. 2019

src/Ethernet_HTTPClient/Ethernet_URLEncoder.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
1010
Licensed under MIT license
1111
12-
Version: 1.3.0
12+
Licensed under MIT license
13+
14+
Version: 1.3.1
1315
1416
Version Modified By Date Comments
1517
------- ----------- ---------- -----------
@@ -20,7 +22,8 @@
2022
1.2.0 K Hoang 20/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
2123
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
2224
1.3.0 K Hoang 11/04/2021 Add support to LAN8720 using STM32F4 or STM32F7
23-
*****************************************************************************************************************************/
25+
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
26+
*************************************************************************************************************************************/
2427

2528
// Library to simplify HTTP fetching on Arduino
2629
// (c) Copyright Arduino. 2019

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
1010
Licensed under MIT license
1111
12-
Version: 1.3.0
12+
Licensed under MIT license
13+
14+
Version: 1.3.1
1315
1416
Version Modified By Date Comments
1517
------- ----------- ---------- -----------
@@ -20,7 +22,8 @@
2022
1.2.0 K Hoang 20/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
2123
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
2224
1.3.0 K Hoang 11/04/2021 Add support to LAN8720 using STM32F4 or STM32F7
23-
*****************************************************************************************************************************/
25+
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
26+
*************************************************************************************************************************************/
2427

2528
// (c) Copyright Arduino. 2016
2629
// Released under Apache License, version 2.0

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
1010
Licensed under MIT license
1111
12-
Version: 1.3.0
12+
Licensed under MIT license
13+
14+
Version: 1.3.1
1315
1416
Version Modified By Date Comments
1517
------- ----------- ---------- -----------
@@ -20,7 +22,8 @@
2022
1.2.0 K Hoang 20/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
2123
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
2224
1.3.0 K Hoang 11/04/2021 Add support to LAN8720 using STM32F4 or STM32F7
23-
*****************************************************************************************************************************/
25+
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
26+
*************************************************************************************************************************************/
2427

2528
// (c) Copyright Arduino. 2016
2629
// Released under Apache License, version 2.0

src/Parsing_SSL_STM32-impl.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
1010
Licensed under MIT license
1111
12-
Version: 1.3.0
12+
Licensed under MIT license
13+
14+
Version: 1.3.1
1315
1416
Version Modified By Date Comments
1517
------- ----------- ---------- -----------
@@ -20,7 +22,8 @@
2022
1.2.0 K Hoang 20/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
2123
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
2224
1.3.0 K Hoang 11/04/2021 Add support to LAN8720 using STM32F4 or STM32F7
23-
*****************************************************************************************************************************/
25+
1.3.1 K Hoang 04/10/2021 Change option for PIO `lib_compat_mode` from default `soft` to `strict`. Update Packages Patches
26+
*************************************************************************************************************************************/
2427

2528
#pragma once
2629

0 commit comments

Comments
 (0)