-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog.txt
2944 lines (2767 loc) · 95.2 KB
/
ChangeLog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
* Mission Planner 1.3.38 - 19-5-2016
GridUI: support kml overlay and autozoom to overlay
AP_GPS: rename internals
BackStageView: fix exception handleing in Deactivate
MAVLinkInterface: make signing per mav
ConfigHWPX4Flow: add px4flow focus calibration
AP_GPS_NOVA: testing and AP_GPS updates
ConfigArduCopter: update FILT and IMAX scale #1250
app.config: update param metadata urls #1250
MavlinkNumericUpDown: use parameter based increment value
MAVLinkInterface: always print/anounce tuning
Added QRTL mode for plane
FlightPlanner: fix posible bad wp upload #1248
MavlinkLog: fix wp index on tlog wp extraction
OpticalFlow: add calibration mode support and display
SerialInjectGPS: add m8p config string
MAVLinkInterface: support bps for logplayback
CommsTCPSerial: fix exception on non connected client
Sikradio: add new rfd900+ AES key display
AP_GPS_GSOF: add event handling
MavlinkUtil: calc array length for all data types
CommTCPSerial: fix recursive get
Wix: whitespace change
Wix: update msi installer
Updater: add file exclude
MAVLinkParamList: make more threadsafe
CurrentState: update descriptions
MAVLinkInterface: verify source system on getparam
MavlinkLog: select mav for param extraction
MAVLinkInterface: check for invalid param index
FlightPlanner: use default alt for terrain points #1239
srtm: add dl exclusions
ADSB: add Time to PLLAH
ConfigRadioInput: support 16 channels
MAVLinkInterface: fix sendpacket type id
MAVLinkInterface: show error vs unexpected error
srtm: add 0 size file check
temp: add support for custom signing key
GeoRef: add sonar alt #1126
LogOutput: add wp file creation from log #1234
GeoRef: sort files by exif time #1235
MAVLinkInterface: fix null exception #1233
MavlinkParser: cleanup
FlightData: fix mount mode button
MAVLink: add back mavlink.cs
MAVLink2 signing working
MAVLink2 refactoring
GMapMarkerAirport: increase base nofly size to 9km
httpserver: access packet history via getPacket
Multiple: refactoring mavlink
Multiple: factor out mavlinkmessage
MAVLink: update
MAVLink: generator update 24bit msgid
ConfigArducopter: update param names #1228
FlightData: add on/off for overlap count
GMapMarkerOverlapCount: improve performance.
georefimage: error message mods
CommsNTRIP: add example
FlightData: Use new overlay marker for photo coverage
GridUI: use new overlay marker type for footprints
GMapMarkerOverlayCount: add new marker type
GMapMarkerPhoto: update photo icon size
temp: add older param metadata
Loading: additional disposed check
LogIndex: multithread speedup
Loading: fix cross thread calls
GMapMarkerPhoto: make footprint public
MAVList: fix posible exception
mavgen: update import #1226
Speech: add word substitutes
MAVLinkInterface: add compid to missed packet message
OSDVideo: fix exceptions
MAVLinkInterface: improve unknown sysid/compid action
tlogThumbnailHandler: fix directory create
GridUI: add griddata to all grid commands
temp: scan for all valid file types in log map creation
Speech: word replacement
MavlinkLog: add broader file mask
GMapRoute: change arrow draw frequency
MainV2: prevent px4v2 serial readout #1222
MainV2: add extra exception reporting
fftui: add bin support
CollectionBuffer: implement stream like functions
Loading: add missing file
LogBrowse: add loading dialogs
MainV2: add MP log review from cmd line
GridPlugin: use version
MainV2: prompt about new fw on any version increment
FlightPlanner: always show alt mode when not connected.
GridUI: add cross grid
FlightData: add tlog playback shortcuts (space/+/-) #502
FlightData: fix CAM_MIN_INTERVAL scale and rounding #1216
FlightData: rebind datasource on activate #1155
GmapRoute: fix custom line issue with long lines #1219
MAVLinkInterface: fix playback pause reset #1218
LogStrings: add missing file
LogIndex: fix seek
Fix null reference in MainV2 form.
Dispose SerialPort Streams properly.
Fix bugs in LogDownloadMavLink dialog.
MAVLink: upgrade generator
ModifyandSet: min and maxs fix
FlightData: fix issue with negative loiter radius
GridUI: save fov anagles
CurrentState: add timesincelastshot to status
GMapMarkerPhoto: add min_interval check
GridUI: fix bugs #1214
GMapMarkerPhoto: add photo number (mouse over)
FlightData: add camera_feedback to map and footprints
GMapMarkerPhoto: add new marker
MAVLinkInterface: add CAMERA_FEEDBACK history
myGMAP: add invalidation check to mouse movement
HUD: fix hud rocking when using russian hud
MAVLinkInterface: store camera_feedback messages
FlightData: fix loiter rad scaling #932
FlightData: add set loiter rad #932
SimpleExample: update
Joystick: fix custom1/2 scale bug
Exception checks
Wix: update for new server
camerasBuiltin: add camera
FlightData: tweak graph this height
ImageProjection: fix rotations
Matrix3: update names
CurrentState: add Location
FlightData: accept just lat/long in point camera here coords
Script: remove statics
MyUserControl: add exception logging
FlightData: add point camera coords
POI: add load
FlightData: default point camera here alt to ground alt #1200
GridUI: change default placeholder text number
Rename Solution File
PluginLoader: fix plugin cultures
ImageProjection: remove debug
FlightPlanner: add handle checks
HUD: fix drawimage implementation
Help: add exception check around update checks
ConfigHWCompass: add param check
Exception Fix's
GridUI: use image projection for footprints
ImageProjection: add new calc library
GMapRoute: enable custom line type
FlightData: fix quickview initial scale
GridUI: fix footprint angle calc
GridUI: use home alt and terrain alt when calcing photo footprints
Matrix3: update lib
MainV2: improve startup time
L10N: prevent exception
MyImageCache: implement removal date
LogBrowse: fix map zoom after draw
PluginLoader: fix load method
ConfigFlightModes: change to use predefined lists
PluginLoader: plugin culture/path fix
MAVLinkInterface: fix type from pull request
POI: update poi moves
Log: reject large spikes in log files
Use Assembly.LoadFrom when loading plugins
ADSB: fixed heading for new XML
MAVLinkParam: fix compile
ConfigHWESP8266: add simple config
MAVLinkInterface: support udp bridge component
MAVParam: expose raw data
BackstageView: change docking and fix designer mode
CollectionBuffer: Improve message index detection.
DroneShare: Remove
GeoRefImage: option out relalt #1193
FlightData: make icon more generic
HUD: fix default ekf and vibe state #1188
FlightData: turn on ekf and vibe #1188
* Mission Planner 1.3.37 - 14-3-2016
FlightData: actions customisation add default init
Common: rearrange code
FlightData: maintain taborder from config file
FlightData: add ability to customize actions tab display
ConfigRawParam: speedup draw
Script: add example 7 (wp load in FP)
ParamMetaData: fix parser readover
TerrainFollow: fix interface unsubscribe
MissionPlanner: to .net 4.5 (XP will stop working)
Update: add async md5
ParamMetaData: fix backup, nested groups
LogOutput: filter bad gps data
FlightData: change .bin to kml to be direct from .bin files
LogOutput: cleanup old log formats
CollectionBuffer: reduce memory usage
BinaryLog: improve performance
KMLib Coordinates: improve performance
FlightData: fix crossthread call, joystick related #1172
FlightData: fix verify height alt on move #1183
Icons: trial new icon
GridUI: fix split mission #1182
GStreamer: autostart gstreamer client
vlcrender: prevent crash on close
FlightData: add right click start camera option #1180
GridUI: fix cam_trig_dist if breakup starts was off #1181
HttpServer: update
GridV2: resource files
Common: add QLand
GridV2: use new icons
ParameterMetaData: expand support
Common: add quadplane flight modes #1169
MavlinkCheckBoxBitmask: fix height calculation #1173
Warning Engine: name thread
GridUI: update on overlap values change #1171
FlightPlanner: add group delete
mavlink: update common.xml
MAVLinkInterface: update getwp to use capabilities mask
FlightPlanner: use capability based on version message
CurrentState: add capabilities
LogBrowse: modify bad data range
FirmwareHistory: update urls
Build: Fix the build by adding missing parenthesis around print.
* Mission Planner 1.3.36 - 5-3-2016
GridUI: add elevation range
GMapControl: update scale color
GMapControl: update scalebar to use transform
CommsNTRIP: support @ in username
ParameterMetaData: update backup
Flightplanner: fix posible int issue
Help: fix text colour
Add Korean translation
mavgraphs: update from upstream
FirmwareHistory: update
add px4 identification
FlightPlanner: fix wp timeout upload for non int
Update for new domain name firmware.ardupilot.org
L10N: add logging to url modifications
Update: update strings
L10N: fix mirror check, add mirror replacement for update check
L10N: update zh-Hans translation
FlightPlanner: fix wp upload order
mavcmd: add heading exit request
FlightPlanner: tweak wp uploader
FlightData: add another wp count parser
LogSort: fix bugs
GStreamer: initial commit
MAVLinkInterface: add getHomePosition
CurrentState: fix bitmask creation
Settings: fix log directory
GridUI: change min alt to 1m
GMaps: update versions
GridUI: improve mission splitting
FlightPlanner: return row number on add
FlightPlanner: Support mission_item_int uploading
MAVLinkInterface: support sending mission_item_int
MAVLinkInterface: add mavlink_mission_item_int_t
LocationWP: add mavlink_mission_item_int_t support
FlightData: add disable joystick button
CurrentState: prevent +/- flipping
GMapMarkerWP: update point numbers
ProgressReporterSphere: remove config
GMap.net.core: add missing file
use IsReady to avoid requiring speech to be referenced everywhere
these changes found to reduce the x11 errors
fix log analyzer startup path
improve HUD failure message
remove non-existent files from projects
swap to new sqllite library
Mono/Linux case and build fixes
ThemeManager: fix richtext
CurrentState: add saftey switch status
Formation: add leader and dynamic speed changes for plane
utmpos: improve performance
Common: update GMapMarkerPlane to use specified radius
JSBSim update fix control socket issues
JSBSim: update
FlightData: fix disarm dialog logic #1156
MAVLinkInterface: log handle exception check
Swarm: update takeoff command
MainV2: ensure mavchange event occurs
Connection: Display/speed tweaks
ThemeManager: fix help rtf
ConnectionControl: fix sysid display
LogBrowse: abandon data > 3.15e20
MainV2: prevent exception
ConnectionControl: update display value
Formation: updates
Comms: update portnames
MAVLinkInterface: add mission_int receiving
ConnectionControl: improve multiple connection support
MainV2: handle theme error
FlightPlanner: support kml placemarks loaded as poi's #909
FlightData: display tweak
GridUI: fix DO_DIGICAM_CONTROL
Settings: change default back to null
L10N: fix mistakes in zh-Hans, add mirror available check, update zh-Hans help text
Create Settings class to wrap and manage application settings.
Add progress feedback during firmware upload.
ConfigHWCompass: add primary compass note #1141
CurrentState: add rev throttle status #1146
MAVLinkCheckBoxBitMask: handle types #1145
MAVLinkInterface: fix possible null exception
Help: update help text
BoardDetect: remove apvar decoding
Strings: fix spacing
MAVLinkinterface: fix lost packet count #1124
SITL: fix issue #1138
mavlink: generate mavlink on every build - do not store output
SoftwareConfig: update to use backstageview types
ConfigFriendlyParams: seperate advanced view
BackstageView: modify to use types
ConfigRawParam: change search to regex
Wizard: accellcalib renable start button on complete
HUD: rename params and enable
FlightPlanner: datagrid view speed improve
Common: only calc text size if needed
FlightPlanner: performance improvement
BinaryLog: identify AntennaTracker logs #1133
Grid: fix do_digicamcontrol #1135
ConfigFirmware: modify firmware detection.
FlightData: improve overlay draw
GmapControl: performance tweaks
Common: performance
Grid: Improve Performance
MainV2: add reload check on fw upload
mavcmd: add vtol_transition
Grid: resolve cam_trig_dist early start when leadin was used. #1129
ConfigRawParam: add sticky column widths
ConfigFirmware: update motor setup url #1128
Quickview: force invalidate on format change
mavcmd: add plane vtol commands
hud: add ability to turn of ekf/vibe
FlightData: add ctl-1-9 to switch tabs #1122
* Mission Planner 1.3.35 - 4-2-2016
* GeoRef: add gps2 support
* Add translation: indonesian
* Ardupilot loader cleanup
* SikRadio: Code Cleanup
* Rename Solution
* MainV2: prevent cross thread call
* Firmware: change http timeout
* PX4Uploader: update bootloader support levels
* Firmware: fix px4v4 upload
* GCSViews: add abort land button for Plane
* Mavlink: add abort landing method
* Add angle (degrees) column in flight planner mission chart
* temp: vlc exception handle
* SITL: handle no home point
* MainSwitcher: update to accept Type
* ConfigMotorTest: add error message on command timeout
* Program: add opengl exception message
* ConfigMount: add param check
* ConfigHWCompass: add param check
* MavLinkParamList: make threadsafe
* Rename Sik Radio
* ConfigESCCalibration: hide screen
* InitialSetup: relabel radio from 3DR to Sik
* MissionPlanner: change project to preserve newest
* MainV2: reload on mav change.
* MissionPlanner: Copy files only if newer
* Only copy resources if newer
* Reduce memory allocation and speed up HUD drawing
* Avoid allocations by using EventArgs.Empty
* HUD: Fix grey diagonal line rendering artifact when playing video
* HUD: Reuse the texture on every draw call
* HUD: Use a TriangleStrip instead of a Quad
* Firmware: initial add for px4v4
* Disable joystick functionality when joystick is not plugged in
* Check for npot texture support
* vlcrender: Use the default stream width/height but allow overrides
* Hud: Reduce CPU usage and use the original background image
* MapBox: map update
* LogSort: favour non antenna tracker first
* MatLab: update param table, better handle bad data
* Coords: improve performance
* ConfigHWRangeFinder: add TeraRanger One support
* MainV2: remove alm download
* QuickView: improve performance
* DFLog: fix bad data exception #1103
* FlightData: Add the ability to swap the map and HUD
* Make URLs clickable in param description
* Simulation: tidyup
* Initialize theme colors to match the default theme 'BurntKermit'
* Generic: warning updates
* ConfigTradHeli: updates #1072
* MavlinkInterface: fix stream type #1094
* FlightPlanner: use verify height when inserting loiter_unlimited command #1095
* mavcmd: update to add do_parachute #1096
* CurrentState: change voltage smoothing
* LogDownloadMavlink: switch to file backed io, instead of memory (prevent out of memory errors)
* DistanceBar: remove transparency
* FlightData: make tuning graph visible by default
* Firmware: remove double board type prompt
* FlightPlanner: prevent home set loop
* FlightData: resize controls
* Generic: fix warnings
* FlightData: add trigger camera now to actions
* CheckListControl: add visibility check for timer
* FlightData: make PREFLIGHT_REBOOT_SHUTDOWN work.
* BoardDetect: add support for new usb pid
* ZedGraph: handle bad line input data
* CommsSerialPort: trace "element not found" with bluetooth devices
* ConfigHWBT: add further error message
* Mission Planner 1.3.34 - 24-12-2015
temp: make gps passthrough static
LogBrowse: add full path to xml
add null exception checks
drivers: fix eol
fitCurve: add
CurrentState: add servo_output port checking #1090
Translation es-ES
VRBRAIN: change description of some USB drivers and added missing drivers
VRBRAIN: added firmware management for new board VR Brain Core 1.0 and deleted unnecessary boards
VRBRAIN: added detection for new board VR Brain Core 1.0 and deleted unnecessary boards
add camera Sony Alpha NEX-7
mavcmd: remove engine cut off reference #1070
GridUI: add missing field to save/load #1071
FlightPlanner: make fields public #1074
Joystick: update buttonaxis min range #1080
MAVLinkParam: add explicit double conversion #1085
BinaryLog: add more detection rules #1089
vlcrender: add custom url support
MAVLink: upstream update
CollectionBuffer: fix null exception #1075
vlc intergration
LibVLC.Net
ElevationProfile: fix null exception #1084
Tracking: add exception fix
FlightData: check zoom level on startup
ElevationGraph: add null check #1084
FlightData: fix conversion exception
ADSB: accept from and sysid/compid
CurrentState: add adsb
MAVLink: update
MagCalib: fix compass 3 calib
ConfigBattery: update for mono exit
ConfigTradHeli: update buttons
ConfigTradHeli: update
* Mission Planner 1.3.33 - 8-12-2015
ThemeManager: fix tree view under high contrast
LogBrowse: handle currupt log better
SBP: add inject gps sbp detection
MAVLinkParam: implement all casts
FirmwareHistory: update
CheckList: add to flightdata view
SimpleExample: request datastreams
FlightPlanner: fix dragging group bug, and speed improvement
MAVList: fix 3dr radio case
px4uploader: remove otp check
SimpleExample: update
MAVList: update 3dr radio special case
GMapMarker: Make Position virtual
Georefimage: calc average offset #1057
FlightPlanner: use units for wp circle #1068
ConfigPlanner: add method to get to testing screen.
Allow a plugin to insert waypoints anywhere in the list
Autosized an input box vertically instead of horizontally.
Display layer title in the WMS input box instead of layer name.
Modified GetCapabilities URL to work even if the wms server URL includes query strings.
MAVLinkInterface: keep track of wps read from mav #1062
FlightPlanner: add text autowp
MAVlinkInterface: change getwp timeout to 3500 ms
MAVLinkInterface: update mav severity info
MAVLinkinterface: increase log timeouts and retrys #1061
LogDownloadMavlink: fix posible bad time exception #1061
FlightPlanner: fix load and append file types
FlightPlanner: revert/tidy wp file format #1050
Preflight control
GeoRef: cleanup and exception check
InjectGPS: add rtcm indicator
CommsUDPSerialConnect: fix udp circle buffer issue
MainV2: fix posible null exception
FlightData: log MavChanged events
FlightPlanner: fix prefetch max zoom level #1054
Plugin: expose map control to plugins #1056
MAVLink: update from upstream
FlightData: Set preflight to not visible
ConfigMotorTest: update url
Switch over to using .waypoints for mission lists.
FlightData: fix language on button
LogBrowse: fix remove from graph
CommsUdpSerial: fix circle buffer #1049
FlightData: reverse message list #1046
Common: change ms to meters_per_second
RangeFinder: rename from sonar
LogBrowse: do full name check on add/remove #1025
Bug fix out of range in GetGPSFromRow when dbl-click far right on the graph
Bug fix out of range when looking for position in GetGPSFromRow
FlightPlanner: adjust alt when WP move... #736
Kindex: fix could be reset after have got #750
L10N: update zh-Hans translation
ConnectionControl: make sysid dropdown wider.
MainSwitcher: add 2nd retry, and soft fail
Grid: add ability to start/stop cam trig dist
srtm: increase tile download zoom level
ConnectionControl: add sysid selection
GridUI: fix do_digicam_control from grid
LogAnalyzer: update
LogIndex: add some more fields #1039
LogIndex: make less verbose during read
FlightPlanner: accept floats in wp_rad #1037
CollectionBuffer: fix type scope max # 1040
DFLog: add missing events #1031
Currentstate: add rpm #1038
ConfigArduCopter: IMAX Scaling #1034
Firmware: remove OTP check
Show position on the map when clicking on the graph.
ConfigRawParams: fix compile issue
ConfigHWCompass: fix buttons
New compass UI
ConfigRawParams: add search box
temp: add QNH setting (use with caution)
FlightPlanner: allow terrain type for AC 3.4+ #1022
Common: add timeinair to speech options
Gmaps: map url update
ConfigMount: restore trigg_type on load #1017
ConfigRawParams: add incremental search/search on type #1020
CommsSerialPort: add back abortonerror dcb
Tab order on Extended Tuning
LogBrowser : added min, max and mean to graph legend
LogBrowse: add right axis support from mavgraphs.xml
mavgraphs: add ekfgraphs.xml
LogBrowse: add simple mavgraphs.xml support
LogDownloadMavlink: add debug loginfo
Terminal: prevent outofrange in terminal
ConfigRawParams: add are you sure to write dialogs.
FlightData: add exception check to takeoff command
GMapControl: add exception check to graphicspath
FlightData: add exception check to set home
ElevationGraph: remove roi points from path.
MagCalib: add 3rd compass
FlightData: support param rename #981
LogOutput: fix globalization issue on .obs
MavlinkInterface: make hud text less verbose
ConfigHWCompass: add fitness values for onboard mag cal
GridUI: add simple wpno based split
FlightData: modify resume mission to work for plane
georefimage: fix relalt, credit to #jmachuca77
GimbalPoint: formatting
Program: add typeloadexception handle
SerialInjectGPS: fix requirement for baud on network protocols
SITL: add error handling
GMapControl: prevent exception on list change
GMaps: update g versions
CurrentState: set default telemrates
FlightData: fix cross thread ui call
GridUI: fix runaway
LogBrowse: fix gps status check
Grid: update load/save options
LogBrowse: performance improvements
ConfigHWCompass: add calibrate history buffer
Grid: decrease min distance bwteen lines #1007
Mavlink: update
ConfigHWCompass: add onboard compass cal (WIP)
PreFlightChecklist: move
CurrentState: add imu3 values
GeoTiff: fix start coords center pixel
PreFlightChecklist: initial version
L10N: fixs
GCSViews: add ESC Calibration #926
L10N: read config in advance
L10N: rename and support CurrentState
mavcmd: add abort alt #1002
onfigBatteryMonitor2: add
FlightPlanner: defaults for do_digicam_control
urrentState: tweak stream rate defaults
urrentState: add terrain text
MAVList: add compid support
* Mission Planner 1.3.32 - 15-9-2015
BinaryLog: add convert progress dialog
LogBrowse: add null check
Wizard: add invalid bat monitor check
SITL: add invalid home check
GeoTiff: add directory exists check
FlightData: update "change speed" when no airspeed precent #1001
add ironpython lib dll's
DFLog: make threadsafe
LogBrowse: memory performance change
BinaryLog: make threadsafe
LogBrowse: enable virtualmode for all logs
FlightData/Planner: fix background exceptions
ParamMetaData: fix loading primary metadata
FlightPlanner: fix param cast
ParamMetaData: fix param info get
LogBrowse: add presaved log entries
BinaryLog: make convertbin less verbose
LogOutput: fix waypoint at 0,0
LogIndex: add tlog duration
FirmwareHistory: update
MainV2: exclude gimbals from getting home point #986
MainV2: add sysid to home point error message #986
mavcmd: update do_mount_control for all types #988
ConfigMount: add mnt_type #987
parammetadata: update backup data
mavcmd: update headers #988
remove requirement for unsafe
GeoTiff: add geotiff support #985
temp: add reset pixhawk option (no warning)
MagCalib: dont accept 0,0 data
3DRRadio: increase multiline responce time
MavlinkInterface: add getVersion and fix severity display
HUD: show ekf red at 0.8
MAVLinkInterface: fix mp log message
LogOutput: add POS distance filter
EKFStatus: add color to flags
EKFStatus: fix transposed values
MAVLinkInterface: add mp version to tlogs
MAVLink: update to master
px4uploader: add another forged key
Georef: add missing files
EKFStatus: fix scale and flags
GeoRef update
HUD: always display ekf and vibe
BaseClasses: revert .net version
LogBrowse: increase type scan limit #972
LogBrowse: add Vibe message preselection #971
LogOutput: add pos message output to kml
LogBrowse: Add POS message output
PointLatLngAlt: add another contructor
Common: add more speech entries
Driver eol fix
ImageOverFilter: remove from compile
BaseClasses: change target framework
EKFStatus: add #949
Hud: add vibration and ekf #948
simpleexample: fix example #922
px4uploader: add forged cert check
NoFly: add nofly support. (kmz loader from nofly dir)
paramcompare: fix double vs float #963
srtm: add 0,0 check
CommsNTRIP: modify user agent.
CommsNTRIP: tweak keepalive
commNTRIP: add tcp keepalive
Vibration: update to display lines
NGEN: add ngen at startup if posible
DFLog: improve performance on bad gps message
CommsNTRIP: fix reconnect logic
logbrowse: support gps fix >=3
SerialInjectGPS: fix ntrip baud issue
wix: fix path
LogOutput: fix df kml with all gps lock types
* Mission Planner 1.3.31 - 9-8-2015
georefimage: update offsets #946
FlightPlanner: fix waypoint panel size
currentstate: fix x/y issue on optical flow #959
MainV2: change dtr logic, default to off
ConfigArducopter: update FF params to VFF #950
configarducopter: add new param names #951
configmount: rename combobox
FlightData: make useritem/quickview selection scrolable
configplanner: make JP language selectable
add JP translation by Jiro Hattori & Co
CurrentState: adjust default stream rates, to increase idle bandwidth
GCSViews: add Parachute #906
Localizations: update zh-Hans translations
MavlinkCheckBoxBitMask: fix refresh chkboxes #912
ParameterMetaDataRepository: remove zh-Hans support
DistanceBar: fix paint issues
Startup speed tweaks
Vibration: Add initial moc
Terminal: prevent command clearing on update #945
ParamFile: fix float/double compare
AP_GPS_SBF: update
FlightData: add script usage
px4uploader: clear input buffer on identify
GridUI: fix ft/m issue
FlightData: update resume mission to replace old mission
CurrentState: add vibeclip0avg
MAVlinkInterface: add force disarm #891
UTMWGS: fix equator bug
ParameterMetaData: remove zh-Hans ver.
Localizations: update urls
Localizations: update Firmware zh-Hans
MainV2: disable font size change of Chinese
ConfigRadioInput: update binding zh-Hans trans
Mavlink: heartbeat is mispelled
CurrentState: support negative current From kozinalexey
SerialInjectGPS: update baud rate box
MainV2: move kindex to background thread
flightdata: fix hidden exception
GoogleMap: speed up init, and modify url
CommsUDPSerial: make dialog generic
MAVLinkParam: set type before value.
Update internal Param system
Terminal: change nsh timing
Tidy Warning
python example
app.config: update urls so xp update still works
LogOutput: add more rinex support
MavlinkCheckBoxBitmask: fix masking
SerialOutputPass: add udp options
Terminal: nsh over mavlink tweaks
GoogleSatelliteMap: update version no
NoFly: update loader and callback
ConfigAccelerometerCalibration: move to 1 accel calib screen
* Mission Planner 1.3.30 - 19-6-2015
ConfigRadioInput: fix yaw/thro swap
Terminal: add nsh over mavlink
MAVLink update
* Mission Planner 1.3.29 - 17-6-2015
DroneShare update
fftui: add hz/rpm to point values for easy diag
fftui: modify freq detection for single imu
fftui: modify to detect sample rate based on a larger sample set
Code Cleanup
switch back to .net 3.5 to prevent designer crash on hud
DistanceBar: catch draw exceptions
LogBrowse: add extra null check
Program: add user field in error report
configradioinput: use default input positions if no rcmap params
Mavlineinterface: fix default fallthrough
Add simple gymbal support
tweak mav type display
remove simple gui
mavlinkinterface: modify injectgps
SerialInjectGPS: fix buffer size
Currentstate: add vibration message
ConfigRawParams: speed up
Common: fix config curruption issue
MAVLinkInterface: add unknown packet message
LogBrowse: change line number to time
MAVLink: update
ConfigFriendlyParam: speedup screen draw time
Static analysis fixs
Update Solution
LocationWP: add implicit conversion
ConfigRawParamTree: fix typo
Mainv2: adjust font size based on screen dpi
flightplanner: remove duplicate code
currentstate: rearrange fields
GridUI: fix turn radius and do change speed for non meters
ProgressReporterDialogue: dispose form after use
Update openfile/savefile dialog to prevent leak
FlightPlanner: add measure distance notification
MainV2: fix auto connect
update default form language
wizard: connect add firmware note
ParamMetaDataRepo: scan multiple elements for valid paramname
ParamMetaData: update to fix dup xml entrys
SITL: add joystick as direct rc input.
LogOutput: fix rinex creation
MainSwitcher: add exception handle for invalid controls
wizard: accelcalib update to exclude init message #38
px4uploader: add new vender cert
FlightPlanner: hide clear roi
fftui: add null check
LogBrowse: use time as default
currentstate: add pid feedback
MAVLink: update library
CollectionBuffer: fix index init
srtm: fix file move
Fix Rel vs AMSL Altitude Logic
srtm: remove 1 arc seconds data
Currentstate: fix cast on sonar range
currentstate: update sonarerange units #878
Mavlinkinterface: send storage write 10 seconds after setparam #882
AP_Terrain: add lib #573
CurrentState: add terrain active flag #573
CollectionBuffer: add bin support
FlightData: only allow one async updateBindingSource
currentstate: add distfrommovingbase
script: update example to include photo trigger
SITL: add vs redist notice
FlightData: Fix min windows size
Localizations: update zh-Hans
Localizations: let FW change to ConfigLang
airports.csv: update
Aitports: add seaplane base filter
MainV2: prevent system sleep while MP open
CurrentState: add imu2 to status tab
MAVlinkCheckboxBitMask: add description and name
MavlinkBitmask: add support
Mainv2: update portname when started from place other than button press
sysidselector: apply theme
SITL: User interface
DFLog: add clear function, and reset on each log load
FlightData: fix mnt param name
GimbalPoint: allow to run when not connected
MAVLinkinterface: add params from stream
FlightData: add resume mission button
Currentstate: add prev wpno saving
DFLog: add timeus to other messages
DFLog: add timeUS to base time calc
DFLog: update for new gps time field names
LogBrowse: add timeus support to drawtime
CollectionBuffer: implement Clear()
BinaryLog: dont decode data we dont know about
BinaryLog: add uint64 and int64
Flightdata: add storm32 to gymbalpoint filter
LogBrowse: add DrawTime to startup
LogBrowser: speedup DrawMap creation
MavlinkNumericUpDown: add ability to set out of range value
LogBrowse: add simple progress to df log graph (console)
CollectionBuffer: improve performance
* Mission Planner 1.3.28
fftui: change to higher data rate data
currentstate: remove ekf error flags
fft: auto detect sample rate
ConfigRadioInput: fix min/max lines and loading settings #883 #884
temp: add fft button
FFT Gui and update
FFT library
currentstate: ekf status update
Plugins: cleanup
LogAnalyzer: add to MP git
* Mission Planner 1.3.27
ParameterMetaDataParse: patch for pde to cpp rename that prevents update from working
ParameterMetaData: update backup data
ConfigArducopter: update FF param names #876
update .gitignore
temp: remove vlctotexture
ConfigAccelPlane: remove 1d accel calib
CommsSerialScan: update to allow cancel/exit
* Mission Planner 1.3.26
logbrowse: add time base to log browser #872
georefimage: fix coloum label order #873
Localization: update ConfigFM zh-Hans translation
Localization: update ConfigMotorTest zh-Hans
Localization: update ConfigFS/3DRradio zh-Hans
FlightData: fix zh-Hans text place
FlightData: add auto scroll and scrollbar for Messages
Strings: add AutoWP
logoutput: add sbas obs header
currentstate: add ekfstatus
LogOutput: dont create rinex file if no obs
LogOutput: create rinex file if obs data present
Scripts: add another python example
DFLog: improve time calc, and gps msg filter
mavlinkinterface: add cmd line on connect
SerialInjectGPS: add ntrip
LogBrowse: update message type scanning to scan the first 500000, from 30000
FlightPlanner: fix freeze on add bellow
Script: update example 2
Log: fixed bug when offset is added before scalar
update solution to remove old projects
CurrentState: add csCallBack
ParameterMetaData: add rebootrequired
BinaryLog: add double support
MainV2: add connection options
currentstate: ignore date exception
Capture: allow fall back to default capture options
MavlinkParse: fix offset start on split read
MavlinParse: fix runaway read
mavlinparse: fix timeout issue
StreamCombiner: update to use mavlinkparse
Mainv2: make doConnect more generic
TerrainFollow: make interface specific
Currentstate: change requestdatastreams to 30 sec interval
Mainv2: fix mavlinkversion in hb
streamcombiner: use packetreader to prevent bad packets
MAvlininterface: add infinity check to hzratecheck
MavlinkParse: add reader function
script: add rc - heli. arm and takeoff script
SerialInjectGPS: update to allow more input sources
temp: modify arm and takeoff button
MainV2: cleanup read code
Currentstate: specify sysid when requesting datastream
StreamCombiner: modify to set sysid's
MavlinkInterface: move requestDatastream packet stats to per MAV
Mainv2: get all params on connect
mavlinkinterface: add sysid to param list dialog
flightdata: fix bintolog conversions directory #854
MultiMav: update
temp: give fresh look
mainv2: make sysidselector always topmost, and non modal
currentstate: add sitl speedup value
mavlinkinterface: fix bad packet count bug (when multi mav)
GMapMarkerQuad: add sysid and display
flightdata: add do-set-home support on flightdata #846
flightdata: make status tab text wider #860
temp: add arm and takeoff button
droneshare: change to private as default
CommsFile: add read exception when not connected
mavlinklog: fixup custom log items
Flightdata: add takeoff connected check, and capture traveled path when screen not active
Spline2: change to use dt
SITL: fix quad home alt
googlesatallitemaps: version update
georefimage: add image time offset for each image when using cam sync #856
SerialInjectGPS: add new form to inject data
droneshare: upload change
Strings: move strings to resource
Mavlinkinterface: add InjectGPSData
georefimage: add bin support #855
Flightdata: add ability to convert multiple bins to logs in one hit #854
CurrentState: add voltage flags
HIL: update for sitl quad lockstep
Common: add target heading to AT icon
Grid: add leadin and cleanup
Common: add AT servo_test mode
Common: fix antenna tracker heading
Simulation: change timing structure
Simulation: get sitl working with jsbsim
Mavlinklog: add ability to offset a log from its home alt (shift key on kml button)
Simulation: add sitl timestep (no realtime)
FlightPlanner: add modifyalt exception handle
GMapControl: allow int overflow on polygon draw
DistanceBar: add resize 0 checks
MainSwitcher: invoke creation on gui thread
LogMap: add log open file share
MainSwitcher: add null control check
mavcmd: add loiter to alt
Mavlink: lib update
georef: add relative basealt option
mavlinklog: update kml creation to use home alt + rel alt
Localization: optimize HUD translations
ConfigMount: fix wiki link and zh-Hans translation
Log: DoubleClick log item to apply user-defined offset and scalar
Log: Optimize constructor for faster graphing
mybutton: add colour change invalidate
* Mission Planner 1.3.25
configframetype: update
configrawparam: modify load/save button text
hud video: add vlc test
HUD: fix bgimage whiteout
mainv2: add plugin load skip (shift key)
Mainv2: make menu panel public
Coords: add ability to change unit test
firmware: change url null to blank check
flightplanner: autoresize Columns on panel expand
SoftwareConfig: make sure theme applys to children
Missionplanner: remove old defines
firmware: add url null check
simulation: add default init of sitl quad to home location
configarducopter: fix tune high and low scale #839
mainv2: add error logging
joysticksetup: fix warnings
utils: update speech lib
mavlinkcombobox: add subcontrol support
simulation: add jsbsim step
Uploader: segmented enum values and moved others to consts due to improper enum use.
flightplanner: better handle land command display
Distancebar: fix double buffer
jsbsim: update config to match sitl
firmware: fix <= board version
jsbsim: update
mavcmd: add DO_DIGICAM_CONTROL and DO_DIGICAM_CONFIGURE #841
scripts: add more sample python scripts
firmware: update firmware version no is pulled from, and add arducopter on apm2 retired board message
confighwsonar: cleanup unused var
distancebar: enable double buffer
mavlink: update library
georefimage: add null check
configmotortest: add exception message
firmware: fix extra ;
Mainv2: fix light/dark icons
configplanner: fix startup flag
mainv2: change logsort/maps order
logsort: cleanup and move by filename filter
Missionplanner: fix version.txt creation
* Mission Planner 1.3.24
MainV2: change plugin load order
update: do a blank string check on update
flightplanner: fix wp upload issue when 2 wp's have the same values #829 *IMPORTANT*
HUD: create more turn off options
Mainv2: rearrange startup
missionplanner: update post build event
quickview: modify docking to prevent flicker
Grid: add turn dia
Gimbalpoint: new geopoint calc using srtm alt
rangecontrol: width tweaks
resources: make public
HUD: cleanup and option parts
GimbalPoint: update code
flightplanner: fix no display of some mav_cmds based on recent 0 check change
flightplanner: show 0 lats and 0 longs on map
gmaproute: add better stroke handleing
mavlinkinerface: add connected check to param fetch
airports: update airports
GMappolygon: fix null reference
* Mission Planner 1.3.23
Add satcount and GPS HDOP to 3O second interval speech synthesis.
flightplanner: fix posible missed wp on lossy link #823
* Mission Planner 1.3.22
GMapPolyon: fix exception
flightplanner: fix reading saved wp file with more than 255 wp's
opengltest: update
joystick: do repeat servo, fix pwm max #822
mavlinkinterface: cleanup debug
mavlinkinterface: workaround for 3dr radio dup seqnos
droneshare: update
configarducopter: fix ch7/ch8 and tune combobox
mainswitcher: fix for crossthread screenchange
commsserialport: add null exception check
gmapcontrol: add resize exception handle
configbatterymonitor: give more text space
configmotortest: add another button for tricopters
simulation: fix sitl/hil
flightplanner: fix terrain wp readback
* Mission Planner 1.3.21
joystick: add button axis #815
configarducopter: mod min max #818