Compare commits

...

10 Commits

Author SHA1 Message Date
057a226610 Merge remote-tracking branch 'origin/develop' into feat/optimize
# Conflicts:
#	frontend/src/lib/errors.ts
2026-06-14 20:40:05 +08:00
9dc9025d10 Merge pull request 'fix: 修复 ChatPanel vadError 属性类型不匹配导致构建失败' (#109) from fix/frontend into develop
Reviewed-on: http://8.161.227.145:3000/XEngineers/CamTalk/pulls/109
2026-06-14 20:10:59 +08:00
hhs
92e47718bc fix: 修复 ChatPanel vadError 属性类型不匹配导致构建失败 2026-06-14 20:10:31 +08:00
6032608e49 Merge pull request 'fix: 更换 PostgreSQL 镜像源' (#107) from fix/actions into develop
Reviewed-on: http://8.161.227.145:3000/XEngineers/CamTalk/pulls/107
2026-06-14 19:59:41 +08:00
hhs
668da26e23 fix: 更换 PostgreSQL 镜像源 2026-06-14 19:58:22 +08:00
44f4f3ce1a Merge pull request 'feat:语音对话优化' (#106) from feat/onload into develop
Reviewed-on: http://8.161.227.145:3000/XEngineers/CamTalk/pulls/106
2026-06-14 19:55:02 +08:00
8ff3c519ac Merge pull request 'fix: 更换 PostgreSQL 镜像源为轩辕镜像,修复阿里云镜像拉取失败' (#104) from fix/actions into develop
Reviewed-on: http://8.161.227.145:3000/XEngineers/CamTalk/pulls/104
2026-06-14 19:51:50 +08:00
hhs
ffc9b4a320 fix: 更换 PostgreSQL 镜像源为轩辕镜像,修复阿里云镜像拉取失败 2026-06-14 19:51:15 +08:00
e89585e453 Merge pull request 'fix: 移除未使用的变量和导入,修复 tsc 编译错误' (#102) from fix/actions into develop
Reviewed-on: http://8.161.227.145:3000/XEngineers/CamTalk/pulls/102
2026-06-14 19:43:59 +08:00
hhs
e11934cf70 fix: 移除未使用的变量和导入,修复 tsc 编译错误 2026-06-14 19:37:16 +08:00
3 changed files with 3 additions and 5 deletions

View File

@@ -29,8 +29,8 @@ services:
restart: unless-stopped
postgres:
# 阿里云镜像,避免 Docker Hub 拉取超时
image: registry.cn-hangzhou.aliyuncs.com/library/postgres:15-alpine
# 轩辕镜像加速,避免 Docker Hub 拉取超时
image: docker.m.daocloud.io/library/postgres:15-alpine
container_name: camtalk-postgres
environment:
POSTGRES_USER: camtalk

View File

@@ -17,7 +17,7 @@ interface ChatPanelProps {
currentScenario?: string;
isProcessing?: boolean;
isVADReady?: boolean;
vadError?: string;
vadError?: string | null;
isMicOn?: boolean;
isSpeaking?: boolean;
onSendText?: (text: string) => void;

View File

@@ -3,8 +3,6 @@
// 来源docs/03-接口文档.md §五 错误码
// ============================================================
// ErrorCode type reserved for future use
/** 将错误码转为用户友好文案(需要传入翻译函数) */
export function getErrorMessage(code: string, translate: (key: string) => string): string {
const key = `error.${code}`;