-
Notifications
You must be signed in to change notification settings - Fork 0
Add requiresFullScreen property and enhance iPad orientations #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -27,7 +27,10 @@ let package = Package( | |||||||||||||||||
| .phone | ||||||||||||||||||
| ], | ||||||||||||||||||
| supportedInterfaceOrientations: [ | ||||||||||||||||||
| .portrait | ||||||||||||||||||
| .portrait, | ||||||||||||||||||
| .landscapeRight(.when(deviceFamilies: [.pad])), | ||||||||||||||||||
| .landscapeLeft(.when(deviceFamilies: [.pad])), | ||||||||||||||||||
| .portraitUpsideDown(.when(deviceFamilies: [.pad])) | ||||||||||||||||||
|
Comment on lines
+30
to
+33
|
||||||||||||||||||
| .portrait, | |
| .landscapeRight(.when(deviceFamilies: [.pad])), | |
| .landscapeLeft(.when(deviceFamilies: [.pad])), | |
| .portraitUpsideDown(.when(deviceFamilies: [.pad])) | |
| .portrait, | |
| .landscapeRight(.when(deviceFamilies: [.pad])), | |
| .landscapeLeft(.when(deviceFamilies: [.pad])), | |
| .portraitUpsideDown(.when(deviceFamilies: [.pad])) |
Copilot
AI
Mar 6, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is made in an auto-generated manifest (see the warning at the top of this file). Any regeneration step (e.g., from Xcode/Swift Playgrounds) is likely to overwrite these orientation updates. Please apply this change in the source that generates Beacon.swiftpm/Package.swift (or document/update the generation workflow) so it persists.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PR title/description mention adding a
requiresFullScreenproperty, but this diff only updatessupportedInterfaceOrientations. Either add therequiresFullScreenchange (if intended) or update the PR metadata so it accurately reflects the actual change set.