diff --git a/packages/client/src/data/changelog.ts b/packages/client/src/data/changelog.ts index 5ba0b7d..97de4f7 100644 --- a/packages/client/src/data/changelog.ts +++ b/packages/client/src/data/changelog.ts @@ -5,6 +5,11 @@ export interface ChangelogEntry { } export const changelog: ChangelogEntry[] = [ + { + version: '0.4.5', + date: '2026-04-24', + changes: ['changelog.new_0_4_5_1', 'changelog.new_0_4_5_2', 'changelog.new_0_4_5_3', 'changelog.new_0_4_5_4', 'changelog.new_0_4_5_5', 'changelog.new_0_4_5_6', 'changelog.new_0_4_5_7', 'changelog.new_0_4_5_8'], + }, { version: '0.4.4', date: '2026-04-23', diff --git a/packages/client/src/i18n/locales/de.ts b/packages/client/src/i18n/locales/de.ts index 0fe7043..ccf8589 100644 --- a/packages/client/src/i18n/locales/de.ts +++ b/packages/client/src/i18n/locales/de.ts @@ -520,6 +520,14 @@ export default { // Anderungsprotokoll changelog: { + new_0_4_5_1: 'Add group chat with multi-agent rooms, @mention routing, and typing status recovery', + new_0_4_5_2: 'Rewrite model-context config to use YAML with context_length setting', + new_0_4_5_3: 'Add gpt-5.5 to OpenAI Codex model list', + new_0_4_5_4: 'Replace jobs proxy with local controller and optimize model loading', + new_0_4_5_5: 'Add i18n support for custom model feature in ModelSelector', + new_0_4_5_6: 'Fix sidebar i18n missing key warnings', + new_0_4_5_7: 'Clear all localStorage on logout', + new_0_4_5_8: 'Add periodic log rotation to prevent unbounded log growth', new_0_4_3_1: 'Benutzername/Passwort-Login neben Token-Authentifizierung hinzugefugt', new_0_4_3_2: 'Kontoeinstellungen fur Anmeldeinformationen hinzugefugt', new_0_4_3_3: 'Abmelden-Schaltflache in der Seitenleiste hinzugefugt', diff --git a/packages/client/src/i18n/locales/en.ts b/packages/client/src/i18n/locales/en.ts index 751bbab..120f9bc 100644 --- a/packages/client/src/i18n/locales/en.ts +++ b/packages/client/src/i18n/locales/en.ts @@ -676,6 +676,14 @@ export default { new_0_4_4_3: 'Add live badge on active chat sessions', new_0_4_4_4: 'Add StepFun and Nous Portal provider support', new_0_4_4_5: 'Fix special character search queries causing 500 error', + new_0_4_5_1: 'Add group chat with multi-agent rooms, @mention routing, and typing status recovery', + new_0_4_5_2: 'Rewrite model-context config to use YAML with context_length setting', + new_0_4_5_3: 'Add gpt-5.5 to OpenAI Codex model list', + new_0_4_5_4: 'Replace jobs proxy with local controller and optimize model loading', + new_0_4_5_5: 'Add i18n support for custom model feature in ModelSelector', + new_0_4_5_6: 'Fix sidebar i18n missing key warnings', + new_0_4_5_7: 'Clear all localStorage on logout', + new_0_4_5_8: 'Add periodic log rotation to prevent unbounded log growth', new_0_4_3_1: 'Add username/password login alongside token authentication', new_0_4_3_2: 'Add account settings for managing credentials (setup, change password, change username)', new_0_4_3_3: 'Add logout button to sidebar', diff --git a/packages/client/src/i18n/locales/es.ts b/packages/client/src/i18n/locales/es.ts index 9c4a280..333f616 100644 --- a/packages/client/src/i18n/locales/es.ts +++ b/packages/client/src/i18n/locales/es.ts @@ -520,6 +520,14 @@ export default { // Registro de cambios changelog: { + new_0_4_5_1: 'Add group chat with multi-agent rooms, @mention routing, and typing status recovery', + new_0_4_5_2: 'Rewrite model-context config to use YAML with context_length setting', + new_0_4_5_3: 'Add gpt-5.5 to OpenAI Codex model list', + new_0_4_5_4: 'Replace jobs proxy with local controller and optimize model loading', + new_0_4_5_5: 'Add i18n support for custom model feature in ModelSelector', + new_0_4_5_6: 'Fix sidebar i18n missing key warnings', + new_0_4_5_7: 'Clear all localStorage on logout', + new_0_4_5_8: 'Add periodic log rotation to prevent unbounded log growth', new_0_4_3_1: 'Agregar inicio de sesion con usuario/contrasena junto a autenticacion por token', new_0_4_3_2: 'Agregar configuracion de cuenta para gestionar credenciales', new_0_4_3_3: 'Agregar boton de cerrar sesion en la barra lateral', diff --git a/packages/client/src/i18n/locales/fr.ts b/packages/client/src/i18n/locales/fr.ts index 11aab41..da7537a 100644 --- a/packages/client/src/i18n/locales/fr.ts +++ b/packages/client/src/i18n/locales/fr.ts @@ -520,6 +520,14 @@ export default { // Journal des modifications changelog: { + new_0_4_5_1: 'Add group chat with multi-agent rooms, @mention routing, and typing status recovery', + new_0_4_5_2: 'Rewrite model-context config to use YAML with context_length setting', + new_0_4_5_3: 'Add gpt-5.5 to OpenAI Codex model list', + new_0_4_5_4: 'Replace jobs proxy with local controller and optimize model loading', + new_0_4_5_5: 'Add i18n support for custom model feature in ModelSelector', + new_0_4_5_6: 'Fix sidebar i18n missing key warnings', + new_0_4_5_7: 'Clear all localStorage on logout', + new_0_4_5_8: 'Add periodic log rotation to prevent unbounded log growth', new_0_4_3_1: 'Ajouter la connexion par nom d\'utilisateur/mot de passe en plus du token', new_0_4_3_2: 'Ajouter les parametres de compte pour gerer les identifiants', new_0_4_3_3: 'Ajouter le bouton de deconnexion dans la barre laterale', diff --git a/packages/client/src/i18n/locales/ja.ts b/packages/client/src/i18n/locales/ja.ts index 70bec92..fe51896 100644 --- a/packages/client/src/i18n/locales/ja.ts +++ b/packages/client/src/i18n/locales/ja.ts @@ -520,6 +520,14 @@ export default { // 更新履歴 changelog: { + new_0_4_5_1: 'Add group chat with multi-agent rooms, @mention routing, and typing status recovery', + new_0_4_5_2: 'Rewrite model-context config to use YAML with context_length setting', + new_0_4_5_3: 'Add gpt-5.5 to OpenAI Codex model list', + new_0_4_5_4: 'Replace jobs proxy with local controller and optimize model loading', + new_0_4_5_5: 'Add i18n support for custom model feature in ModelSelector', + new_0_4_5_6: 'Fix sidebar i18n missing key warnings', + new_0_4_5_7: 'Clear all localStorage on logout', + new_0_4_5_8: 'Add periodic log rotation to prevent unbounded log growth', new_0_4_3_1: 'トークン認証に加えてユーザー名/パスワードログインを追加', new_0_4_3_2: '資格情報管理のためのアカウント設定を追加', new_0_4_3_3: 'サイドバーにログアウトボタンを追加', diff --git a/packages/client/src/i18n/locales/ko.ts b/packages/client/src/i18n/locales/ko.ts index e3fbacf..15b45cf 100644 --- a/packages/client/src/i18n/locales/ko.ts +++ b/packages/client/src/i18n/locales/ko.ts @@ -520,6 +520,14 @@ export default { // 변경 이력 changelog: { + new_0_4_5_1: 'Add group chat with multi-agent rooms, @mention routing, and typing status recovery', + new_0_4_5_2: 'Rewrite model-context config to use YAML with context_length setting', + new_0_4_5_3: 'Add gpt-5.5 to OpenAI Codex model list', + new_0_4_5_4: 'Replace jobs proxy with local controller and optimize model loading', + new_0_4_5_5: 'Add i18n support for custom model feature in ModelSelector', + new_0_4_5_6: 'Fix sidebar i18n missing key warnings', + new_0_4_5_7: 'Clear all localStorage on logout', + new_0_4_5_8: 'Add periodic log rotation to prevent unbounded log growth', new_0_4_3_1: '토큰 인증과 함께 사용자 이름/비밀번호 로그인 추가', new_0_4_3_2: '자격 증명 관리를 위한 계정 설정 추가', new_0_4_3_3: '사이드바에 로그아웃 버튼 추가', diff --git a/packages/client/src/i18n/locales/pt.ts b/packages/client/src/i18n/locales/pt.ts index 9d27915..9a4bf03 100644 --- a/packages/client/src/i18n/locales/pt.ts +++ b/packages/client/src/i18n/locales/pt.ts @@ -520,6 +520,14 @@ export default { // Registro de alteracoes changelog: { + new_0_4_5_1: 'Add group chat with multi-agent rooms, @mention routing, and typing status recovery', + new_0_4_5_2: 'Rewrite model-context config to use YAML with context_length setting', + new_0_4_5_3: 'Add gpt-5.5 to OpenAI Codex model list', + new_0_4_5_4: 'Replace jobs proxy with local controller and optimize model loading', + new_0_4_5_5: 'Add i18n support for custom model feature in ModelSelector', + new_0_4_5_6: 'Fix sidebar i18n missing key warnings', + new_0_4_5_7: 'Clear all localStorage on logout', + new_0_4_5_8: 'Add periodic log rotation to prevent unbounded log growth', new_0_4_3_1: 'Adicionar login por usuario/senha junto com autenticacao por token', new_0_4_3_2: 'Adicionar configuracoes de conta para gerenciar credenciais', new_0_4_3_3: 'Adicionar botao de sair na barra lateral', diff --git a/packages/client/src/i18n/locales/zh.ts b/packages/client/src/i18n/locales/zh.ts index cb8aa1a..fc085b0 100644 --- a/packages/client/src/i18n/locales/zh.ts +++ b/packages/client/src/i18n/locales/zh.ts @@ -678,6 +678,14 @@ export default { new_0_4_4_3: '活跃会话显示实时状态标签', new_0_4_4_4: '新增 StepFun 和 Nous Portal Provider 支持', new_0_4_4_5: '修复特殊字符搜索导致 500 错误', + new_0_4_5_1: '新增群聊功能,支持多 Agent 房间、提及路由和输入状态恢复', + new_0_4_5_2: '使用 YAML 重写模型上下文配置,新增 context_length 设置', + new_0_4_5_3: '新增 gpt-5.5 到 OpenAI Codex 模型列表', + new_0_4_5_4: '用本地控制器替换任务代理,优化模型加载', + new_0_4_5_5: 'ModelSelector 自定义模型功能新增 i18n 支持', + new_0_4_5_6: '修复侧边栏 i18n 缺失 key 警告', + new_0_4_5_7: '退出登录时清除所有 localStorage', + new_0_4_5_8: '新增日志定期轮转,防止日志无限增长', new_0_4_3_1: '新增用户名/密码登录,支持与令牌认证并存', new_0_4_3_2: '新增账户设置:配置密码、修改密码、修改用户名', new_0_4_3_3: '侧边栏新增退出登录按钮',