- Notifications
You must be signed in to change notification settings - Fork548
[clockkit] Add missing 'CLKComplicationFamily' enum values#4818
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
From Xcode 10 GM API diff:https://github.com/xamarin/xamarin-macios/wiki/ClockKit-watchOS-xcode10-GM``` diff--- /Applications/Xcode10-beta6.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/ClockKit.framework/Headers/CLKDefines.h2018-08-10 17:39:53.000000000 -0400+++ /Applications/Xcode10GM.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/ClockKit.framework/Headers/CLKDefines.h2018-08-29 05:55:06.000000000 -0400@@ -19,6 +19,10 @@ CLKComplicationFamilyCircularSmall = 4, CLKComplicationFamilyExtraLarge CLK_AVAILABLE_WATCHOS_IOS(3_0, 10_0) = 7, + CLKComplicationFamilyGraphicCorner CLK_AVAILABLE_WATCHOS_IOS(5_0, 12_0) = 8,+ CLKComplicationFamilyGraphicBezel CLK_AVAILABLE_WATCHOS_IOS(5_0, 12_0) = 9,+ CLKComplicationFamilyGraphicCircular CLK_AVAILABLE_WATCHOS_IOS(5_0, 12_0) = 10,+ CLKComplicationFamilyGraphicRectangular CLK_AVAILABLE_WATCHOS_IOS(5_0, 12_0) = 11, };```These are important enum values related to the new "graphic" complications types.
spouliot left a comment
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.
minor: ordering is automatic, you do not need them unless they are not continuous
monojenkins commentedSep 14, 2018
Build failure |
monojenkins commentedSep 14, 2018
Build failure Test results1 tests failed, 0 tests skipped, 79 tests passed.Failed tests
|
VincentDondain commentedSep 14, 2018
Known test failure:https://github.com/xamarin/maccore/issues/649 |
t9mike commentedSep 21, 2018
Rookie question: when will this update be in one of the release channels? I need new watchOS 5 complications. |
t9mike commentedSep 21, 2018
So Xcode Preview 10 channel is behind stable now. OK, I see it new watchOS types now that I switched to Stable. Would be really helpful if a modal dialog warning was shown on VS.NET Mac launch or if manually check for new version if channel you are on is BEHIND a "higher" channel. |
t9mike commentedSep 21, 2018
Seehttps://developercommunity.visualstudio.com/content/problem/340745/check-for-updates-needs-to-provide-status-of-behin.html andhttps://developercommunity.visualstudio.com/content/problem/340746/proactively-warn-user-if-they-are-on-update-channe.html. |
VincentDondain commentedOct 10, 2018
Hi@t9mike sorry for not answering earlier I totally missed your responses. My bad I apologize. Thanks for filing those issues against Visual Studio for Mac, your feedback seems valid to me, the team will investigate. Also it's a bit late now because you have the new enum values but in the future if we're ever missing enum values (we shouldn't!) know that you can just use the new values directly. So in an |
From Xcode 10 GM API diff:https://github.com/xamarin/xamarin-macios/wiki/ClockKit-watchOS-xcode10-GM
These are important enum values related to the new "graphic" complications types.