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

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`

12 Nov 02:27
8dc7caf
Compare
Choose a tag to compare

Releases v1.6.1

  1. Add examples Async_AdvancedWebServer_SendChunked and AsyncWebServer_SendChunked to demo how to use beginChunkedResponse() to send large html in chunks
  2. Use allman astyle and add utils

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`

06 Oct 23:34
0d11b02
Compare
Choose a tag to compare

Releases v1.6.0

  1. Support using CString to save heap to send very large data. Check request->send(200, textPlainStr, jsonChartDataCharStr); - Without using String Class - to save heap #8
  2. Add functions and example Async_AdvancedWebServer_favicon to support favicon.ico
  3. Add multiple examples to demo the new feature
  4. Fix issue with slow browsers or network
  5. Change license from MIT to GPLv3 to match with original ESPAsyncWebServer license

v1.5.0 for new STM32 v2.3.0 core

22 Jun 05:57
70903ea
Compare
Choose a tag to compare

Releases v1.5.0

  1. Update examples for new STM32 core v2.3.0
  2. Update Packages' Patches

v1.4.1 to fix authenticate issue caused by libb64

12 Jan 19:18
94d587e
Compare
Choose a tag to compare

Releases v1.4.1

  1. Fix authenticate issue caused by libb64

v1.4.0 to fix base64 encoding of websocket and add WebServer progmem support

15 Dec 04:49
460fc17
Compare
Choose a tag to compare

Releases v1.4.0

  1. 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`

09 Oct 19:48
88503ca
Compare
Choose a tag to compare

Releases v1.3.1

  1. Update platform.ini and library.json to use original khoih-prog instead of khoih.prog after PIO fix
  2. 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.

15 Apr 00:07
51c8627
Compare
Choose a tag to compare

Releases v1.3.0

  1. Add support to LAN8720 Ethernet for many STM32F4 (F407xx, NUCLEO_F429ZI) and STM32F7 (DISCO_F746NG, NUCLEO_F746ZG, NUCLEO_F756ZG) boards.
  2. Add LAN8720 examples
  3. Add Packages' Patches for STM32 to use LAN8720 with STM32Ethernet and LwIP libraries
  4. Reduce compiled code size.

Version v1.2.6 to fix dependency on STM32AsyncTCP Library

22 Mar 23:20
e845d62
Compare
Choose a tag to compare

Version v1.2.5 to clean-up all compiler warnings possible and add examples.

28 Dec 23:10
7b06496
Compare
Choose a tag to compare

Releases v1.2.5

  1. Clean-up all compiler warnings possible.
  2. Update Table of Contents
  3. Add examples
  4. Add Version String

Release v1.2.4 to restore MD5/SHA1 authentication feature.

02 Oct 02:23
833df83
Compare
Choose a tag to compare

Releases v1.2.4

  1. Add back MD5/SHA1 authentication feature.
  2. Add example, update README.md, clean up.