This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
Releases: khoih-prog/AsyncWebServer_STM32
Releases · khoih-prog/AsyncWebServer_STM32
v1.6.1 to add examples to demo how to use `beginChunkedResponse()` to send large `html` in chunks, to use `allman astyle`
v1.6.1 to add examples to demo how to use `beginChunkedResponse()` to send large `html` in chunks, to use `allman astyle`
Latest
Releases v1.6.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.6.0 to save heap when sending large data, to add support to `favicon`, to add examples to demo the new features, to fix issue with slow browsers or network and to change license from `MIT` to `GPLv3`
Releases v1.6.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 functions and example
Async_AdvancedWebServer_favicon
to supportfavicon.ico
- Add multiple examples to demo the new feature
- Fix issue with slow browsers or network
- Change license from
MIT
toGPLv3
to match with original ESPAsyncWebServer license
v1.5.0 for new STM32 v2.3.0 core
Releases v1.5.0
- Update examples for new STM32 core v2.3.0
- Update
Packages' Patches
v1.4.1 to fix authenticate issue caused by libb64
Releases v1.4.1
- Fix authenticate issue caused by libb64
v1.4.0 to fix base64 encoding of websocket and add WebServer progmem support
Releases v1.4.0
- Fix base64 encoding of websocket client key and add WebServer progmem support. Check PR Fix base64 encoding of websocket client key and progmem support for webserver #7
v1.3.1 to update `platform.ini` and `library.json`
Releases v1.3.1
- Update
platform.ini
andlibrary.json
to use originalkhoih-prog
instead ofkhoih.prog
after PIO fix - Update
Packages' Patches
Release v1.3.0 to add support to LAN8720 for STM32F4 (F407xx, NUCLEO_F429ZI) and STM32F7 (DISCO_F746NG, NUCLEO_F746ZG, NUCLEO_F756ZG) boards.
Releases v1.3.0
- Add support to LAN8720 Ethernet for many STM32F4 (F407xx, NUCLEO_F429ZI) and STM32F7 (DISCO_F746NG, NUCLEO_F746ZG, NUCLEO_F756ZG) boards.
- Add LAN8720 examples
- Add Packages' Patches for STM32 to use LAN8720 with STM32Ethernet and LwIP libraries
- Reduce compiled code size.
Version v1.2.6 to fix dependency on STM32AsyncTCP Library
Releases v1.2.6
- Fix dependency on unpublished STM32AsyncTCP Library. Check Compilation broken due to error in STM32AsyncTCP dependency and how to run one of the examples?.
Version v1.2.5 to clean-up all compiler warnings possible and add examples.
Releases v1.2.5
- Clean-up all compiler warnings possible.
- Update Table of Contents
- Add examples
- Add Version String
Release v1.2.4 to restore MD5/SHA1 authentication feature.
Releases v1.2.4
- Add back MD5/SHA1 authentication feature.
- Add example, update README.md, clean up.