build(release): 准备0.3.1-alpha.3安装包与Docker部署 [skip ci]

This commit is contained in:
2026-09-15 10:58:02 +08:00
parent 3bbd7a2e1b
commit 586c4bf049
15 changed files with 155 additions and 29 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "notes-agent-frontend",
"private": true,
"version": "0.3.1-alpha.2",
"version": "0.3.1-alpha.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"desktop:build": "tauri build --no-bundle --features desktop",
"desktop:build": "tauri build --features desktop --bundles nsis --config src-tauri/tauri.bundle.conf.json",
"test": "vitest run",
"preview": "vite preview",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json && vue-tsc --noEmit -p tsconfig.node.json",
+1 -1
View File
@@ -3242,7 +3242,7 @@ dependencies = [
[[package]]
name = "notesagent-desktop"
version = "0.3.1-alpha.2"
version = "0.3.1-alpha.3"
dependencies = [
"argon2",
"base64 0.22.1",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "notesagent-desktop"
version = "0.3.1-alpha.2"
version = "0.3.1-alpha.3"
edition = "2021"
rust-version = "1.89"
+33 -2
View File
@@ -1,7 +1,38 @@
{
"$schema": "https://schema.tauri.app/config/2",
"bundle": {
"active": true,
"targets": ["nsis"],
"resources": {"../../.build/sidecar/dist/opennexus-core/": "core/"}
"targets": [
"nsis"
],
"publisher": "Kronecker",
"homepage": "https://gitea.kronecker.cc/Kronecker/NotesAgentic",
"icon": [
"icons/icon.ico"
],
"resources": {
"../../.build/sidecar/dist/opennexus-core/": "core/"
},
"category": "Productivity",
"shortDescription": "本地优先的 AI 笔记与知识中枢",
"windows": {
"allowDowngrades": false,
"webviewInstallMode": {
"type": "downloadBootstrapper",
"silent": true
},
"nsis": {
"installMode": "currentUser",
"languages": [
"SimpChinese",
"English"
],
"displayLanguageSelector": false,
"compression": "lzma",
"installerIcon": "icons/icon.ico",
"uninstallerIcon": "icons/icon.ico",
"startMenuFolder": "OpenNexus"
}
}
}
}
+19 -4
View File
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "OpenNexus",
"version": "0.3.1-alpha.2",
"version": "0.3.1-alpha.3",
"identifier": "cc.kronecker.notesagent",
"build": {
"beforeDevCommand": "pnpm dev",
@@ -10,11 +10,26 @@
"frontendDist": "../dist"
},
"app": {
"windows": [{"label": "main", "title": "OpenNexus", "width": 1280, "height": 960, "minWidth": 720, "minHeight": 700, "center": true, "decorations": false}],
"windows": [
{
"label": "main",
"title": "OpenNexus",
"width": 1280,
"height": 960,
"minWidth": 720,
"minHeight": 700,
"center": true,
"decorations": false
}
],
"security": {
"csp": "default-src 'self'; script-src 'self' 'wasm-unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob:; media-src 'self' blob:; font-src 'self' data:; connect-src ipc: http://ipc.localhost; frame-src 'self' blob:; object-src 'none'; base-uri 'self'",
"capabilities": ["main"]
"capabilities": [
"main"
]
}
},
"bundle": {"active": false}
"bundle": {
"active": false
}
}