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

Latest commit

 

History

History
63 lines (39 loc) · 3.51 KB

changelog.md

File metadata and controls

63 lines (39 loc) · 3.51 KB

AsyncWebServer_Teensy41 Library

arduino-library-badge GitHub release GitHub contributions welcome GitHub issues

Donate to my libraries using BuyMeACoffee



Table of contents



Changelog

Releases v1.7.0

  1. Fix file upload to Teensy 4.1 board based on suggestions made on the PJRC forum. Align signatures of file upload handlers. For more details, please see this post: AsyncWebServer_Teensy41 bug onUpload.

Releases v1.6.2

  1. Add examples Async_WebSocketsServer to demo how to use Async_WebSockets

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

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 and All memmove() removed - string no longer destroyed #11
  2. Add multiple examples to demo the new feature

Releases v1.5.0

  1. Fix issue with slow browsers or network. Check Target stops responding after variable time when using Firefox on Windows 10 #3
  2. Add functions and example Async_AdvancedWebServer_favicon to support favicon.ico

Releases v1.4.1

  1. Initial porting and coding for Teensy 4.1 using built-in QNEthernet
  2. Bump up version to v1.4.1 to sync with AsyncWebServer_STM32 v1.4.1