-
Notifications
You must be signed in to change notification settings - Fork 419
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
Limits TipKit availability to iOS 18+ #3589
Conversation
@@ -256,7 +256,7 @@ struct NetworkProtectionStatusView: View { | |||
.listRowBackground(Color(designSystemColor: .surface)) | |||
|
|||
Section { | |||
if #available(iOS 17.0, *) { | |||
if #available(iOS 17.8, *) { |
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.
Should this use iOS 18 instead?
if #available(iOS 17.8, *) { | |
if #available(iOS 18.0, *) { |
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 is right, good eye.
I noticed had suggested a change after pushing the commit myself too... more coffeeeeee!
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.
Approved, but there's a compilation error blocking this from being merged.
…g-error # By Mariusz Śpiewak (4) and others # Via GitHub (1) and Mariusz Śpiewak (1) * main: Re-prompt for crash reporting (#3595) Fix running BoolFileMarkerTest on device (#3601) Run Sync e2e tests only on latest version (#3602) Release 7.146.0-1 (#3600) Fix autofill search authentication looping (#3598) Fix invalid OmniBar state transition on loading (#3599) Update autoconsent to v11.5.0 (#3581) Release 7.146.0-0 (#3594) deps: Bump [email protected] and BSK@211 (#3588) Update subtitle (#3592) Limits TipKit availability to iOS 18+ (#3589) Fix alpha build compilation (#3584) Update VPN auth token check logic (#3585) Fix button shapes on New Tab Page (#3586) Temporarily disable TipKit (#3564) # Conflicts: # DuckDuckGo.xcodeproj/project.pbxproj # DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
Important: this is open for review, but DO NOT MERGE until we can point at the internal release branch.
Task/Issue URL: https://app.asana.com/0/1206580121312550/1208786321276837/f
Description
Two changes are introduces here:
setup
call at startup.Steps to test this PR:
Test our tips work well.
Remember you can reset TipKit at the bottom of our debug menu.
Definition of Done (Internal Only):
Internal references:
Software Engineering Expectations
Technical Design Template