-
Notifications
You must be signed in to change notification settings - Fork 554
Added: missing link color #4356
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
Conversation
|
build |
|
First of all, thanks for the contribution! If you are interested in working on bindings, I'd suggest dropping by our gitter where we can answer questions. The macios team is currently working on Mojave specific bindings in the xcode10 branch. We have a list of new APIs that need bound and PRs out for some parts of it already. The 10.14 AppKits APIs have a PR out that I'm working on, and @mandel-macaque is working on Photos/PhotosUI already. As you've noticed, we don't have 100% API coverage with the older macOS APIs in particular. Our xtro-sharpie test compares our bindings to the headers and our introspection tests compares our bindings to the actual libraries, so we have a pretty good general idea what we're missing. You can see your item on the list here: If there's a specific API you have interest in binding and isn't currently being worked on by another, drop by gitter and @ me. We can coordinate so we don't have multiple people re-doing either other's work. |
|
@chamons Thanks, glad things are in progress and will look into how I can help without duplicating any work. Will see you on bitter :) |
|
Build failure Test results3 tests failed, 0 tests skipped, 77 tests passed.Failed tests
|
|
|
|
API Diff / Generator diff look good. |
|
Hey guys, that went a bit too fast :)
IOW even if it's available on 10.10 Apple can decide to remove it publicly in a later Xcode 10 beta and we'll end up with a broken API / private symbol (potentially blocking App Store submissions). Now I don't think it's very likely in this specific case but the fact that In such case this is better handled to include those API in the |
|
Moved it to xcode10 - #4363 |
|
Fixed in xcode10 now. |
Hi,
Was creating binding for Mojave and noticed linkColor was missing for macOS (10,10) and have added.
Going forward what is the process for adding missing bindings, is it a case of using objective sharpie against framework and comparing with the files in repo e.g. AppKit.cs? My current requirement is to update bindings for AppKit + PhotosUI + Photos for Mojave and hoping I can help if I understand the process...
Pete