로딩 중...
;
+
+ return (
+
+
+ - 버전
+ - {info.version}
+ - Electron
+ - {info.electron}
+ - Node
+ - {info.node}
+ - OS
+ - {info.os}
+ - 데이터 위치
+ - {info.profileDir}
+
+
+
+
+
+
+ );
+}
diff --git a/src/shared/types.ts b/src/shared/types.ts
index 38b3bec..5be2325 100644
--- a/src/shared/types.ts
+++ b/src/shared/types.ts
@@ -101,6 +101,16 @@ export interface InboxApi {
runImport(): Promise<{ ok: true }>;
runSync(): Promise<{ ok: true }>;
runExportTelemetry(): Promise<{ ok: true }>;
+ // v0.2.7 정보 섹션 (Task 11) — 트레이 showAboutDialog 의 IPC 대응. 트레이 잔류 → Task 25 cleanup.
+ getAppInfo(): Promise<{
+ version: string;
+ electron: string;
+ node: string;
+ os: string;
+ profileDir: string;
+ }>;
+ openProfileDir(): Promise