-
Notifications
You must be signed in to change notification settings - Fork 515
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
Xcode9 appkit #2245
Xcode9 appkit #2245
Conversation
src/appkit.cs
Outdated
@@ -760,6 +760,30 @@ interface NSApplication : NSAccessibilityElementProtocol, NSAccessibility { | |||
void EnumerateWindows (NSWindowListOptions options, NSApplicationEnumerateWindowsHandler block); | |||
} | |||
|
|||
[Static] | |||
interface NSAboutPanelOption |
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.
These are keys for a dictionary as really aren't easily Smart Enum'ed
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.
not clear why ? can you expand on the difficulty ?
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.
So the use of these is something like this:
NSDictionary options = NSDictionary.FromObjectsAndKeys(new NSObject [] {(NSString)"Name", (NSString)"Version", new NSAttributedString("Credits")},
new NSObject [] {NSAboutPanelOption.ApplicationName, NSAboutPanelOption.ApplicationVersion, NSAboutPanelOption.Credits});
NSApplication.SharedApplication.OrderFrontStandardAboutPanelWithOptions2 (options);
(Needs https://bugzilla.xamarin.com/show_bug.cgi?id=57718 to build)
So if we were going to improve it, I'd assume we do so by adding a OrderFrontStandardAboutPanelWithOptions that takes some strongly typed item and not a dictionary of smart enums.
src/AppKit/Enums.cs
Outdated
@@ -138,7 +138,11 @@ public enum NSComposite : nuint_compat_int { | |||
|
|||
[Native] | |||
public enum NSBackingStore : nuint_compat_int { | |||
Retained, Nonretained, Buffered | |||
[Availability (Introduced = Platform.Mac_10_0, Deprecated = Platform.Mac_10_13, Message = "Use 'Buffered' instead")] |
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.
iirc from @VincentDondain PR this (and all others) needs to end with a dot (.)
src/AppKit/Enums.cs
Outdated
@@ -2112,6 +2122,7 @@ public static class NSFileTypeForHFSTypeCode { | |||
|
|||
// These constants specify the possible states of a drawer. | |||
[Native] | |||
[Deprecated (PlatformName.MacOSX, 10, 13, message: "Drawers are deprecated; consider using 'NSSplitViewController'")] |
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.
also it should not say deprecated
since the IDE already knowns from the attribute
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.
Yup exactly: https://github.com/xamarin/xamarin-macios/wiki/BINDINGS#rule-4
Here you can just say: Use 'NSSplitViewController' instead.
The IDE will show the user the following tooltip:
'NSDrawerState' was deprecated in macOS 10.13.
Use 'NSSplitViewController' instead.
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.
I copy pasted all of the spam from the various deprecation attributes and then went back and fixed things like 's and such, but missed ones like this who's text is completely wrong.
src/AppKit/Enums.cs
Outdated
{ | ||
FullRange, | ||
Start, | ||
End |
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: better end with a comma (,) so adding future values results in smaller diffs
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.
Applies to all your enums
src/AppKit/NSBezierPath.cs
Outdated
@@ -110,5 +110,15 @@ public unsafe void AppendPathWithGlyphs (uint[] glyphs, NSFont font) | |||
_AppendPathWithGlyphs ((IntPtr)ptr, glyphs.Length, font); | |||
} | |||
|
|||
public unsafe void AppendBezierPathWithCGGlyphs (uint[] glyphs, NSFont font) |
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.
whats the difference with the previous method ? obviously they call a different API but I thought CGGlyphs were mapped to uint ? so it seems identical
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.
maybe i'm wrong I see CGGlyph [] glyphs
later.. so the signature looks wrong
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.
I missed some deprecations from the diff.
The other one was calling
[Export ("appendBezierPathWithGlyphs:count:inFont:"), Internal]
which is deprecated
the new one is calling
[Export ("appendBezierPathWithCGGlyphs:count:inFont:")]
which is 10.13
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.
There are "new" glyph APIs and Apple deprecated a whole mess of "old" ones. The diff was really ugly when I was parsing through it, and it appears I missed some.
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.
Things were double confusing because we were not distinguishing between NSGlyph and CGGlyph correctly in "ancient" bindings.
src/AppKit/NSBezierPath.cs
Outdated
@@ -110,5 +110,15 @@ public unsafe void AppendPathWithGlyphs (uint[] glyphs, NSFont font) | |||
_AppendPathWithGlyphs ((IntPtr)ptr, glyphs.Length, font); | |||
} | |||
|
|||
public unsafe void AppendBezierPathWithCGGlyphs (uint[] glyphs, NSFont font) |
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.
Also it's a new public API so it must be decorated with Mac (10,13) and others if applicable since the internal version won't be visible to developers
src/appkit.cs
Outdated
interface NSObject_NSFontPanelValidationAdditions | ||
{ | ||
[Export ("validModesForFontPanel:")] | ||
NSFontPanelModeMask ValidModesForFontPanel (NSFontPanel fontPanel); |
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.
GetValidModes
?
src/appkit.cs
Outdated
IntPtr Constructor (NSSet<NSUserInterfaceCompressionOptions> options); | ||
|
||
[Export ("containsOptions:")] | ||
bool ContainsOptions (NSUserInterfaceCompressionOptions options); |
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.
not sure we need Options
in the method name
src/appkit.cs
Outdated
bool ContainsOptions (NSUserInterfaceCompressionOptions options); | ||
|
||
[Export ("intersectsOptions:")] | ||
bool IntersectsOptions (NSUserInterfaceCompressionOptions options); |
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.
same
src/appkit.cs
Outdated
bool Empty { [Bind ("isEmpty")] get; } | ||
|
||
[Export ("optionsByAddingOptions:")] | ||
NSUserInterfaceCompressionOptions CreateOptionsByAdding (NSUserInterfaceCompressionOptions options); |
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.
same
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.
Actually since we return NSUserInterfaceCompressionOptions
this should be GetOptionsByAdding
.
We kinda need ByAdding
because there's a ByRemoving
method.
However, maybe we could introduce an enum there and do something like:
NSUserInterfaceCompressionOptions GetOptions (NSUserInterfaceCompressionOptions options, NSUserInterfaceCompressionOptionsMode mode);
Where NSUserInterfaceCompressionOptions
has 2 values: add
and remove
.
Maybe we'd need to add API doc for that (:
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.
I ❤️ ByAdding / ByRemoving
src/appkit.cs
Outdated
NSUserInterfaceCompressionOptions CreateOptionsByAdding (NSUserInterfaceCompressionOptions options); | ||
|
||
[Export ("optionsByRemovingOptions:")] | ||
NSUserInterfaceCompressionOptions CreateOptionsByRemoving (NSUserInterfaceCompressionOptions options); |
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.
same
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.
See comment above for ByAdding
. Should be at least GetOptionsByRemoving
.
Build success |
src/AppKit/Enums.cs
Outdated
TraitTightLeading = 1 << 15, | ||
[Mac (10,13)] | ||
TraitLooseLeading = 1 << 16, | ||
|
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.
Extra whitespace
src/AppKit/Enums.cs
Outdated
@@ -2735,4 +2747,106 @@ public enum NSScrubberAlignment : nint | |||
Center | |||
} | |||
|
|||
[Mac (10,13)] | |||
public enum NSFontError : int { | |||
|
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.
Whitespace
src/AppKit/Enums.cs
Outdated
[Mac (10,13)] | ||
[Native] | ||
public enum NSAccessibilityAnnotationPosition : nint | ||
{ |
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.
Formatting. { should be at the end of hte previous line (same is true for the rest of the new enums)
src/AppKit/Enums.cs
Outdated
|
||
[Mac (10,13)] | ||
[Native] | ||
public enum NSFontPanelModeMask : nuint |
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.
Looking at the values, should this have a [Flags] attribute?
src/AppKit/Enums.cs
Outdated
@@ -2148,6 +2159,7 @@ public enum NSRuleEditorNestingMode : nuint_compat_int { | |||
} | |||
|
|||
[Native] | |||
[Availability (Deprecated = Platform.Mac_10_11, Message = "Use 'NSGlyphProperty' instead")] |
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.
Same dot (.)
|
||
[Mac (10,13)] | ||
[Export ("appendBezierPathWithCGGlyph:inFont:")] | ||
void AppendBezierPathWithCGGlyph (CGGlyph glyph, NSFont font); |
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.
Just AppendBezierPath
.
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.
So the problem here is that we already have an AppendBezierPath variant that takes a uint, font and a bunch of older version that use WithFoo.
If I make this one different I think it will be confusing, and I can't convert them all without hitting the collision. :(
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.
Added the simple overloads. I didn't bother converting them all to appends with an enum (https://github.com/xamarin/xamarin-macios/wiki/BINDINGS#different-objective-c-selectors-who-lead-to-identical-c-signatures) because they are both old bindings and I think that's uglier than what we already have.
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.
if there's a better named API then let's not expose that name publicly
src/appkit.cs
Outdated
@@ -1819,6 +1858,7 @@ interface NSBrowserDelegate { | |||
[Export ("browser:writeRowsWithIndexes:inColumn:toPasteboard:")] | |||
bool WriteRowsWithIndexesToPasteboard (NSBrowser browser, NSIndexSet rowIndexes, nint column, NSPasteboard pasteboard); | |||
|
|||
[Deprecated (PlatformName.MacOSX, 10, 13, message: "Use 'NSFilePromiseReceiver' objects instead")] |
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.
Same dot (.)
src/appkit.cs
Outdated
@@ -2902,6 +2950,7 @@ partial interface NSCollectionViewDelegate { | |||
[Export ("collectionView:writeItemsAtIndexes:toPasteboard:")] | |||
bool WriteItems (NSCollectionView collectionView, NSIndexSet indexes, NSPasteboard toPasteboard); | |||
|
|||
[Deprecated (PlatformName.MacOSX, 10, 13, message: "Use 'NSFilePromiseReceiver' objects instead")] |
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.
Same dot (.)
src/appkit.cs
Outdated
@@ -2927,6 +2976,7 @@ partial interface NSCollectionViewDelegate { | |||
bool WriteItems (NSCollectionView collectionView, NSSet indexPaths, NSPasteboard pasteboard); | |||
|
|||
[Mac (10,11)] | |||
[Deprecated (PlatformName.MacOSX, 10, 13, message: "Use 'NSFilePromiseReceiver' objects instead")] |
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.
Same dot (.)
src/appkit.cs
Outdated
@@ -760,6 +760,30 @@ interface NSApplication : NSAccessibilityElementProtocol, NSAccessibility { | |||
void EnumerateWindows (NSWindowListOptions options, NSApplicationEnumerateWindowsHandler block); | |||
} | |||
|
|||
[Static] | |||
interface NSAboutPanelOption | |||
{ |
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 be at the end of the previous line
[Export ("appendBezierPathWithCGGlyphs:count:inFont:")] | ||
[Internal] | ||
void _AppendBezierPathWithCGGlyphs (IntPtr glyphs, nint count, NSFont font); | ||
|
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.
whitespace
@@ -3390,6 +3440,7 @@ interface NSCollectionViewGridLayout | |||
} | |||
|
|||
[Mac (10,11)] | |||
[DisableDefaultCtor] |
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.
Isn't this a breaking change to add to an existing API?
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.
Yes. :(
I'll have to XAMCORE_4_0 and add test exclusions. Not sure why I made this mistake in the haze of test fixing.
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.
Looks like this never got fixed
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.
src/appkit.cs
Outdated
@@ -5876,6 +6016,7 @@ partial interface NSFont : NSSecureCoding, NSCopying { | |||
NSStringEncoding MostCompatibleStringEncoding { get; } | |||
|
|||
[Export ("glyphWithName:")] | |||
[Deprecated (PlatformName.MacOSX, 10, 13, message: "Use CGGlyph APIs instead")] |
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.
Please put CGGlyph between apostrophes. 'CGGlyph'.
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.
And make it "Use the 'CGGlyph' APIs instead."
Build failure |
I'm testing my changes and will get back to the PR shortly. |
Build failure |
Build failure |
Test failure unrelated - https://bugzilla.xamarin.com/show_bug.cgi?id=57762 |
src/AppKit/Compat.cs
Outdated
|
||
[EditorBrowsable (EditorBrowsableState.Advanced)] | ||
[Export ("init")] | ||
public NSCollectionViewTransitionLayout () : base (NSObjectFlag.Empty) |
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.
what's the reason for excluding this from XAMCORE_4_0
?
This should be inside an [Obsolete]
attribute so developers can stop using it
Also if it does not work (e.g. crash) then there's no need to include the generated code body.
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.
I tried to follow your suggestion here: #2245 (comment)
You are correct that I forgot the obsolete. Adding.
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.
Sorry but it remains unclear why you're removing it from bindings. The two main reasons are:
-
It was our mistake and it does not work (the normal case for
[Obsolete]
). There's no point to have the generated code inside the body, it will make it harder to diagnose if called; -
It was Apple mistake and they removed it. Here it should be
[Obsoleted]
or[Deprecated]
(and can be kept part of the bindings).
src/AppKit/Enums.cs
Outdated
public enum NSFontError : int { | ||
AssetDownloadError = 66304, // Generic code when font asset download error occurs. | ||
ErrorMinimum = 66304, // Generic code when font asset download error occurs. | ||
ErrorMaximum = 66335, // Generic code when font asset download error occurs. |
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.
comments not really useful in the bindings (and not quite right for min and max)
CGRect [] bounds = new CGRect [glyphs.Length]; | ||
fixed (CGRect* boundsPtr = &bounds [0]) { | ||
fixed (CGGlyph* glyphsPtr = &glyphs [0]) { | ||
_GetBoundingRects ((IntPtr)boundsPtr, (IntPtr)glyphsPtr, (nuint)glyphs.Length); |
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.
I meant what happens with the native API, not our managed one :-)
CGSize [] advancements = new CGSize [glyphs.Length]; | ||
fixed (CGSize* advancementsPtr = &advancements [0]) { | ||
fixed (CGGlyph* glyphsPtr = &glyphs [0]) { | ||
_GetAdvancements ((IntPtr)advancementsPtr, (IntPtr)glyphsPtr, (nuint)glyphs.Length); |
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.
same - meant the native API, not the managed one.
e.g. is it valid/useful to ask advancement for no glyphs ?
@@ -2026,7 +2071,7 @@ interface NSButtonCell { | |||
} | |||
|
|||
[BaseType (typeof (NSControl))] | |||
interface NSButton : NSAccessibilityButton { | |||
interface NSButton : NSAccessibilityButton, NSUserInterfaceCompression { |
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.
@timrisi no, this means that the native type must support it so we can generate the methods that calls it
src/appkit.cs
Outdated
@@ -4689,22 +4810,28 @@ interface NSCursor : NSCoding { | |||
[Export ("set")] | |||
void Set (); | |||
|
|||
[Deprecated (PlatformName.MacOSX, 10, 13, message: "'SetOnMouseExited' is unused and should not be called.")] |
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 message is unclear.
First I don't think it should include the API name (it's obvious in the IDE) <- @VincentDondain that could be a check in the intro tests
Next is it really unused if user code calls it ? ;-)
Maybe "This call will be ignored by the operating system."
? unless I misunderstood the issue :)
same applies to similar messages just below
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 message was translated from the header:
- (void)setOnMouseEntered:(BOOL)flag NS_DEPRECATED_MAC(10_0, 10_13, "setOnMouseEntered is unused and should not be called");
@property (getter=isSetOnMouseExited, readonly) BOOL setOnMouseExited NS_DEPRECATED_MAC(10_0, 10_13, "isSetOnMouseExited is unused");
@property (getter=isSetOnMouseEntered, readonly) BOOL setOnMouseEntered NS_DEPRECATED_MAC(10_0, 10_13, "isSetOnMouseEntered is unused");
- (void)mouseEntered:(NSEvent *)event NS_DEPRECATED_MAC(10_0, 10_13, "mouseEntered: is unused and should not be called");
- (void)mouseExited:(NSEvent *)event NS_DEPRECATED_MAC(10_0, 10_13, "mouseExited: is unused and should not be called");
src/appkit.cs
Outdated
[Mac (10,13)] | ||
[Internal] | ||
[Export ("getBoundingRects:forCGGlyphs:count:")] | ||
unsafe void _GetBoundingRects (IntPtr bounds, IntPtr glyphs, nuint glyphCount); |
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: there's nothing unsafe
in the signature
src/appkit.cs
Outdated
[Mac (10,13)] | ||
[Internal] | ||
[Export ("getAdvancements:forCGGlyphs:count:")] | ||
unsafe void _GetAdvancements (IntPtr advancements, IntPtr glyphs, nuint glyphCount); |
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: there's nothing unsafe
in the signature
src/appkit.cs
Outdated
@@ -10234,7 +10450,7 @@ partial interface NSLayoutManager : NSCoding { | |||
[Export ("intAttribute:forGlyphAtIndex:")] | |||
nint IntAttributeforGlyphAtIndex (nint attributeTag, nint glyphIndex); | |||
|
|||
// TODO: bind this with a safe version | |||
[Deprecated (PlatformName.MacOSX, 10, 13)] |
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.
it's [Internal]
, has the caller(s) been decorated too ?
if there's none then it can simply be removed
Half of @spouliot comments are taken care of. Testing the open native API question now. |
Build failure |
Failure known - https://bugzilla.xamarin.com/show_bug.cgi?id=55719 |
Build success |
Build success |
Commits: i * [mlaunch] Don't throw if the DVTAnalyticsKit is missing. (xamarin#2243) xamarin/maccore@5529194 * [mlaunch] Improve makefile to detect when the built app changes and re-install properly. xamarin/maccore@cd37e4d * [mlaunch] Use SimDevice.LaunchApplicationAsync to launch applications like Xcode does. xamarin/maccore@1ad15ed * [mlaunch] Launch watch apps directly in the watch simulator for watch iOS 7+. xamarin/maccore@e57ca5b * [mlaunch] Fix makefile to work properly. (xamarin#2247) xamarin/maccore@af172cd * [mlaunch] Automatically set NSUnbufferedIO in more cases to get text to stdout/stderr without delay. (xamarin#2246) xamarin/maccore@2d025ab * [mlaunch] Disable any dock icons. (xamarin#2245) xamarin/maccore@e6eed65 Complete diff: xamarin/maccore@d425378...e6eed65]
Commits: i * [mlaunch] Don't throw if the DVTAnalyticsKit is missing. (#2243) xamarin/maccore@5529194 * [mlaunch] Improve makefile to detect when the built app changes and re-install properly. xamarin/maccore@cd37e4d * [mlaunch] Use SimDevice.LaunchApplicationAsync to launch applications like Xcode does. xamarin/maccore@1ad15ed * [mlaunch] Launch watch apps directly in the watch simulator for watch iOS 7+. xamarin/maccore@e57ca5b * [mlaunch] Fix makefile to work properly. (#2247) xamarin/maccore@af172cd * [mlaunch] Automatically set NSUnbufferedIO in more cases to get text to stdout/stderr without delay. (#2246) xamarin/maccore@2d025ab * [mlaunch] Disable any dock icons. (#2245) xamarin/maccore@e6eed65 Complete diff: xamarin/maccore@d425378...e6eed65]
No description provided.