Skip to content

Add rounded-display-corner support for affected Apple Watch models#503

Draft
Copilot wants to merge 2 commits into
masterfrom
copilot/fix-rounded-display-corners
Draft

Add rounded-display-corner support for affected Apple Watch models#503
Copilot wants to merge 2 commits into
masterfrom
copilot/fix-rounded-display-corners

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented May 22, 2026

Several Apple Watch models with edge-to-edge displays were not reporting hasRoundedDisplayCorners == true. This updates watch capability metadata so the affected Series, SE, and Ultra models are classified consistently.

  • watchOS rounded-corner capability

    • adds a watchOS-specific allDevicesWithRoundedDisplayCorners
    • exposes hasRoundedDisplayCorners for watch models using the same real-device/simulator behavior as other capability checks
  • Apple Watch model metadata

    • marks the affected models as having rounded display corners in the generator source
    • updates the generated device definitions to include:
      • Series 4–11 models listed in the issue
      • SE (2nd generation) 40mm/44mm
      • Ultra / Ultra 2 / Ultra 3
  • focused regression coverage

    • adds a watchOS test that asserts the expected rounded-corner set across all real watch devices
public static var allDevicesWithRoundedDisplayCorners: [Device] {
  return [
    .appleWatchSeries4_40mm,
    .appleWatchSeries4_44mm,
    // ...
    .appleWatchUltra3,
    .appleWatchSeries11_42mm,
    .appleWatchSeries11_46mm,
  ]
}

Copilot AI changed the title [WIP] Fix Apple Watch models reporting of rounded display corners Add rounded-display-corner support for affected Apple Watch models May 22, 2026
Copilot AI requested a review from Zandor300 May 22, 2026 14:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Models of Apple Watch do not properly report rounded display corners

2 participants