This repository was archived by the owner on Jan 29, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 22 files changed +70
-34
lines changed Expand file tree Collapse file tree 22 files changed +70
-34
lines changed Original file line number Diff line number Diff line change 8
8
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
9
9
Licensed under MIT license
10
10
11
- Version: 1.4.1
11
+ Version: 1.4.2
12
12
13
13
Version Modified By Date Comments
14
14
------- ----------- ---------- -----------
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
23
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
24
24
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
25
+ 1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
25
26
*************************************************************************************************************************************/
26
27
27
28
// Library to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 11
11
12
12
Licensed under MIT license
13
13
14
- Version: 1.4.1
14
+ Version: 1.4.2
15
15
16
16
Version Modified By Date Comments
17
17
------- ----------- ---------- -----------
25
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
26
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
27
27
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
28
+ 1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
28
29
*************************************************************************************************************************************/
29
30
30
31
#pragma once
Original file line number Diff line number Diff line change 11
11
12
12
Licensed under MIT license
13
13
14
- Version: 1.4.1
14
+ Version: 1.4.2
15
15
16
16
Version Modified By Date Comments
17
17
------- ----------- ---------- -----------
25
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
26
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
27
27
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
28
+ 1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
28
29
*************************************************************************************************************************************/
29
30
30
31
#pragma once
35
36
#error This code is designed to run on STM32F/L/H/G/WB/MP1 platform! Please check your Tools->Board setting.
36
37
#endif
37
38
38
- #define ETHERNET_WEBSERVER_SSL_STM32_VERSION " EthernetWebServer_SSL_STM32 v1.4.1 "
39
+ #define ETHERNET_WEBSERVER_SSL_STM32_VERSION " EthernetWebServer_SSL_STM32 v1.4.2 "
39
40
40
41
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_MAJOR 1
41
42
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_MINOR 4
42
- #define ETHERNET_WEBSERVER_SSL_STM32_VERSION_PATCH 1
43
+ #define ETHERNET_WEBSERVER_SSL_STM32_VERSION_PATCH 2
43
44
44
- #define ETHERNET_WEBSERVER_SSL_STM32_VERSION_INT 1004001
45
+ #define ETHERNET_WEBSERVER_SSL_STM32_VERSION_INT 1004002
45
46
46
47
#define USE_NEW_WEBSERVER_VERSION true
47
48
Original file line number Diff line number Diff line change 11
11
12
12
Licensed under MIT license
13
13
14
- Version: 1.4.1
14
+ Version: 1.4.2
15
15
16
16
Version Modified By Date Comments
17
17
------- ----------- ---------- -----------
25
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
26
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
27
27
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
28
+ 1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
28
29
*************************************************************************************************************************************/
29
30
30
31
// Class to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 11
11
12
12
Licensed under MIT license
13
13
14
- Version: 1.4.1
14
+ Version: 1.4.2
15
15
16
16
Version Modified By Date Comments
17
17
------- ----------- ---------- -----------
25
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
26
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
27
27
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
28
+ 1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
28
29
*************************************************************************************************************************************/
29
30
30
31
// Class to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 11
11
12
12
Licensed under MIT license
13
13
14
- Version: 1.4.1
14
+ Version: 1.4.2
15
15
16
16
Version Modified By Date Comments
17
17
------- ----------- ---------- -----------
25
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
26
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
27
27
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
28
+ 1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
28
29
*************************************************************************************************************************************/
29
30
30
31
// Library to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 11
11
12
12
Licensed under MIT license
13
13
14
- Version: 1.4.1
14
+ Version: 1.4.2
15
15
16
16
Version Modified By Date Comments
17
17
------- ----------- ---------- -----------
25
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
26
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
27
27
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
28
+ 1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
28
29
*************************************************************************************************************************************/
29
30
30
31
// Library to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 11
11
12
12
Licensed under MIT license
13
13
14
- Version: 1.4.1
14
+ Version: 1.4.2
15
15
16
16
Version Modified By Date Comments
17
17
------- ----------- ---------- -----------
25
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
26
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
27
27
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
28
+ 1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
28
29
*************************************************************************************************************************************/
29
30
30
31
// (c) Copyright Arduino. 2016
Original file line number Diff line number Diff line change 11
11
12
12
Licensed under MIT license
13
13
14
- Version: 1.4.1
14
+ Version: 1.4.2
15
15
16
16
Version Modified By Date Comments
17
17
------- ----------- ---------- -----------
25
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
26
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
27
27
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
28
+ 1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
28
29
*************************************************************************************************************************************/
29
30
30
31
// (c) Copyright Arduino. 2016
Original file line number Diff line number Diff line change 11
11
12
12
Licensed under MIT license
13
13
14
- Version: 1.4.1
14
+ Version: 1.4.2
15
15
16
16
Version Modified By Date Comments
17
17
------- ----------- ---------- -----------
25
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
26
1.4.0 K Hoang 25/12/2021 Reduce usage of Arduino String with std::string. Fix bug
27
27
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
28
+ 1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
28
29
*************************************************************************************************************************************/
29
30
30
31
#pragma once
You can’t perform that action at this time.
0 commit comments