From 4ff77d0d7e8781bf42c5397cf9f5b52121d6ad90 Mon Sep 17 00:00:00 2001 From: hrz <1710360675@qq.com> Date: Tue, 15 Apr 2025 13:18:23 +0800 Subject: [PATCH] =?UTF-8?q?update:=E6=9B=B4=E6=96=B0=E7=83=A7=E5=BD=95?= =?UTF-8?q?=E6=97=B6ota=E5=9C=B0=E5=9D=80=20(#810)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * update:修复默认模型没有修改到模版配置的bug * update:智控台可设置允许用户自由注册 * update:更新烧录时ota地址 --- docs/firmware-build.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/firmware-build.md b/docs/firmware-build.md index 0dafd058..b73b5977 100644 --- a/docs/firmware-build.md +++ b/docs/firmware-build.md @@ -42,7 +42,7 @@ config WEBSOCKET_URL 如果你是全模块部署本项目,就修改OTA接口,如果你只是部署了8000端口的xiaozhi-server,可以继续沿用虾哥团队的OTA接口。如果你不修改OTA接口,请直接忽略本第4步,直接看第5步 找到`OTA_VERSION_URL`的`default`的内容,把`https://api.tenclass.net/xiaozhi/ota/` - 改成你自己的地址,例如,我的接口地址是`http://192.168.1.25:8000/xiaozhi/ota/`,就把内容改成这个。 + 改成你自己的地址,例如,我的接口地址是`http://192.168.1.25:8002/xiaozhi/ota/`,就把内容改成这个。 修改前: ``` @@ -56,7 +56,7 @@ config OTA_VERSION_URL ``` config OTA_VERSION_URL string "OTA Version URL" - default "http://192.168.1.25:8000/xiaozhi/ota/" + default "http://192.168.1.25:8002/xiaozhi/ota/" help The application will access this URL to check for updates. ```