Hobee Liu
3cb6cf6c73
feat: add chat navigation bar close ( #4019 )
...
* feat(聊天导航): 新增关闭、置顶和置底按钮并更新图标
在聊天导航组件中新增了关闭、置顶和置底按钮,并更新了相关图标以提升用户体验。同时,添加了点击关闭按钮时隐藏导航的功能。
* feat(消息导航): 添加手动关闭状态以避免误触
在 ChatNavigation 组件中添加 `manuallyClosedUntil` 状态,用于在用户手动关闭导航后,1分钟内不响应鼠标靠近事件。这可以防止用户在操作时误触导航栏,提升用户体验。
* refactor(ChatNavigation): 重命名函数并添加滚动处理逻辑
重命名 handleChatNavigationClick 为 handleCloseChatNavigation 以提高代码可读性,并添加 handleScrollToTop 和 handleScrollToBottom 函数以处理滚动逻辑
* fix: 修复滚动到顶部时位置不正确的问题
将 `scrollToTop` 函数中的 `top` 值从 `0` 改为 `-container.scrollHeight`,以确保滚动到顶部时位置正确
* docs(i18n): 添加新的翻译字符串以支持更多操作
在多个语言文件中添加了“回到顶部”、“回到底部”和“关闭”的翻译字符串,以支持更多用户界面操作。
* refactor: 移除未使用的变量以简化代码
```
解释:
- **类型**: `refactor`,因为这是代码重构,移除了未使用的变量,没有改变功能行为。
- **描述**: 移除了未使用的变量以简化代码,符合简洁和可维护性的原则。
2025-04-01 16:17:57 +08:00
Cherry
146b328b60
feat: One-click copy model id ( #4190 )
...
* feat:One-click copy model id
* fix:model id消失问题,样式问题
2025-04-01 16:11:06 +08:00
fullex
9f69401f97
fix: chat history dark theme ( #4254 )
2025-04-01 14:55:24 +08:00
LiuVaayne
4901c3b5f1
refactor: enhance mcp init ( #4238 )
...
* fix(MCPService): extend command support to include 'bun' and 'bunx', and improve environment variable handling
* fix(MCPService): enhance environment variable handling by incorporating default environment settings
* fix(hooks): simplify active MCP servers selection logic
2025-04-01 13:08:25 +08:00
kangfenmao
5ee5dee83c
refactor: move websearch provider code to providers folder
2025-04-01 11:05:31 +08:00
kangfenmao
61bb4477f6
feat(i18n): add topic naming model support for message title generation in Japanese, Russian, and Traditional Chinese locales
2025-04-01 10:41:30 +08:00
kangfenmao
f8f012a3a6
fix(settings): enable clickAssistantToShowTopic by default
2025-04-01 10:06:24 +08:00
kangfenmao
9b10a02362
fix(Inputbar): simplify assistant state reset logic in useEffect
2025-04-01 09:57:21 +08:00
shiquda
3c48f670c4
feat: add support for title generation when exporting single message
...
#3992
2025-04-01 07:34:57 +08:00
MyPrototypeWhat
00b3c14b56
feat: add React Developer Tools extension support and optimize CodeBlock component
2025-04-01 07:33:16 +08:00
suyao
3695c3d493
fix(styles): set dropdown menu width to max-content for better layout
2025-03-31 23:25:10 +08:00
suyao
cc59fc1295
fix(styles): improve scrollbar visibility by adjusting opacity and background color on hover
2025-03-31 23:25:10 +08:00
suyao
5355ead4b9
fix(UI): enhance scrollbar visibility and dropdown menu overflow handling
2025-03-31 23:25:10 +08:00
SuYao
b81e252d2f
refactor(MCP): enhance schema validation for gemini ( #4153 )
2025-03-31 21:13:59 +08:00
LiuVaayne
4a3c8ea279
feat(MCP): add registryUrl support for package management ( #4200 )
2025-03-31 21:13:20 +08:00
one
5ea1bec15c
perf: improve modellist search bar responsiveness (and memorization) ( #4221 )
2025-03-31 21:11:46 +08:00
Yuzhong Zhang
df804c752b
optimize: Sticky CopyButton in CodeBlock ( #4205 )
2025-03-31 21:11:28 +08:00
LiuVaayne
fa7ef62ba8
Feat/assistant level mcp ( #4220 )
2025-03-31 21:10:33 +08:00
fullex
6e2727c4b2
fix: Resolve a series of miniWindow display issues and improve app behavior across platforms ( #3072 )
2025-03-31 21:07:16 +08:00
MyPrototypeWhat
878802825b
feat(MCP): add auto-install server configuration and migration for ve… ( #4156 )
...
* feat(MCP): add auto-install server configuration and migration for version 87
* update persistReducer version
2025-03-31 18:07:50 +08:00
fullex
afdc3e188a
feat: minapp show© current REAL url and can open it
2025-03-31 18:01:10 +08:00
fullex
fadaaaf0e2
optimize: reduce animation gpu load of sidebar minapp
2025-03-31 17:47:41 +08:00
one
5affec1d7e
perf(Tabs): improve responsiveness when switching items rapidly
2025-03-31 09:33:17 +08:00
fullex
f1fbcfc27d
fix: zoomfactor should not change when resize ( #4159 )
...
* fix: zoomfactor should not change when resize
* add linux fallback support
2025-03-31 09:24:49 +08:00
suyao
dfde7353b2
fix(models): reorganize gemini websearch model lists
2025-03-30 23:52:58 +08:00
kangfenmao
732408bce6
chore(version): 1.1.17
2025-03-30 14:39:43 +08:00
kangfenmao
e46223932d
refactor(BackupManager): switch to stream-based file writing for improved performance
...
* Updated BackupManager to use streams for writing data to temporary and backup files, enhancing efficiency and error handling.
* Replaced synchronous file writing with asynchronous stream operations to prevent blocking the event loop.
2025-03-30 14:37:20 +08:00
kangfenmao
2f613119f0
refactor(knowledge): enhance CustomCollapse component and improve UI consistency
...
* Updated CustomCollapse to accept React nodes for labels, allowing for more flexible content.
* Replaced static labels with CollapseLabel component to display item counts.
* Introduced EmptyView component for consistent empty state representation across collapsible sections.
* Removed unnecessary styles and improved button click handling to prevent event propagation.
2025-03-30 14:32:57 +08:00
kangfenmao
98284b1dcc
chore(store): update migration logic and increment version to 87
...
* Updated migration functions to include error handling for provider additions.
* Incremented the version number in the persisted reducer configuration.
2025-03-30 14:08:14 +08:00
Hao He
d84bb77c06
feat: Add keyboard navigation and selection highlighting for AddAssistantPopup ( #4022 )
...
* feat(AddAssistantPopup): 添加键盘导航和选中项高亮功能
* feat(AddAssistantPopup): 为所有项添加相同宽度的透明边框,避免布局跳动。
2025-03-30 13:58:52 +08:00
Teo
c9057196f1
refactor(files): Reconstruct file system UI ( #4100 )
...
* refactor(files): Reconstruct file system UI
* refactor(knowledge): replace Card components with CustomCollapse for better UI structure
* refactor(files): update folder icon from FolderOpenOutlined to FolderOpenFilled
* feat(components): add CustomCollapse component for enhanced collapsible UI
* refactor(files): implement virtual scrolling in FileList and KnowledgeContent components
2025-03-30 13:56:34 +08:00
George·Dong
ae5a291b49
refactor(settings): 重构小程序设置 ( #4092 )
2025-03-30 08:48:23 +08:00
kangfenmao
5a8b78f436
feat(MCPService): enhance PATH management with platform-specific directories
2025-03-30 08:32:45 +08:00
kangfenmao
8d65f73f09
fix(MCPSettings): ensure server name is set when missing and reorder radio options
2025-03-30 08:26:01 +08:00
Vaayne
ef9575b09a
fix(MCPService): clear cache on server close and refactor tool fetching logic
2025-03-30 07:42:27 +08:00
LiuVaayne
f0a9188f01
fix(MCPService): prefix tool IDs with 'f' for consistency ( #4121 )
2025-03-30 00:26:47 +08:00
fullex
df673beadd
fix(UI/markdown): markdown not recognized ** as emphasis marks in CJK ( #4119 )
2025-03-29 23:56:41 +08:00
yangtb2024
ad2fba10cd
feat(config): 增强模型支持 ( #4085 )
...
* feat(config): 添加对新模型的支持
- 新增 gemini-2.5 到 visionAllowedModels
- 新增 gpt-4.5 到 visionAllowedModels 和 FUNCTION_CALLING_MODELS
- 新增 o1 到 FUNCTION_CALLING_MODELS
- 从 visionExcludedModels 和 FUNCTION_CALLING_EXCLUDED_MODELS 中排除 o1-mini, o1-preview, AIDC-AI/Marco-o1
* feat(config): 添加对 deepseek-ai 函数调用的支持
- 新增 deepseek-ai 到 FUNCTION_CALLING_MODELS
2025-03-29 23:04:51 +08:00
one
e0c647ad10
fix: race condition in topic auto renaming
2025-03-29 22:58:38 +08:00
Herio
62efc95fc3
feat(ApiCheckPopup): 使用Promise.all并行处理API验证请求并更新状态
2025-03-29 22:00:21 +08:00
fullex
38ed8f986c
fix: one-off minapp should not show minimize button
2025-03-29 21:59:03 +08:00
George·Dong
5202ceddb7
fix(ApiService): context clear failed
2025-03-29 21:43:29 +08:00
Chen Tao
a1e22768a0
fix: add base url for gemini ( #4109 )
2025-03-29 21:35:04 +08:00
Catwine
e84cfafe64
docs(config): fix typo in electron-builder.yml
2025-03-29 21:08:55 +08:00
kangfenmao
96ff67852a
fix(WebviewContainer): update webview partition to use a generic identifier
2025-03-29 19:00:08 +08:00
kangfenmao
8a04a8e79d
chore(version): 1.1.16
2025-03-29 15:29:28 +08:00
kangfenmao
c4d16002e1
fix(migrate): add error handling to migration functions and ensure state integrity during updates
2025-03-29 15:28:57 +08:00
kangfenmao
88b7ebf371
chore(version): 1.1.15
2025-03-29 15:00:02 +08:00
kangfenmao
4ddef410ac
chore(version): 1.1.14
2025-03-29 08:05:56 +08:00
kangfenmao
230f9cf32c
feat(i18n): add delete server confirmation messages in multiple languages
2025-03-29 08:00:51 +08:00