This repository was archived by the owner on Jan 29, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 26 files changed +55
-29
lines changed
Expand file tree Collapse file tree 26 files changed +55
-29
lines changed Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
Original file line number Diff line number Diff line change 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 ------- ----------- ---------- -----------
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
You can’t perform that action at this time.
0 commit comments