mirror of
https://github.com/JefferyHcool/BiliNote.git
synced 2026-05-07 08:22:54 +08:00
- 版本号升级为 2.0.0(README、tauri.conf.json、about 页面) - 新增 v2.0.0 功能说明:RAG 问答、Function Calling、封面 Banner、面板折叠等 - Docker 部署改为推荐方式,支持 docker pull 预构建镜像 - 补充源码部署为方式二,修正前端访问端口为 3015 - 更新功能特性列表,补充快手、AI 问答等新功能 - TODO 标记 RAG 问答为已完成 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
46 lines
978 B
JSON
46 lines
978 B
JSON
{
|
|
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
|
"productName": "BiliNote",
|
|
"version": "2.0.0",
|
|
"identifier": "com.jefferyhuang.bilinote",
|
|
"build": {
|
|
"frontendDist": "../dist",
|
|
"devUrl": "http://localhost:3015",
|
|
"beforeDevCommand": "pnpm dev",
|
|
"beforeBuildCommand": "pnpm build --mode tauri "
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "BiliNote",
|
|
"width": 1600,
|
|
"height": 1000,
|
|
"resizable": true,
|
|
"fullscreen": false,
|
|
"devtools": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"externalBin": [
|
|
"bin/BiliNoteBackend/BiliNoteBackend"
|
|
],
|
|
"resources": {
|
|
"bin/BiliNoteBackend/_internal":"_internal"
|
|
},
|
|
"macOS":{
|
|
"files": {
|
|
"Frameworks": "bin/BiliNoteBackend/_internal"
|
|
}
|
|
},
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/icon.ico",
|
|
"icons/icon.png"
|
|
]
|
|
}
|
|
} |