From 90271952f3a48b6733c62d142e0ebba6370e5e4a Mon Sep 17 00:00:00 2001 From: rzen Date: Fri, 19 Jun 2026 19:30:09 -0400 Subject: [PATCH] Make the iPhone app iPhone-only MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Set TARGETED_DEVICE_FAMILY to 1 for the iOS target — it was universal (1,2) but isn't an iPad experience, which forced an iPad screenshot requirement at submission. The Apple Watch app is a separate target (family 4) and is unaffected. Removes the iPad screenshot set from the listing metadata. Claude-Session: https://claude.ai/code/session_018gg69MaUetDNzWzBXisfMV --- CHANGELOG.md | 3 +++ project.yml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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) -