
- Add Info.plist for macOS app metadata - Configure bundle identifier as claudia.asterisk.so - Set minimum macOS version to 10.15 - Register .claudia.json file type association - Add usage descriptions for camera and microphone access - Add entitlements.plist for macOS app permissions - Disable app sandbox for Homebrew compatibility - Enable network access for API communications - Allow file system access and subprocess spawning - Configure hardened runtime exceptions for JIT and library validation - Enable automation for Apple Events - Add .cargo/config.toml for cross-compilation - Configure aarch64-unknown-linux-gnu target - Enable PKG_CONFIG_ALLOW_CROSS for cross-platform builds
44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
<?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>
|
|
<key>NSRequiresAquaSystemAppearance</key>
|
|
<false/>
|
|
<key>LSMinimumSystemVersion</key>
|
|
<string>10.15</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>0.1.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>Claudia</string>
|
|
<key>CFBundleDisplayName</key>
|
|
<string>Claudia</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>claudia.asterisk.so</string>
|
|
<key>CFBundleDocumentTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleTypeName</key>
|
|
<string>Claudia Agent</string>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Editor</string>
|
|
<key>CFBundleTypeExtensions</key>
|
|
<array>
|
|
<string>claudia.json</string>
|
|
</array>
|
|
<key>CFBundleTypeIconFile</key>
|
|
<string>icon.icns</string>
|
|
<key>LSHandlerRank</key>
|
|
<string>Owner</string>
|
|
</dict>
|
|
</array>
|
|
<key>NSAppleEventsUsageDescription</key>
|
|
<string>Claudia needs to send Apple Events to other applications.</string>
|
|
<key>NSAppleScriptEnabled</key>
|
|
<true/>
|
|
<key>NSCameraUsageDescription</key>
|
|
<string>Claudia needs camera access for capturing images for AI processing.</string>
|
|
<key>NSMicrophoneUsageDescription</key>
|
|
<string>Claudia needs microphone access for voice input features.</string>
|
|
</dict>
|
|
</plist>
|