Skip to content

Commit 11a6439

Browse files
committed
Website update
1 parent 119130b commit 11a6439

File tree

2 files changed

+18
-10
lines changed

2 files changed

+18
-10
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,18 @@ Async Web Server for ESP31B
88

99
This fork is based on https://github.com/yubox-node-org/ESPAsyncWebServer and includes all the concurrency fixes.
1010

11-
## Changes
11+
## Changes in this fork
1212

13-
- SPIFFSEditor is removed
14-
- Arduino Json 7 compatibility
13+
- Removed SPIFFSEditor
1514
- Deployed in PlatformIO registry and Arduino IDE library manager
1615
- CI
17-
- Only supports ESP32
16+
- Some code cleanup
17+
- `SSE_MAX_QUEUED_MESSAGES` to control the maximum number of messages that can be queued for a SSE client
18+
- `write()` function public in `AsyncEventSource.h`
19+
- Arduino Json 7 compatibility and by default, still compatible with 6 (`AsyncJson.h`)
20+
- `WS_MAX_QUEUED_MESSAGES`: control the maximum number of messages that can be queued for a Websocket client
1821
- Resurrected `AsyncWebSocketMessageBuffer` and `makeBuffer()` in order to make the fork API-compatible with the original library from me-no-dev regarding WebSocket.
22+
- [#5](https://github.com/mathieucarbou/ESPAsyncWebServer/pull/5): set real "Last-Modified" header based on file's LastWrite time ([@vortigont](https://github.com/vortigont))
1923

2024
## Documentation
2125

@@ -37,7 +41,7 @@ Here is an example for serializing a Json document in a websocket message buffer
3741
```cpp
3842
void send(JsonDocument& doc) {
3943
const size_t len = measureJson(doc);
40-
44+
4145
// original API from me-no-dev
4246
AsyncWebSocketMessageBuffer* buffer = _ws->makeBuffer(len);
4347
assert(buffer); // up to you to keep or remove this

docs/index.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,18 @@ Async Web Server for ESP31B
88

99
This fork is based on https://github.com/yubox-node-org/ESPAsyncWebServer and includes all the concurrency fixes.
1010

11-
## Changes
11+
## Changes in this fork
1212

13-
- SPIFFSEditor is removed
14-
- Arduino Json 7 compatibility
13+
- Removed SPIFFSEditor
1514
- Deployed in PlatformIO registry and Arduino IDE library manager
1615
- CI
17-
- Only supports ESP32
16+
- Some code cleanup
17+
- `SSE_MAX_QUEUED_MESSAGES` to control the maximum number of messages that can be queued for a SSE client
18+
- `write()` function public in `AsyncEventSource.h`
19+
- Arduino Json 7 compatibility and by default, still compatible with 6 (`AsyncJson.h`)
20+
- `WS_MAX_QUEUED_MESSAGES`: control the maximum number of messages that can be queued for a Websocket client
1821
- Resurrected `AsyncWebSocketMessageBuffer` and `makeBuffer()` in order to make the fork API-compatible with the original library from me-no-dev regarding WebSocket.
22+
- [#5](https://github.com/mathieucarbou/ESPAsyncWebServer/pull/5): set real "Last-Modified" header based on file's LastWrite time ([@vortigont](https://github.com/vortigont))
1923

2024
## Documentation
2125

@@ -37,7 +41,7 @@ Here is an example for serializing a Json document in a websocket message buffer
3741
```cpp
3842
void send(JsonDocument& doc) {
3943
const size_t len = measureJson(doc);
40-
44+
4145
// original API from me-no-dev
4246
AsyncWebSocketMessageBuffer* buffer = _ws->makeBuffer(len);
4347
assert(buffer); // up to you to keep or remove this

0 commit comments

Comments
 (0)