Skip to content

Commit

Permalink
Mission Planner 1.2.89
Browse files Browse the repository at this point in the history
fix kml/gpx creation
log browser mod
df log renaming based on gps time
fix fw history
add time from DF logs
rework logbrowse internals
rework log downloader
fix logic error in wizard connect
update 3drradio config
regen mavlink headers
add lock to aviwritter
move heli setup screen
modify ac upload fw message
  • Loading branch information
meee1 committed Dec 14, 2013
1 parent 903f03a commit 2e6989c
Show file tree
Hide file tree
Showing 75 changed files with 17,026 additions and 3,722 deletions.
3 changes: 2 additions & 1 deletion 3DRRadio/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
1.2 - fix file already exists error
1.3 - add new max_window, mavlink framing types
1.2 - fix file already exists error
1.1 - add custom fw upload & change stable fw download urls
1.02 - fix frequency display and add device id
1.0a - fix 868 freq range
Expand Down
6 changes: 3 additions & 3 deletions 3DRRadio/Config.resx
Original file line number Diff line number Diff line change
Expand Up @@ -405,13 +405,13 @@
<value>RSSI</value>
</data>
<data name="helpToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>152, 22</value>
<value>140, 22</value>
</data>
<data name="helpToolStripMenuItem.Text" xml:space="preserve">
<value>Help</value>
</data>
<data name="projectPageToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>152, 22</value>
<value>140, 22</value>
</data>
<data name="projectPageToolStripMenuItem.Text" xml:space="preserve">
<value>Project Page</value>
Expand Down Expand Up @@ -1591,7 +1591,7 @@
</value>
</data>
<data name="$this.Text" xml:space="preserve">
<value>3DRRadio Config 1.2 - by Michael Oborne</value>
<value>3DRRadio Config 1.3 - by Michael Oborne</value>
</data>
<data name="&gt;&gt;settingsToolStripMenuItem.Name" xml:space="preserve">
<value>settingsToolStripMenuItem</value>
Expand Down
17 changes: 16 additions & 1 deletion ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
* Mission Planner 1.2.88
* Mission Planner 1.2.89
fix kml/gpx creation
log browser mod
df log renaming based on gps time
fix fw history
add time from DF logs
rework logbrowse internals
rework log downloader
fix logic error in wizard connect
update 3drradio config
regen mavlink headers
add lock to aviwritter
move heli setup screen
modify ac upload fw message

* Mission Planner 1.2.88
add movingbase display - using nmea gps
tweak wizard connect
update sr3 to include sr1
Expand Down
3 changes: 3 additions & 0 deletions Common.cs
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,9 @@ public static bool getFilefromNet(string url,string saveto) {

byte[] buf1 = new byte[1024];

if (!Directory.Exists(Path.GetDirectoryName(saveto)))
Directory.CreateDirectory(Path.GetDirectoryName(saveto));

FileStream fs = new FileStream(saveto + ".new", FileMode.Create);

DateTime dt = DateTime.Now;
Expand Down
25 changes: 16 additions & 9 deletions ExtLibs/Controls/ProgressReporterDialogue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,16 @@ private void RunBackgroundOperation(object o)

log.Info("Focus ctl");

this.Invoke((MethodInvoker)delegate
{
// if this windows isnt the current active windows, popups inherit the wrong parent.
this.Focus();
Application.DoEvents();
});
try
{
this.Invoke((MethodInvoker)delegate
{
// if this windows isnt the current active windows, popups inherit the wrong parent.
this.Focus();
Application.DoEvents();
});
}
catch { Running = false; return; }

try
{
Expand Down Expand Up @@ -163,17 +167,20 @@ private void ShowDoneCancelled()
// - Signal that we can close
private void ShowDone()
{
this.Invoke((MethodInvoker) delegate
if (!this.IsHandleCreated)
return;

this.Invoke((MethodInvoker)delegate
{
this.progressBar1.Style = ProgressBarStyle.Continuous;
this.progressBar1.Value = 100;
this.btnCancel.Visible = false;
this.btnClose.Visible = false;
});

Thread.Sleep(1000);

this.BeginInvoke((MethodInvoker) this.Close);
this.BeginInvoke((MethodInvoker)this.Close);
}

// Called as a possible last operation of the bg thread
Expand Down
7 changes: 5 additions & 2 deletions ExtLibs/Grid/GridUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ void loadsettings()
{
if (plugin.Host.config.ContainsKey("grid_camera"))
{
loadsetting("grid_camera", CMB_camera);

loadsetting("grid_alt", NUM_altitude);
loadsetting("grid_angle", NUM_angle);
loadsetting("grid_camdir", CHK_camdirection);
Expand All @@ -83,7 +83,10 @@ void loadsettings()
loadsetting("grid_sidelap", num_sidelap);
loadsetting("grid_spacing", NUM_spacing);

loadsetting("grid_advanced", CHK_advanced);
loadsetting("grid_advanced", CHK_advanced);

// camera last to it invokes a reload
loadsetting("grid_camera", CMB_camera);
}
}

Expand Down
Loading

0 comments on commit 2e6989c

Please sign in to comment.