|
8 | 8 | |
9 | 9 | Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL |
10 | 10 | |
11 | | - Version: 1.9.1 |
| 11 | + Version: 1.9.2 |
12 | 12 |
|
13 | 13 | Version Modified By Date Comments |
14 | 14 | ------- ----------- ---------- ----------- |
15 | 15 | 1.1.0 K Hoang 14/11/2020 Initial coding for SAMD21/SAMD51, nRF52, SAM DUE to support Ethernet shields using SSL. |
16 | 16 | Supporting W5x00 using Ethernetx, ENC28J60 using EthernetENC and UIPEthernet libraries |
17 | 17 | ... |
18 | | - 1.7.0 K Hoang 19/12/2021 Reduce usage of Arduino String with std::string. Add support to Portenta H7 Ethernet |
19 | | - 1.7.1 K Hoang 25/12/2021 Fix bug relating to String |
20 | | - 1.7.2 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64 |
21 | | - 1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266 |
22 | | - 1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning |
23 | | - 1.7.5 K Hoang 02/03/2022 Fix decoding error bug |
24 | | - 1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet |
25 | | - 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3` |
26 | | - 1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11 |
27 | 18 | 1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32 |
28 | 19 | 1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core |
29 | 20 | 1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples |
30 | 21 | 1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc. |
31 | 22 | 1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package |
| 23 | + 1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21 |
32 | 24 | *****************************************************************************************************************************/ |
33 | 25 |
|
34 | 26 | #pragma once |
35 | 27 |
|
36 | 28 | #ifndef ETHERNET_WEBSERVER_SSL_H |
37 | 29 | #define ETHERNET_WEBSERVER_SSL_H |
38 | 30 |
|
39 | | -#define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.9.1" |
| 31 | +#define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.9.2" |
40 | 32 |
|
41 | 33 | #define ETHERNET_WEBSERVER_SSL_VERSION_MAJOR 1 |
42 | 34 | #define ETHERNET_WEBSERVER_SSL_VERSION_MINOR 9 |
43 | | -#define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 1 |
| 35 | +#define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 2 |
44 | 36 |
|
45 | | -#define ETHERNET_WEBSERVER_SSL_VERSION_INT 1009001 |
| 37 | +#define ETHERNET_WEBSERVER_SSL_VERSION_INT 1009002 |
46 | 38 |
|
47 | 39 | ///////////////////////////////////////////////////////////////////////// |
48 | 40 |
|
|
0 commit comments