- feat(experts): add built-in expert skills with per-agent activation. - feat(chat): add experts menu to message input toolbar. - fix(chat): harden experts menu selection and viewport fit. - fix(ui): raise input selector collapse breakpoint for responsive layout. - i18n(settings): translate Agents nav label in zh-CN and zh-TW. ----------------------------- # 发布版本 0.7.0 - 新增(专家):内置专家技能库,支持按代理分别启用; - 新增(聊天):消息输入工具栏新增专家菜单入口; - 修复(聊天):加强专家菜单的选择逻辑与视口适配; - 修复(UI):提高输入选择器折叠的断点阈值,优化响应式布局; - 国际化(设置):补全简繁中文的 Agents 导航菜单翻译。
45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "codeg",
|
|
"version": "0.7.0",
|
|
"identifier": "app.codeg",
|
|
"build": {
|
|
"beforeDevCommand": "pnpm dev",
|
|
"devUrl": "http://localhost:3000",
|
|
"beforeBuildCommand": "pnpm build",
|
|
"frontendDist": "../out"
|
|
},
|
|
"app": {
|
|
"windows": [],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"createUpdaterArtifacts": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"resources": {
|
|
"../out": "web/"
|
|
}
|
|
},
|
|
"plugins": {
|
|
"updater": {
|
|
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDQ4OEM3NkMyMTVENjdBODgKUldTSWV0WVZ3bmFNU0NnSzhpdFg2bXFmMHFidWd1eWpuZ2Y2WmU5QmVXdWVrU0ZpOCt2dnd6WW4K",
|
|
"endpoints": [
|
|
"https://github.com/xintaofei/codeg/releases/latest/download/latest.json"
|
|
],
|
|
"windows": {
|
|
"installMode": "passive"
|
|
}
|
|
}
|
|
}
|
|
}
|