J. Nick Koston
|
bcc424afed
|
[web_server] Reduce code duplication in JSON generation with helper functions (#11117)
|
2025-10-14 07:21:19 +13:00 |
|
J. Nick Koston
|
be2c859df3
|
[web_server] Consolidate duplicate client connection checks (saves 288 bytes of flash) (#11116)
|
2025-10-14 07:01:47 +13:00 |
|
J. Nick Koston
|
118663f9e2
|
[web_server] Use IDF web server for ESP32 Arduino builds (#10991)
|
2025-10-05 19:07:52 -05:00 |
|
 J. Nick KostonandCopilot
|
9b6d62cd69
|
[web_server_idf] Fix watchdog timeout with unreliable event source connections (#11002)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
|
2025-10-06 09:55:39 +13:00 |
|
J. Nick Koston
|
5932a4bd0e
|
[web_server] Reduce flash and RAM usage by optimizing string construction (#10986)
|
2025-10-06 09:42:23 +13:00 |
|
J. Nick Koston
|
922f4b6352
|
[web_server] Optimize handler methods with lookup tables to reduce flash usage (#10951)
|
2025-10-01 15:52:35 +13:00 |
|
J. Nick Koston
|
875ada86b0
|
[web_server] Remove std::find_if overhead matching IDF implementation (#10889)
|
2025-09-26 12:14:16 +12:00 |
|
J. Nick Koston
|
c64d385fa6
|
[web_server] Reduce flash usage by eliminating lambda overhead in JSON generation (#10749)
|
2025-09-22 09:06:59 +12:00 |
|
J. Nick Koston
|
0089619518
|
[web_server] Reduce flash usage by consolidating defer calls in switch and lock handlers (#10297)
|
2025-08-19 21:41:34 -05:00 |
|
RFDarter
|
abecc0e8d8
|
[web_server] fix cover_all_json_generator wrong detail (#10252)
|
2025-08-15 09:44:24 -05:00 |
|
J. Nick Koston
|
6bfe281d18
|
[web_server] Reduce flash usage by consolidating parameter parsing (#10154)
|
2025-08-11 09:09:31 +12:00 |
|
J. Nick Koston
|
a75f73dbf0
|
[web_server] Reduce binary size by using EntityBase and minimizing template instantiations (#10033)
|
2025-08-04 14:03:37 +12:00 |
|
J. Nick Koston
|
b7ce8c116b
|
[core] Centralize component setup logging to reduce flash usage (#9885)
|
2025-07-25 19:27:03 +00:00 |
|
Flo
|
4378d10f45
|
Fix template event web_server crash (#9618)
|
2025-07-17 11:45:07 -10:00 |
|
J. Nick Koston
|
b1655b3fd4
|
Allow disabling OTA for web_server while keeping it enabled for captive_portal (#9583)
|
2025-07-16 17:05:09 -10:00 |
|
 
|
9ae45ba8aa
|
[json] Bump ArduinoJson library to 7.4.2 (#8857)
Co-authored-by: J. Nick Koston <nick@koston.org>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
|
2025-07-15 14:11:10 +12:00 |
|
J. Nick Koston
|
f78e71c86a
|
Fix WebServer routes constant naming convention (#9497)
|
2025-07-14 10:13:24 -10:00 |
|
J. Nick Koston
|
f8c45573f3
|
Refactor WebServer request handling for improved maintainability (#9470)
|
2025-07-15 07:24:20 +12:00 |
|
 J. Nick KostonandCopilot
|
ee8ee4e646
|
Optimize logger callback API by including message length parameter (#9368)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
|
2025-07-07 22:00:03 +00:00 |
|
 J. Nick KostonandCopilot
|
b6fade7339
|
Fix defer() thread safety issues on multi-core platforms (#9317)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
|
2025-07-07 10:01:51 +12:00 |
|
 J. Nick KostonandJesse Hills
|
d686257cff
|
Fix web_server busy loop with ungracefully disconnected clients (#9312)
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
|
2025-07-04 02:07:25 +00:00 |
|
J. Nick Koston
|
d00e20ccdf
|
Reduce web_server loop overhead on ESP32 by avoiding unnecessary semaphore operations (#9308)
|
2025-07-04 12:53:14 +12:00 |
|
J. Nick Koston
|
25457da97c
|
Fix web_server URL parsing lifetime issue (#9309)
|
2025-07-04 12:33:19 +12:00 |
|
 J. Nick KostonandJesse Hills
|
84ab758b22
|
Replace custom OTA implementation in web_server_base (#9274)
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
|
2025-07-02 13:50:45 +12:00 |
|
J. Nick Koston
|
16ef5a9377
|
Add OTA support to ESP-IDF webserver (#9264)
|
2025-07-01 15:21:11 +12:00 |
|
J. Nick Koston
|
9890659f61
|
Optimize web_server UrlMatch to avoid heap allocations (#9263)
|
2025-06-30 04:12:03 +00:00 |
|
J. Nick Koston
|
687cb1cd2b
|
Reduce web_server RAM usage by 96 bytes with conditional sorting compilation (#9227)
|
2025-06-30 11:47:20 +12:00 |
|
J. Nick Koston
|
d592208c74
|
Fix crash when event last_event_type is null in web_server (#9266)
|
2025-06-29 22:45:41 +00:00 |
|
J. Nick Koston
|
ddbcf8549c
|
Reduce web_server code duplication by extracting detail parameter parsing (#9257)
|
2025-06-29 13:29:18 -05:00 |
|
Kuba Szczodrzyński
|
669ef7a0b1
|
[web_server] Upgrade ESPAsync libraries (#8867)
|
2025-06-18 21:51:00 +12:00 |
|
 Clyde StubbsandJ. Nick Koston
|
261b561bb2
|
[binary_sensor] Add action to invalidate state and pass to HA (#8961)
Co-authored-by: J. Nick Koston <nick@koston.org>
|
2025-06-12 09:16:20 +10:00 |
|
J. Nick Koston
|
c0b05ada1a
|
Reduce ESP_LOGCONFIG calls (#9026)
|
2025-06-09 00:02:30 +00:00 |
|
Keith Burzinski
|
8eac859bab
|
Streamline setup() logging (s, t, u, v, w, x, y, z) (#8930)
|
2025-05-29 07:28:41 +12:00 |
|
 
|
5e44a035a3
|
web_server: ensure fair network sharing + prevent lost state changes via deferred publish at high event load (#7538)
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
Co-authored-by: Keith Burzinski <kbx81x@gmail.com>
|
2025-02-25 13:19:31 +11:00 |
|
Saninn Salas Diaz
|
c43d8460bd
|
fix(web_server/fan): send speed update values even when fan is off (#8086)
|
2025-01-15 15:14:58 +13:00 |
|
Nate Clark
|
f319472066
|
web_server: Adds REST API POST endpoints to arm and disarm (#7985)
|
2025-01-13 17:35:29 +13:00 |
|
RFDarter
|
654cee6f83
|
[web_server] expose event compoent to REST (#7587)
|
2024-10-14 07:50:22 +13:00 |
|
RFDarter
|
cf14c02b8a
|
[web_server] Event component grouping (#7586)
|
2024-10-14 07:50:13 +13:00 |
|
 RFDarterandJesse Hills
|
86a34f4b17
|
[web_server] v3 entity grouping (#6833)
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
|
2024-10-07 15:52:26 +13:00 |
|
RFDarter
|
523eedbc51
|
[web_server] Expose detail=all on all components (#7531)
|
2024-10-03 13:34:12 +13:00 |
|
Tarik2142
|
c287673947
|
add "fan_mode" and "swing_mode" to REST API (#7476)
|
2024-09-23 09:35:57 +12:00 |
|
tomaszduda23
|
f8e8bd2c24
|
[code-quality] fix clang-tidy web_server and web_server_base (#7286)
|
2024-08-30 12:03:44 +12:00 |
|
tomaszduda23
|
c5b77f4590
|
[web_server] move v1 code to separate file (#7091)
|
2024-07-19 16:35:41 +12:00 |
|
Jesse Hills
|
3cd2fb0843
|
[core] Update Entities (#6885)
|
2024-06-12 09:57:36 +12:00 |
|
 RFDarterandJesse Hills
|
a7fc1a6298
|
[web_server] add entity sorting for v3 (#6445)
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
|
2024-05-30 13:54:20 +12:00 |
|
Peter Zich
|
47c262832b
|
web_server: Add support for v3 local server_index (#6563)
|
2024-04-30 07:24:13 +12:00 |
|
Jesse Hills
|
8ef7b41c91
|
Add datetime entities (#6513)
|
2024-04-26 09:19:54 +12:00 |
|
 David FriedlandandJesse Hills
|
c531a528f0
|
Event entity support (#6451)
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
|
2024-04-24 14:35:26 +12:00 |
|
 Keith BurzinskiandJesse Hills
|
eb89d99999
|
Add valve component (#6447)
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
|
2024-04-23 16:47:03 +12:00 |
|
RFDarter
|
b4b4e81c1c
|
Webserver float to string fix (#6507)
|
2024-04-10 11:33:26 +12:00 |
|