diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a92244..07331e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to this project are documented here. ## June 2026 +- Set the iPhone app to iPhone-only (`TARGETED_DEVICE_FAMILY` 1); it was + inadvertently universal but isn't an iPad-shaped experience. The Apple Watch app + is a separate target and is unaffected. - Exercise detail now renders the set-progress grid correctly on the first frame (seeded from the log in `init`) instead of filling in a frame later. - Added a DEBUG-only screenshot harness (seeded sample data + `--screenshot diff --git a/project.yml b/project.yml index f765a8c..6e46ac5 100644 --- a/project.yml +++ b/project.yml @@ -57,7 +57,7 @@ targets: IPHONEOS_DEPLOYMENT_TARGET: "26.0" ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME: AccentColor - TARGETED_DEVICE_FAMILY: "1,2" + TARGETED_DEVICE_FAMILY: "1" DEVELOPMENT_ASSET_PATHS: "\"Workouts/Preview Content\"" # ---- watchOS app (no iCloud; syncs through the phone via WatchConnectivity) -