From 25700a34b2dc91a81868737b6e251563756f7996 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 31 Jan 2026 20:47:26 +0200 Subject: [PATCH 1/4] Fix nginx landing page permissions (chmod) and bump add-on to 0.5.11 --- openclaw_assistant/config.yaml | 2 +- openclaw_assistant/run.sh | 13 +++++++++++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/openclaw_assistant/config.yaml b/openclaw_assistant/config.yaml index 0909548..749bec4 100644 --- a/openclaw_assistant/config.yaml +++ b/openclaw_assistant/config.yaml @@ -1,5 +1,5 @@ name: OpenClaw Assistant -version: "0.5.10" +version: "0.5.11" slug: openclaw_assistant description: Run OpenClaw Assistant (OpenClaw-compatible) as a Home Assistant add-on. url: https://github.com/techartdev/OpenClawHomeAssistant diff --git a/openclaw_assistant/run.sh b/openclaw_assistant/run.sh index 801d05e..bb353b2 100644 --- a/openclaw_assistant/run.sh +++ b/openclaw_assistant/run.sh @@ -222,8 +222,17 @@ landing = landing_tpl.replace('__GATEWAY_TOKEN__', token) landing = landing.replace('__GATEWAY_PUBLIC_URL__', public_url) landing = landing.replace('__GW_PUBLIC_URL_PATH__', gw_path) -Path('/etc/nginx/html').mkdir(parents=True, exist_ok=True) -Path('/etc/nginx/html/index.html').write_text(landing) +out_dir = Path('/etc/nginx/html') +out_dir.mkdir(parents=True, exist_ok=True) +out_file = out_dir / 'index.html' +out_file.write_text(landing) + +# Ensure nginx can read it even if base image uses restrictive umask/permissions. +try: + out_dir.chmod(0o755) + out_file.chmod(0o644) +except Exception: + pass PY echo "Starting ingress proxy (nginx) on :8099 ..." From c8c4148e23c2a3bcbb17f60f613a7f0171b9d6a6 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 1 Feb 2026 00:40:54 +0200 Subject: [PATCH 2/4] Bump bundled openclaw to 2026.1.30; bump add-on to 0.5.12 --- openclaw_assistant/Dockerfile | 2 +- openclaw_assistant/config.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/openclaw_assistant/Dockerfile b/openclaw_assistant/Dockerfile index e460de4..e2096d9 100644 --- a/openclaw_assistant/Dockerfile +++ b/openclaw_assistant/Dockerfile @@ -44,7 +44,7 @@ RUN set -eu; \ # Install OpenClaw globally RUN npm config set fund false && npm config set audit false \ - && npm install -g openclaw@2026.1.29 + && npm install -g openclaw@2026.1.30 COPY run.sh /run.sh COPY nginx.conf.tpl /etc/nginx/nginx.conf.tpl diff --git a/openclaw_assistant/config.yaml b/openclaw_assistant/config.yaml index 749bec4..8f4711e 100644 --- a/openclaw_assistant/config.yaml +++ b/openclaw_assistant/config.yaml @@ -1,5 +1,5 @@ name: OpenClaw Assistant -version: "0.5.11" +version: "0.5.12" slug: openclaw_assistant description: Run OpenClaw Assistant (OpenClaw-compatible) as a Home Assistant add-on. url: https://github.com/techartdev/OpenClawHomeAssistant From 7e700f647ba28d4916c108b8205e4304b8b6e480 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 1 Feb 2026 00:47:40 +0200 Subject: [PATCH 3/4] README: add Revolut donation link; bump add-on to 0.5.13 --- README.md | 5 +++++ openclaw_assistant/config.yaml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a28cc6d..37cfdb2 100644 --- a/README.md +++ b/README.md @@ -56,3 +56,8 @@ See `openclaw_assistant/config.yaml` for the authoritative schema. ## Docs See **DOCS.md** for a step-by-step first-time setup guide + troubleshooting. + +## Support / Donations + +Hey! You can send me money on Revolut by following this link: +- https://revolut.me/vanyo6dhw diff --git a/openclaw_assistant/config.yaml b/openclaw_assistant/config.yaml index 8f4711e..5067db2 100644 --- a/openclaw_assistant/config.yaml +++ b/openclaw_assistant/config.yaml @@ -1,5 +1,5 @@ name: OpenClaw Assistant -version: "0.5.12" +version: "0.5.13" slug: openclaw_assistant description: Run OpenClaw Assistant (OpenClaw-compatible) as a Home Assistant add-on. url: https://github.com/techartdev/OpenClawHomeAssistant From 2658ed44b1bbdb5821860ccd1b524b10191675a1 Mon Sep 17 00:00:00 2001 From: TechArtDev Date: Sun, 1 Feb 2026 00:52:47 +0200 Subject: [PATCH 4/4] Update donation message in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 37cfdb2..76c8ab6 100644 --- a/README.md +++ b/README.md @@ -59,5 +59,5 @@ See **DOCS.md** for a step-by-step first-time setup guide + troubleshooting. ## Support / Donations -Hey! You can send me money on Revolut by following this link: +If you find this useful and you want to bring me a coffee to make more useful things, or support the project, use the link below: - https://revolut.me/vanyo6dhw