diff --git a/AQTapDemo/Info.plist b/AQTapDemo/Info.plist index 668ea32a..69cd2094 100644 --- a/AQTapDemo/Info.plist +++ b/AQTapDemo/Info.plist @@ -32,5 +32,12 @@ 1 CFBundleVersion 0 + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + diff --git a/AUSoundTriggeredPlayingSoundMemoryBased/AUSoundTriggeredPlayingSoundMemoryBased.csproj b/AUSoundTriggeredPlayingSoundMemoryBased/AUSoundTriggeredPlayingSoundMemoryBased.csproj index 3c7205f7..ceaaefe3 100644 --- a/AUSoundTriggeredPlayingSoundMemoryBased/AUSoundTriggeredPlayingSoundMemoryBased.csproj +++ b/AUSoundTriggeredPlayingSoundMemoryBased/AUSoundTriggeredPlayingSoundMemoryBased.csproj @@ -56,10 +56,10 @@ False iPhone Developer True - 4.2 ARMv7 + true none diff --git a/AVCaptureFrames/Info.plist b/AVCaptureFrames/Info.plist index 5ac17154..3a8cc1fe 100644 --- a/AVCaptureFrames/Info.plist +++ b/AVCaptureFrames/Info.plist @@ -38,5 +38,12 @@ CFBundleIdentifier com.xamarin.avcaptureframes + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + diff --git a/AVCaptureFrames/Main.cs b/AVCaptureFrames/Main.cs index 088ef779..7f2c6d5a 100644 --- a/AVCaptureFrames/Main.cs +++ b/AVCaptureFrames/Main.cs @@ -13,7 +13,6 @@ using UIKit; using AVFoundation; using CoreVideo; using CoreMedia; -using CoreGraphics; using CoreFoundation; using System.Runtime.InteropServices; diff --git a/AVCompositionDebugVieweriOS/AVCompositionDebugVieweriOS/AVCompositionDebugVieweriOS.csproj b/AVCompositionDebugVieweriOS/AVCompositionDebugVieweriOS/AVCompositionDebugVieweriOS.csproj index a5527f88..edc59b3b 100644 --- a/AVCompositionDebugVieweriOS/AVCompositionDebugVieweriOS/AVCompositionDebugVieweriOS.csproj +++ b/AVCompositionDebugVieweriOS/AVCompositionDebugVieweriOS/AVCompositionDebugVieweriOS.csproj @@ -53,6 +53,9 @@ ARMv7 + true + + full diff --git a/AVCompositionDebugVieweriOS/AVCompositionDebugVieweriOS/Info.plist b/AVCompositionDebugVieweriOS/AVCompositionDebugVieweriOS/Info.plist index 5b34f169..78e26ac3 100644 --- a/AVCompositionDebugVieweriOS/AVCompositionDebugVieweriOS/Info.plist +++ b/AVCompositionDebugVieweriOS/AVCompositionDebugVieweriOS/Info.plist @@ -29,5 +29,13 @@ Icon-Small-40 Icon-Small-40@2x + CFBundleDisplayName + AVCompositionDebugViewer + CFBundleIdentifier + com.xamarin.AVCompositionDebugViewer + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1.0 diff --git a/AVCustomEdit/AVCustomEdit/AVCustomEdit.csproj b/AVCustomEdit/AVCustomEdit/AVCustomEdit.csproj index 43c4641d..7274c666 100644 --- a/AVCustomEdit/AVCustomEdit/AVCustomEdit.csproj +++ b/AVCustomEdit/AVCustomEdit/AVCustomEdit.csproj @@ -49,6 +49,9 @@ false iPhone Developer ARMv7 + true + + full diff --git a/AVCustomEdit/AVCustomEdit/Custom Compositors/CustomVideoCompositor.cs b/AVCustomEdit/AVCustomEdit/Custom Compositors/CustomVideoCompositor.cs index 47ea1d38..309053c7 100644 --- a/AVCustomEdit/AVCustomEdit/Custom Compositors/CustomVideoCompositor.cs +++ b/AVCustomEdit/AVCustomEdit/Custom Compositors/CustomVideoCompositor.cs @@ -42,14 +42,13 @@ namespace AVCustomEdit DispatchQueue renderingQueue; DispatchQueue renderContextQueue; AVVideoCompositionRenderContext renderContext; - CVPixelBuffer previousBuffer; + //CVPixelBuffer previousBuffer; public OpenGLRenderer oglRender; public CustomVideoCompositor (IntPtr handle) : base (handle) { renderingQueue = new DispatchQueue ("com.apple.aplcustomvideocompositor.renderingqueue"); renderContextQueue = new DispatchQueue ("com.apple.aplcustomvideocompositor.rendercontextqueue"); - previousBuffer = null; renderContextDidChange = false; } @@ -57,7 +56,6 @@ namespace AVCustomEdit { renderingQueue = new DispatchQueue ("com.apple.aplcustomvideocompositor.renderingqueue"); renderContextQueue = new DispatchQueue ("com.apple.aplcustomvideocompositor.rendercontextqueue"); - previousBuffer = null; renderContextDidChange = false; } diff --git a/AVCustomEdit/AVCustomEdit/Info.plist b/AVCustomEdit/AVCustomEdit/Info.plist index 20e39d9e..ce93f2aa 100644 --- a/AVCustomEdit/AVCustomEdit/Info.plist +++ b/AVCustomEdit/AVCustomEdit/Info.plist @@ -5,6 +5,7 @@ UISupportedInterfaceOrientations UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight UIMainStoryboardFile MainStoryboard @@ -35,5 +36,18 @@ Icon-Small@2x Icon-Small-50 + CFBundleDisplayName + AVCustomEdit + CFBundleIdentifier + com.xamarin.AVCustomEdit + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1.0 + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + diff --git a/AVCustomEdit/AVCustomEdit/TransitionTypeController.cs b/AVCustomEdit/AVCustomEdit/TransitionTypeController.cs index 517694d2..d4ffadcf 100644 --- a/AVCustomEdit/AVCustomEdit/TransitionTypeController.cs +++ b/AVCustomEdit/AVCustomEdit/TransitionTypeController.cs @@ -42,7 +42,7 @@ namespace AVCustomEdit { base.ViewDidLoad (); - this.tableView.Delegate = new TableViewDelegate (this); + this.tableView.Delegate = new TableViewDelegate (); } partial void TransitionSelected (Foundation.NSObject sender) @@ -78,13 +78,6 @@ namespace AVCustomEdit public class TableViewDelegate : UITableViewDelegate { - TransitionTypeController viewController; - - public TableViewDelegate(TransitionTypeController viewController) : base() - { - this.viewController = viewController; - } - public override void RowSelected (UITableView tableView, NSIndexPath indexPath) { diff --git a/AirLocate/AirLocate/ConfigurationViewController.designer.cs b/AirLocate/AirLocate/ConfigurationViewController.designer.cs index b843a0d3..405be006 100644 --- a/AirLocate/AirLocate/ConfigurationViewController.designer.cs +++ b/AirLocate/AirLocate/ConfigurationViewController.designer.cs @@ -1,11 +1,13 @@ // WARNING // -// This file has been generated automatically by Xamarin Studio to store outlets and -// actions made in the UI designer. If it is removed, they will be lost. -// Manual changes to this file may not be handled correctly. +// This file has been generated automatically by Xamarin Studio from the outlets and +// actions declared in your storyboard file. +// Manual changes to this file will not be maintained. // using Foundation; +using System; using System.CodeDom.Compiler; +using UIKit; namespace AirLocate { @@ -13,47 +15,43 @@ namespace AirLocate partial class ConfigurationViewController { [Outlet] - [GeneratedCodeAttribute ("iOS Designer", "1.0")] - UIKit.UISwitch enabledSwitch { get; set; } + [GeneratedCode ("iOS Designer", "1.0")] + UISwitch enabledSwitch { get; set; } [Outlet] - [GeneratedCodeAttribute ("iOS Designer", "1.0")] - UIKit.UITextField majorTextField { get; set; } + [GeneratedCode ("iOS Designer", "1.0")] + UITextField majorTextField { get; set; } [Outlet] - [GeneratedCodeAttribute ("iOS Designer", "1.0")] - UIKit.UITextField measuredPowerTextField { get; set; } + [GeneratedCode ("iOS Designer", "1.0")] + UITextField measuredPowerTextField { get; set; } [Outlet] - [GeneratedCodeAttribute ("iOS Designer", "1.0")] - UIKit.UITextField minorTextField { get; set; } + [GeneratedCode ("iOS Designer", "1.0")] + UITextField minorTextField { get; set; } [Outlet] - [GeneratedCodeAttribute ("iOS Designer", "1.0")] - UIKit.UITextField uuidTextField { get; set; } + [GeneratedCode ("iOS Designer", "1.0")] + UITextField uuidTextField { get; set; } void ReleaseDesignerOutlets () { - if (majorTextField != null) { - majorTextField.Dispose (); - majorTextField = null; - } - - if (minorTextField != null) { - minorTextField.Dispose (); - minorTextField = null; - } - - if (measuredPowerTextField != null) { - measuredPowerTextField.Dispose (); - measuredPowerTextField = null; - } - if (enabledSwitch != null) { enabledSwitch.Dispose (); enabledSwitch = null; } - + if (majorTextField != null) { + majorTextField.Dispose (); + majorTextField = null; + } + if (measuredPowerTextField != null) { + measuredPowerTextField.Dispose (); + measuredPowerTextField = null; + } + if (minorTextField != null) { + minorTextField.Dispose (); + minorTextField = null; + } if (uuidTextField != null) { uuidTextField.Dispose (); uuidTextField = null; diff --git a/AirLocate/AirLocate/MainStoryboard.storyboard b/AirLocate/AirLocate/MainStoryboard.storyboard index 14d6e9ad..883a0525 100644 --- a/AirLocate/AirLocate/MainStoryboard.storyboard +++ b/AirLocate/AirLocate/MainStoryboard.storyboard @@ -1,7 +1,7 @@ - + @@ -35,17 +35,17 @@ - + @@ -558,4 +558,12 @@ + + + + + + + + \ No newline at end of file diff --git a/AirLocate/AirLocate/MenuViewController.designer.cs b/AirLocate/AirLocate/MenuViewController.designer.cs index e143262b..4bf12c0b 100644 --- a/AirLocate/AirLocate/MenuViewController.designer.cs +++ b/AirLocate/AirLocate/MenuViewController.designer.cs @@ -1,18 +1,19 @@ // WARNING // -// This file has been generated automatically by Xamarin Studio to store outlets and -// actions made in the UI designer. If it is removed, they will be lost. -// Manual changes to this file may not be handled correctly. +// This file has been generated automatically by Xamarin Studio from the outlets and +// actions declared in your storyboard file. +// Manual changes to this file will not be maintained. // using Foundation; +using System; using System.CodeDom.Compiler; +using UIKit; namespace AirLocate { [Register ("MenuViewController")] partial class MenuViewController { - void ReleaseDesignerOutlets () { } diff --git a/AirLocate/AirLocate/MonitoringViewController.designer.cs b/AirLocate/AirLocate/MonitoringViewController.designer.cs index c20f82ad..e860947f 100644 --- a/AirLocate/AirLocate/MonitoringViewController.designer.cs +++ b/AirLocate/AirLocate/MonitoringViewController.designer.cs @@ -1,11 +1,13 @@ // WARNING // -// This file has been generated automatically by Xamarin Studio to store outlets and -// actions made in the UI designer. If it is removed, they will be lost. -// Manual changes to this file may not be handled correctly. +// This file has been generated automatically by Xamarin Studio from the outlets and +// actions declared in your storyboard file. +// Manual changes to this file will not be maintained. // using Foundation; +using System; using System.CodeDom.Compiler; +using UIKit; namespace AirLocate { @@ -13,32 +15,32 @@ namespace AirLocate partial class MonitoringViewController { [Outlet] - [GeneratedCodeAttribute ("iOS Designer", "1.0")] - UIKit.UISwitch enabledSwitch { get; set; } + [GeneratedCode ("iOS Designer", "1.0")] + UISwitch enabledSwitch { get; set; } [Outlet] - [GeneratedCodeAttribute ("iOS Designer", "1.0")] - UIKit.UITextField majorTextField { get; set; } + [GeneratedCode ("iOS Designer", "1.0")] + UITextField majorTextField { get; set; } [Outlet] - [GeneratedCodeAttribute ("iOS Designer", "1.0")] - UIKit.UITextField minorTextField { get; set; } + [GeneratedCode ("iOS Designer", "1.0")] + UITextField minorTextField { get; set; } [Outlet] - [GeneratedCodeAttribute ("iOS Designer", "1.0")] - UIKit.UISwitch notifyOnDisplaySwitch { get; set; } + [GeneratedCode ("iOS Designer", "1.0")] + UISwitch notifyOnDisplaySwitch { get; set; } [Outlet] - [GeneratedCodeAttribute ("iOS Designer", "1.0")] - UIKit.UISwitch notifyOnEntrySwitch { get; set; } + [GeneratedCode ("iOS Designer", "1.0")] + UISwitch notifyOnEntrySwitch { get; set; } [Outlet] - [GeneratedCodeAttribute ("iOS Designer", "1.0")] - UIKit.UISwitch notifyOnExitSwitch { get; set; } + [GeneratedCode ("iOS Designer", "1.0")] + UISwitch notifyOnExitSwitch { get; set; } [Outlet] - [GeneratedCodeAttribute ("iOS Designer", "1.0")] - UIKit.UITextField uuidTextField { get; set; } + [GeneratedCode ("iOS Designer", "1.0")] + UITextField uuidTextField { get; set; } void ReleaseDesignerOutlets () { @@ -46,36 +48,30 @@ namespace AirLocate enabledSwitch.Dispose (); enabledSwitch = null; } - - if (uuidTextField != null) { - uuidTextField.Dispose (); - uuidTextField = null; - } - if (majorTextField != null) { majorTextField.Dispose (); majorTextField = null; } - if (minorTextField != null) { minorTextField.Dispose (); minorTextField = null; } - - if (notifyOnEntrySwitch != null) { - notifyOnEntrySwitch.Dispose (); - notifyOnEntrySwitch = null; - } - - if (notifyOnExitSwitch != null) { - notifyOnExitSwitch.Dispose (); - notifyOnExitSwitch = null; - } - if (notifyOnDisplaySwitch != null) { notifyOnDisplaySwitch.Dispose (); notifyOnDisplaySwitch = null; } + if (notifyOnEntrySwitch != null) { + notifyOnEntrySwitch.Dispose (); + notifyOnEntrySwitch = null; + } + if (notifyOnExitSwitch != null) { + notifyOnExitSwitch.Dispose (); + notifyOnExitSwitch = null; + } + if (uuidTextField != null) { + uuidTextField.Dispose (); + uuidTextField = null; + } } } } diff --git a/AirLocate/AirLocate/RangingViewController.designer.cs b/AirLocate/AirLocate/RangingViewController.designer.cs index 1b1111c3..2991dfe4 100644 --- a/AirLocate/AirLocate/RangingViewController.designer.cs +++ b/AirLocate/AirLocate/RangingViewController.designer.cs @@ -1,18 +1,19 @@ // WARNING // -// This file has been generated automatically by Xamarin Studio to store outlets and -// actions made in the UI designer. If it is removed, they will be lost. -// Manual changes to this file may not be handled correctly. +// This file has been generated automatically by Xamarin Studio from the outlets and +// actions declared in your storyboard file. +// Manual changes to this file will not be maintained. // using Foundation; +using System; using System.CodeDom.Compiler; +using UIKit; namespace AirLocate { [Register ("RangingViewController")] partial class RangingViewController { - void ReleaseDesignerOutlets () { } diff --git a/AppPrefs/AppPrefs.csproj b/AppPrefs/AppPrefs.csproj index 302c3ba9..dc7dce43 100644 --- a/AppPrefs/AppPrefs.csproj +++ b/AppPrefs/AppPrefs.csproj @@ -3,7 +3,7 @@ Debug iPhoneSimulator - 10.0.0 + 8.0.30703 2.0 {FBCE3A88-42CC-481E-8190-1DD5154C646D} {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} diff --git a/AppPrefs/MainStoryboard.storyboard b/AppPrefs/MainStoryboard.storyboard index 61e05fb9..8d8e8988 100644 --- a/AppPrefs/MainStoryboard.storyboard +++ b/AppPrefs/MainStoryboard.storyboard @@ -13,16 +13,16 @@ - + - + - + @@ -30,7 +30,7 @@ - + @@ -53,6 +53,7 @@ + @@ -62,7 +63,7 @@ - + @@ -77,14 +78,14 @@ -