mirror of
https://gitee.com/mateos/mateclaw.git
synced 2026-09-13 11:13:43 +08:00
* feat(desktop): support remote lite build mode without bundled JRE/JAR Add a dual packaging mode system controlled by the BUILD_MODE env var: - **local** (default): Full build bundling JRE + Spring Boot JAR, identical to the previous behavior. Supports both embedded local backend and remote server connection. - **remote** (lite): Omits the ~530 MB JRE/JAR resources, producing an installer that is ~81% smaller (97 MB vs 523 MB on macOS arm64). The app only supports connecting to a remote server; the "local" option is hidden from the splash connection chooser. Changes: - Replace static electron-builder.json with dynamic electron-builder.cjs that conditionally includes extraResources based on BUILD_MODE - Add build mode detection at runtime (checks JAR existence) with graceful fallback to remote-only mode - Add IPC handler app:get-build-mode and expose via preload - Hide "本地运行" option in splash when running a remote build - Ignore stale 'local' saved config in remote builds - Add package scripts: package:mac:local, package:mac:remote, etc. - Add missing build scripts: build.sh, download-jre.sh, build-all-platforms.sh - Add no-op afterPack hook (trim-playwright-driver.cjs) placeholder - Add cross-env devDependency for cross-platform BUILD_MODE support * feat(desktop): add white-label branding system for build-time rebranding Add a Vite plugin (scripts/branding.cjs) that replaces hardcoded "MateClaw" strings at build time, enabling white-label/OEM rebranding without modifying any source code. Configuration: - Edit branding.config.json (name, tagline, team, copyright, appId, githubUrl) - Or set BRAND_* env vars (BRAND_NAME, BRAND_TAGLINE, BRAND_TEAM, etc.) Usage: # Default build (MateClaw brand) npm run package:mac # Custom brand via env vars BRAND_NAME=MyAI BRAND_TAGLINE="Smart AI Helper" npm run package:mac:remote # Or edit branding.config.json and build normally npm run package:mac:remote Replacements applied at build time: - Brand name (window title, About dialog, error messages, console logs) - Tagline, team name, copyright line - GitHub repo/issues URLs - Logo file path - electron-builder config (productName, appId, artifactName, dmg title, publish repo) The branding plugin runs in Vite's transform hook, covering the renderer (App.vue, index.html), electron main process, and preload script. Server-coupled strings (H2 database name, Spring Boot property names) are intentionally NOT replaced to avoid breaking backend compatibility. --------- Co-authored-by: qiaozhipeng <qiaozhipeng@daojia-inc.com>
50 lines
1.9 KiB
JSON
50 lines
1.9 KiB
JSON
{
|
|
"name": "mateclaw-desktop",
|
|
"version": "1.7.0-SNAPSHOT",
|
|
"description": "MateClaw Desktop - AI Assistant powered by Spring AI Alibaba",
|
|
"author": "MateClaw Team",
|
|
"license": "Apache-2.0",
|
|
"main": "dist-electron/main/index.js",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc --noEmit && vite build",
|
|
"preview": "vite preview",
|
|
"setup:jre": "bash scripts/download-jre.sh",
|
|
"setup:jar": "bash scripts/build.sh",
|
|
"setup": "npm run setup:jar && npm run setup:jre",
|
|
"setup:all-platforms": "bash scripts/build-all-platforms.sh --all",
|
|
"package:mac": "npm run build && electron-builder --mac",
|
|
"package:mac:local": "npm run build && cross-env BUILD_MODE=local electron-builder --mac",
|
|
"package:mac:remote": "npm run build && cross-env BUILD_MODE=remote electron-builder --mac",
|
|
"package:win": "npm run build && electron-builder --win",
|
|
"package:win:local": "npm run build && cross-env BUILD_MODE=local electron-builder --win",
|
|
"package:win:remote": "npm run build && cross-env BUILD_MODE=remote electron-builder --win",
|
|
"package:all": "bash scripts/build-all-platforms.sh --all",
|
|
"package:all:local": "bash scripts/build-all-platforms.sh --local",
|
|
"package:all:remote": "bash scripts/build-all-platforms.sh --remote",
|
|
"publish:github": "bash scripts/publish-github.sh",
|
|
"publish:github:draft": "bash scripts/publish-github.sh --draft"
|
|
},
|
|
"dependencies": {
|
|
"electron-updater": "^6.3.9",
|
|
"vue": "^3.5.13"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^5.2.1",
|
|
"cross-env": "^10.1.0",
|
|
"electron": "^33.3.1",
|
|
"electron-builder": "^25.1.8",
|
|
"typescript": "^5.7.3",
|
|
"vite": "^6.0.7",
|
|
"vite-plugin-electron": "^0.28.8",
|
|
"vite-plugin-electron-renderer": "^0.14.6",
|
|
"vue-tsc": "^2.2.0"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"electron",
|
|
"esbuild"
|
|
]
|
|
}
|
|
}
|