Release v1.0.9: Fix SSE real-time streaming in Home Assistant Ingress mode

This commit is contained in:
eduard256
2025-12-11 16:40:31 +00:00
parent e9dc04178e
commit 787919d20b
3 changed files with 14 additions and 2 deletions
+12
View File
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.0.9] - 2025-12-11
### Fixed
- Fixed real-time SSE streaming in Home Assistant Ingress mode
- SSE events now arrive immediately instead of being buffered until completion
### Technical
- Added automatic detection of Home Assistant Ingress via X-Ingress-Path header
- Implemented 64KB padding for SSE events to overcome aiohttp buffer in HA Supervisor
- Adjusted progress update interval to 3 seconds in Ingress mode to reduce traffic
- Normal mode (Docker/direct access) remains unchanged
## [1.0.8] - 2025-11-26
### Changed
+1 -1
View File
@@ -20,7 +20,7 @@ import (
const (
// Version is the application version
Version = "1.0.7"
Version = "1.0.9"
// Banner is the application banner
Banner = `
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "webui",
"version": "1.0.4",
"version": "1.0.9",
"type": "module",
"description": "",
"main": "index.js",