Skip to content

Commit 34c040d

Browse files
committed
Mission Planner 1.3.68
1 parent ed2bad4 commit 34c040d

File tree

21 files changed

+128
-497
lines changed

21 files changed

+128
-497
lines changed

ChangeLog.txt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
*Mission Planner 1.3.67 - 11-6-2019
1+
*Mission Planner 1.3.68 - 15-6-2019
2+
ConfigFirmware: fix copter fw upload
3+
Drivers: add nxp
4+
LogBrowse: add ironpython graph processing with fallback
5+
LogBrowse: add more mavgraphs and parser
6+
mavcmd: add do_gripper for rover #2157
7+
7zip: add
8+
httpserver: fix mavlink
9+
10+
*Mission Planner 1.3.67 - 11-6-2019
211
ThemeManager: more html
312
ConfigMotorTest: allow negative % #1911
413
FlightData: fix units on QV and speedup prompt
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.michaeloborne.Xamarin" android:installLocation="auto">
3-
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="25" />
3+
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="27" />
44
<application android:label="Xamarin.Android"></application>
55
</manifest>

ExtLibs/Xamarin/Xamarin/Controls/MySKGLView.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,10 +323,13 @@ private void MySKGLView_SizeChanged(object sender, EventArgs e)
323323
{
324324
try
325325
{
326-
OnSizeChanged(null);
326+
if (GRContext == null)
327+
return;
327328

328329
if (CanvasSize != null)
329330
OnResize(null);
331+
332+
OnSizeChanged(null);
330333
}
331334
catch (Exception ex)
332335
{
File renamed without changes.

ExtLibs/Xamarin/Xamarin/MainPage.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<MasterDetailPage.Detail>
1010
<NavigationPage>
1111
<x:Arguments>
12-
<pages:MasterDetailPage1Detail />
12+
<pages:MainPage_old />
1313
</x:Arguments>
1414
</NavigationPage>
1515
</MasterDetailPage.Detail>

ExtLibs/Xamarin/Xamarin/MasterDetailPage1Master.xaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Title="Master">
66
<StackLayout>
77
<ListView x:Name="MenuItemsListView"
8-
SeparatorVisibility="None"
8+
SeparatorVisibility="Default"
99
HasUnevenRows="true"
1010
ItemsSource="{Binding MenuItems}">
1111
<ListView.Header>
@@ -16,22 +16,23 @@
1616
<ColumnDefinition Width="10"/>
1717
</Grid.ColumnDefinitions>
1818
<Grid.RowDefinitions>
19+
<RowDefinition Height="0"/>
1920
<RowDefinition Height="30"/>
20-
<RowDefinition Height="80"/>
2121
<RowDefinition Height="Auto"/>
2222
<RowDefinition Height="10"/>
2323
</Grid.RowDefinitions>
2424
<Label
2525
Grid.Column="1"
2626
Grid.Row="2"
2727
Text="Mission Planner"
28+
FontSize="24"
2829
Style="{DynamicResource SubtitleStyle}"/>
2930
</Grid>
3031
</ListView.Header>
3132
<ListView.ItemTemplate>
3233
<DataTemplate>
3334
<ViewCell>
34-
<StackLayout Padding="15,10" HorizontalOptions="FillAndExpand">
35+
<StackLayout Padding="10,5" HorizontalOptions="FillAndExpand">
3536
<Label VerticalOptions="FillAndExpand"
3637
VerticalTextAlignment="Center"
3738
Text="{Binding Title}"

ExtLibs/Xamarin/Xamarin/Xamarin.csproj

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,9 @@
3939
</ItemGroup>
4040

4141
<ItemGroup>
42-
<Compile Update="Controls\AGauge.cs">
43-
<SubType>UserControl</SubType>
44-
</Compile>
45-
<Compile Update="GMap.NET.WindowsForms\GMapControl.cs">
46-
<SubType>UserControl</SubType>
47-
</Compile>
48-
<Compile Update="Controls\HUD.cs">
49-
<SubType>UserControl</SubType>
50-
</Compile>
42+
<Compile Update="Controls\AGauge.cs" />
43+
<Compile Update="GMap.NET.WindowsForms\GMapControl.cs" />
44+
<Compile Update="Controls\HUD.cs" />
5145
<Compile Update="Controls\HUDT.Designer.cs">
5246
<DesignTime>True</DesignTime>
5347
<AutoGen>True</AutoGen>
@@ -59,9 +53,7 @@
5953
<Compile Update="MainPage.xaml.cs">
6054
<DependentUpon>MainPage</DependentUpon>
6155
</Compile>
62-
<Compile Update="MasterDetailPage1MenuItem.cs">
63-
<SubType>Code</SubType>
64-
</Compile>
56+
<Compile Update="MasterDetailPage1MenuItem.cs" />
6557
<Compile Update="Properties\Resources.Designer.cs">
6658
<DesignTime>True</DesignTime>
6759
<AutoGen>True</AutoGen>

0 commit comments

Comments
 (0)