- Updated wails3 CLI to v3.0.0-alpha.74 - Added build/ios/, build/android/, build/docker/ from new template - Updated all platform Taskfiles (darwin, linux, windows) - Fixed Angular versions to ~20.3.16 - Root Taskfile with platform-aware build/package/run - Binary compiles and runs — system tray appears on macOS Co-Authored-By: Virgil <virgil@lethean.io>
21 lines
No EOL
555 B
Text
21 lines
No EOL
555 B
Text
<?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>
|
|
<!-- Development entitlements -->
|
|
<key>get-task-allow</key>
|
|
<true/>
|
|
|
|
<!-- App Sandbox -->
|
|
<key>com.apple.security.app-sandbox</key>
|
|
<true/>
|
|
|
|
<!-- Network access -->
|
|
<key>com.apple.security.network.client</key>
|
|
<true/>
|
|
|
|
<!-- File access (read-only) -->
|
|
<key>com.apple.security.files.user-selected.read-only</key>
|
|
<true/>
|
|
</dict>
|
|
</plist> |