chore: restructure project and add i18n support

- Reorganize project structure with new electron and shared directories
- Add comprehensive i18n support with Chinese, English, and Japanese locales
- Update build configurations and TypeScript paths for new structure
- Add various UI components including chat interface and task management
- Include Windows release binaries and localization files
- Update dependencies and fix import paths throughout the codebase
This commit is contained in:
duanshuwen
2026-04-06 14:39:06 +08:00
parent e76b034d50
commit 6615d11dd6
311 changed files with 823682 additions and 4460 deletions

33
entitlements.mac.plist Normal file
View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- Required for Electron apps -->
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<!-- Allow JIT compilation for V8 -->
<key>com.apple.security.cs.allow-jit</key>
<true/>
<!-- Required for Hardened Runtime -->
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
<!-- Network access for WebSocket/HTTP -->
<key>com.apple.security.network.client</key>
<true/>
<!-- Allow spawning child processes (for Gateway) -->
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
<true/>
<!-- File access for user data -->
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<!-- Downloads folder access -->
<key>com.apple.security.files.downloads.read-write</key>
<true/>
</dict>
</plist>