Declare the PSB type in the right list and clear the remaining build warnings - #120
Merged
Merged
Conversation
…warnings The com.adobe.photoshop-large-image declaration sat in CFBundleDocumentTypes instead of UTImportedTypeDeclarations, so macOS logged a missing CFBundleTypeRole and never registered the .psb type. It now sits beside the PSD declaration. TiledLayerTests unwraps its snapshot with guard: `try #require` inside the nested function warned that nothing throws, and dropping the `try` doesn't compile. CI names arm64 in its destinations so xcodebuild stops warning about multiple matches. Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Clears the messages left in the CI log after #118.
com.adobe.photoshop-large-imagedeclaration was insideCFBundleDocumentTypesinstead ofUTImportedTypeDeclarations. macOS read it as a document type with no role (theCFBundleTypeRolemessage at launch) and never registered.psbas a type. It now sits beside the PSD declaration.try #requireinside the nestedsnapshot()function warned that nothing throws, but removingtryfails to compile. It now unwraps withguardand throws a local error.arch=arm64, so xcodebuild stops warning about multiple matching destinations.Built and ran
TiledLayerTestslocally on Xcode 27: no compiler warnings, all passing.Not changed:
appintentsmetadataprocessor"Metadata extraction skipped" is Xcode's App Intents step reporting that the app doesn't use App Intents, and the checkout's git default-branch hint comes from the runner.🤖 Generated with Claude Code