native macOS codings agent orchestrator
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

mirror ghostty entitlements setup

khoi 186a2f32 5ec94c88

+48 -4
+6 -4
supacode.xcodeproj/project.pbxproj
··· 431 431 buildSettings = { 432 432 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 433 433 ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 434 - AUTOMATION_APPLE_EVENTS = YES; 435 - CODE_SIGN_STYLE = Automatic; 434 + AUTOMATION_APPLE_EVENTS = YES; 435 + CODE_SIGN_ENTITLEMENTS = supacode/supacodeDebug.entitlements; 436 + CODE_SIGN_STYLE = Automatic; 436 437 COMBINE_HIDPI_IMAGES = YES; 437 438 COMPILATION_CACHE_ENABLE_CACHING = YES; 438 439 CURRENT_PROJECT_VERSION = 108; ··· 486 487 buildSettings = { 487 488 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 488 489 ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 489 - AUTOMATION_APPLE_EVENTS = YES; 490 - CODE_SIGN_STYLE = Automatic; 490 + AUTOMATION_APPLE_EVENTS = YES; 491 + CODE_SIGN_ENTITLEMENTS = supacode/supacode.entitlements; 492 + CODE_SIGN_STYLE = Automatic; 491 493 COMBINE_HIDPI_IMAGES = YES; 492 494 COMPILATION_CACHE_ENABLE_CACHING = NO; 493 495 CURRENT_PROJECT_VERSION = 108;
+20
supacode/supacode.entitlements
··· 1 + <?xml version="1.0" encoding="UTF-8"?> 2 + <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 + <plist version="1.0"> 4 + <dict> 5 + <key>com.apple.security.automation.apple-events</key> 6 + <true/> 7 + <key>com.apple.security.device.audio-input</key> 8 + <true/> 9 + <key>com.apple.security.device.camera</key> 10 + <true/> 11 + <key>com.apple.security.personal-information.addressbook</key> 12 + <true/> 13 + <key>com.apple.security.personal-information.calendars</key> 14 + <true/> 15 + <key>com.apple.security.personal-information.location</key> 16 + <true/> 17 + <key>com.apple.security.personal-information.photos-library</key> 18 + <true/> 19 + </dict> 20 + </plist>
+22
supacode/supacodeDebug.entitlements
··· 1 + <?xml version="1.0" encoding="UTF-8"?> 2 + <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 + <plist version="1.0"> 4 + <dict> 5 + <key>com.apple.security.automation.apple-events</key> 6 + <true/> 7 + <key>com.apple.security.cs.disable-library-validation</key> 8 + <true/> 9 + <key>com.apple.security.device.audio-input</key> 10 + <true/> 11 + <key>com.apple.security.device.camera</key> 12 + <true/> 13 + <key>com.apple.security.personal-information.addressbook</key> 14 + <true/> 15 + <key>com.apple.security.personal-information.calendars</key> 16 + <true/> 17 + <key>com.apple.security.personal-information.location</key> 18 + <true/> 19 + <key>com.apple.security.personal-information.photos-library</key> 20 + <true/> 21 + </dict> 22 + </plist>