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

Commit f3e228e

Browse files
authored
v1.8.2 to update to arduino.tips
### Releases v1.8.2 1. Change from `arduino.cc` to `arduino.tips` in examples 2. Add `lib_ldf_mode = chain+` in `platformio.ini`
1 parent 3e2cf92 commit f3e228e

26 files changed

+55
-29
lines changed

src/EthernetHttpClient_SSL.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.1
11+
Version: 1.8.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -26,6 +26,7 @@
2626
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
29+
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2930
*****************************************************************************************************************************/
3031

3132
// Library to simplify HTTP fetching on Arduino

src/EthernetWebServer_SSL-impl.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.1
11+
Version: 1.8.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -26,6 +26,7 @@
2626
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
29+
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2930
*****************************************************************************************************************************/
3031

3132
#pragma once

src/EthernetWebServer_SSL.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.1
11+
Version: 1.8.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -26,20 +26,21 @@
2626
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
29+
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2930
*****************************************************************************************************************************/
3031

3132
#pragma once
3233

3334
#ifndef ETHERNET_WEBSERVER_SSL_H
3435
#define ETHERNET_WEBSERVER_SSL_H
3536

36-
#define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.8.1"
37+
#define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.8.2"
3738

3839
#define ETHERNET_WEBSERVER_SSL_VERSION_MAJOR 1
3940
#define ETHERNET_WEBSERVER_SSL_VERSION_MINOR 8
40-
#define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 1
41+
#define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 2
4142

42-
#define ETHERNET_WEBSERVER_SSL_VERSION_INT 1008001
43+
#define ETHERNET_WEBSERVER_SSL_VERSION_INT 1008002
4344

4445
/////////////////////////////////////////////////////////////////////////
4546

src/EthernetWebServer_SSL.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.1
11+
Version: 1.8.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -26,6 +26,7 @@
2626
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
29+
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2930
*****************************************************************************************************************************/
3031

3132
#pragma once

src/Ethernet_HTTPClient/Ethernet_HttpClient.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.1
11+
Version: 1.8.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -26,6 +26,7 @@
2626
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
29+
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2930
*****************************************************************************************************************************/
3031

3132
// Class to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_HttpClient.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.1
11+
Version: 1.8.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -26,6 +26,7 @@
2626
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
29+
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2930
*****************************************************************************************************************************/
3031

3132
// Class to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_URLEncoder.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.1
11+
Version: 1.8.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -26,6 +26,7 @@
2626
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
29+
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2930
*****************************************************************************************************************************/
3031

3132
// Library to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_URLEncoder.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.1
11+
Version: 1.8.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -26,6 +26,7 @@
2626
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
29+
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2930
*****************************************************************************************************************************/
3031

3132
// Library to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.1
11+
Version: 1.8.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -26,6 +26,7 @@
2626
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
29+
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2930
*****************************************************************************************************************************/
3031

3132
// (c) Copyright Arduino. 2016

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.1
11+
Version: 1.8.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -26,6 +26,7 @@
2626
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
29+
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2930
*****************************************************************************************************************************/
3031

3132
// (c) Copyright Arduino. 2016

0 commit comments

Comments
 (0)