You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+100Lines changed: 100 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,17 @@
1
+
# In this fork
2
+
- SPIFFSEditor modifications
3
+
- Added [extras](https://github.com/lorol/ESPAsyncWebServer/tree/master/extras) folder with (Win) tools for re-packing, editing, updating and compressing html to binary arrays embedded to source
4
+
- Added a [SmartSwitch](https://github.com/lorol/ESPAsyncWebServer/tree/master/examples/SmartSwitch) example to test code features
5
+
- Applied the memory optimizations from [sascha432](https://github.com/sascha432/ESPAsyncWebServer) fork
6
+
- Cookie Authentication including on Websocket part, based on [ayushsharma82](https://github.com/me-no-dev/ESPAsyncWebServer/pull/684) PR, new functions added:
7
+
- For Websocket: ```void handleHandshake(AwsHandshakeHandler handler) ```
8
+
- For EventSource: ```void authorizeConnect(ArAuthorizeConnectHandler cb)```
9
+
-[Additions to this README.md from jendakol' PR](https://github.com/me-no-dev/ESPAsyncWebServer/pull/770)
10
+
-[Respond with file content using a callback and extra headers](#respond-with-file-content-using-a-callback-and-extra-headers)
11
+
-[Serving static files by custom handling](#serving-static-files-by-custom-handling)
12
+
- Added LittleFS choice for both [esp8266](https://github.com/esp8266/Arduino/tree/master/libraries/LittleFS) / [esp32](https://github.com/lorol/LITTLEFS) , and FatFS tests for esp32 see [SmartSwitch](https://github.com/lorol/ESPAsyncWebServer/blob/master/examples/SmartSwitch/SmartSwitch.ino#L16)
@@ -53,6 +67,7 @@ To use this library you might need to have the latest git versions of [ESP32](ht
53
67
-[Respond with content coming from a File containing templates](#respond-with-content-coming-from-a-file-containing-templates)
54
68
-[Respond with content using a callback](#respond-with-content-using-a-callback)
55
69
-[Respond with content using a callback and extra headers](#respond-with-content-using-a-callback-and-extra-headers)
70
+
-[Respond with file content using a callback and extra headers](#respond-with-file-content-using-a-callback-and-extra-headers)
56
71
-[Respond with content using a callback containing templates](#respond-with-content-using-a-callback-containing-templates)
57
72
-[Respond with content using a callback containing templates and extra headers](#respond-with-content-using-a-callback-containing-templates-and-extra-headers)
58
73
-[Chunked Response](#chunked-response)
@@ -67,6 +82,7 @@ To use this library you might need to have the latest git versions of [ESP32](ht
0 commit comments