Skip to content

Commit

Permalink
Mission Planner 1.3.68
Browse files Browse the repository at this point in the history
  • Loading branch information
meee1 committed Jun 15, 2019
1 parent ed2bad4 commit 34c040d
Show file tree
Hide file tree
Showing 21 changed files with 128 additions and 497 deletions.
11 changes: 10 additions & 1 deletion ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
*Mission Planner 1.3.67 - 11-6-2019
*Mission Planner 1.3.68 - 15-6-2019
ConfigFirmware: fix copter fw upload
Drivers: add nxp
LogBrowse: add ironpython graph processing with fallback
LogBrowse: add more mavgraphs and parser
mavcmd: add do_gripper for rover #2157
7zip: add
httpserver: fix mavlink

*Mission Planner 1.3.67 - 11-6-2019
ThemeManager: more html
ConfigMotorTest: allow negative % #1911
FlightData: fix units on QV and speedup prompt
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.michaeloborne.Xamarin" android:installLocation="auto">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="25" />
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="27" />
<application android:label="Xamarin.Android"></application>
</manifest>
5 changes: 4 additions & 1 deletion ExtLibs/Xamarin/Xamarin/Controls/MySKGLView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -323,10 +323,13 @@ private void MySKGLView_SizeChanged(object sender, EventArgs e)
{
try
{
OnSizeChanged(null);
if (GRContext == null)
return;

if (CanvasSize != null)
OnResize(null);

OnSizeChanged(null);
}
catch (Exception ex)
{
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion ExtLibs/Xamarin/Xamarin/MainPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<MasterDetailPage.Detail>
<NavigationPage>
<x:Arguments>
<pages:MasterDetailPage1Detail />
<pages:MainPage_old />
</x:Arguments>
</NavigationPage>
</MasterDetailPage.Detail>
Expand Down
7 changes: 4 additions & 3 deletions ExtLibs/Xamarin/Xamarin/MasterDetailPage1Master.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Title="Master">
<StackLayout>
<ListView x:Name="MenuItemsListView"
SeparatorVisibility="None"
SeparatorVisibility="Default"
HasUnevenRows="true"
ItemsSource="{Binding MenuItems}">
<ListView.Header>
Expand All @@ -16,22 +16,23 @@
<ColumnDefinition Width="10"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="0"/>
<RowDefinition Height="30"/>
<RowDefinition Height="80"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="10"/>
</Grid.RowDefinitions>
<Label
Grid.Column="1"
Grid.Row="2"
Text="Mission Planner"
FontSize="24"
Style="{DynamicResource SubtitleStyle}"/>
</Grid>
</ListView.Header>
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout Padding="15,10" HorizontalOptions="FillAndExpand">
<StackLayout Padding="10,5" HorizontalOptions="FillAndExpand">
<Label VerticalOptions="FillAndExpand"
VerticalTextAlignment="Center"
Text="{Binding Title}"
Expand Down
16 changes: 4 additions & 12 deletions ExtLibs/Xamarin/Xamarin/Xamarin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,9 @@
</ItemGroup>

<ItemGroup>
<Compile Update="Controls\AGauge.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="GMap.NET.WindowsForms\GMapControl.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Controls\HUD.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="Controls\AGauge.cs" />
<Compile Update="GMap.NET.WindowsForms\GMapControl.cs" />
<Compile Update="Controls\HUD.cs" />
<Compile Update="Controls\HUDT.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
Expand All @@ -59,9 +53,7 @@
<Compile Update="MainPage.xaml.cs">
<DependentUpon>MainPage</DependentUpon>
</Compile>
<Compile Update="MasterDetailPage1MenuItem.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="MasterDetailPage1MenuItem.cs" />
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
Expand Down
Loading

0 comments on commit 34c040d

Please sign in to comment.