Skip to content
This repository has been archived by the owner on Jun 6, 2019. It is now read-only.

Latest commit

 

History

History
104 lines (58 loc) · 2.15 KB

File metadata and controls

104 lines (58 loc) · 2.15 KB
id title
25245466-8499-F1A6-637F-DA116CB33EAE
From 5.4.0 to 5.4.1

Namespace: MonoTouch

Type Changed: MonoTouch.Constants

Removed:

public const string Version = "5.4.0";

Added:

public const string Version = "5.4.1";

Namespace: MonoTouch.CoreBluetooth

Type Changed: MonoTouch.CoreBluetooth.CBCentralManagerDelegate

Removed:

public abstract void RetrievedConnectedPeripherals (CBCentralManager central, CBPeripheral peripherals);

Added:

public abstract void RetrievedConnectedPeripherals (CBCentralManager central, CBPeripheral[] peripherals);

Namespace: MonoTouch.Foundation

Type Changed: MonoTouch.Foundation.NSTimer

Added:

[Obsolete("This instance of NSTimer would be unusable. Symbol kept for binary compatibility")]
        public NSTimer ();

Namespace: MonoTouch.MediaPlayer

Type Changed: MonoTouch.MediaPlayer.MPMoviePlayerController

Removed:

public static MonoTouch.Foundation.NSObject ObserveWillEnterFullscreen (EventHandler<MPMoviePlayerFullScreenEventArgs> handler);

Added:

public static MonoTouch.Foundation.NSObject ObserveWillEnterFullscreen (System.EventHandler<MonoTouch.Foundation.NSNotificationEventArgs> handler);

Namespace: MonoTouch.ObjCRuntime

New Type: MonoTouch.ObjCRuntime.MountainLionAttribute

public class MountainLionAttribute : Attribute {
        
        public MountainLionAttribute ();
}