feat: v0.8.2 安全纵深补全 · 协议保真 · 断链修复 — 图片SSRF/根MEMORY.md保护根治 · Anthropic thinking回传+pause_turn续传 · 2523 用例全量回归 + E2E 扩充
CI / 类型检查 + Lint + 单元测试 (push) Failing after 9m45s
CI / 全量测试 (Electron ABI) (push) Failing after 6m28s
CI / 产物编译验证 (push) Successful in 11m18s

This commit is contained in:
2026-09-08 14:30:27 +08:00
parent 69776e447f
commit 4cd6e997b5
86 changed files with 4303 additions and 956 deletions
+15
View File
@@ -224,6 +224,21 @@ export function MCPSettings() {
<Typography variant="caption" sx={{ color: statusColors[s.status] }}>
{statusLabel(s)}
</Typography>
{/* v0.8.2 P2-7: 禁用态 server 现在也会出现在列表中(后端补齐),显式标注 */}
{(s as { enabled?: boolean }).enabled === false && (
<Typography
variant="caption"
sx={{
color: 'text.disabled',
border: '1px solid',
borderColor: 'divider',
borderRadius: 2,
px: 0.5,
}}
>
{t('settings.mcp.disabled')}
</Typography>
)}
{s.toolCount > 0 && (
<Typography variant="caption" sx={{ color: 'text.secondary' }}>
{t('settings.mcp.toolCount', { count: s.toolCount })}