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

Commit b24816d

Browse files
authored
v1.6.2 to add demo sending in chunks
#### Releases v1.6.2 1. Add examples [Async_AdvancedWebServer_SendChunked](https://github.com/khoih-prog/AsyncWebServer_RP2040W/tree/main/examples/Async_AdvancedWebServer_SendChunked) and [AsyncWebServer_SendChunked](https://github.com/khoih-prog/AsyncWebServer_RP2040W/tree/main/examples/AsyncWebServer_SendChunked) to demo how to use `beginChunkedResponse()` to send large `html` in chunks 2. Use `allman astyle` and add `utils`
1 parent 24b377a commit b24816d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+3417
-2622
lines changed

CONTRIBUTING.md

+27-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ If you don't find anything, please [open a new issue](https://github.com/khoih-p
1414

1515
Please ensure to specify the following:
1616

17-
* Arduino IDE version (e.g. 1.8.16) or Platform.io version
17+
* Arduino IDE version (e.g. 1.8.19) or Platform.io version
1818
* Board Core Version (e.g. ESP32 core v2.0.5)
1919
* Contextual information (e.g. what you were trying to achieve)
2020
* Simplest possible steps to reproduce
@@ -30,24 +30,47 @@ Arduino IDE version: 1.8.19
3030
WT32_ETH01 board
3131
ESP32 core v2.0.5
3232
OS: Ubuntu 20.04 LTS
33-
Linux xy-Inspiron-3593 5.15.0-48-generic #54~20.04.1-Ubuntu SMP Thu Sep 1 16:17:26 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
33+
Linux xy-Inspiron-3593 5.15.0-52-generic #58~20.04.1-Ubuntu SMP Thu Oct 13 13:09:46 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
3434
3535
Context:
36-
I encountered a crash while trying to use this library
37-
36+
I encountered a crash while using this library
3837
Steps to reproduce:
3938
1. ...
4039
2. ...
4140
3. ...
4241
4. ...
4342
```
4443

44+
### Additional context
45+
46+
Add any other context about the problem here.
47+
48+
---
49+
4550
### Sending Feature Requests
4651

4752
Feel free to post feature requests. It's helpful if you can explain exactly why the feature would be useful.
4853

4954
There are usually some outstanding feature requests in the [existing issues list](https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement), feel free to add comments to them.
5055

56+
---
57+
5158
### Sending Pull Requests
5259

5360
Pull Requests with changes and fixes are also welcome!
61+
62+
Please use the `astyle` to reformat the updated library code as follows (demo for Ubuntu Linux)
63+
64+
1. Change directory to the library GitHub
65+
66+
```
67+
xy@xy-Inspiron-3593:~$ cd Arduino/xy/AsyncWebServer_WT32_ETH01_GitHub/
68+
xy@xy-Inspiron-3593:~/Arduino/xy/AsyncWebServer_WT32_ETH01_GitHub$
69+
```
70+
71+
2. Issue astyle command
72+
73+
```
74+
xy@xy-Inspiron-3593:~/Arduino/xy/AsyncWebServer_WT32_ETH01_GitHub$ bash utils/restyle.sh
75+
```
76+

changelog.md

+11
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@
55
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](#Contributing)
66
[![GitHub issues](https://img.shields.io/github/issues/khoih-prog/AsyncWebServer_WT32_ETH01.svg)](http://github.com/khoih-prog/AsyncWebServer_WT32_ETH01/issues)
77

8+
<a href="https://www.buymeacoffee.com/khoihprog6" title="Donate to my libraries using BuyMeACoffee"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Donate to my libraries using BuyMeACoffee" style="height: 50px !important;width: 181px !important;" ></a>
9+
<a href="https://www.buymeacoffee.com/khoihprog6" title="Donate to my libraries using BuyMeACoffee"><img src="https://img.shields.io/badge/buy%20me%20a%20coffee-donate-orange.svg?logo=buy-me-a-coffee&logoColor=FFDD00" style="height: 20px !important;width: 200px !important;" ></a>
10+
<a href="https://profile-counter.glitch.me/khoih-prog/count.svg" title="Total Visitor count"><img src="https://profile-counter.glitch.me/khoih-prog/count.svg" style="height: 30px;width: 200px;"></a>
11+
<a href="https://profile-counter.glitch.me/khoih-prog-AsyncWebServer_WT32_ETH01/count.svg" title="Visitor count"><img src="https://profile-counter.glitch.me/khoih-prog-AsyncWebServer_WT32_ETH01/count.svg" style="height: 30px;width: 200px;"></a>
12+
813
---
914
---
1015

1116
## Table of contents
1217

1318
* [Changelog](#changelog)
19+
* [Releases v1.6.2](#releases-v162)
1420
* [Releases v1.6.1](#releases-v161)
1521
* [Releases v1.6.0](#releases-v160)
1622
* [Releases v1.5.0](#releases-v150)
@@ -27,6 +33,11 @@
2733

2834
## Changelog
2935

36+
#### Releases v1.6.2
37+
38+
1. Add examples [Async_AdvancedWebServer_SendChunked](https://github.com/khoih-prog/AsyncWebServer_RP2040W/tree/main/examples/Async_AdvancedWebServer_SendChunked) and [AsyncWebServer_SendChunked](https://github.com/khoih-prog/AsyncWebServer_RP2040W/tree/main/examples/AsyncWebServer_SendChunked) to demo how to use `beginChunkedResponse()` to send large `html` in chunks
39+
2. Use `allman astyle` and add `utils`
40+
3041
#### Releases v1.6.1
3142

3243
1. Don't need `memmove()`, CString no longer destroyed. Check [All memmove() removed - string no longer destroyed #11](https://github.com/khoih-prog/Portenta_H7_AsyncWebServer/pull/11)

0 commit comments

Comments
 (0)