diff --git a/plugins/AirwindowsAUToSignedAUProcess.txt b/plugins/AirwindowsAUToSignedAUProcess.txt index 14e3d7019..ed59eef8b 100644 --- a/plugins/AirwindowsAUToSignedAUProcess.txt +++ b/plugins/AirwindowsAUToSignedAUProcess.txt @@ -64,8 +64,9 @@ TARGETS: Architectures: Standard Architectures (Apple Silicon, Intel) Base SDK: macOS Build Phases: Delete Build Carbon Resources - Signing & Capabilities: Automatically manage signing + Signing & Capabilities: Manual Team, Christopher Johnson + Signing Certificate, Developer ID Application General: set Deployment Target to 11.1 Clean Build Folder, then Build. in Build Warnings, under Validate Project Settings: Update to recommended @@ -88,63 +89,3 @@ find . -name "*.component" -exec cp -r "{}" /Users/christopherjohnson/Desktop/Si But of course this is not enough, so we'll try to do yet another helper program to talk to Apple, this time using the resulting .dmg files we made. SD Notary from Late Night Software is what I'm going to try to use. What we do there is, we run SD Notary with my Developer ID signing identity. AppleID is mine. I make an app-specific password for SD Notary, naming it 'Airwindows Plugins' and copying the actual password into my Keychain, which SD Notary is able to use. I also tell it 'when submitting, create and staple disk image'. - -We submit one of the DMG files that DropDMG made (an individual plugin, as it's faster) and it dies: - - Date: 2021-04-19 00:01:51 +0000 - Hash: 8c68189fa9721280a2c4a7ac984cad383f92062a7877e2ee4f550f3757a5e695 - LogFileURL: https://osxapps-ssl.itunes.apple.com/itunes-assets/Enigma125/v4/00/7c/37/007c3728-8efe-252f-d930-94fd0368cb7b/developer_log.json?accessKey=1618984994_5749661836017605452_u8y5i5%2BzngYIF68Xe1lHq2RNmIhJkUPj3L3pj99%2BG2gUGDXwBHAtqJINKQ6V%2FIV%2BMj%2BFB5wqRgH3LAFV%2BVSXY0GNTs%2Bdk%2F16e088GJ1sACf1UtwyDpRcasEhCAXeJdedK3rhyyLNcPgctvFuNF9ezYhi%2BP0SXDrnhdxD1SQQhyo%3D - RequestUUID: cc79057e-3b3e-4570-85a6-48e036786374 - Status: invalid - Status Code: 2 -Status Message: Package Invalid - - -{ - "logFormatVersion": 1, - "jobId": "cc79057e-3b3e-4570-85a6-48e036786374", - "status": "Invalid", - "statusSummary": "Archive contains critical validation errors", - "statusCode": 4000, - "archiveFilename": "Aura.component.dmg", - "uploadDate": "2021-04-19T00:01:51Z", - "sha256": "8c68189fa9721280a2c4a7ac984cad383f92062a7877e2ee4f550f3757a5e695", - "ticketContents": null, - "issues": [ - { - "severity": "error", - "code": null, - "path": "Aura.component.dmg/Aura.component/Contents/MacOS/Aura", - "message": "The binary is not signed with a valid Developer ID certificate.", - "docUrl": null, - "architecture": "x86_64" - }, - { - "severity": "error", - "code": null, - "path": "Aura.component.dmg/Aura.component/Contents/MacOS/Aura", - "message": "The signature does not include a secure timestamp.", - "docUrl": null, - "architecture": "x86_64" - }, - { - "severity": "error", - "code": null, - "path": "Aura.component.dmg/Aura.component/Contents/MacOS/Aura", - "message": "The binary is not signed with a valid Developer ID certificate.", - "docUrl": null, - "architecture": "arm64" - }, - { - "severity": "error", - "code": null, - "path": "Aura.component.dmg/Aura.component/Contents/MacOS/Aura", - "message": "The signature does not include a secure timestamp.", - "docUrl": null, - "architecture": "arm64" - } - ] -} - - -And that's where we're at, for now. \ No newline at end of file diff --git a/plugins/MacSignedAU/ADClip7/ADClip7.xcodeproj/project.pbxproj b/plugins/MacSignedAU/ADClip7/ADClip7.xcodeproj/project.pbxproj index 3fc606bd8..5f0424dd3 100755 --- a/plugins/MacSignedAU/ADClip7/ADClip7.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/ADClip7/ADClip7.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ADClip7.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -815,8 +815,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ADClip7.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/ADClip7/ADClip7.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/ADClip7/ADClip7.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index fb1a6bec8..a5f930c22 100644 Binary files a/plugins/MacSignedAU/ADClip7/ADClip7.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/ADClip7/ADClip7.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/ADT/ADT.xcodeproj/project.pbxproj b/plugins/MacSignedAU/ADT/ADT.xcodeproj/project.pbxproj index 53272ff91..fa9080775 100755 --- a/plugins/MacSignedAU/ADT/ADT.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/ADT/ADT.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ADT.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -815,8 +815,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ADT.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/ADT/ADT.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/ADT/ADT.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 789b8ccb1..98e73aa53 100644 Binary files a/plugins/MacSignedAU/ADT/ADT.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/ADT/ADT.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/AQuickVoiceClip/AQuickVoiceClip.xcodeproj/project.pbxproj b/plugins/MacSignedAU/AQuickVoiceClip/AQuickVoiceClip.xcodeproj/project.pbxproj index 75d1503ea..acd5d171e 100755 --- a/plugins/MacSignedAU/AQuickVoiceClip/AQuickVoiceClip.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/AQuickVoiceClip/AQuickVoiceClip.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = AQuickVoiceClip.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = AQuickVoiceClip.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/AQuickVoiceClip/AQuickVoiceClip.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/AQuickVoiceClip/AQuickVoiceClip.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 2d6cd04b3..92e8584f5 100644 Binary files a/plugins/MacSignedAU/AQuickVoiceClip/AQuickVoiceClip.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/AQuickVoiceClip/AQuickVoiceClip.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Acceleration/Acceleration.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Acceleration/Acceleration.xcodeproj/project.pbxproj index 4416f440b..20ba0cf1f 100755 --- a/plugins/MacSignedAU/Acceleration/Acceleration.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Acceleration/Acceleration.xcodeproj/project.pbxproj @@ -787,8 +787,9 @@ isa = XCBuildConfiguration; buildSettings = { CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_ENTITLEMENTS = ""; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Acceleration.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -813,8 +814,9 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_ENTITLEMENTS = ""; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Acceleration.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Acceleration/Acceleration.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Acceleration/Acceleration.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 4c5b8c258..4171fe7b8 100644 Binary files a/plugins/MacSignedAU/Acceleration/Acceleration.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Acceleration/Acceleration.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Acceleration2/Acceleration2.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Acceleration2/Acceleration2.xcodeproj/project.pbxproj index 644e9f032..f7d56d909 100755 --- a/plugins/MacSignedAU/Acceleration2/Acceleration2.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Acceleration2/Acceleration2.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Acceleration2.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -815,8 +815,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Acceleration2.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Acceleration2/Acceleration2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Acceleration2/Acceleration2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index e30736e4f..5f4446871 100644 Binary files a/plugins/MacSignedAU/Acceleration2/Acceleration2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Acceleration2/Acceleration2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Air/Air.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Air/Air.xcodeproj/project.pbxproj index 6ce3df0fd..89016e835 100755 --- a/plugins/MacSignedAU/Air/Air.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Air/Air.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Air.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -815,8 +815,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Air.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Air/Air.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Air/Air.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index f20b50646..6d84c1422 100644 Binary files a/plugins/MacSignedAU/Air/Air.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Air/Air.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Apicolypse/Apicolypse.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Apicolypse/Apicolypse.xcodeproj/project.pbxproj index 730537b90..dec465596 100755 --- a/plugins/MacSignedAU/Apicolypse/Apicolypse.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Apicolypse/Apicolypse.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Apicolypse.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Apicolypse.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Apicolypse/Apicolypse.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Apicolypse/Apicolypse.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 303a5adba..bec921019 100644 Binary files a/plugins/MacSignedAU/Apicolypse/Apicolypse.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Apicolypse/Apicolypse.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/AtmosphereBuss/AtmosphereBuss.xcodeproj/project.pbxproj b/plugins/MacSignedAU/AtmosphereBuss/AtmosphereBuss.xcodeproj/project.pbxproj index deeb08595..c4ccb79c2 100755 --- a/plugins/MacSignedAU/AtmosphereBuss/AtmosphereBuss.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/AtmosphereBuss/AtmosphereBuss.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = AtmosphereBuss.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = AtmosphereBuss.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/AtmosphereBuss/AtmosphereBuss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/AtmosphereBuss/AtmosphereBuss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index fc2111b1a..5ccae787a 100644 Binary files a/plugins/MacSignedAU/AtmosphereBuss/AtmosphereBuss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/AtmosphereBuss/AtmosphereBuss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/AtmosphereChannel/AtmosphereChannel.xcodeproj/project.pbxproj b/plugins/MacSignedAU/AtmosphereChannel/AtmosphereChannel.xcodeproj/project.pbxproj index a5e594ec8..db5432f50 100755 --- a/plugins/MacSignedAU/AtmosphereChannel/AtmosphereChannel.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/AtmosphereChannel/AtmosphereChannel.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = AtmosphereChannel.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = AtmosphereChannel.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/AtmosphereChannel/AtmosphereChannel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/AtmosphereChannel/AtmosphereChannel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 8b4d50f63..0916aa071 100644 Binary files a/plugins/MacSignedAU/AtmosphereChannel/AtmosphereChannel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/AtmosphereChannel/AtmosphereChannel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Aura/Aura.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Aura/Aura.xcodeproj/project.pbxproj index 531b94a53..48671b712 100755 --- a/plugins/MacSignedAU/Aura/Aura.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Aura/Aura.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Aura.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Aura.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Aura/Aura.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Aura/Aura.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index d10cf6760..3c7981f50 100644 Binary files a/plugins/MacSignedAU/Aura/Aura.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Aura/Aura.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/AutoPan/AutoPan.xcodeproj/project.pbxproj b/plugins/MacSignedAU/AutoPan/AutoPan.xcodeproj/project.pbxproj index dfe7a7024..ec7bb640e 100644 --- a/plugins/MacSignedAU/AutoPan/AutoPan.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/AutoPan/AutoPan.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = AutoPan.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = AutoPan.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/AutoPan/AutoPan.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/AutoPan/AutoPan.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 908937aac..4099a95d0 100644 Binary files a/plugins/MacSignedAU/AutoPan/AutoPan.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/AutoPan/AutoPan.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/AverMatrix/AverMatrix.xcodeproj/project.pbxproj b/plugins/MacSignedAU/AverMatrix/AverMatrix.xcodeproj/project.pbxproj index 1141c9d69..76bebcb27 100755 --- a/plugins/MacSignedAU/AverMatrix/AverMatrix.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/AverMatrix/AverMatrix.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = AverMatrix.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = AverMatrix.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/AverMatrix/AverMatrix.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/AverMatrix/AverMatrix.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 31915f030..a6220994d 100644 Binary files a/plugins/MacSignedAU/AverMatrix/AverMatrix.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/AverMatrix/AverMatrix.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Average/Average.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Average/Average.xcodeproj/project.pbxproj index de2e6ec42..923c5c4ef 100755 --- a/plugins/MacSignedAU/Average/Average.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Average/Average.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Average.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Average.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Average/Average.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Average/Average.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index af536d94b..535a21e1d 100644 Binary files a/plugins/MacSignedAU/Average/Average.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Average/Average.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/BassAmp/BassAmp.xcodeproj/project.pbxproj b/plugins/MacSignedAU/BassAmp/BassAmp.xcodeproj/project.pbxproj index 2389153d6..8b6277c12 100755 --- a/plugins/MacSignedAU/BassAmp/BassAmp.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/BassAmp/BassAmp.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BassAmp.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BassAmp.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/BassAmp/BassAmp.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/BassAmp/BassAmp.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 14a136479..5f9a2ccd2 100644 Binary files a/plugins/MacSignedAU/BassAmp/BassAmp.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/BassAmp/BassAmp.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/BassDrive/BassDrive.xcodeproj/project.pbxproj b/plugins/MacSignedAU/BassDrive/BassDrive.xcodeproj/project.pbxproj index 2763e7d3f..064c0f169 100755 --- a/plugins/MacSignedAU/BassDrive/BassDrive.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/BassDrive/BassDrive.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BassDrive.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BassDrive.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/BassDrive/BassDrive.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/BassDrive/BassDrive.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 00b67413e..07def190b 100644 Binary files a/plugins/MacSignedAU/BassDrive/BassDrive.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/BassDrive/BassDrive.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/BassKit/BassKit.xcodeproj/project.pbxproj b/plugins/MacSignedAU/BassKit/BassKit.xcodeproj/project.pbxproj index 6fc93ce56..b725cc8f4 100755 --- a/plugins/MacSignedAU/BassKit/BassKit.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/BassKit/BassKit.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BassKit.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BassKit.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/BassKit/BassKit.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/BassKit/BassKit.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 429faae93..7d740b72d 100644 Binary files a/plugins/MacSignedAU/BassKit/BassKit.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/BassKit/BassKit.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Baxandall/Baxandall.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Baxandall/Baxandall.xcodeproj/project.pbxproj index 1ebcd454b..38b0477fa 100755 --- a/plugins/MacSignedAU/Baxandall/Baxandall.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Baxandall/Baxandall.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Baxandall.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Baxandall.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Baxandall/Baxandall.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Baxandall/Baxandall.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 36917c8d0..1ac3293b6 100644 Binary files a/plugins/MacSignedAU/Baxandall/Baxandall.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Baxandall/Baxandall.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Beam/Beam.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Beam/Beam.xcodeproj/project.pbxproj index 4a4036f71..963ab9824 100755 --- a/plugins/MacSignedAU/Beam/Beam.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Beam/Beam.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Beam.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Beam.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Beam/Beam.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Beam/Beam.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 55766ed72..52de19877 100644 Binary files a/plugins/MacSignedAU/Beam/Beam.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Beam/Beam.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Biquad/Biquad.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Biquad/Biquad.xcodeproj/project.pbxproj index 509433538..19bf8d962 100755 --- a/plugins/MacSignedAU/Biquad/Biquad.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Biquad/Biquad.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Biquad.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Biquad.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Biquad/Biquad.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Biquad/Biquad.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 9add9f607..25a8026d8 100644 Binary files a/plugins/MacSignedAU/Biquad/Biquad.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Biquad/Biquad.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Biquad2/Biquad2.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Biquad2/Biquad2.xcodeproj/project.pbxproj index 01bf1189b..e4c941490 100755 --- a/plugins/MacSignedAU/Biquad2/Biquad2.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Biquad2/Biquad2.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Biquad2.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Biquad2.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Biquad2/Biquad2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Biquad2/Biquad2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 50c6554e4..ed3e5c147 100644 Binary files a/plugins/MacSignedAU/Biquad2/Biquad2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Biquad2/Biquad2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/BiquadDouble/BiquadDouble.xcodeproj/project.pbxproj b/plugins/MacSignedAU/BiquadDouble/BiquadDouble.xcodeproj/project.pbxproj index 0f2264575..27db0fe19 100755 --- a/plugins/MacSignedAU/BiquadDouble/BiquadDouble.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/BiquadDouble/BiquadDouble.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BiquadDouble.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BiquadDouble.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/BiquadDouble/BiquadDouble.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/BiquadDouble/BiquadDouble.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 8eb5ebe22..bce43d61e 100644 Binary files a/plugins/MacSignedAU/BiquadDouble/BiquadDouble.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/BiquadDouble/BiquadDouble.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/BiquadOneHalf/BiquadOneHalf.xcodeproj/project.pbxproj b/plugins/MacSignedAU/BiquadOneHalf/BiquadOneHalf.xcodeproj/project.pbxproj index 126d33e29..be7885f60 100755 --- a/plugins/MacSignedAU/BiquadOneHalf/BiquadOneHalf.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/BiquadOneHalf/BiquadOneHalf.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BiquadOneHalf.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BiquadOneHalf.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/BiquadOneHalf/BiquadOneHalf.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/BiquadOneHalf/BiquadOneHalf.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index de7f55f1a..63c311208 100644 Binary files a/plugins/MacSignedAU/BiquadOneHalf/BiquadOneHalf.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/BiquadOneHalf/BiquadOneHalf.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/BiquadStereo/BiquadStereo.xcodeproj/project.pbxproj b/plugins/MacSignedAU/BiquadStereo/BiquadStereo.xcodeproj/project.pbxproj index 2884387f3..24c0ad9cf 100755 --- a/plugins/MacSignedAU/BiquadStereo/BiquadStereo.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/BiquadStereo/BiquadStereo.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BiquadStereo.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BiquadStereo.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/BiquadStereo/BiquadStereo.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/BiquadStereo/BiquadStereo.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 97cbc4af3..aa7b827e5 100644 Binary files a/plugins/MacSignedAU/BiquadStereo/BiquadStereo.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/BiquadStereo/BiquadStereo.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/BiquadTriple/BiquadTriple.xcodeproj/project.pbxproj b/plugins/MacSignedAU/BiquadTriple/BiquadTriple.xcodeproj/project.pbxproj index f6be52fed..37bcd27a6 100755 --- a/plugins/MacSignedAU/BiquadTriple/BiquadTriple.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/BiquadTriple/BiquadTriple.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BiquadTriple.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BiquadTriple.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/BiquadTriple/BiquadTriple.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/BiquadTriple/BiquadTriple.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index e2371b3e8..0f17c8216 100644 Binary files a/plugins/MacSignedAU/BiquadTriple/BiquadTriple.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/BiquadTriple/BiquadTriple.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/BitGlitter/BitGlitter.xcodeproj/project.pbxproj b/plugins/MacSignedAU/BitGlitter/BitGlitter.xcodeproj/project.pbxproj index 3f4e95375..eb52bd3e3 100755 --- a/plugins/MacSignedAU/BitGlitter/BitGlitter.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/BitGlitter/BitGlitter.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BitGlitter.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BitGlitter.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/BitGlitter/BitGlitter.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/BitGlitter/BitGlitter.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 65cdee38d..61704f8d2 100644 Binary files a/plugins/MacSignedAU/BitGlitter/BitGlitter.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/BitGlitter/BitGlitter.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/BitShiftGain/BitShiftGain.xcodeproj/project.pbxproj b/plugins/MacSignedAU/BitShiftGain/BitShiftGain.xcodeproj/project.pbxproj index 641351f81..ce9b977b1 100755 --- a/plugins/MacSignedAU/BitShiftGain/BitShiftGain.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/BitShiftGain/BitShiftGain.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BitShiftGain.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BitShiftGain.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/BitShiftGain/BitShiftGain.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/BitShiftGain/BitShiftGain.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 4e7b666e4..26464aeca 100644 Binary files a/plugins/MacSignedAU/BitShiftGain/BitShiftGain.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/BitShiftGain/BitShiftGain.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Bite/Bite.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Bite/Bite.xcodeproj/project.pbxproj index a2417241e..3ed968e5a 100755 --- a/plugins/MacSignedAU/Bite/Bite.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Bite/Bite.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Bite.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Bite.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Bite/Bite.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Bite/Bite.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index bf9ec1d07..f56e49a84 100644 Binary files a/plugins/MacSignedAU/Bite/Bite.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Bite/Bite.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/BlockParty/BlockParty.xcodeproj/project.pbxproj b/plugins/MacSignedAU/BlockParty/BlockParty.xcodeproj/project.pbxproj index 4f4c5f05d..392d0d8aa 100755 --- a/plugins/MacSignedAU/BlockParty/BlockParty.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/BlockParty/BlockParty.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BlockParty.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BlockParty.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/BlockParty/BlockParty.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/BlockParty/BlockParty.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index a596f6bf1..87f05aa5d 100644 Binary files a/plugins/MacSignedAU/BlockParty/BlockParty.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/BlockParty/BlockParty.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/BrassRider/BrassRider.xcodeproj/project.pbxproj b/plugins/MacSignedAU/BrassRider/BrassRider.xcodeproj/project.pbxproj index 5264b2881..56625f0b9 100755 --- a/plugins/MacSignedAU/BrassRider/BrassRider.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/BrassRider/BrassRider.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BrassRider.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BrassRider.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/BrassRider/BrassRider.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/BrassRider/BrassRider.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 87350bbbe..338162219 100644 Binary files a/plugins/MacSignedAU/BrassRider/BrassRider.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/BrassRider/BrassRider.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/BrightAmbience/BrightAmbience.xcodeproj/project.pbxproj b/plugins/MacSignedAU/BrightAmbience/BrightAmbience.xcodeproj/project.pbxproj index 459d1f502..3cb66b23e 100755 --- a/plugins/MacSignedAU/BrightAmbience/BrightAmbience.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/BrightAmbience/BrightAmbience.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BrightAmbience.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BrightAmbience.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/BrightAmbience/BrightAmbience.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/BrightAmbience/BrightAmbience.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 7e992ae0d..8031c6a4d 100644 Binary files a/plugins/MacSignedAU/BrightAmbience/BrightAmbience.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/BrightAmbience/BrightAmbience.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/BrightAmbience2/BrightAmbience2.xcodeproj/project.pbxproj b/plugins/MacSignedAU/BrightAmbience2/BrightAmbience2.xcodeproj/project.pbxproj index 7784faf00..6c39469c9 100755 --- a/plugins/MacSignedAU/BrightAmbience2/BrightAmbience2.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/BrightAmbience2/BrightAmbience2.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BrightAmbience2.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BrightAmbience2.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/BrightAmbience2/BrightAmbience2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/BrightAmbience2/BrightAmbience2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 603068eee..5a7fb6fc7 100644 Binary files a/plugins/MacSignedAU/BrightAmbience2/BrightAmbience2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/BrightAmbience2/BrightAmbience2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/BuildATPDF/BuildATPDF.xcodeproj/project.pbxproj b/plugins/MacSignedAU/BuildATPDF/BuildATPDF.xcodeproj/project.pbxproj index c67900ec8..e18fe6055 100755 --- a/plugins/MacSignedAU/BuildATPDF/BuildATPDF.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/BuildATPDF/BuildATPDF.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BuildATPDF.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BuildATPDF.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/BuildATPDF/BuildATPDF.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/BuildATPDF/BuildATPDF.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 55c74ef90..f9b42e738 100644 Binary files a/plugins/MacSignedAU/BuildATPDF/BuildATPDF.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/BuildATPDF/BuildATPDF.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/BussColors4/BussColors4.xcodeproj/project.pbxproj b/plugins/MacSignedAU/BussColors4/BussColors4.xcodeproj/project.pbxproj index cb7a3e9b4..1ef9c44f2 100755 --- a/plugins/MacSignedAU/BussColors4/BussColors4.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/BussColors4/BussColors4.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BussColors4.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = BussColors4.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/BussColors4/BussColors4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/BussColors4/BussColors4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 81db53992..2b00d4ddb 100644 Binary files a/plugins/MacSignedAU/BussColors4/BussColors4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/BussColors4/BussColors4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/ButterComp/ButterComp.xcodeproj/project.pbxproj b/plugins/MacSignedAU/ButterComp/ButterComp.xcodeproj/project.pbxproj index 875cd2267..b53d78be9 100755 --- a/plugins/MacSignedAU/ButterComp/ButterComp.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/ButterComp/ButterComp.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ButterComp.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ButterComp.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/ButterComp/ButterComp.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/ButterComp/ButterComp.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index bb0da8e3a..2351f23ad 100644 Binary files a/plugins/MacSignedAU/ButterComp/ButterComp.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/ButterComp/ButterComp.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/ButterComp2/ButterComp2.xcodeproj/project.pbxproj b/plugins/MacSignedAU/ButterComp2/ButterComp2.xcodeproj/project.pbxproj index 6a71303bd..16b1bfd88 100755 --- a/plugins/MacSignedAU/ButterComp2/ButterComp2.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/ButterComp2/ButterComp2.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ButterComp2.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ButterComp2.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/ButterComp2/ButterComp2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/ButterComp2/ButterComp2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 5053dcd3d..11e4bdc70 100644 Binary files a/plugins/MacSignedAU/ButterComp2/ButterComp2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/ButterComp2/ButterComp2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/C5RawBuss/C5RawBuss.xcodeproj/project.pbxproj b/plugins/MacSignedAU/C5RawBuss/C5RawBuss.xcodeproj/project.pbxproj index c9acb4d15..c29cadde5 100755 --- a/plugins/MacSignedAU/C5RawBuss/C5RawBuss.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/C5RawBuss/C5RawBuss.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = C5RawBuss.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = C5RawBuss.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/C5RawBuss/C5RawBuss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/C5RawBuss/C5RawBuss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 0661956e5..54766a13d 100644 Binary files a/plugins/MacSignedAU/C5RawBuss/C5RawBuss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/C5RawBuss/C5RawBuss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/C5RawChannel/C5RawChannel.xcodeproj/project.pbxproj b/plugins/MacSignedAU/C5RawChannel/C5RawChannel.xcodeproj/project.pbxproj index 0e634a8eb..0e4f90ab0 100755 --- a/plugins/MacSignedAU/C5RawChannel/C5RawChannel.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/C5RawChannel/C5RawChannel.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = C5RawChannel.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = C5RawChannel.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/C5RawChannel/C5RawChannel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/C5RawChannel/C5RawChannel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 83886fb83..2658f6308 100644 Binary files a/plugins/MacSignedAU/C5RawChannel/C5RawChannel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/C5RawChannel/C5RawChannel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/CStrip/CStrip.xcodeproj/project.pbxproj b/plugins/MacSignedAU/CStrip/CStrip.xcodeproj/project.pbxproj index 16d68b2ed..7c9b3be85 100755 --- a/plugins/MacSignedAU/CStrip/CStrip.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/CStrip/CStrip.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = CStrip.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = CStrip.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/CStrip/CStrip.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/CStrip/CStrip.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 34f61e7eb..8766baca4 100644 Binary files a/plugins/MacSignedAU/CStrip/CStrip.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/CStrip/CStrip.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Calibre/Calibre.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Calibre/Calibre.xcodeproj/project.pbxproj index b28f4cf0d..856471e70 100755 --- a/plugins/MacSignedAU/Calibre/Calibre.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Calibre/Calibre.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Calibre.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Calibre.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Calibre/Calibre.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Calibre/Calibre.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 2c2490545..5e610d8aa 100644 Binary files a/plugins/MacSignedAU/Calibre/Calibre.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Calibre/Calibre.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Capacitor/Capacitor.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Capacitor/Capacitor.xcodeproj/project.pbxproj index 5afc0b8cf..974bd324b 100755 --- a/plugins/MacSignedAU/Capacitor/Capacitor.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Capacitor/Capacitor.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Capacitor.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Capacitor.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Capacitor/Capacitor.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Capacitor/Capacitor.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index aa845b4a8..d7f3a0a43 100644 Binary files a/plugins/MacSignedAU/Capacitor/Capacitor.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Capacitor/Capacitor.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Capacitor2/Capacitor2.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Capacitor2/Capacitor2.xcodeproj/project.pbxproj index 091995f59..fd7885380 100755 --- a/plugins/MacSignedAU/Capacitor2/Capacitor2.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Capacitor2/Capacitor2.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Capacitor2.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Capacitor2.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Capacitor2/Capacitor2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Capacitor2/Capacitor2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 29c9eaf80..d3293ce21 100644 Binary files a/plugins/MacSignedAU/Capacitor2/Capacitor2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Capacitor2/Capacitor2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Channel4/Channel4.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Channel4/Channel4.xcodeproj/project.pbxproj index 1405a2038..490fca9bf 100755 --- a/plugins/MacSignedAU/Channel4/Channel4.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Channel4/Channel4.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Channel4.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Channel4.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Channel4/Channel4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Channel4/Channel4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index e9dec054f..27e25465b 100644 Binary files a/plugins/MacSignedAU/Channel4/Channel4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Channel4/Channel4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Channel5/Channel5.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Channel5/Channel5.xcodeproj/project.pbxproj index 6a7dd0b83..dbe002551 100755 --- a/plugins/MacSignedAU/Channel5/Channel5.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Channel5/Channel5.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Channel5.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Channel5.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Channel5/Channel5.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Channel5/Channel5.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 0394c2a4e..6c4828173 100644 Binary files a/plugins/MacSignedAU/Channel5/Channel5.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Channel5/Channel5.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Channel6/Channel6.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Channel6/Channel6.xcodeproj/project.pbxproj index d79058879..4446d5f17 100755 --- a/plugins/MacSignedAU/Channel6/Channel6.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Channel6/Channel6.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Channel6.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Channel6.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Channel6/Channel6.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Channel6/Channel6.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index dbf53fabf..c1da71d27 100644 Binary files a/plugins/MacSignedAU/Channel6/Channel6.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Channel6/Channel6.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Channel7/Channel7.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Channel7/Channel7.xcodeproj/project.pbxproj index c16db2ad9..d4c6be52b 100755 --- a/plugins/MacSignedAU/Channel7/Channel7.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Channel7/Channel7.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Channel7.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Channel7.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Channel7/Channel7.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Channel7/Channel7.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index a70faa6b4..1b9dc579e 100644 Binary files a/plugins/MacSignedAU/Channel7/Channel7.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Channel7/Channel7.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Channel8/Channel8.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Channel8/Channel8.xcodeproj/project.pbxproj index e519d4311..315a5baf4 100755 --- a/plugins/MacSignedAU/Channel8/Channel8.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Channel8/Channel8.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Channel8.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Channel8.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Channel8/Channel8.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Channel8/Channel8.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index bd5d81e83..0233b8a03 100644 Binary files a/plugins/MacSignedAU/Channel8/Channel8.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Channel8/Channel8.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Channel9/Channel9.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Channel9/Channel9.xcodeproj/project.pbxproj index ce1766a62..ea6caf009 100755 --- a/plugins/MacSignedAU/Channel9/Channel9.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Channel9/Channel9.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Channel9.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Channel9.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Channel9/Channel9.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Channel9/Channel9.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 903dc2639..f8aaeaa92 100644 Binary files a/plugins/MacSignedAU/Channel9/Channel9.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Channel9/Channel9.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Chorus/Chorus.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Chorus/Chorus.xcodeproj/project.pbxproj index fa8e6fae7..b5a2c3ef1 100755 --- a/plugins/MacSignedAU/Chorus/Chorus.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Chorus/Chorus.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Chorus.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Chorus.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Chorus/Chorus.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Chorus/Chorus.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 46abdee51..0a190c97e 100644 Binary files a/plugins/MacSignedAU/Chorus/Chorus.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Chorus/Chorus.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/ChorusEnsemble/ChorusEnsemble.xcodeproj/project.pbxproj b/plugins/MacSignedAU/ChorusEnsemble/ChorusEnsemble.xcodeproj/project.pbxproj index 37379c948..0ff8196e3 100755 --- a/plugins/MacSignedAU/ChorusEnsemble/ChorusEnsemble.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/ChorusEnsemble/ChorusEnsemble.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ChorusEnsemble.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ChorusEnsemble.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/ChorusEnsemble/ChorusEnsemble.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/ChorusEnsemble/ChorusEnsemble.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index a4fde8e7e..a03713231 100644 Binary files a/plugins/MacSignedAU/ChorusEnsemble/ChorusEnsemble.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/ChorusEnsemble/ChorusEnsemble.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/ChromeOxide/ChromeOxide.xcodeproj/project.pbxproj b/plugins/MacSignedAU/ChromeOxide/ChromeOxide.xcodeproj/project.pbxproj index b64cd1f60..19dbc50ff 100755 --- a/plugins/MacSignedAU/ChromeOxide/ChromeOxide.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/ChromeOxide/ChromeOxide.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ChromeOxide.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ChromeOxide.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/ChromeOxide/ChromeOxide.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/ChromeOxide/ChromeOxide.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index cd603ba5f..1fa5f5a2b 100644 Binary files a/plugins/MacSignedAU/ChromeOxide/ChromeOxide.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/ChromeOxide/ChromeOxide.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Cider/Cider.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Cider/Cider.xcodeproj/project.pbxproj index c8e051acd..4a483fc52 100755 --- a/plugins/MacSignedAU/Cider/Cider.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Cider/Cider.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Cider.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Cider.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Cider/Cider.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Cider/Cider.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 5d84aa356..50ac1ff65 100644 Binary files a/plugins/MacSignedAU/Cider/Cider.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Cider/Cider.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/ClipOnly/ClipOnly.xcodeproj/project.pbxproj b/plugins/MacSignedAU/ClipOnly/ClipOnly.xcodeproj/project.pbxproj index ce87c271f..14e3d8b3e 100755 --- a/plugins/MacSignedAU/ClipOnly/ClipOnly.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/ClipOnly/ClipOnly.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ClipOnly.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ClipOnly.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/ClipOnly/ClipOnly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/ClipOnly/ClipOnly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 0e1434dc8..4b800f2b9 100644 Binary files a/plugins/MacSignedAU/ClipOnly/ClipOnly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/ClipOnly/ClipOnly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Coils/Coils.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Coils/Coils.xcodeproj/project.pbxproj index e870add09..d97524647 100755 --- a/plugins/MacSignedAU/Coils/Coils.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Coils/Coils.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Coils.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Coils.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Coils/Coils.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Coils/Coils.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 049c0c343..527e8805c 100644 Binary files a/plugins/MacSignedAU/Coils/Coils.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Coils/Coils.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Cojones/Cojones.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Cojones/Cojones.xcodeproj/project.pbxproj index a901009fe..aa01bd492 100755 --- a/plugins/MacSignedAU/Cojones/Cojones.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Cojones/Cojones.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Cojones.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,6 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; + CODE_SIGN_IDENTITY = "Developer ID Application"; + DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Cojones.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; GENERATE_PKGINFO_FILE = YES; diff --git a/plugins/MacSignedAU/Cojones/Cojones.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Cojones/Cojones.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index a0ce422e9..02b93616b 100644 Binary files a/plugins/MacSignedAU/Cojones/Cojones.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Cojones/Cojones.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Compresaturator/Compresaturator.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Compresaturator/Compresaturator.xcodeproj/project.pbxproj index 4dbc12268..6b51b8186 100755 --- a/plugins/MacSignedAU/Compresaturator/Compresaturator.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Compresaturator/Compresaturator.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Compresaturator.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Compresaturator.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Compresaturator/Compresaturator.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Compresaturator/Compresaturator.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 8e975eeca..a8029085e 100644 Binary files a/plugins/MacSignedAU/Compresaturator/Compresaturator.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Compresaturator/Compresaturator.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Console4Buss/Console4Buss.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Console4Buss/Console4Buss.xcodeproj/project.pbxproj index 261228f2f..17eb50551 100755 --- a/plugins/MacSignedAU/Console4Buss/Console4Buss.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Console4Buss/Console4Buss.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console4Buss.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console4Buss.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Console4Buss/Console4Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Console4Buss/Console4Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index d1cf9bdaf..f830dd519 100644 Binary files a/plugins/MacSignedAU/Console4Buss/Console4Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Console4Buss/Console4Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Console4Channel/Console4Channel.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Console4Channel/Console4Channel.xcodeproj/project.pbxproj index b7b6e66c9..27b35c930 100755 --- a/plugins/MacSignedAU/Console4Channel/Console4Channel.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Console4Channel/Console4Channel.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console4Channel.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console4Channel.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Console4Channel/Console4Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Console4Channel/Console4Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 5499452b5..6815abeb9 100644 Binary files a/plugins/MacSignedAU/Console4Channel/Console4Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Console4Channel/Console4Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Console5Buss/Console5Buss.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Console5Buss/Console5Buss.xcodeproj/project.pbxproj index f12f34524..129de65e3 100755 --- a/plugins/MacSignedAU/Console5Buss/Console5Buss.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Console5Buss/Console5Buss.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console5Buss.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console5Buss.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Console5Buss/Console5Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Console5Buss/Console5Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index af1b3812d..c5412c439 100644 Binary files a/plugins/MacSignedAU/Console5Buss/Console5Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Console5Buss/Console5Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Console5Channel/Console5Channel.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Console5Channel/Console5Channel.xcodeproj/project.pbxproj index ac3c72057..148d54150 100755 --- a/plugins/MacSignedAU/Console5Channel/Console5Channel.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Console5Channel/Console5Channel.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console5Channel.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console5Channel.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Console5Channel/Console5Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Console5Channel/Console5Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index a5ccb2afe..b00ef373e 100644 Binary files a/plugins/MacSignedAU/Console5Channel/Console5Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Console5Channel/Console5Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Console5DarkCh/Console5DarkCh.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Console5DarkCh/Console5DarkCh.xcodeproj/project.pbxproj index 9db1fa9da..d6650894f 100755 --- a/plugins/MacSignedAU/Console5DarkCh/Console5DarkCh.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Console5DarkCh/Console5DarkCh.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console5DarkCh.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console5DarkCh.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Console5DarkCh/Console5DarkCh.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Console5DarkCh/Console5DarkCh.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 5d6cce85b..c8105eca2 100644 Binary files a/plugins/MacSignedAU/Console5DarkCh/Console5DarkCh.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Console5DarkCh/Console5DarkCh.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Console6Buss/Console6Buss.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Console6Buss/Console6Buss.xcodeproj/project.pbxproj index 70e980ff6..5d29134a2 100755 --- a/plugins/MacSignedAU/Console6Buss/Console6Buss.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Console6Buss/Console6Buss.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console6Buss.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console6Buss.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Console6Buss/Console6Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Console6Buss/Console6Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 065d6717d..3271e5e78 100644 Binary files a/plugins/MacSignedAU/Console6Buss/Console6Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Console6Buss/Console6Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Console6Channel/Console6Channel.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Console6Channel/Console6Channel.xcodeproj/project.pbxproj index cc59cc483..d1f7aff53 100755 --- a/plugins/MacSignedAU/Console6Channel/Console6Channel.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Console6Channel/Console6Channel.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console6Channel.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console6Channel.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Console6Channel/Console6Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Console6Channel/Console6Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 843a0b4fc..3a6d8f4f3 100644 Binary files a/plugins/MacSignedAU/Console6Channel/Console6Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Console6Channel/Console6Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Console7Buss/Console7Buss.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Console7Buss/Console7Buss.xcodeproj/project.pbxproj index 7d5b1bafe..ed1c73a67 100755 --- a/plugins/MacSignedAU/Console7Buss/Console7Buss.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Console7Buss/Console7Buss.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console7Buss.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console7Buss.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Console7Buss/Console7Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Console7Buss/Console7Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index be6aeeea4..954aeaa19 100644 Binary files a/plugins/MacSignedAU/Console7Buss/Console7Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Console7Buss/Console7Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Console7Cascade/Console7Cascade.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Console7Cascade/Console7Cascade.xcodeproj/project.pbxproj index e1adfc546..e174983f4 100755 --- a/plugins/MacSignedAU/Console7Cascade/Console7Cascade.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Console7Cascade/Console7Cascade.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console7Cascade.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console7Cascade.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Console7Cascade/Console7Cascade.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Console7Cascade/Console7Cascade.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 73dff0727..d21d540d8 100644 Binary files a/plugins/MacSignedAU/Console7Cascade/Console7Cascade.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Console7Cascade/Console7Cascade.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Console7Channel/Console7Channel.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Console7Channel/Console7Channel.xcodeproj/project.pbxproj index 1ffa6cdbc..2e607eea5 100755 --- a/plugins/MacSignedAU/Console7Channel/Console7Channel.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Console7Channel/Console7Channel.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console7Channel.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Console7Channel.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Console7Channel/Console7Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Console7Channel/Console7Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index ec17d787a..599c1b395 100644 Binary files a/plugins/MacSignedAU/Console7Channel/Console7Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Console7Channel/Console7Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/CrunchyGrooveWear/CrunchyGrooveWear.xcodeproj/project.pbxproj b/plugins/MacSignedAU/CrunchyGrooveWear/CrunchyGrooveWear.xcodeproj/project.pbxproj index 50836f92e..59d2bc991 100755 --- a/plugins/MacSignedAU/CrunchyGrooveWear/CrunchyGrooveWear.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/CrunchyGrooveWear/CrunchyGrooveWear.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = CrunchyGrooveWear.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = CrunchyGrooveWear.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/CrunchyGrooveWear/CrunchyGrooveWear.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/CrunchyGrooveWear/CrunchyGrooveWear.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 8392766bd..2d554d62d 100644 Binary files a/plugins/MacSignedAU/CrunchyGrooveWear/CrunchyGrooveWear.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/CrunchyGrooveWear/CrunchyGrooveWear.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Crystal/Crystal.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Crystal/Crystal.xcodeproj/project.pbxproj index 1417c06c3..4d1fb3fc6 100755 --- a/plugins/MacSignedAU/Crystal/Crystal.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Crystal/Crystal.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Crystal.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Crystal.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Crystal/Crystal.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Crystal/Crystal.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 6530566f5..edea56156 100644 Binary files a/plugins/MacSignedAU/Crystal/Crystal.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Crystal/Crystal.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/DCVoltage/DCVoltage.xcodeproj/project.pbxproj b/plugins/MacSignedAU/DCVoltage/DCVoltage.xcodeproj/project.pbxproj index 177c336cc..8bbdc56b8 100755 --- a/plugins/MacSignedAU/DCVoltage/DCVoltage.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/DCVoltage/DCVoltage.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DCVoltage.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DCVoltage.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/DCVoltage/DCVoltage.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/DCVoltage/DCVoltage.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index f3c307e94..510bbd460 100644 Binary files a/plugins/MacSignedAU/DCVoltage/DCVoltage.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/DCVoltage/DCVoltage.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Dark/Dark.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Dark/Dark.xcodeproj/project.pbxproj index 8a95cad2a..07cfb15f1 100755 --- a/plugins/MacSignedAU/Dark/Dark.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Dark/Dark.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Dark.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Dark.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Dark/Dark.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Dark/Dark.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index c534a8c2b..38f42ee52 100644 Binary files a/plugins/MacSignedAU/Dark/Dark.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Dark/Dark.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/DarkNoise/DarkNoise.xcodeproj/project.pbxproj b/plugins/MacSignedAU/DarkNoise/DarkNoise.xcodeproj/project.pbxproj index 96d08daf0..81b629c84 100755 --- a/plugins/MacSignedAU/DarkNoise/DarkNoise.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/DarkNoise/DarkNoise.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DarkNoise.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DarkNoise.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/DarkNoise/DarkNoise.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/DarkNoise/DarkNoise.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index eecd641b4..f608de337 100644 Binary files a/plugins/MacSignedAU/DarkNoise/DarkNoise.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/DarkNoise/DarkNoise.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/DeBess/DeBess.xcodeproj/project.pbxproj b/plugins/MacSignedAU/DeBess/DeBess.xcodeproj/project.pbxproj index df623ffdf..823cc59df 100755 --- a/plugins/MacSignedAU/DeBess/DeBess.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/DeBess/DeBess.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DeBess.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DeBess.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/DeBess/DeBess.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/DeBess/DeBess.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index d9fc0e3b1..508f31591 100644 Binary files a/plugins/MacSignedAU/DeBess/DeBess.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/DeBess/DeBess.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/DeEss/DeEss.xcodeproj/project.pbxproj b/plugins/MacSignedAU/DeEss/DeEss.xcodeproj/project.pbxproj index fa8381db3..170b12392 100755 --- a/plugins/MacSignedAU/DeEss/DeEss.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/DeEss/DeEss.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DeEss.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DeEss.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/DeEss/DeEss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/DeEss/DeEss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 046a3710f..d6717b7e2 100644 Binary files a/plugins/MacSignedAU/DeEss/DeEss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/DeEss/DeEss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/DeHiss/DeHiss.xcodeproj/project.pbxproj b/plugins/MacSignedAU/DeHiss/DeHiss.xcodeproj/project.pbxproj index 06f7600ac..2229a052e 100755 --- a/plugins/MacSignedAU/DeHiss/DeHiss.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/DeHiss/DeHiss.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DeHiss.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DeHiss.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/DeHiss/DeHiss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/DeHiss/DeHiss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 4cbbca6f2..1c9d50fef 100644 Binary files a/plugins/MacSignedAU/DeHiss/DeHiss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/DeHiss/DeHiss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/DeRez/DeRez.xcodeproj/project.pbxproj b/plugins/MacSignedAU/DeRez/DeRez.xcodeproj/project.pbxproj index f728aeaec..516197d06 100755 --- a/plugins/MacSignedAU/DeRez/DeRez.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/DeRez/DeRez.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DeRez.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DeRez.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/DeRez/DeRez.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/DeRez/DeRez.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index a25731b3e..715b47835 100644 Binary files a/plugins/MacSignedAU/DeRez/DeRez.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/DeRez/DeRez.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/DeRez2/DeRez2.xcodeproj/project.pbxproj b/plugins/MacSignedAU/DeRez2/DeRez2.xcodeproj/project.pbxproj index f2273a625..e0bf9f5e3 100755 --- a/plugins/MacSignedAU/DeRez2/DeRez2.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/DeRez2/DeRez2.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DeRez2.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DeRez2.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/DeRez2/DeRez2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/DeRez2/DeRez2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index bfdb267c3..fc74a4ad2 100644 Binary files a/plugins/MacSignedAU/DeRez2/DeRez2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/DeRez2/DeRez2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Deckwrecka/Deckwrecka.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Deckwrecka/Deckwrecka.xcodeproj/project.pbxproj index 7be8d0a6c..c4e1f14da 100755 --- a/plugins/MacSignedAU/Deckwrecka/Deckwrecka.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Deckwrecka/Deckwrecka.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Deckwrecka.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Deckwrecka.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Deckwrecka/Deckwrecka.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Deckwrecka/Deckwrecka.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 5efa73614..ec5e6ca51 100644 Binary files a/plugins/MacSignedAU/Deckwrecka/Deckwrecka.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Deckwrecka/Deckwrecka.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Density/Density.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Density/Density.xcodeproj/project.pbxproj index d7141860b..b314b99ad 100755 --- a/plugins/MacSignedAU/Density/Density.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Density/Density.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Density.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Density.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Density/Density.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Density/Density.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index e2d9984f6..70139586b 100644 Binary files a/plugins/MacSignedAU/Density/Density.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Density/Density.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Density2/Density2.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Density2/Density2.xcodeproj/project.pbxproj index 8106afb8b..0674434b0 100755 --- a/plugins/MacSignedAU/Density2/Density2.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Density2/Density2.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Density2.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Density2.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Density2/Density2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Density2/Density2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index ac5037069..395c9830e 100644 Binary files a/plugins/MacSignedAU/Density2/Density2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Density2/Density2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Desk/Desk.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Desk/Desk.xcodeproj/project.pbxproj index 8937d6efc..702a85f33 100755 --- a/plugins/MacSignedAU/Desk/Desk.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Desk/Desk.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Desk.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Desk.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Desk/Desk.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Desk/Desk.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 69e0399cd..e2483382e 100644 Binary files a/plugins/MacSignedAU/Desk/Desk.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Desk/Desk.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Desk4/Desk4.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Desk4/Desk4.xcodeproj/project.pbxproj index 9d85742ef..4ac1e001a 100755 --- a/plugins/MacSignedAU/Desk4/Desk4.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Desk4/Desk4.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Desk4.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Desk4.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Desk4/Desk4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Desk4/Desk4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index b799aadda..a3b386814 100644 Binary files a/plugins/MacSignedAU/Desk4/Desk4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Desk4/Desk4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/DigitalBlack/DigitalBlack.xcodeproj/project.pbxproj b/plugins/MacSignedAU/DigitalBlack/DigitalBlack.xcodeproj/project.pbxproj index bdfbadb5b..05977efe3 100755 --- a/plugins/MacSignedAU/DigitalBlack/DigitalBlack.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/DigitalBlack/DigitalBlack.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DigitalBlack.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DigitalBlack.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/DigitalBlack/DigitalBlack.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/DigitalBlack/DigitalBlack.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 8484573e7..5b29f514d 100644 Binary files a/plugins/MacSignedAU/DigitalBlack/DigitalBlack.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/DigitalBlack/DigitalBlack.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Distance/Distance.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Distance/Distance.xcodeproj/project.pbxproj index 1af70a465..6fac80cdc 100755 --- a/plugins/MacSignedAU/Distance/Distance.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Distance/Distance.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Distance.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Distance.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Distance/Distance.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Distance/Distance.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index de4953f4a..02b26835b 100644 Binary files a/plugins/MacSignedAU/Distance/Distance.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Distance/Distance.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Distance2/Distance2.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Distance2/Distance2.xcodeproj/project.pbxproj index 5fb25262b..ffb725b97 100755 --- a/plugins/MacSignedAU/Distance2/Distance2.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Distance2/Distance2.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Distance2.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Distance2.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Distance2/Distance2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Distance2/Distance2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 7e10a83b0..f5d986e9c 100644 Binary files a/plugins/MacSignedAU/Distance2/Distance2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Distance2/Distance2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Distortion/Distortion.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Distortion/Distortion.xcodeproj/project.pbxproj index a832ed4f8..0affca67c 100755 --- a/plugins/MacSignedAU/Distortion/Distortion.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Distortion/Distortion.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Distortion.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Distortion.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Distortion/Distortion.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Distortion/Distortion.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 203c7dfb4..67d61aa0e 100644 Binary files a/plugins/MacSignedAU/Distortion/Distortion.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Distortion/Distortion.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/DitherFloat/DitherFloat.xcodeproj/project.pbxproj b/plugins/MacSignedAU/DitherFloat/DitherFloat.xcodeproj/project.pbxproj index 702d8ea27..2ebb85dd2 100755 --- a/plugins/MacSignedAU/DitherFloat/DitherFloat.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/DitherFloat/DitherFloat.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DitherFloat.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DitherFloat.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/DitherFloat/DitherFloat.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/DitherFloat/DitherFloat.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 6f0d2a4ed..219959aee 100644 Binary files a/plugins/MacSignedAU/DitherFloat/DitherFloat.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/DitherFloat/DitherFloat.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/DitherMeDiskers/DitherMeDiskers.xcodeproj/project.pbxproj b/plugins/MacSignedAU/DitherMeDiskers/DitherMeDiskers.xcodeproj/project.pbxproj index 9df0464d3..e2cb45af2 100755 --- a/plugins/MacSignedAU/DitherMeDiskers/DitherMeDiskers.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/DitherMeDiskers/DitherMeDiskers.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DitherMeDiskers.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DitherMeDiskers.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/DitherMeDiskers/DitherMeDiskers.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/DitherMeDiskers/DitherMeDiskers.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index c2d97c8cc..a008cb7fe 100644 Binary files a/plugins/MacSignedAU/DitherMeDiskers/DitherMeDiskers.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/DitherMeDiskers/DitherMeDiskers.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/DitherMeTimbers/DitherMeTimbers.xcodeproj/project.pbxproj b/plugins/MacSignedAU/DitherMeTimbers/DitherMeTimbers.xcodeproj/project.pbxproj index 107ca3f4c..74047caf3 100755 --- a/plugins/MacSignedAU/DitherMeTimbers/DitherMeTimbers.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/DitherMeTimbers/DitherMeTimbers.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DitherMeTimbers.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DitherMeTimbers.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/DitherMeTimbers/DitherMeTimbers.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/DitherMeTimbers/DitherMeTimbers.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 35adbb103..f93d094b4 100644 Binary files a/plugins/MacSignedAU/DitherMeTimbers/DitherMeTimbers.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/DitherMeTimbers/DitherMeTimbers.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Ditherbox/Ditherbox.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Ditherbox/Ditherbox.xcodeproj/project.pbxproj index 4cddb258b..7aef9acaf 100755 --- a/plugins/MacSignedAU/Ditherbox/Ditherbox.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Ditherbox/Ditherbox.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Ditherbox.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Ditherbox.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Ditherbox/Ditherbox.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Ditherbox/Ditherbox.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 7ddc0bed2..c804c82b4 100644 Binary files a/plugins/MacSignedAU/Ditherbox/Ditherbox.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Ditherbox/Ditherbox.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/DoublePaul/DoublePaul.xcodeproj/project.pbxproj b/plugins/MacSignedAU/DoublePaul/DoublePaul.xcodeproj/project.pbxproj index 07caa07c0..84c531fc1 100755 --- a/plugins/MacSignedAU/DoublePaul/DoublePaul.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/DoublePaul/DoublePaul.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DoublePaul.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DoublePaul.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/DoublePaul/DoublePaul.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/DoublePaul/DoublePaul.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index db338adce..5811f200a 100644 Binary files a/plugins/MacSignedAU/DoublePaul/DoublePaul.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/DoublePaul/DoublePaul.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Drive/Drive.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Drive/Drive.xcodeproj/project.pbxproj index ee112e4eb..6bb058885 100755 --- a/plugins/MacSignedAU/Drive/Drive.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Drive/Drive.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Drive.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Drive.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Drive/Drive.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Drive/Drive.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 499ca0838..ca0534abc 100644 Binary files a/plugins/MacSignedAU/Drive/Drive.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Drive/Drive.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/DrumSlam/DrumSlam.xcodeproj/project.pbxproj b/plugins/MacSignedAU/DrumSlam/DrumSlam.xcodeproj/project.pbxproj index fb095723c..8adbd0e43 100755 --- a/plugins/MacSignedAU/DrumSlam/DrumSlam.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/DrumSlam/DrumSlam.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DrumSlam.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DrumSlam.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/DrumSlam/DrumSlam.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/DrumSlam/DrumSlam.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index cbaf3d462..7288109ed 100644 Binary files a/plugins/MacSignedAU/DrumSlam/DrumSlam.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/DrumSlam/DrumSlam.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/DubCenter/DubCenter.xcodeproj/project.pbxproj b/plugins/MacSignedAU/DubCenter/DubCenter.xcodeproj/project.pbxproj index c12006618..8e2dc467d 100755 --- a/plugins/MacSignedAU/DubCenter/DubCenter.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/DubCenter/DubCenter.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DubCenter.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DubCenter.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/DubCenter/DubCenter.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/DubCenter/DubCenter.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index b4ed5eed1..99ee460f0 100644 Binary files a/plugins/MacSignedAU/DubCenter/DubCenter.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/DubCenter/DubCenter.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/DubSub/DubSub.xcodeproj/project.pbxproj b/plugins/MacSignedAU/DubSub/DubSub.xcodeproj/project.pbxproj index f71a64b9d..d6b39d33e 100755 --- a/plugins/MacSignedAU/DubSub/DubSub.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/DubSub/DubSub.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DubSub.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DubSub.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/DubSub/DubSub.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/DubSub/DubSub.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 37bac3688..3d7e43e7e 100644 Binary files a/plugins/MacSignedAU/DubSub/DubSub.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/DubSub/DubSub.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/DustBunny/DustBunny.xcodeproj/project.pbxproj b/plugins/MacSignedAU/DustBunny/DustBunny.xcodeproj/project.pbxproj index ce6bdfcc9..e1cb6ffdc 100755 --- a/plugins/MacSignedAU/DustBunny/DustBunny.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/DustBunny/DustBunny.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DustBunny.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = DustBunny.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/DustBunny/DustBunny.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/DustBunny/DustBunny.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index fbb266b89..a7f51665b 100644 Binary files a/plugins/MacSignedAU/DustBunny/DustBunny.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/DustBunny/DustBunny.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Dyno/Dyno.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Dyno/Dyno.xcodeproj/project.pbxproj index e3eeecc47..bf3d6f21b 100755 --- a/plugins/MacSignedAU/Dyno/Dyno.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Dyno/Dyno.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Dyno.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Dyno.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Dyno/Dyno.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Dyno/Dyno.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index c30945eb1..e02baedc2 100644 Binary files a/plugins/MacSignedAU/Dyno/Dyno.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Dyno/Dyno.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/EQ/EQ.xcodeproj/project.pbxproj b/plugins/MacSignedAU/EQ/EQ.xcodeproj/project.pbxproj index cd111cb8a..cd86bd37c 100755 --- a/plugins/MacSignedAU/EQ/EQ.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/EQ/EQ.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = EQ.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = EQ.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/EQ/EQ.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/EQ/EQ.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 90d319b89..f835ed3a2 100644 Binary files a/plugins/MacSignedAU/EQ/EQ.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/EQ/EQ.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/EdIsDim/EdIsDim.xcodeproj/project.pbxproj b/plugins/MacSignedAU/EdIsDim/EdIsDim.xcodeproj/project.pbxproj index a7fd22fdd..6351de700 100755 --- a/plugins/MacSignedAU/EdIsDim/EdIsDim.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/EdIsDim/EdIsDim.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = EdIsDim.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = EdIsDim.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/EdIsDim/EdIsDim.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/EdIsDim/EdIsDim.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 32cebc0b0..b5c965731 100644 Binary files a/plugins/MacSignedAU/EdIsDim/EdIsDim.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/EdIsDim/EdIsDim.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Elation/Elation.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Elation/Elation.xcodeproj/project.pbxproj index d4420dc6e..ee17a2bce 100755 --- a/plugins/MacSignedAU/Elation/Elation.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Elation/Elation.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Elation.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Elation.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Elation/Elation.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Elation/Elation.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 34ed3ee24..38a74f8a7 100644 Binary files a/plugins/MacSignedAU/Elation/Elation.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Elation/Elation.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/ElectroHat/ElectroHat.xcodeproj/project.pbxproj b/plugins/MacSignedAU/ElectroHat/ElectroHat.xcodeproj/project.pbxproj index 75625df85..e30cfec8a 100755 --- a/plugins/MacSignedAU/ElectroHat/ElectroHat.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/ElectroHat/ElectroHat.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ElectroHat.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ElectroHat.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/ElectroHat/ElectroHat.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/ElectroHat/ElectroHat.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index acdb368d1..b37ba84f2 100644 Binary files a/plugins/MacSignedAU/ElectroHat/ElectroHat.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/ElectroHat/ElectroHat.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Energy/Energy.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Energy/Energy.xcodeproj/project.pbxproj index 79cbce064..21ffa2da6 100755 --- a/plugins/MacSignedAU/Energy/Energy.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Energy/Energy.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Energy.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Energy.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Energy/Energy.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Energy/Energy.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index ec798bf74..c77590661 100644 Binary files a/plugins/MacSignedAU/Energy/Energy.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Energy/Energy.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Ensemble/Ensemble.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Ensemble/Ensemble.xcodeproj/project.pbxproj index 70dd8f5a8..38d426354 100755 --- a/plugins/MacSignedAU/Ensemble/Ensemble.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Ensemble/Ensemble.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Ensemble.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Ensemble.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Ensemble/Ensemble.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Ensemble/Ensemble.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 8ed925b8d..bf22fc435 100644 Binary files a/plugins/MacSignedAU/Ensemble/Ensemble.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Ensemble/Ensemble.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/EveryTrim/EveryTrim.xcodeproj/project.pbxproj b/plugins/MacSignedAU/EveryTrim/EveryTrim.xcodeproj/project.pbxproj index c9a0b0274..1f70477fc 100755 --- a/plugins/MacSignedAU/EveryTrim/EveryTrim.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/EveryTrim/EveryTrim.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = EveryTrim.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = EveryTrim.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/EveryTrim/EveryTrim.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/EveryTrim/EveryTrim.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index a7744d092..e43a09721 100644 Binary files a/plugins/MacSignedAU/EveryTrim/EveryTrim.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/EveryTrim/EveryTrim.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Facet/Facet.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Facet/Facet.xcodeproj/project.pbxproj index 16a7cf41b..3f7aa5547 100755 --- a/plugins/MacSignedAU/Facet/Facet.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Facet/Facet.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Facet.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Facet.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Facet/Facet.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Facet/Facet.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index cdfbb23af..b47f2e21c 100644 Binary files a/plugins/MacSignedAU/Facet/Facet.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Facet/Facet.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/FathomFive/FathomFive.xcodeproj/project.pbxproj b/plugins/MacSignedAU/FathomFive/FathomFive.xcodeproj/project.pbxproj index 28c0a1dac..a9a8eaa8c 100755 --- a/plugins/MacSignedAU/FathomFive/FathomFive.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/FathomFive/FathomFive.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = FathomFive.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = FathomFive.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/FathomFive/FathomFive.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/FathomFive/FathomFive.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 9586e7e1c..b5bb752b1 100644 Binary files a/plugins/MacSignedAU/FathomFive/FathomFive.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/FathomFive/FathomFive.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Floor/Floor.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Floor/Floor.xcodeproj/project.pbxproj index 83a9f586a..f09aac021 100755 --- a/plugins/MacSignedAU/Floor/Floor.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Floor/Floor.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Floor.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Floor.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Floor/Floor.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Floor/Floor.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 0cc7d95fc..1369435c7 100644 Binary files a/plugins/MacSignedAU/Floor/Floor.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Floor/Floor.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Focus/Focus.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Focus/Focus.xcodeproj/project.pbxproj index 3d16e2a17..e1de07b8e 100755 --- a/plugins/MacSignedAU/Focus/Focus.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Focus/Focus.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Focus.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Focus.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Focus/Focus.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Focus/Focus.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index aa1448ffd..6cc7dec66 100644 Binary files a/plugins/MacSignedAU/Focus/Focus.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Focus/Focus.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Fracture/Fracture.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Fracture/Fracture.xcodeproj/project.pbxproj index 0307d5e17..c4e8443c5 100755 --- a/plugins/MacSignedAU/Fracture/Fracture.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Fracture/Fracture.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Fracture.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Fracture.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Fracture/Fracture.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Fracture/Fracture.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 789a717d6..63a3c5fcd 100644 Binary files a/plugins/MacSignedAU/Fracture/Fracture.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Fracture/Fracture.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/FromTape/FromTape.xcodeproj/project.pbxproj b/plugins/MacSignedAU/FromTape/FromTape.xcodeproj/project.pbxproj index 765d5afdc..9d25943be 100755 --- a/plugins/MacSignedAU/FromTape/FromTape.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/FromTape/FromTape.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = FromTape.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = FromTape.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/FromTape/FromTape.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/FromTape/FromTape.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 3b10f56dc..9b94c7ee9 100644 Binary files a/plugins/MacSignedAU/FromTape/FromTape.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/FromTape/FromTape.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Galactic/Galactic.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Galactic/Galactic.xcodeproj/project.pbxproj index 76967f9bb..31c21e78f 100644 --- a/plugins/MacSignedAU/Galactic/Galactic.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Galactic/Galactic.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Galactic.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Galactic.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Galactic/Galactic.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Galactic/Galactic.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 90218d40c..724bddd5b 100644 Binary files a/plugins/MacSignedAU/Galactic/Galactic.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Galactic/Galactic.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Gatelinked/Gatelinked.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Gatelinked/Gatelinked.xcodeproj/project.pbxproj index a2f5b55d9..8493a8277 100755 --- a/plugins/MacSignedAU/Gatelinked/Gatelinked.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Gatelinked/Gatelinked.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Gatelinked.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Gatelinked.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Gatelinked/Gatelinked.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Gatelinked/Gatelinked.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index e285556aa..b02f86db5 100644 Binary files a/plugins/MacSignedAU/Gatelinked/Gatelinked.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Gatelinked/Gatelinked.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Gatelope/Gatelope.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Gatelope/Gatelope.xcodeproj/project.pbxproj index 4ab70daf5..efae834dc 100755 --- a/plugins/MacSignedAU/Gatelope/Gatelope.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Gatelope/Gatelope.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Gatelope.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Gatelope.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Gatelope/Gatelope.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Gatelope/Gatelope.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index c7a9e5163..1c1a4e616 100644 Binary files a/plugins/MacSignedAU/Gatelope/Gatelope.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Gatelope/Gatelope.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/GlitchShifter/GlitchShifter.xcodeproj/project.pbxproj b/plugins/MacSignedAU/GlitchShifter/GlitchShifter.xcodeproj/project.pbxproj index 1f38e1dcf..77d893de6 100755 --- a/plugins/MacSignedAU/GlitchShifter/GlitchShifter.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/GlitchShifter/GlitchShifter.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = GlitchShifter.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = GlitchShifter.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/GlitchShifter/GlitchShifter.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/GlitchShifter/GlitchShifter.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index e218adf5e..ce27f490e 100644 Binary files a/plugins/MacSignedAU/GlitchShifter/GlitchShifter.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/GlitchShifter/GlitchShifter.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Golem/Golem.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Golem/Golem.xcodeproj/project.pbxproj index 1ab7dc4b3..64359bbc5 100755 --- a/plugins/MacSignedAU/Golem/Golem.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Golem/Golem.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Golem.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Golem.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Golem/Golem.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Golem/Golem.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 6daac8fb0..6a9eb67a4 100644 Binary files a/plugins/MacSignedAU/Golem/Golem.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Golem/Golem.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Gringer/Gringer.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Gringer/Gringer.xcodeproj/project.pbxproj index e7553b265..54622cd94 100755 --- a/plugins/MacSignedAU/Gringer/Gringer.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Gringer/Gringer.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Gringer.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Gringer.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Gringer/Gringer.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Gringer/Gringer.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 9bfff73df..da398d457 100644 Binary files a/plugins/MacSignedAU/Gringer/Gringer.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Gringer/Gringer.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/GrooveWear/GrooveWear.xcodeproj/project.pbxproj b/plugins/MacSignedAU/GrooveWear/GrooveWear.xcodeproj/project.pbxproj index 1f9799c3f..a8707a210 100755 --- a/plugins/MacSignedAU/GrooveWear/GrooveWear.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/GrooveWear/GrooveWear.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = GrooveWear.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = GrooveWear.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/GrooveWear/GrooveWear.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/GrooveWear/GrooveWear.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 2190abbd5..0c70b0ff3 100644 Binary files a/plugins/MacSignedAU/GrooveWear/GrooveWear.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/GrooveWear/GrooveWear.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/GuitarConditioner/GuitarConditioner.xcodeproj/project.pbxproj b/plugins/MacSignedAU/GuitarConditioner/GuitarConditioner.xcodeproj/project.pbxproj index 1bd8c5e16..d6c530dd8 100755 --- a/plugins/MacSignedAU/GuitarConditioner/GuitarConditioner.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/GuitarConditioner/GuitarConditioner.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = GuitarConditioner.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = GuitarConditioner.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/GuitarConditioner/GuitarConditioner.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/GuitarConditioner/GuitarConditioner.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 940e08350..446be0bdd 100644 Binary files a/plugins/MacSignedAU/GuitarConditioner/GuitarConditioner.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/GuitarConditioner/GuitarConditioner.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/HardVacuum/HardVacuum.xcodeproj/project.pbxproj b/plugins/MacSignedAU/HardVacuum/HardVacuum.xcodeproj/project.pbxproj index 8870ff03d..825c58136 100755 --- a/plugins/MacSignedAU/HardVacuum/HardVacuum.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/HardVacuum/HardVacuum.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = HardVacuum.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = HardVacuum.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/HardVacuum/HardVacuum.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/HardVacuum/HardVacuum.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index de9c45a58..a5bcb565d 100644 Binary files a/plugins/MacSignedAU/HardVacuum/HardVacuum.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/HardVacuum/HardVacuum.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/HermeTrim/HermeTrim.xcodeproj/project.pbxproj b/plugins/MacSignedAU/HermeTrim/HermeTrim.xcodeproj/project.pbxproj index 7c3c47011..01402c3e4 100755 --- a/plugins/MacSignedAU/HermeTrim/HermeTrim.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/HermeTrim/HermeTrim.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = HermeTrim.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = HermeTrim.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/HermeTrim/HermeTrim.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/HermeTrim/HermeTrim.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index f92cfa1a7..48a65a3b9 100644 Binary files a/plugins/MacSignedAU/HermeTrim/HermeTrim.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/HermeTrim/HermeTrim.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Hermepass/Hermepass.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Hermepass/Hermepass.xcodeproj/project.pbxproj index cd3cc840e..549bc30d7 100755 --- a/plugins/MacSignedAU/Hermepass/Hermepass.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Hermepass/Hermepass.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Hermepass.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Hermepass.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Hermepass/Hermepass.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Hermepass/Hermepass.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index a3ce494d6..6879aeeef 100644 Binary files a/plugins/MacSignedAU/Hermepass/Hermepass.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Hermepass/Hermepass.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/HighGlossDither/HighGlossDither.xcodeproj/project.pbxproj b/plugins/MacSignedAU/HighGlossDither/HighGlossDither.xcodeproj/project.pbxproj index 9c56dca60..951a8644c 100755 --- a/plugins/MacSignedAU/HighGlossDither/HighGlossDither.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/HighGlossDither/HighGlossDither.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = HighGlossDither.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = HighGlossDither.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/HighGlossDither/HighGlossDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/HighGlossDither/HighGlossDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index af28bd87e..bb583b9cf 100644 Binary files a/plugins/MacSignedAU/HighGlossDither/HighGlossDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/HighGlossDither/HighGlossDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/HighImpact/HighImpact.xcodeproj/project.pbxproj b/plugins/MacSignedAU/HighImpact/HighImpact.xcodeproj/project.pbxproj index 8a60d6bf3..60c985028 100755 --- a/plugins/MacSignedAU/HighImpact/HighImpact.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/HighImpact/HighImpact.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = HighImpact.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = HighImpact.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/HighImpact/HighImpact.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/HighImpact/HighImpact.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 52dd8292a..3ad674e48 100644 Binary files a/plugins/MacSignedAU/HighImpact/HighImpact.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/HighImpact/HighImpact.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Highpass/Highpass.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Highpass/Highpass.xcodeproj/project.pbxproj index 0403856f9..8fb519ede 100755 --- a/plugins/MacSignedAU/Highpass/Highpass.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Highpass/Highpass.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Highpass.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Highpass.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Highpass/Highpass.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Highpass/Highpass.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 774e93fad..5428d756c 100644 Binary files a/plugins/MacSignedAU/Highpass/Highpass.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Highpass/Highpass.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Highpass2/Highpass2.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Highpass2/Highpass2.xcodeproj/project.pbxproj index cf0250dc8..d0cc8d159 100755 --- a/plugins/MacSignedAU/Highpass2/Highpass2.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Highpass2/Highpass2.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Highpass2.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Highpass2.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Highpass2/Highpass2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Highpass2/Highpass2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index e2f60c554..861f9abd3 100644 Binary files a/plugins/MacSignedAU/Highpass2/Highpass2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Highpass2/Highpass2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Holt/Holt.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Holt/Holt.xcodeproj/project.pbxproj index 24e8acf7c..ea6d51f15 100755 --- a/plugins/MacSignedAU/Holt/Holt.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Holt/Holt.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Holt.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Holt.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Holt/Holt.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Holt/Holt.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 2a2419b34..ac31c3556 100644 Binary files a/plugins/MacSignedAU/Holt/Holt.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Holt/Holt.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Hombre/Hombre.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Hombre/Hombre.xcodeproj/project.pbxproj index 11f81becf..53d90549e 100755 --- a/plugins/MacSignedAU/Hombre/Hombre.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Hombre/Hombre.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Hombre.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Hombre.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Hombre/Hombre.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Hombre/Hombre.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index e64b52505..c4d7a9a72 100644 Binary files a/plugins/MacSignedAU/Hombre/Hombre.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Hombre/Hombre.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Infinity/Infinity.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Infinity/Infinity.xcodeproj/project.pbxproj index 6a55e94f7..33915edce 100755 --- a/plugins/MacSignedAU/Infinity/Infinity.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Infinity/Infinity.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Infinity.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Infinity.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Infinity/Infinity.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Infinity/Infinity.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 57c88c89c..b9ffe6968 100644 Binary files a/plugins/MacSignedAU/Infinity/Infinity.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Infinity/Infinity.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Infrasonic/Infrasonic.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Infrasonic/Infrasonic.xcodeproj/project.pbxproj index b03691ee8..ea0da08e9 100755 --- a/plugins/MacSignedAU/Infrasonic/Infrasonic.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Infrasonic/Infrasonic.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Infrasonic.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Infrasonic.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Infrasonic/Infrasonic.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Infrasonic/Infrasonic.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index c63cb7906..4718229f9 100644 Binary files a/plugins/MacSignedAU/Infrasonic/Infrasonic.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Infrasonic/Infrasonic.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Interstage/Interstage.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Interstage/Interstage.xcodeproj/project.pbxproj index a9528b0e8..2fd5564bb 100755 --- a/plugins/MacSignedAU/Interstage/Interstage.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Interstage/Interstage.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Interstage.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Interstage.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Interstage/Interstage.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Interstage/Interstage.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 7bfbf0e79..31cc376bc 100644 Binary files a/plugins/MacSignedAU/Interstage/Interstage.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Interstage/Interstage.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/IronOxide5/IronOxide5.xcodeproj/project.pbxproj b/plugins/MacSignedAU/IronOxide5/IronOxide5.xcodeproj/project.pbxproj index d8d0ffdd0..699138d47 100755 --- a/plugins/MacSignedAU/IronOxide5/IronOxide5.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/IronOxide5/IronOxide5.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = IronOxide5.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = IronOxide5.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/IronOxide5/IronOxide5.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/IronOxide5/IronOxide5.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index ef414ddd8..0f51a48c9 100644 Binary files a/plugins/MacSignedAU/IronOxide5/IronOxide5.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/IronOxide5/IronOxide5.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/IronOxideClassic/IronOxideClassic.xcodeproj/project.pbxproj b/plugins/MacSignedAU/IronOxideClassic/IronOxideClassic.xcodeproj/project.pbxproj index 874c233d7..27ed5181b 100755 --- a/plugins/MacSignedAU/IronOxideClassic/IronOxideClassic.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/IronOxideClassic/IronOxideClassic.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = IronOxideClassic.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = IronOxideClassic.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/IronOxideClassic/IronOxideClassic.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/IronOxideClassic/IronOxideClassic.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index ae15f3a2c..6c1148428 100644 Binary files a/plugins/MacSignedAU/IronOxideClassic/IronOxideClassic.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/IronOxideClassic/IronOxideClassic.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/IronOxideClassic2/IronOxideClassic2.xcodeproj/project.pbxproj b/plugins/MacSignedAU/IronOxideClassic2/IronOxideClassic2.xcodeproj/project.pbxproj index d6c610a9e..7158e12a6 100755 --- a/plugins/MacSignedAU/IronOxideClassic2/IronOxideClassic2.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/IronOxideClassic2/IronOxideClassic2.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = IronOxideClassic2.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = IronOxideClassic2.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/IronOxideClassic2/IronOxideClassic2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/IronOxideClassic2/IronOxideClassic2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index b210caaff..d617c895c 100644 Binary files a/plugins/MacSignedAU/IronOxideClassic2/IronOxideClassic2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/IronOxideClassic2/IronOxideClassic2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Isolator/Isolator.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Isolator/Isolator.xcodeproj/project.pbxproj index 214c15582..20c32b967 100755 --- a/plugins/MacSignedAU/Isolator/Isolator.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Isolator/Isolator.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Isolator.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Isolator.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Isolator/Isolator.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Isolator/Isolator.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index eba47e6d5..5487a7b13 100644 Binary files a/plugins/MacSignedAU/Isolator/Isolator.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Isolator/Isolator.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/LRFlipTimer/LRFlipTimer.xcodeproj/project.pbxproj b/plugins/MacSignedAU/LRFlipTimer/LRFlipTimer.xcodeproj/project.pbxproj index a33b710e1..83ac49f2f 100755 --- a/plugins/MacSignedAU/LRFlipTimer/LRFlipTimer.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/LRFlipTimer/LRFlipTimer.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = LRFlipTimer.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = LRFlipTimer.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/LRFlipTimer/LRFlipTimer.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/LRFlipTimer/LRFlipTimer.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index b5ff4c683..c374633e9 100644 Binary files a/plugins/MacSignedAU/LRFlipTimer/LRFlipTimer.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/LRFlipTimer/LRFlipTimer.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/LeftoMono/LeftoMono.xcodeproj/project.pbxproj b/plugins/MacSignedAU/LeftoMono/LeftoMono.xcodeproj/project.pbxproj index e31ba3955..ff0eccfe4 100755 --- a/plugins/MacSignedAU/LeftoMono/LeftoMono.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/LeftoMono/LeftoMono.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = LeftoMono.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = LeftoMono.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/LeftoMono/LeftoMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/LeftoMono/LeftoMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index f539d12c0..cd62640ed 100644 Binary files a/plugins/MacSignedAU/LeftoMono/LeftoMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/LeftoMono/LeftoMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Logical4/Logical4.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Logical4/Logical4.xcodeproj/project.pbxproj index 04ea04851..c63520a3d 100755 --- a/plugins/MacSignedAU/Logical4/Logical4.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Logical4/Logical4.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Logical4.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Logical4.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Logical4/Logical4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Logical4/Logical4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index bbb1b0106..46f4d85d7 100644 Binary files a/plugins/MacSignedAU/Logical4/Logical4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Logical4/Logical4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Loud/Loud.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Loud/Loud.xcodeproj/project.pbxproj index 322359ed8..0c0eb709b 100755 --- a/plugins/MacSignedAU/Loud/Loud.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Loud/Loud.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Loud.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Loud.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Loud/Loud.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Loud/Loud.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 254913c88..b4e425904 100644 Binary files a/plugins/MacSignedAU/Loud/Loud.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Loud/Loud.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Lowpass/Lowpass.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Lowpass/Lowpass.xcodeproj/project.pbxproj index 1120397c1..2b92b083c 100755 --- a/plugins/MacSignedAU/Lowpass/Lowpass.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Lowpass/Lowpass.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Lowpass.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Lowpass.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Lowpass/Lowpass.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Lowpass/Lowpass.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 3545f32ec..21830a2b0 100644 Binary files a/plugins/MacSignedAU/Lowpass/Lowpass.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Lowpass/Lowpass.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Lowpass2/Lowpass2.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Lowpass2/Lowpass2.xcodeproj/project.pbxproj index 932782a89..4962ca57a 100755 --- a/plugins/MacSignedAU/Lowpass2/Lowpass2.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Lowpass2/Lowpass2.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Lowpass2.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Lowpass2.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Lowpass2/Lowpass2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Lowpass2/Lowpass2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 8715940c0..f84003779 100644 Binary files a/plugins/MacSignedAU/Lowpass2/Lowpass2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Lowpass2/Lowpass2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Luxor/Luxor.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Luxor/Luxor.xcodeproj/project.pbxproj index 1b48ed328..84358e4ce 100755 --- a/plugins/MacSignedAU/Luxor/Luxor.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Luxor/Luxor.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Luxor.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Luxor.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Luxor/Luxor.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Luxor/Luxor.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 86994fea7..beac606c0 100644 Binary files a/plugins/MacSignedAU/Luxor/Luxor.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Luxor/Luxor.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/MV/MV.xcodeproj/project.pbxproj b/plugins/MacSignedAU/MV/MV.xcodeproj/project.pbxproj index a7ca8bd62..11aeceb0f 100755 --- a/plugins/MacSignedAU/MV/MV.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/MV/MV.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = MV.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = MV.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/MV/MV.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/MV/MV.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 52fc482f1..f3cf52af3 100644 Binary files a/plugins/MacSignedAU/MV/MV.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/MV/MV.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Mackity/Mackity.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Mackity/Mackity.xcodeproj/project.pbxproj index 9e941b881..d687af545 100644 --- a/plugins/MacSignedAU/Mackity/Mackity.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Mackity/Mackity.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Mackity.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Mackity.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Mackity/Mackity.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Mackity/Mackity.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 16d037610..3da0f300d 100644 Binary files a/plugins/MacSignedAU/Mackity/Mackity.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Mackity/Mackity.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/MatrixVerb/MatrixVerb.xcodeproj/project.pbxproj b/plugins/MacSignedAU/MatrixVerb/MatrixVerb.xcodeproj/project.pbxproj index f3be03c8d..680bf918d 100755 --- a/plugins/MacSignedAU/MatrixVerb/MatrixVerb.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/MatrixVerb/MatrixVerb.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = MatrixVerb.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = MatrixVerb.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/MatrixVerb/MatrixVerb.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/MatrixVerb/MatrixVerb.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 8e61de732..bd90399d2 100644 Binary files a/plugins/MacSignedAU/MatrixVerb/MatrixVerb.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/MatrixVerb/MatrixVerb.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Melt/Melt.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Melt/Melt.xcodeproj/project.pbxproj index ef50b4481..54d1a78af 100755 --- a/plugins/MacSignedAU/Melt/Melt.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Melt/Melt.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Melt.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Melt.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Melt/Melt.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Melt/Melt.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 37b1f6cba..afc3ee907 100644 Binary files a/plugins/MacSignedAU/Melt/Melt.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Melt/Melt.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/MidSide/MidSide.xcodeproj/project.pbxproj b/plugins/MacSignedAU/MidSide/MidSide.xcodeproj/project.pbxproj index c49ce9685..8e53c6372 100755 --- a/plugins/MacSignedAU/MidSide/MidSide.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/MidSide/MidSide.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = MidSide.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = MidSide.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/MidSide/MidSide.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/MidSide/MidSide.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index b42791a66..67020ebd8 100644 Binary files a/plugins/MacSignedAU/MidSide/MidSide.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/MidSide/MidSide.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/MoNoam/MoNoam.xcodeproj/project.pbxproj b/plugins/MacSignedAU/MoNoam/MoNoam.xcodeproj/project.pbxproj index 8fa80e274..4a9bb6fa8 100755 --- a/plugins/MacSignedAU/MoNoam/MoNoam.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/MoNoam/MoNoam.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = MoNoam.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = MoNoam.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/MoNoam/MoNoam.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/MoNoam/MoNoam.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 26bf939f1..531edb4b1 100644 Binary files a/plugins/MacSignedAU/MoNoam/MoNoam.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/MoNoam/MoNoam.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Mojo/Mojo.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Mojo/Mojo.xcodeproj/project.pbxproj index 07b7e5e94..bf588e383 100755 --- a/plugins/MacSignedAU/Mojo/Mojo.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Mojo/Mojo.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Mojo.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Mojo.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Mojo/Mojo.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Mojo/Mojo.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 0b7bf9dc2..04b1b8249 100644 Binary files a/plugins/MacSignedAU/Mojo/Mojo.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Mojo/Mojo.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Monitoring/Monitoring.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Monitoring/Monitoring.xcodeproj/project.pbxproj index 995f00350..9aab51a22 100755 --- a/plugins/MacSignedAU/Monitoring/Monitoring.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Monitoring/Monitoring.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Monitoring.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Monitoring.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Monitoring/Monitoring.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Monitoring/Monitoring.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 529968201..26cf5c100 100644 Binary files a/plugins/MacSignedAU/Monitoring/Monitoring.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Monitoring/Monitoring.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/NCSeventeen/NCSeventeen.xcodeproj/project.pbxproj b/plugins/MacSignedAU/NCSeventeen/NCSeventeen.xcodeproj/project.pbxproj index d8fd49a96..7b57176db 100755 --- a/plugins/MacSignedAU/NCSeventeen/NCSeventeen.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/NCSeventeen/NCSeventeen.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = NCSeventeen.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,6 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; + CODE_SIGN_IDENTITY = "Developer ID Application"; + DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = NCSeventeen.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; GENERATE_PKGINFO_FILE = YES; diff --git a/plugins/MacSignedAU/NCSeventeen/NCSeventeen.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/NCSeventeen/NCSeventeen.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 0297dd7e6..795dbb9fe 100644 Binary files a/plugins/MacSignedAU/NCSeventeen/NCSeventeen.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/NCSeventeen/NCSeventeen.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/NaturalizeDither/NaturalizeDither.xcodeproj/project.pbxproj b/plugins/MacSignedAU/NaturalizeDither/NaturalizeDither.xcodeproj/project.pbxproj index 2bc20095b..af45091e9 100755 --- a/plugins/MacSignedAU/NaturalizeDither/NaturalizeDither.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/NaturalizeDither/NaturalizeDither.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = NaturalizeDither.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = NaturalizeDither.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/NaturalizeDither/NaturalizeDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/NaturalizeDither/NaturalizeDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index f3b431ab4..c68d62f4f 100644 Binary files a/plugins/MacSignedAU/NaturalizeDither/NaturalizeDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/NaturalizeDither/NaturalizeDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Neverland/Neverland.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Neverland/Neverland.xcodeproj/project.pbxproj index a1a8d7f54..c0833d62a 100755 --- a/plugins/MacSignedAU/Neverland/Neverland.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Neverland/Neverland.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Neverland.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Neverland.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Neverland/Neverland.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Neverland/Neverland.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index f5aee2a41..9738ae06c 100644 Binary files a/plugins/MacSignedAU/Neverland/Neverland.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Neverland/Neverland.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Nikola/Nikola.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Nikola/Nikola.xcodeproj/project.pbxproj index 4e02b2fc4..718b868d7 100755 --- a/plugins/MacSignedAU/Nikola/Nikola.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Nikola/Nikola.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Nikola.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Nikola.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Nikola/Nikola.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Nikola/Nikola.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 2fd617e1f..8fc04e868 100644 Binary files a/plugins/MacSignedAU/Nikola/Nikola.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Nikola/Nikola.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/NodeDither/NodeDither.xcodeproj/project.pbxproj b/plugins/MacSignedAU/NodeDither/NodeDither.xcodeproj/project.pbxproj index c27db9ee2..684ff64ab 100755 --- a/plugins/MacSignedAU/NodeDither/NodeDither.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/NodeDither/NodeDither.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = NodeDither.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = NodeDither.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/NodeDither/NodeDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/NodeDither/NodeDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 82f98f0ac..9b08a6178 100644 Binary files a/plugins/MacSignedAU/NodeDither/NodeDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/NodeDither/NodeDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Noise/Noise.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Noise/Noise.xcodeproj/project.pbxproj index d4b922c19..4af81d21c 100755 --- a/plugins/MacSignedAU/Noise/Noise.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Noise/Noise.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Noise.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Noise.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Noise/Noise.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Noise/Noise.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index fa771ebed..15492b9cb 100644 Binary files a/plugins/MacSignedAU/Noise/Noise.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Noise/Noise.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/NonlinearSpace/NonlinearSpace.xcodeproj/project.pbxproj b/plugins/MacSignedAU/NonlinearSpace/NonlinearSpace.xcodeproj/project.pbxproj index 26e6aa42e..38694f883 100755 --- a/plugins/MacSignedAU/NonlinearSpace/NonlinearSpace.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/NonlinearSpace/NonlinearSpace.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = NonlinearSpace.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = NonlinearSpace.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/NonlinearSpace/NonlinearSpace.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/NonlinearSpace/NonlinearSpace.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 73e18bc89..b52ec1cb5 100644 Binary files a/plugins/MacSignedAU/NonlinearSpace/NonlinearSpace.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/NonlinearSpace/NonlinearSpace.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/NotJustAnotherCD/NotJustAnotherCD.xcodeproj/project.pbxproj b/plugins/MacSignedAU/NotJustAnotherCD/NotJustAnotherCD.xcodeproj/project.pbxproj index cd5305d07..6cde5d4d7 100755 --- a/plugins/MacSignedAU/NotJustAnotherCD/NotJustAnotherCD.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/NotJustAnotherCD/NotJustAnotherCD.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = NotJustAnotherCD.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = NotJustAnotherCD.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/NotJustAnotherCD/NotJustAnotherCD.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/NotJustAnotherCD/NotJustAnotherCD.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 08b63b75e..5a5b5fcda 100644 Binary files a/plugins/MacSignedAU/NotJustAnotherCD/NotJustAnotherCD.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/NotJustAnotherCD/NotJustAnotherCD.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/NotJustAnotherDither/NotJustAnotherDither.xcodeproj/project.pbxproj b/plugins/MacSignedAU/NotJustAnotherDither/NotJustAnotherDither.xcodeproj/project.pbxproj index 04956fbdd..d45685d19 100755 --- a/plugins/MacSignedAU/NotJustAnotherDither/NotJustAnotherDither.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/NotJustAnotherDither/NotJustAnotherDither.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = NotJustAnotherDither.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = NotJustAnotherDither.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/NotJustAnotherDither/NotJustAnotherDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/NotJustAnotherDither/NotJustAnotherDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index a7b2587ab..d6977ecfd 100644 Binary files a/plugins/MacSignedAU/NotJustAnotherDither/NotJustAnotherDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/NotJustAnotherDither/NotJustAnotherDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/OneCornerClip/OneCornerClip.xcodeproj/project.pbxproj b/plugins/MacSignedAU/OneCornerClip/OneCornerClip.xcodeproj/project.pbxproj index dce31fd41..a123fbf6c 100755 --- a/plugins/MacSignedAU/OneCornerClip/OneCornerClip.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/OneCornerClip/OneCornerClip.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = OneCornerClip.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = OneCornerClip.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/OneCornerClip/OneCornerClip.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/OneCornerClip/OneCornerClip.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 0f3d1a740..98825ffb5 100644 Binary files a/plugins/MacSignedAU/OneCornerClip/OneCornerClip.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/OneCornerClip/OneCornerClip.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PDBuss/PDBuss.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PDBuss/PDBuss.xcodeproj/project.pbxproj index bebd02ce0..98f1299f7 100755 --- a/plugins/MacSignedAU/PDBuss/PDBuss.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PDBuss/PDBuss.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PDBuss.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PDBuss.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PDBuss/PDBuss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PDBuss/PDBuss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 67397c5e9..44d9bf99a 100644 Binary files a/plugins/MacSignedAU/PDBuss/PDBuss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PDBuss/PDBuss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PDChannel/PDChannel.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PDChannel/PDChannel.xcodeproj/project.pbxproj index 88c94b07c..fdf08fb6b 100755 --- a/plugins/MacSignedAU/PDChannel/PDChannel.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PDChannel/PDChannel.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PDChannel.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PDChannel.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PDChannel/PDChannel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PDChannel/PDChannel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 785e32c2c..1d8abdd2d 100644 Binary files a/plugins/MacSignedAU/PDChannel/PDChannel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PDChannel/PDChannel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Pafnuty/Pafnuty.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Pafnuty/Pafnuty.xcodeproj/project.pbxproj index 57cfff081..a6881bc9a 100755 --- a/plugins/MacSignedAU/Pafnuty/Pafnuty.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Pafnuty/Pafnuty.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Pafnuty.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Pafnuty.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Pafnuty/Pafnuty.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Pafnuty/Pafnuty.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index de3ce6828..d4f209055 100644 Binary files a/plugins/MacSignedAU/Pafnuty/Pafnuty.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Pafnuty/Pafnuty.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PaulDither/PaulDither.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PaulDither/PaulDither.xcodeproj/project.pbxproj index c068f5cee..8bea795af 100755 --- a/plugins/MacSignedAU/PaulDither/PaulDither.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PaulDither/PaulDither.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PaulDither.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PaulDither.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PaulDither/PaulDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PaulDither/PaulDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index c306942d5..19820be32 100644 Binary files a/plugins/MacSignedAU/PaulDither/PaulDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PaulDither/PaulDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PeaksOnly/PeaksOnly.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PeaksOnly/PeaksOnly.xcodeproj/project.pbxproj index 628075660..dbe910a26 100755 --- a/plugins/MacSignedAU/PeaksOnly/PeaksOnly.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PeaksOnly/PeaksOnly.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PeaksOnly.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PeaksOnly.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PeaksOnly/PeaksOnly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PeaksOnly/PeaksOnly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 81c9cb5f3..f160a6f5f 100644 Binary files a/plugins/MacSignedAU/PeaksOnly/PeaksOnly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PeaksOnly/PeaksOnly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PhaseNudge/PhaseNudge.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PhaseNudge/PhaseNudge.xcodeproj/project.pbxproj index ba4f80647..a52dc5ba1 100755 --- a/plugins/MacSignedAU/PhaseNudge/PhaseNudge.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PhaseNudge/PhaseNudge.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PhaseNudge.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PhaseNudge.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PhaseNudge/PhaseNudge.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PhaseNudge/PhaseNudge.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index ee06b355f..4f835feb6 100644 Binary files a/plugins/MacSignedAU/PhaseNudge/PhaseNudge.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PhaseNudge/PhaseNudge.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PocketVerbs/PocketVerbs.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PocketVerbs/PocketVerbs.xcodeproj/project.pbxproj index b8f265008..c8a5fc3b8 100755 --- a/plugins/MacSignedAU/PocketVerbs/PocketVerbs.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PocketVerbs/PocketVerbs.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PocketVerbs.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PocketVerbs.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PocketVerbs/PocketVerbs.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PocketVerbs/PocketVerbs.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index acaea6a56..dcebb6dc2 100644 Binary files a/plugins/MacSignedAU/PocketVerbs/PocketVerbs.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PocketVerbs/PocketVerbs.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Podcast/Podcast.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Podcast/Podcast.xcodeproj/project.pbxproj index 367e3c69f..1f39a13a9 100755 --- a/plugins/MacSignedAU/Podcast/Podcast.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Podcast/Podcast.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Podcast.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Podcast.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Podcast/Podcast.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Podcast/Podcast.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index b1a089a9f..14c25c51e 100644 Binary files a/plugins/MacSignedAU/Podcast/Podcast.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Podcast/Podcast.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PodcastDeluxe/PodcastDeluxe.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PodcastDeluxe/PodcastDeluxe.xcodeproj/project.pbxproj index e23c458dc..1550df837 100755 --- a/plugins/MacSignedAU/PodcastDeluxe/PodcastDeluxe.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PodcastDeluxe/PodcastDeluxe.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PodcastDeluxe.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PodcastDeluxe.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PodcastDeluxe/PodcastDeluxe.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PodcastDeluxe/PodcastDeluxe.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index b5c057265..b7589b77e 100644 Binary files a/plugins/MacSignedAU/PodcastDeluxe/PodcastDeluxe.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PodcastDeluxe/PodcastDeluxe.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Point/Poynt.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Point/Poynt.xcodeproj/project.pbxproj index 7543aee06..e098350a4 100755 --- a/plugins/MacSignedAU/Point/Poynt.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Point/Poynt.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Poynt.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Poynt.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Point/Poynt.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Point/Poynt.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 828147434..3eb79a0f7 100644 Binary files a/plugins/MacSignedAU/Point/Poynt.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Point/Poynt.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Pop/Pop.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Pop/Pop.xcodeproj/project.pbxproj index 967d3e9ce..b5a21987b 100755 --- a/plugins/MacSignedAU/Pop/Pop.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Pop/Pop.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Pop.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Pop.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Pop/Pop.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Pop/Pop.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 58cc8257e..6e33b52aa 100644 Binary files a/plugins/MacSignedAU/Pop/Pop.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Pop/Pop.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PowerSag/PowerSag.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PowerSag/PowerSag.xcodeproj/project.pbxproj index ae3a4df46..f8632f382 100755 --- a/plugins/MacSignedAU/PowerSag/PowerSag.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PowerSag/PowerSag.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PowerSag.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PowerSag.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PowerSag/PowerSag.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PowerSag/PowerSag.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index afbab5608..1a8b9bcba 100644 Binary files a/plugins/MacSignedAU/PowerSag/PowerSag.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PowerSag/PowerSag.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PowerSag2/PowerSag2.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PowerSag2/PowerSag2.xcodeproj/project.pbxproj index 70a959fe7..10d805d4c 100755 --- a/plugins/MacSignedAU/PowerSag2/PowerSag2.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PowerSag2/PowerSag2.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PowerSag2.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PowerSag2.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PowerSag2/PowerSag2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PowerSag2/PowerSag2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 6ae7ad619..c1680e99a 100644 Binary files a/plugins/MacSignedAU/PowerSag2/PowerSag2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PowerSag2/PowerSag2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Precious/Precious.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Precious/Precious.xcodeproj/project.pbxproj index 31048760c..1bcdac744 100755 --- a/plugins/MacSignedAU/Precious/Precious.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Precious/Precious.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Precious.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Precious.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Precious/Precious.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Precious/Precious.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index efc4f50c4..ba8c6e493 100644 Binary files a/plugins/MacSignedAU/Precious/Precious.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Precious/Precious.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Preponderant/Preponderant.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Preponderant/Preponderant.xcodeproj/project.pbxproj index f0e1d3ce2..ac39e4d1a 100755 --- a/plugins/MacSignedAU/Preponderant/Preponderant.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Preponderant/Preponderant.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Preponderant.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Preponderant.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Preponderant/Preponderant.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Preponderant/Preponderant.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index c28fa43b4..5f38b36d8 100644 Binary files a/plugins/MacSignedAU/Preponderant/Preponderant.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Preponderant/Preponderant.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Pressure4/Pressure4.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Pressure4/Pressure4.xcodeproj/project.pbxproj index 26544d801..5e8eb0b95 100755 --- a/plugins/MacSignedAU/Pressure4/Pressure4.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Pressure4/Pressure4.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Pressure4.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Pressure4.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Pressure4/Pressure4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Pressure4/Pressure4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 983f0d4bd..54a76df3c 100644 Binary files a/plugins/MacSignedAU/Pressure4/Pressure4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Pressure4/Pressure4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Pressure4Mono/Pressure4Mono.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Pressure4Mono/Pressure4Mono.xcodeproj/project.pbxproj index dac96dcf9..286d9b516 100755 --- a/plugins/MacSignedAU/Pressure4Mono/Pressure4Mono.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Pressure4Mono/Pressure4Mono.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Pressure4Mono.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Pressure4Mono.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Pressure4Mono/Pressure4Mono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Pressure4Mono/Pressure4Mono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 053ad43e7..6274d6ca6 100644 Binary files a/plugins/MacSignedAU/Pressure4Mono/Pressure4Mono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Pressure4Mono/Pressure4Mono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PurestAir/PurestAir.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PurestAir/PurestAir.xcodeproj/project.pbxproj index b0ccc69b0..3e1122a40 100755 --- a/plugins/MacSignedAU/PurestAir/PurestAir.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PurestAir/PurestAir.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestAir.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestAir.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PurestAir/PurestAir.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PurestAir/PurestAir.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index e987f1734..f818d4716 100644 Binary files a/plugins/MacSignedAU/PurestAir/PurestAir.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PurestAir/PurestAir.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PurestConsole2Buss/PurestConsole2Buss.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PurestConsole2Buss/PurestConsole2Buss.xcodeproj/project.pbxproj index 719d4d1e2..58bf7c31c 100755 --- a/plugins/MacSignedAU/PurestConsole2Buss/PurestConsole2Buss.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PurestConsole2Buss/PurestConsole2Buss.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestConsole2Buss.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestConsole2Buss.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PurestConsole2Buss/PurestConsole2Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PurestConsole2Buss/PurestConsole2Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index b06561e57..c8f9c0358 100644 Binary files a/plugins/MacSignedAU/PurestConsole2Buss/PurestConsole2Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PurestConsole2Buss/PurestConsole2Buss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/project.pbxproj index e317685a5..cdaaff13c 100755 --- a/plugins/MacSignedAU/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestConsole2Channel.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestConsole2Channel.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index f22d16e3b..957b48460 100644 Binary files a/plugins/MacSignedAU/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PurestConsoleBuss/PurestConsoleBuss.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PurestConsoleBuss/PurestConsoleBuss.xcodeproj/project.pbxproj index ec59cc312..837f61e41 100755 --- a/plugins/MacSignedAU/PurestConsoleBuss/PurestConsoleBuss.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PurestConsoleBuss/PurestConsoleBuss.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestConsoleBuss.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestConsoleBuss.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PurestConsoleBuss/PurestConsoleBuss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PurestConsoleBuss/PurestConsoleBuss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 479b0123b..a87969ea9 100644 Binary files a/plugins/MacSignedAU/PurestConsoleBuss/PurestConsoleBuss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PurestConsoleBuss/PurestConsoleBuss.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PurestConsoleChannel/PurestConsoleChannel.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PurestConsoleChannel/PurestConsoleChannel.xcodeproj/project.pbxproj index b4abc797d..dbc888cdc 100755 --- a/plugins/MacSignedAU/PurestConsoleChannel/PurestConsoleChannel.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PurestConsoleChannel/PurestConsoleChannel.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestConsoleChannel.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestConsoleChannel.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PurestConsoleChannel/PurestConsoleChannel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PurestConsoleChannel/PurestConsoleChannel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index c0b21c62c..3f933df9f 100644 Binary files a/plugins/MacSignedAU/PurestConsoleChannel/PurestConsoleChannel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PurestConsoleChannel/PurestConsoleChannel.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PurestDrive/PurestDrive.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PurestDrive/PurestDrive.xcodeproj/project.pbxproj index b509f07f0..953d31025 100755 --- a/plugins/MacSignedAU/PurestDrive/PurestDrive.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PurestDrive/PurestDrive.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestDrive.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestDrive.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PurestDrive/PurestDrive.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PurestDrive/PurestDrive.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 45b0c9d24..2fb55e624 100644 Binary files a/plugins/MacSignedAU/PurestDrive/PurestDrive.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PurestDrive/PurestDrive.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PurestEcho/PurestEcho.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PurestEcho/PurestEcho.xcodeproj/project.pbxproj index 4fb7ab194..d4ad65b16 100755 --- a/plugins/MacSignedAU/PurestEcho/PurestEcho.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PurestEcho/PurestEcho.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestEcho.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestEcho.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PurestEcho/PurestEcho.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PurestEcho/PurestEcho.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index ea29d8a33..8877900f0 100644 Binary files a/plugins/MacSignedAU/PurestEcho/PurestEcho.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PurestEcho/PurestEcho.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PurestFade/PurestFade.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PurestFade/PurestFade.xcodeproj/project.pbxproj index 764be82c3..c840a3545 100755 --- a/plugins/MacSignedAU/PurestFade/PurestFade.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PurestFade/PurestFade.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestFade.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestFade.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PurestFade/PurestFade.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PurestFade/PurestFade.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 07ea7b88a..bf97c84be 100644 Binary files a/plugins/MacSignedAU/PurestFade/PurestFade.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PurestFade/PurestFade.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PurestGain/PurestGain.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PurestGain/PurestGain.xcodeproj/project.pbxproj index 586d189fd..baced3a04 100755 --- a/plugins/MacSignedAU/PurestGain/PurestGain.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PurestGain/PurestGain.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestGain.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestGain.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PurestGain/PurestGain.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PurestGain/PurestGain.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 69ca455e2..f7d7a1d7e 100644 Binary files a/plugins/MacSignedAU/PurestGain/PurestGain.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PurestGain/PurestGain.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PurestSquish/PurestSquish.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PurestSquish/PurestSquish.xcodeproj/project.pbxproj index 58907f7c7..10c9decf7 100755 --- a/plugins/MacSignedAU/PurestSquish/PurestSquish.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PurestSquish/PurestSquish.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestSquish.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestSquish.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PurestSquish/PurestSquish.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PurestSquish/PurestSquish.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 367696f4e..15d98016a 100644 Binary files a/plugins/MacSignedAU/PurestSquish/PurestSquish.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PurestSquish/PurestSquish.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PurestWarm/PurestWarm.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PurestWarm/PurestWarm.xcodeproj/project.pbxproj index 11098c6a0..6ac5366b8 100755 --- a/plugins/MacSignedAU/PurestWarm/PurestWarm.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PurestWarm/PurestWarm.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestWarm.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PurestWarm.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PurestWarm/PurestWarm.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PurestWarm/PurestWarm.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 1a98a1ace..da45e5661 100644 Binary files a/plugins/MacSignedAU/PurestWarm/PurestWarm.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PurestWarm/PurestWarm.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Pyewacket/Pyewacket.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Pyewacket/Pyewacket.xcodeproj/project.pbxproj index 3cc465526..ab282703b 100755 --- a/plugins/MacSignedAU/Pyewacket/Pyewacket.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Pyewacket/Pyewacket.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Pyewacket.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Pyewacket.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Pyewacket/Pyewacket.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Pyewacket/Pyewacket.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 64dd23f1f..9b5034d63 100644 Binary files a/plugins/MacSignedAU/Pyewacket/Pyewacket.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Pyewacket/Pyewacket.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/PyewacketMono/PyewacketMono.xcodeproj/project.pbxproj b/plugins/MacSignedAU/PyewacketMono/PyewacketMono.xcodeproj/project.pbxproj index c0ca261e6..2d05601e6 100755 --- a/plugins/MacSignedAU/PyewacketMono/PyewacketMono.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/PyewacketMono/PyewacketMono.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PyewacketMono.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = PyewacketMono.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/PyewacketMono/PyewacketMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/PyewacketMono/PyewacketMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 3fa78e938..9db533abe 100644 Binary files a/plugins/MacSignedAU/PyewacketMono/PyewacketMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/PyewacketMono/PyewacketMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/RawGlitters/RawGlitters.xcodeproj/project.pbxproj b/plugins/MacSignedAU/RawGlitters/RawGlitters.xcodeproj/project.pbxproj index 1bae0111e..7bd527a82 100755 --- a/plugins/MacSignedAU/RawGlitters/RawGlitters.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/RawGlitters/RawGlitters.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = RawGlitters.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = RawGlitters.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/RawGlitters/RawGlitters.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/RawGlitters/RawGlitters.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 783c14fce..4d460f511 100644 Binary files a/plugins/MacSignedAU/RawGlitters/RawGlitters.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/RawGlitters/RawGlitters.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/RawTimbers/RawTimbers.xcodeproj/project.pbxproj b/plugins/MacSignedAU/RawTimbers/RawTimbers.xcodeproj/project.pbxproj index a3f7d26d8..347c37102 100755 --- a/plugins/MacSignedAU/RawTimbers/RawTimbers.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/RawTimbers/RawTimbers.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = RawTimbers.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = RawTimbers.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/RawTimbers/RawTimbers.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/RawTimbers/RawTimbers.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 9210e0ec3..4aa9521d8 100644 Binary files a/plugins/MacSignedAU/RawTimbers/RawTimbers.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/RawTimbers/RawTimbers.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Recurve/Recurve.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Recurve/Recurve.xcodeproj/project.pbxproj index e0f0384c6..c6963db06 100755 --- a/plugins/MacSignedAU/Recurve/Recurve.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Recurve/Recurve.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Recurve.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Recurve.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Recurve/Recurve.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Recurve/Recurve.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 1c5e54784..e13d4025c 100644 Binary files a/plugins/MacSignedAU/Recurve/Recurve.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Recurve/Recurve.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Remap/Remap.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Remap/Remap.xcodeproj/project.pbxproj index a08ae0930..abb0f96b3 100755 --- a/plugins/MacSignedAU/Remap/Remap.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Remap/Remap.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Remap.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Remap.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Remap/Remap.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Remap/Remap.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 25a9b1712..c868bf223 100644 Binary files a/plugins/MacSignedAU/Remap/Remap.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Remap/Remap.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/ResEQ/ResEQ.xcodeproj/project.pbxproj b/plugins/MacSignedAU/ResEQ/ResEQ.xcodeproj/project.pbxproj index c9c987b73..523c1ffc0 100755 --- a/plugins/MacSignedAU/ResEQ/ResEQ.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/ResEQ/ResEQ.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ResEQ.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ResEQ.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/ResEQ/ResEQ.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/ResEQ/ResEQ.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 7e60c9ba4..67457493f 100644 Binary files a/plugins/MacSignedAU/ResEQ/ResEQ.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/ResEQ/ResEQ.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Reverb/Reverb.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Reverb/Reverb.xcodeproj/project.pbxproj index 6c5d538e1..561731e5d 100755 --- a/plugins/MacSignedAU/Reverb/Reverb.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Reverb/Reverb.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Reverb.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Reverb.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Reverb/Reverb.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Reverb/Reverb.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index b5d9d39b0..49a2da66d 100644 Binary files a/plugins/MacSignedAU/Reverb/Reverb.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Reverb/Reverb.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Righteous4/Righteous4.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Righteous4/Righteous4.xcodeproj/project.pbxproj index 6183001b9..902fd9f6c 100755 --- a/plugins/MacSignedAU/Righteous4/Righteous4.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Righteous4/Righteous4.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Righteous4.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Righteous4.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Righteous4/Righteous4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Righteous4/Righteous4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 0db871ef5..4d1309d37 100644 Binary files a/plugins/MacSignedAU/Righteous4/Righteous4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Righteous4/Righteous4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/RightoMono/RightoMono.xcodeproj/project.pbxproj b/plugins/MacSignedAU/RightoMono/RightoMono.xcodeproj/project.pbxproj index 1db3ebc1f..a0f375f11 100755 --- a/plugins/MacSignedAU/RightoMono/RightoMono.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/RightoMono/RightoMono.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = RightoMono.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = RightoMono.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/RightoMono/RightoMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/RightoMono/RightoMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 818e6e4ed..df425f86e 100644 Binary files a/plugins/MacSignedAU/RightoMono/RightoMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/RightoMono/RightoMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/SideDull/SideDull.xcodeproj/project.pbxproj b/plugins/MacSignedAU/SideDull/SideDull.xcodeproj/project.pbxproj index 6f5c23e04..080889545 100755 --- a/plugins/MacSignedAU/SideDull/SideDull.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/SideDull/SideDull.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SideDull.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SideDull.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/SideDull/SideDull.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/SideDull/SideDull.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 9b8e211e6..60527485a 100644 Binary files a/plugins/MacSignedAU/SideDull/SideDull.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/SideDull/SideDull.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Sidepass/Sidepass.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Sidepass/Sidepass.xcodeproj/project.pbxproj index e4e858ba9..e50ebf63a 100755 --- a/plugins/MacSignedAU/Sidepass/Sidepass.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Sidepass/Sidepass.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Sidepass.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Sidepass.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Sidepass/Sidepass.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Sidepass/Sidepass.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 6feecd982..0eccf4b32 100644 Binary files a/plugins/MacSignedAU/Sidepass/Sidepass.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Sidepass/Sidepass.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/SingleEndedTriode/SingleEndedTriode.xcodeproj/project.pbxproj b/plugins/MacSignedAU/SingleEndedTriode/SingleEndedTriode.xcodeproj/project.pbxproj index e1fa9ba95..fa6a9c706 100755 --- a/plugins/MacSignedAU/SingleEndedTriode/SingleEndedTriode.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/SingleEndedTriode/SingleEndedTriode.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SingleEndedTriode.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SingleEndedTriode.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/SingleEndedTriode/SingleEndedTriode.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/SingleEndedTriode/SingleEndedTriode.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index c421420c4..2c9040b21 100644 Binary files a/plugins/MacSignedAU/SingleEndedTriode/SingleEndedTriode.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/SingleEndedTriode/SingleEndedTriode.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Slew/Slew.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Slew/Slew.xcodeproj/project.pbxproj index 9e2775c66..e8a326348 100755 --- a/plugins/MacSignedAU/Slew/Slew.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Slew/Slew.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Slew.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Slew.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Slew/Slew.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Slew/Slew.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 551a5a30e..71ff5576e 100644 Binary files a/plugins/MacSignedAU/Slew/Slew.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Slew/Slew.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Slew2/Slew2.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Slew2/Slew2.xcodeproj/project.pbxproj index 0fd68767a..6e56bbce6 100755 --- a/plugins/MacSignedAU/Slew2/Slew2.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Slew2/Slew2.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Slew2.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Slew2.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Slew2/Slew2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Slew2/Slew2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index abb7f1879..8ba1980ad 100644 Binary files a/plugins/MacSignedAU/Slew2/Slew2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Slew2/Slew2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Slew3/Slew3.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Slew3/Slew3.xcodeproj/project.pbxproj index ef9bc4656..365f45127 100755 --- a/plugins/MacSignedAU/Slew3/Slew3.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Slew3/Slew3.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Slew3.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Slew3.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Slew3/Slew3.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Slew3/Slew3.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index e77d962fe..338fa20d1 100644 Binary files a/plugins/MacSignedAU/Slew3/Slew3.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Slew3/Slew3.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/SlewOnly/SlewOnly.xcodeproj/project.pbxproj b/plugins/MacSignedAU/SlewOnly/SlewOnly.xcodeproj/project.pbxproj index 9a54031b0..5d7791679 100755 --- a/plugins/MacSignedAU/SlewOnly/SlewOnly.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/SlewOnly/SlewOnly.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SlewOnly.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SlewOnly.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/SlewOnly/SlewOnly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/SlewOnly/SlewOnly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index b24c7495b..513d15341 100644 Binary files a/plugins/MacSignedAU/SlewOnly/SlewOnly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/SlewOnly/SlewOnly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Smooth/Smooth.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Smooth/Smooth.xcodeproj/project.pbxproj index dc1d77c91..bcd36fd52 100755 --- a/plugins/MacSignedAU/Smooth/Smooth.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Smooth/Smooth.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Smooth.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Smooth.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Smooth/Smooth.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Smooth/Smooth.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 72bf15d68..3f7217656 100644 Binary files a/plugins/MacSignedAU/Smooth/Smooth.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Smooth/Smooth.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/SoftGate/SoftGate.xcodeproj/project.pbxproj b/plugins/MacSignedAU/SoftGate/SoftGate.xcodeproj/project.pbxproj index 5337a222f..f56c1f819 100755 --- a/plugins/MacSignedAU/SoftGate/SoftGate.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/SoftGate/SoftGate.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SoftGate.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SoftGate.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/SoftGate/SoftGate.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/SoftGate/SoftGate.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index dc95f7f9b..a369aa64b 100644 Binary files a/plugins/MacSignedAU/SoftGate/SoftGate.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/SoftGate/SoftGate.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/SoftGateMono/SoftGateMono.xcodeproj/project.pbxproj b/plugins/MacSignedAU/SoftGateMono/SoftGateMono.xcodeproj/project.pbxproj index a486a7848..1dd940bd3 100755 --- a/plugins/MacSignedAU/SoftGateMono/SoftGateMono.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/SoftGateMono/SoftGateMono.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SoftGateMono.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SoftGateMono.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/SoftGateMono/SoftGateMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/SoftGateMono/SoftGateMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 86d86396f..178120569 100644 Binary files a/plugins/MacSignedAU/SoftGateMono/SoftGateMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/SoftGateMono/SoftGateMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/SpatializeDither/SpatializeDither.xcodeproj/project.pbxproj b/plugins/MacSignedAU/SpatializeDither/SpatializeDither.xcodeproj/project.pbxproj index 373c9977e..f6af94d09 100755 --- a/plugins/MacSignedAU/SpatializeDither/SpatializeDither.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/SpatializeDither/SpatializeDither.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SpatializeDither.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SpatializeDither.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/SpatializeDither/SpatializeDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/SpatializeDither/SpatializeDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index f3af52992..d49628e26 100644 Binary files a/plugins/MacSignedAU/SpatializeDither/SpatializeDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/SpatializeDither/SpatializeDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Spiral/Spiral.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Spiral/Spiral.xcodeproj/project.pbxproj index 964577a08..e34ff7d90 100755 --- a/plugins/MacSignedAU/Spiral/Spiral.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Spiral/Spiral.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Spiral.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Spiral.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Spiral/Spiral.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Spiral/Spiral.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index d9f42750f..748af1f73 100644 Binary files a/plugins/MacSignedAU/Spiral/Spiral.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Spiral/Spiral.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Spiral2/Spiral2.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Spiral2/Spiral2.xcodeproj/project.pbxproj index d6ac5f52e..b0ca9fd32 100755 --- a/plugins/MacSignedAU/Spiral2/Spiral2.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Spiral2/Spiral2.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Spiral2.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Spiral2.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Spiral2/Spiral2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Spiral2/Spiral2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index b4e4a1eb5..9e9b1055f 100644 Binary files a/plugins/MacSignedAU/Spiral2/Spiral2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Spiral2/Spiral2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Srsly/Srsly.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Srsly/Srsly.xcodeproj/project.pbxproj index 971b9ac61..d5e089344 100755 --- a/plugins/MacSignedAU/Srsly/Srsly.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Srsly/Srsly.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Srsly.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Srsly.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Srsly/Srsly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Srsly/Srsly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index e8c6a2784..b76aa5f8d 100644 Binary files a/plugins/MacSignedAU/Srsly/Srsly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Srsly/Srsly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Srsly2/Srsly2.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Srsly2/Srsly2.xcodeproj/project.pbxproj index e0a4f966e..21c89e8f0 100755 --- a/plugins/MacSignedAU/Srsly2/Srsly2.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Srsly2/Srsly2.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Srsly2.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Srsly2.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Srsly2/Srsly2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Srsly2/Srsly2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 10f33ba5d..02eefe2bc 100644 Binary files a/plugins/MacSignedAU/Srsly2/Srsly2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Srsly2/Srsly2.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/StarChild/StarChild.xcodeproj/project.pbxproj b/plugins/MacSignedAU/StarChild/StarChild.xcodeproj/project.pbxproj index 74926a612..88d7ad670 100755 --- a/plugins/MacSignedAU/StarChild/StarChild.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/StarChild/StarChild.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = StarChild.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = StarChild.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/StarChild/StarChild.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/StarChild/StarChild.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index bdea9fa64..263e21fc2 100644 Binary files a/plugins/MacSignedAU/StarChild/StarChild.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/StarChild/StarChild.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/StereoFX/StereoFX.xcodeproj/project.pbxproj b/plugins/MacSignedAU/StereoFX/StereoFX.xcodeproj/project.pbxproj index f060febc8..d5e295581 100755 --- a/plugins/MacSignedAU/StereoFX/StereoFX.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/StereoFX/StereoFX.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = StereoFX.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = StereoFX.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/StereoFX/StereoFX.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/StereoFX/StereoFX.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 191aec5c2..3b95b549e 100644 Binary files a/plugins/MacSignedAU/StereoFX/StereoFX.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/StereoFX/StereoFX.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/StudioTan/StudioTan.xcodeproj/project.pbxproj b/plugins/MacSignedAU/StudioTan/StudioTan.xcodeproj/project.pbxproj index 5b93d8a7b..917bf5895 100755 --- a/plugins/MacSignedAU/StudioTan/StudioTan.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/StudioTan/StudioTan.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = StudioTan.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = StudioTan.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/StudioTan/StudioTan.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/StudioTan/StudioTan.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index de0dc60bd..8231a9275 100644 Binary files a/plugins/MacSignedAU/StudioTan/StudioTan.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/StudioTan/StudioTan.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/SubsOnly/SubsOnly.xcodeproj/project.pbxproj b/plugins/MacSignedAU/SubsOnly/SubsOnly.xcodeproj/project.pbxproj index ffd255208..4e692d6b2 100755 --- a/plugins/MacSignedAU/SubsOnly/SubsOnly.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/SubsOnly/SubsOnly.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SubsOnly.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SubsOnly.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/SubsOnly/SubsOnly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/SubsOnly/SubsOnly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index e5666e102..ed6e7170b 100644 Binary files a/plugins/MacSignedAU/SubsOnly/SubsOnly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/SubsOnly/SubsOnly.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Surge/Surge.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Surge/Surge.xcodeproj/project.pbxproj index a614cdb5d..d894087a5 100755 --- a/plugins/MacSignedAU/Surge/Surge.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Surge/Surge.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Surge.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Surge.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Surge/Surge.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Surge/Surge.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 4bb31acf9..6ccd77cee 100644 Binary files a/plugins/MacSignedAU/Surge/Surge.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Surge/Surge.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/SurgeMono/SurgeMono.xcodeproj/project.pbxproj b/plugins/MacSignedAU/SurgeMono/SurgeMono.xcodeproj/project.pbxproj index e7f68a1a3..f1a7cec3d 100755 --- a/plugins/MacSignedAU/SurgeMono/SurgeMono.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/SurgeMono/SurgeMono.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SurgeMono.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SurgeMono.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/SurgeMono/SurgeMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/SurgeMono/SurgeMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 7edd10c15..2dbef7cb7 100644 Binary files a/plugins/MacSignedAU/SurgeMono/SurgeMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/SurgeMono/SurgeMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/SurgeTide/SurgeTide.xcodeproj/project.pbxproj b/plugins/MacSignedAU/SurgeTide/SurgeTide.xcodeproj/project.pbxproj index a11035b0b..ef7ac191b 100755 --- a/plugins/MacSignedAU/SurgeTide/SurgeTide.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/SurgeTide/SurgeTide.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SurgeTide.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SurgeTide.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/SurgeTide/SurgeTide.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/SurgeTide/SurgeTide.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 4e7a6b088..2dd672bee 100644 Binary files a/plugins/MacSignedAU/SurgeTide/SurgeTide.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/SurgeTide/SurgeTide.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/SurgeTideMono/SurgeTideMono.xcodeproj/project.pbxproj b/plugins/MacSignedAU/SurgeTideMono/SurgeTideMono.xcodeproj/project.pbxproj index e03338a85..2a2b67b7c 100755 --- a/plugins/MacSignedAU/SurgeTideMono/SurgeTideMono.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/SurgeTideMono/SurgeTideMono.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SurgeTideMono.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = SurgeTideMono.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/SurgeTideMono/SurgeTideMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/SurgeTideMono/SurgeTideMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 62d1a01a2..1e280772a 100644 Binary files a/plugins/MacSignedAU/SurgeTideMono/SurgeTideMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/SurgeTideMono/SurgeTideMono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Swell/Swell.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Swell/Swell.xcodeproj/project.pbxproj index 74f995314..e18373c18 100755 --- a/plugins/MacSignedAU/Swell/Swell.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Swell/Swell.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Swell.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Swell.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Swell/Swell.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Swell/Swell.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 80e02960d..28521038f 100644 Binary files a/plugins/MacSignedAU/Swell/Swell.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Swell/Swell.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/TPDFDither/TPDFDither.xcodeproj/project.pbxproj b/plugins/MacSignedAU/TPDFDither/TPDFDither.xcodeproj/project.pbxproj index 8391d20f4..cefa44f24 100755 --- a/plugins/MacSignedAU/TPDFDither/TPDFDither.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/TPDFDither/TPDFDither.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = TPDFDither.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = TPDFDither.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/TPDFDither/TPDFDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/TPDFDither/TPDFDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 0a53d8452..3d20dfc22 100644 Binary files a/plugins/MacSignedAU/TPDFDither/TPDFDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/TPDFDither/TPDFDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Tape/Tape.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Tape/Tape.xcodeproj/project.pbxproj index 9c3c0406e..200dd4377 100755 --- a/plugins/MacSignedAU/Tape/Tape.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Tape/Tape.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Tape.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Tape.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Tape/Tape.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Tape/Tape.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 5251f5ab3..abdeb6f8a 100644 Binary files a/plugins/MacSignedAU/Tape/Tape.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Tape/Tape.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/TapeDelay/TapeDelay.xcodeproj/project.pbxproj b/plugins/MacSignedAU/TapeDelay/TapeDelay.xcodeproj/project.pbxproj index 2561d16de..d4a22124e 100755 --- a/plugins/MacSignedAU/TapeDelay/TapeDelay.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/TapeDelay/TapeDelay.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = TapeDelay.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = TapeDelay.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/TapeDelay/TapeDelay.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/TapeDelay/TapeDelay.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 15b2a64e1..0585305c0 100644 Binary files a/plugins/MacSignedAU/TapeDelay/TapeDelay.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/TapeDelay/TapeDelay.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/TapeDither/TapeDither.xcodeproj/project.pbxproj b/plugins/MacSignedAU/TapeDither/TapeDither.xcodeproj/project.pbxproj index 318bc17fb..9d662d800 100755 --- a/plugins/MacSignedAU/TapeDither/TapeDither.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/TapeDither/TapeDither.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = TapeDither.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = TapeDither.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/TapeDither/TapeDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/TapeDither/TapeDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 6eaa2835b..030a0c31e 100644 Binary files a/plugins/MacSignedAU/TapeDither/TapeDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/TapeDither/TapeDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/TapeDust/TapeDust.xcodeproj/project.pbxproj b/plugins/MacSignedAU/TapeDust/TapeDust.xcodeproj/project.pbxproj index f04574e70..394990b5f 100755 --- a/plugins/MacSignedAU/TapeDust/TapeDust.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/TapeDust/TapeDust.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = TapeDust.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = TapeDust.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/TapeDust/TapeDust.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/TapeDust/TapeDust.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 5e1376e40..a62d36929 100644 Binary files a/plugins/MacSignedAU/TapeDust/TapeDust.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/TapeDust/TapeDust.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/TapeFat/TapeFat.xcodeproj/project.pbxproj b/plugins/MacSignedAU/TapeFat/TapeFat.xcodeproj/project.pbxproj index 095d725eb..48a9c004b 100755 --- a/plugins/MacSignedAU/TapeFat/TapeFat.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/TapeFat/TapeFat.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = TapeFat.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = TapeFat.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/TapeFat/TapeFat.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/TapeFat/TapeFat.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 4309f6a35..a0f14d1f1 100644 Binary files a/plugins/MacSignedAU/TapeFat/TapeFat.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/TapeFat/TapeFat.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Thunder/Thunder.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Thunder/Thunder.xcodeproj/project.pbxproj index f1368d24d..8fb2b3b99 100755 --- a/plugins/MacSignedAU/Thunder/Thunder.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Thunder/Thunder.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Thunder.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Thunder.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Thunder/Thunder.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Thunder/Thunder.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 7941a6668..cf6cbf0a7 100644 Binary files a/plugins/MacSignedAU/Thunder/Thunder.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Thunder/Thunder.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/ToTape5/ToTape5.xcodeproj/project.pbxproj b/plugins/MacSignedAU/ToTape5/ToTape5.xcodeproj/project.pbxproj index 3ab2a18d4..d7ae43c6c 100755 --- a/plugins/MacSignedAU/ToTape5/ToTape5.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/ToTape5/ToTape5.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ToTape5.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ToTape5.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/ToTape5/ToTape5.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/ToTape5/ToTape5.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index e853f1d97..1fc435ec3 100644 Binary files a/plugins/MacSignedAU/ToTape5/ToTape5.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/ToTape5/ToTape5.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/ToTape6/ToTape6.xcodeproj/project.pbxproj b/plugins/MacSignedAU/ToTape6/ToTape6.xcodeproj/project.pbxproj index d11319e43..8dc75abc4 100755 --- a/plugins/MacSignedAU/ToTape6/ToTape6.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/ToTape6/ToTape6.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ToTape6.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ToTape6.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/ToTape6/ToTape6.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/ToTape6/ToTape6.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index d2a947e32..348ff4b2d 100644 Binary files a/plugins/MacSignedAU/ToTape6/ToTape6.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/ToTape6/ToTape6.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/ToVinyl4/ToVinyl4.xcodeproj/project.pbxproj b/plugins/MacSignedAU/ToVinyl4/ToVinyl4.xcodeproj/project.pbxproj index 58f1c08a3..573cc8a38 100755 --- a/plugins/MacSignedAU/ToVinyl4/ToVinyl4.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/ToVinyl4/ToVinyl4.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ToVinyl3.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ToVinyl4.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/ToVinyl4/ToVinyl4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/ToVinyl4/ToVinyl4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 3401e325d..0b11c04a3 100644 Binary files a/plugins/MacSignedAU/ToVinyl4/ToVinyl4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/ToVinyl4/ToVinyl4.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/ToneSlant/ToneSlant.xcodeproj/project.pbxproj b/plugins/MacSignedAU/ToneSlant/ToneSlant.xcodeproj/project.pbxproj index 28cb5d0d0..be6d45b71 100755 --- a/plugins/MacSignedAU/ToneSlant/ToneSlant.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/ToneSlant/ToneSlant.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ToneSlant.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = ToneSlant.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/ToneSlant/ToneSlant.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/ToneSlant/ToneSlant.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index d0dc5d907..e4d0269fb 100644 Binary files a/plugins/MacSignedAU/ToneSlant/ToneSlant.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/ToneSlant/ToneSlant.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/TransDesk/TransDesk.xcodeproj/project.pbxproj b/plugins/MacSignedAU/TransDesk/TransDesk.xcodeproj/project.pbxproj index d212d1a27..aac3fa876 100755 --- a/plugins/MacSignedAU/TransDesk/TransDesk.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/TransDesk/TransDesk.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = TransDesk.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = TransDesk.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/TransDesk/TransDesk.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/TransDesk/TransDesk.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index ce1b40a3c..1692ef0d5 100644 Binary files a/plugins/MacSignedAU/TransDesk/TransDesk.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/TransDesk/TransDesk.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/TremoSquare/TremoSquare.xcodeproj/project.pbxproj b/plugins/MacSignedAU/TremoSquare/TremoSquare.xcodeproj/project.pbxproj index 745c76915..e01f55967 100755 --- a/plugins/MacSignedAU/TremoSquare/TremoSquare.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/TremoSquare/TremoSquare.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = TremoSquare.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = TremoSquare.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/TremoSquare/TremoSquare.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/TremoSquare/TremoSquare.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index a04c4b7ef..3cfd158af 100644 Binary files a/plugins/MacSignedAU/TremoSquare/TremoSquare.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/TremoSquare/TremoSquare.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Tremolo/Tremolo.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Tremolo/Tremolo.xcodeproj/project.pbxproj index b5c1352b0..81f2a9a81 100755 --- a/plugins/MacSignedAU/Tremolo/Tremolo.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Tremolo/Tremolo.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Tremolo.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Tremolo.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Tremolo/Tremolo.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Tremolo/Tremolo.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 9bd576c41..7d36ae0df 100644 Binary files a/plugins/MacSignedAU/Tremolo/Tremolo.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Tremolo/Tremolo.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/TripleSpread/TripleSpread.xcodeproj/project.pbxproj b/plugins/MacSignedAU/TripleSpread/TripleSpread.xcodeproj/project.pbxproj index 1fa931ce7..b82563482 100755 --- a/plugins/MacSignedAU/TripleSpread/TripleSpread.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/TripleSpread/TripleSpread.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = TripleSpread.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = TripleSpread.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/TripleSpread/TripleSpread.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/TripleSpread/TripleSpread.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 160cb5a42..b33a5854a 100644 Binary files a/plugins/MacSignedAU/TripleSpread/TripleSpread.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/TripleSpread/TripleSpread.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/TubeDesk/TubeDesk.xcodeproj/project.pbxproj b/plugins/MacSignedAU/TubeDesk/TubeDesk.xcodeproj/project.pbxproj index 0b0acb5ce..3c1343b70 100755 --- a/plugins/MacSignedAU/TubeDesk/TubeDesk.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/TubeDesk/TubeDesk.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = TubeDesk.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = TubeDesk.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/TubeDesk/TubeDesk.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/TubeDesk/TubeDesk.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index a8518596c..c405ff6f1 100644 Binary files a/plugins/MacSignedAU/TubeDesk/TubeDesk.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/TubeDesk/TubeDesk.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Ultrasonic/Ultrasonic.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Ultrasonic/Ultrasonic.xcodeproj/project.pbxproj index cfd8dfd13..9b40903a8 100755 --- a/plugins/MacSignedAU/Ultrasonic/Ultrasonic.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Ultrasonic/Ultrasonic.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Ultrasonic.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Ultrasonic.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Ultrasonic/Ultrasonic.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Ultrasonic/Ultrasonic.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 14d9f6399..a16737ab8 100644 Binary files a/plugins/MacSignedAU/Ultrasonic/Ultrasonic.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Ultrasonic/Ultrasonic.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/UnBox/UnBox.xcodeproj/project.pbxproj b/plugins/MacSignedAU/UnBox/UnBox.xcodeproj/project.pbxproj index 0daf1a1bd..8077d9c6f 100755 --- a/plugins/MacSignedAU/UnBox/UnBox.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/UnBox/UnBox.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = UnBox.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = UnBox.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/UnBox/UnBox.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/UnBox/UnBox.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index e5f9472ac..9feccc381 100644 Binary files a/plugins/MacSignedAU/UnBox/UnBox.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/UnBox/UnBox.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/VariMu/VariMu.xcodeproj/project.pbxproj b/plugins/MacSignedAU/VariMu/VariMu.xcodeproj/project.pbxproj index 6e726fd62..5d3b38485 100755 --- a/plugins/MacSignedAU/VariMu/VariMu.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/VariMu/VariMu.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = VariMu.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = VariMu.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/VariMu/VariMu.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/VariMu/VariMu.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index e8da65b1d..a4bb92f97 100644 Binary files a/plugins/MacSignedAU/VariMu/VariMu.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/VariMu/VariMu.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Verbity/Verbity.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Verbity/Verbity.xcodeproj/project.pbxproj index a5f83642a..247cb67a5 100755 --- a/plugins/MacSignedAU/Verbity/Verbity.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Verbity/Verbity.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Verbity.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Verbity.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Verbity/Verbity.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Verbity/Verbity.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index c87f15bba..56ec142c3 100644 Binary files a/plugins/MacSignedAU/Verbity/Verbity.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Verbity/Verbity.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Vibrato/Vibrato.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Vibrato/Vibrato.xcodeproj/project.pbxproj index e2b54be23..ed8633a8c 100755 --- a/plugins/MacSignedAU/Vibrato/Vibrato.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Vibrato/Vibrato.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Vibrato.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Vibrato.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Vibrato/Vibrato.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Vibrato/Vibrato.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index bfcca6d38..ebdcd89bb 100644 Binary files a/plugins/MacSignedAU/Vibrato/Vibrato.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Vibrato/Vibrato.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/VinylDither/VinylDither.xcodeproj/project.pbxproj b/plugins/MacSignedAU/VinylDither/VinylDither.xcodeproj/project.pbxproj index 3f1c858a9..3c294872a 100755 --- a/plugins/MacSignedAU/VinylDither/VinylDither.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/VinylDither/VinylDither.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = VinylDither.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = VinylDither.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/VinylDither/VinylDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/VinylDither/VinylDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 900c0eafc..bee4b994f 100644 Binary files a/plugins/MacSignedAU/VinylDither/VinylDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/VinylDither/VinylDither.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/project.pbxproj b/plugins/MacSignedAU/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/project.pbxproj index 112a8c19f..cf7aa7bfe 100755 --- a/plugins/MacSignedAU/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = VoiceOfTheStarship.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = VoiceOfTheStarship.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 415e99256..f3164a834 100644 Binary files a/plugins/MacSignedAU/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/VoiceTrick/VoiceTrick.xcodeproj/project.pbxproj b/plugins/MacSignedAU/VoiceTrick/VoiceTrick.xcodeproj/project.pbxproj index ce2ab8f7f..92cad3770 100755 --- a/plugins/MacSignedAU/VoiceTrick/VoiceTrick.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/VoiceTrick/VoiceTrick.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = VoiceTrick.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = VoiceTrick.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/VoiceTrick/VoiceTrick.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/VoiceTrick/VoiceTrick.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 8265ae2cb..b218b0033 100644 Binary files a/plugins/MacSignedAU/VoiceTrick/VoiceTrick.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/VoiceTrick/VoiceTrick.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/Wider/Wider.xcodeproj/project.pbxproj b/plugins/MacSignedAU/Wider/Wider.xcodeproj/project.pbxproj index 601072aeb..b5c9d4cb9 100755 --- a/plugins/MacSignedAU/Wider/Wider.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/Wider/Wider.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Wider.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = Wider.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/Wider/Wider.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/Wider/Wider.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 148e1342e..ed6123a64 100644 Binary files a/plugins/MacSignedAU/Wider/Wider.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/Wider/Wider.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/curve/curve.xcodeproj/project.pbxproj b/plugins/MacSignedAU/curve/curve.xcodeproj/project.pbxproj index 3ae067993..004659dfc 100755 --- a/plugins/MacSignedAU/curve/curve.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/curve/curve.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = curve.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = curve.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/curve/curve.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/curve/curve.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 66b69068f..037946ca2 100644 Binary files a/plugins/MacSignedAU/curve/curve.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/curve/curve.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/curvemono/curvemono.xcodeproj/project.pbxproj b/plugins/MacSignedAU/curvemono/curvemono.xcodeproj/project.pbxproj index 6845d8ed5..2370e053d 100755 --- a/plugins/MacSignedAU/curvemono/curvemono.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/curvemono/curvemono.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = curvemono.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = curvemono.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/curvemono/curvemono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/curvemono/curvemono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index fc3b218d6..762822010 100644 Binary files a/plugins/MacSignedAU/curvemono/curvemono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/curvemono/curvemono.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/uLawDecode/uLawDecode.xcodeproj/project.pbxproj b/plugins/MacSignedAU/uLawDecode/uLawDecode.xcodeproj/project.pbxproj index 948b5dc7b..b76271826 100755 --- a/plugins/MacSignedAU/uLawDecode/uLawDecode.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/uLawDecode/uLawDecode.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = uLawDecode.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = uLawDecode.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/uLawDecode/uLawDecode.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/uLawDecode/uLawDecode.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index d5e41f20c..ffa088b8c 100644 Binary files a/plugins/MacSignedAU/uLawDecode/uLawDecode.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/uLawDecode/uLawDecode.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/plugins/MacSignedAU/uLawEncode/uLawEncode.xcodeproj/project.pbxproj b/plugins/MacSignedAU/uLawEncode/uLawEncode.xcodeproj/project.pbxproj index acfbdeb48..2f2d783be 100755 --- a/plugins/MacSignedAU/uLawEncode/uLawEncode.xcodeproj/project.pbxproj +++ b/plugins/MacSignedAU/uLawEncode/uLawEncode.xcodeproj/project.pbxproj @@ -788,8 +788,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = uLawEncode.exp; GCC_OPTIMIZATION_LEVEL = 0; @@ -814,8 +814,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; CLANG_ENABLE_OBJC_WEAK = YES; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Developer ID Application"; + CODE_SIGN_STYLE = Manual; DEVELOPMENT_TEAM = 9BMAKYA76W; EXPORTED_SYMBOLS_FILE = uLawEncode.exp; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; diff --git a/plugins/MacSignedAU/uLawEncode/uLawEncode.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate b/plugins/MacSignedAU/uLawEncode/uLawEncode.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate index 754c5c76c..437651a5f 100644 Binary files a/plugins/MacSignedAU/uLawEncode/uLawEncode.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate and b/plugins/MacSignedAU/uLawEncode/uLawEncode.xcodeproj/project.xcworkspace/xcuserdata/christopherjohnson.xcuserdatad/UserInterfaceState.xcuserstate differ