This repository has been archived by the owner on Feb 4, 2023. It is now read-only.
Releases: khoih-prog/AsyncWebServer_RP2040W
Releases · khoih-prog/AsyncWebServer_RP2040W
v1.5.0 to fix `_catchAllHandler` not working bug resulting no response in the browser when requesting a non-existing url
v1.5.0 to fix `_catchAllHandler` not working bug resulting no response in the browser when requesting a non-existing url
Latest
Release v1.5.0
- Fix
_catchAllHandler
not working bug. Check catchAll handler not working #12
v1.4.2 to add examples to demo how to use `AsyncWebServer_RP2040W` and `AsyncMQTT_Generic` libraries together
Release v1.4.2
- Add examples Async_AdvancedWebServer_SendChunked_MQTT and AsyncWebServer_MQTT_RP2040W to demo how to use
AsyncWebServer_RP2040W
andAsyncMQTT_Generic
libraries together - Improve
README.md
so that links can be used in other sites, such asPIO
v1.4.1 to add examples to demo how to use `beginChunkedResponse()` to send large `html` in chunks, to use `allman astyle`
Release v1.4.1
- Add examples Async_AdvancedWebServer_SendChunked and AsyncWebServer_SendChunked to demo how to use
beginChunkedResponse()
to send largehtml
in chunks - Use
allman astyle
and addutils
v1.4.0 to add `LittleFS` functions such as AsyncFSWebServer
Release v1.4.0
- Add
LittleFS
functions such as AsyncFSWebServer - Add examples AsyncFSWebServer and AsyncFSWebServer_Complex to demo the new feature
v1.3.1 to improve robustness of AsyncWebSockets server and to add example Async_WebSocketsServer_Xtreme
Release v1.3.1
- Improve robustness of AsyncWebSockets server. Check AsyncWebSocketServer_RP2040W crashes with "[AWS] ERROR: Too many messages queued" #6
- Add example Async_WebSocketsServer_Xtreme to demo the nearly highest possible WebSockets Server speed
v1.3.0 to fix crash when using AsyncWebSockets Server and to add example Async_WebSocketsServer
Release v1.3.0
- Fix
crash
when usingAsyncWebSockets server
. Check Can't connect to AsyncWebSocketServer_RP2040 via javascript #5 - Add example Async_WebSocketsServer to demo the AsyncWebSockets Server with a
Python
WSClient.py
v1.2.1 to not use memmove() and not destroy original CString
Releases v1.2.1
- Don't need
memmove()
, CString no longer destroyed. Check All memmove() removed - string no longer destroyed #11
v1.2.0 to save heap when sending large data
Release v1.2.0
- Support using
CString
to save heap to sendvery large data
. Check request->send(200, textPlainStr, jsonChartDataCharStr); - Without using String Class - to save heap #8 - Add multiple examples to demo the new feature
v1.1.2 to add functions and example `Async_AdvancedWebServer_favicon` to support `favicon.ico`
Release v1.1.2
- Add functions and example Async_AdvancedWebServer_favicon to support
favicon.ico
v1.1.1 to avoid the issue `CRC doesn't match, file is corrupted` with Arduino IDE Library Manager installation of v1.1.0
Release v1.1.1
- To avoid the issue
CRC doesn't match, file is corrupted
with Arduino IDE Library Manager installation of v1.1.0