Skip to content

Commit d1d07e7

Browse files
ErlichLiuclaude
andcommitted
feat: 个人备份模式改为全量多工作区导出,版本升至 0.9.24
个人备份现在也走 v2 导出路径,自动包含所有工作区的 Skills、MCP、Sessions 和 workspace config,而非仅第一个工作区。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 27a689d commit d1d07e7

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@proma/electron",
3-
"version": "0.9.23",
3+
"version": "0.9.24",
44
"description": "Proma next gen ai software with general agents - Electron App",
55
"main": "dist/main.cjs",
66
"author": {

apps/electron/src/renderer/components/settings/MigrationSettings.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,9 @@ export function MigrationSettings(): React.ReactElement {
150150
}) as { success: boolean; filePath: string }
151151
setExportResult({ success: true, filePath: result.filePath })
152152
} else {
153-
const result = await window.electronAPI.migrationExport({
153+
// personal 模式:全量备份所有工作区
154+
const result = await window.electronAPI.migrationExportV2({
154155
mode: exportMode,
155-
workspaceId: currentWorkspace.id,
156156
components,
157157
outputPath,
158158
}) as { success: boolean; filePath: string }

0 commit comments

Comments
 (0)