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

Commit eb85eec

Browse files
authored
v1.2.6
### Releases v1.2.6 1. Fix dependency on unpublished [**STM32AsyncTCP Library**](https://github.com/philbowles/STM32AsyncTCP). Check [Compilation broken due to error in STM32AsyncTCP dependency](#4) and [how to run one of the examples?](#2).
1 parent 0ba6189 commit eb85eec

38 files changed

+94
-47
lines changed

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* [Features](#features)
1717
* [Currently supported Boards](#currently-supported-boards)
1818
* [Changelog](#changelog)
19+
* [Releases v1.2.6](#releases-v126)
1920
* [Releases v1.2.5](#releases-v125)
2021
* [Releases v1.2.4](#releases-v124)
2122
* [Releases v1.2.3](#releases-v123)
@@ -146,6 +147,10 @@ to apply the better and faster **asynchronous** feature of the **powerful** [ESP
146147

147148
## Changelog
148149

150+
### Releases v1.2.6
151+
152+
1. Fix dependency on unpublished [**STM32AsyncTCP Library**](https://github.com/philbowles/STM32AsyncTCP). Check [Compilation broken due to error in STM32AsyncTCP dependency](https://github.com/khoih-prog/AsyncWebServer_STM32/issues/4) and [how to run one of the examples?](https://github.com/khoih-prog/AsyncWebServer_STM32/issues/2).
153+
149154
### Releases v1.2.5
150155

151156
1. Clean-up all compiler warnings possible.
@@ -174,7 +179,7 @@ to apply the better and faster **asynchronous** feature of the **powerful** [ESP
174179
2. [`Arduino Core for STM32 1.9.0+`](https://github.com/stm32duino/Arduino_Core_STM32) for STM32 (Use Arduino Board Manager)
175180
3. [`STM32Ethernet library v1.2.0+`](https://github.com/stm32duino/STM32Ethernet) for built-in Ethernet on (Nucleo-144, Discovery)
176181
4. [`LwIP library v2.1.2+`](https://github.com/stm32duino/LwIP) for built-in Ethernet on (Nucleo-144, Discovery)
177-
5. [`STM32AsyncTCP library`](https://github.com/philbowles/STM32AsyncTCP) for built-in Ethernet on (Nucleo-144, Discovery)
182+
5. [`STM32AsyncTCP library v1.0.1+`](https://github.com/khoih-prog/STM32AsyncTCP) for built-in Ethernet on (Nucleo-144, Discovery). To install manually for Arduino IDE.
178183

179184
---
180185

@@ -1857,6 +1862,10 @@ Submit issues to: [AsyncWebServer_STM32 issues](https://github.com/khoih-prog/As
18571862

18581863
## Releases
18591864

1865+
### Releases v1.2.6
1866+
1867+
1. Fix dependency on unpublished [**STM32AsyncTCP Library**](https://github.com/philbowles/STM32AsyncTCP). Check [Compilation broken due to error in STM32AsyncTCP dependency](https://github.com/khoih-prog/AsyncWebServer_STM32/issues/4) and [how to run one of the examples?](https://github.com/khoih-prog/AsyncWebServer_STM32/issues/2)
1868+
18601869
### Releases v1.2.5
18611870

18621871
1. Clean-up all compiler warnings possible.
@@ -1900,6 +1909,7 @@ to apply the better and faster **asynchronous** feature of the **great** [ESPAsy
19001909
2. Relied on [Frederic Pillon's STM32duino LwIP Library](https://github.com/stm32duino/LwIP).
19011910
3. Relied on [PhilBowles' STM32 AsyncTCP Library](https://github.com/philbowles/STM32AsyncTCP).
19021911
4. Thanks to good work of [Miguel Wisintainer](https://github.com/tcpipchip) for working with, developing, debugging and testing.
1912+
5. Thanks to [Jean-Claude](https://github.com/jcw) and [chris007de](https://github.com/chris007de) to help locate the dependency issue, discuss solution leading to release v1.2.6. Check [Compilation broken due to error in STM32AsyncTCP dependency](https://github.com/khoih-prog/AsyncWebServer_STM32/issues/4) and [how to run one of the examples?](https://github.com/khoih-prog/AsyncWebServer_STM32/issues/2).
19031913

19041914

19051915
<table>
@@ -1908,6 +1918,8 @@ to apply the better and faster **asynchronous** feature of the **great** [ESPAsy
19081918
<td align="center"><a href="https://github.com/fpistm"><img src="https://github.com/fpistm.png" width="100px;" alt="fpistm"/><br /><sub><b>⭐️ Frederic Pillon</b></sub></a><br /></td>
19091919
<td align="center"><a href="https://github.com/philbowles"><img src="https://github.com/philbowles.png" width="100px;" alt="philbowles"/><br /><sub><b>⭐️ Phil Bowles</b></sub></a><br /></td>
19101920
<td align="center"><a href="https://github.com/tcpipchip"><img src="https://github.com/tcpipchip.png" width="100px;" alt="tcpipchip"/><br /><sub><b>tcpipchip</b></sub></a><br /></td>
1921+
<td align="center"><a href="https://github.com/jcw"><img src="https://github.com/jcw.png" width="100px;" alt="jcw"/><br /><sub><b>Jean-Claude</b></sub></a><br /></td>
1922+
<td align="center"><a href="https://github.com/chris007de"><img src="https://github.com/chris007de.png" width="100px;" alt="chris007de"/><br /><sub><b>chris007de</b></sub></a><br /></td>
19111923
</tr>
19121924
</table>
19131925

examples/AsyncFSBrowser_STM32/AsyncFSBrowser_STM32.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_STM32
1010
Licensed under MIT license
1111
12-
Version: 1.2.5
12+
Version: 1.2.6
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
1616
1.2.3 K Hoang 02/09/2020 Initial coding for STM32 for built-in Ethernet (Nucleo-144, DISCOVERY, etc).
1717
Bump up version to v1.2.3 to sync with ESPAsyncWebServer v1.2.3
1818
1.2.4 K Hoang 05/09/2020 Add back MD5/SHA1 authentication feature.
1919
1.2.5 K Hoang 28/12/2020 Suppress all possible compiler warnings. Add examples.
20+
1.2.6 K Hoang 22/03/2021 Fix dependency on STM32AsyncTCP Library
2021
*****************************************************************************************************************************/
2122
/*
2223
Currently support

examples/AsyncMultiWebServer_STM32/AsyncMultiWebServer_STM32.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_STM32
1010
Licensed under MIT license
1111
12-
Version: 1.2.5
12+
Version: 1.2.6
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
1616
1.2.3 K Hoang 02/09/2020 Initial coding for STM32 for built-in Ethernet (Nucleo-144, DISCOVERY, etc).
1717
Bump up version to v1.2.3 to sync with ESPAsyncWebServer v1.2.3
1818
1.2.4 K Hoang 05/09/2020 Add back MD5/SHA1 authentication feature.
1919
1.2.5 K Hoang 28/12/2020 Suppress all possible compiler warnings. Add examples.
20+
1.2.6 K Hoang 22/03/2021 Fix dependency on STM32AsyncTCP Library
2021
*****************************************************************************************************************************/
2122
/*
2223
Currently support

examples/Async_AdvancedWebServer/Async_AdvancedWebServer.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,15 @@
3737
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
3838
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3939
40-
Version: 1.2.5
40+
Version: 1.2.6
4141
4242
Version Modified By Date Comments
4343
------- ----------- ---------- -----------
4444
1.2.3 K Hoang 02/09/2020 Initial coding for STM32 for built-in Ethernet (Nucleo-144, DISCOVERY, etc).
4545
Bump up version to v1.2.3 to sync with ESPAsyncWebServer v1.2.3
4646
1.2.4 K Hoang 05/09/2020 Add back MD5/SHA1 authentication feature.
4747
1.2.5 K Hoang 28/12/2020 Suppress all possible compiler warnings. Add examples.
48+
1.2.6 K Hoang 22/03/2021 Fix dependency on STM32AsyncTCP Library
4849
*****************************************************************************************************************************/
4950
/*
5051
Currently support

examples/Async_HelloServer/Async_HelloServer.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_STM32
1010
Licensed under MIT license
1111
12-
Version: 1.2.5
12+
Version: 1.2.6
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
1616
1.2.3 K Hoang 02/09/2020 Initial coding for STM32 for built-in Ethernet (Nucleo-144, DISCOVERY, etc).
1717
Bump up version to v1.2.3 to sync with ESPAsyncWebServer v1.2.3
1818
1.2.4 K Hoang 05/09/2020 Add back MD5/SHA1 authentication feature.
1919
1.2.5 K Hoang 28/12/2020 Suppress all possible compiler warnings. Add examples.
20+
1.2.6 K Hoang 22/03/2021 Fix dependency on STM32AsyncTCP Library
2021
*****************************************************************************************************************************/
2122
/*
2223
Currently support

examples/Async_HelloServer2/Async_HelloServer2.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_STM32
1010
Licensed under MIT license
1111
12-
Version: 1.2.5
12+
Version: 1.2.6
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
1616
1.2.3 K Hoang 02/09/2020 Initial coding for STM32 for built-in Ethernet (Nucleo-144, DISCOVERY, etc).
1717
Bump up version to v1.2.3 to sync with ESPAsyncWebServer v1.2.3
1818
1.2.4 K Hoang 05/09/2020 Add back MD5/SHA1 authentication feature.
1919
1.2.5 K Hoang 28/12/2020 Suppress all possible compiler warnings. Add examples.
20+
1.2.6 K Hoang 22/03/2021 Fix dependency on STM32AsyncTCP Library
2021
*****************************************************************************************************************************/
2122
/*
2223
Currently support

examples/Async_HttpBasicAuth/Async_HttpBasicAuth.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_STM32
1010
Licensed under MIT license
1111
12-
Version: 1.2.5
12+
Version: 1.2.6
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
1616
1.2.3 K Hoang 02/09/2020 Initial coding for STM32 for built-in Ethernet (Nucleo-144, DISCOVERY, etc).
1717
Bump up version to v1.2.3 to sync with ESPAsyncWebServer v1.2.3
1818
1.2.4 K Hoang 05/09/2020 Add back MD5/SHA1 authentication feature.
1919
1.2.5 K Hoang 28/12/2020 Suppress all possible compiler warnings. Add examples.
20+
1.2.6 K Hoang 22/03/2021 Fix dependency on STM32AsyncTCP Library
2021
*****************************************************************************************************************************/
2122
/*
2223
Currently support

examples/Async_PostServer/Async_PostServer.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_STM32
1010
Licensed under MIT license
1111
12-
Version: 1.2.5
12+
Version: 1.2.6
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
1616
1.2.3 K Hoang 02/09/2020 Initial coding for STM32 for built-in Ethernet (Nucleo-144, DISCOVERY, etc).
1717
Bump up version to v1.2.3 to sync with ESPAsyncWebServer v1.2.3
1818
1.2.4 K Hoang 05/09/2020 Add back MD5/SHA1 authentication feature.
1919
1.2.5 K Hoang 28/12/2020 Suppress all possible compiler warnings. Add examples.
20+
1.2.6 K Hoang 22/03/2021 Fix dependency on STM32AsyncTCP Library
2021
*****************************************************************************************************************************/
2122
/*
2223
Currently support

examples/Async_RegexPatterns_STM32/Async_RegexPatterns_STM32.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_STM32
1010
Licensed under MIT license
1111
12-
Version: 1.2.5
12+
Version: 1.2.6
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
1616
1.2.3 K Hoang 02/09/2020 Initial coding for STM32 for built-in Ethernet (Nucleo-144, DISCOVERY, etc).
1717
Bump up version to v1.2.3 to sync with ESPAsyncWebServer v1.2.3
1818
1.2.4 K Hoang 05/09/2020 Add back MD5/SHA1 authentication feature.
1919
1.2.5 K Hoang 28/12/2020 Suppress all possible compiler warnings. Add examples.
20+
1.2.6 K Hoang 22/03/2021 Fix dependency on STM32AsyncTCP Library
2021
*****************************************************************************************************************************/
2122
/*
2223
Currently support

examples/Async_SimpleWebServer_STM32/Async_SimpleWebServer_STM32.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_STM32
1010
Licensed under MIT license
1111
12-
Version: 1.2.5
12+
Version: 1.2.6
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
1616
1.2.3 K Hoang 02/09/2020 Initial coding for STM32 for built-in Ethernet (Nucleo-144, DISCOVERY, etc).
1717
Bump up version to v1.2.3 to sync with ESPAsyncWebServer v1.2.3
1818
1.2.4 K Hoang 05/09/2020 Add back MD5/SHA1 authentication feature.
1919
1.2.5 K Hoang 28/12/2020 Suppress all possible compiler warnings. Add examples.
20+
1.2.6 K Hoang 22/03/2021 Fix dependency on STM32AsyncTCP Library
2021
*****************************************************************************************************************************/
2122
/*
2223
Currently support

0 commit comments

Comments
 (0)