forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.txt
2379 lines (2208 loc) · 74.1 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.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
flightplanner: tweak multi point move (control+click wp, or control+drag box)
flightplanner: initial multi move (use control key)
flightplanner: add undo (control-z)
3drradio: fix string reference
mavlinkinterface: factor out setwp
flightplanner: function out datagrid population
Joystick, Radio, add exception handling.
* Mission Planner 1.3.20
currentstate: add ch9-16 in
firmwarehistory: update
flightplanner: fix dragging home exception
wizard:optionalhw update pram name
confighwsonar: update to new param name
currentstate: arrange gps info together
Uploader: add get_chip command
configmotortest: add duration option #796
mavlinkinterface: fix getwpcount bug #805
Optimize checked BackColor
forms "Display this"
Localization: update HUD translation
Locallization: update Params zh-Hans translation
Config: add UTF-8 support
Localization: fix Wizard zh-Hans translation
Localization: update Wizard zh-Hans translation
mavlinkinterface: add setparam debug logging
configarducopter: update to use new controls, and paramnames
mavlinknumericupdown: add post value update, auto min,max, and multiple paramnames
gmapmarkerairport: disable at low zoom levels
flightplanner: fix wms layer request
3drradio: fix max transmit power for new radios
common: modify get file from net to check last modified and file size
mavlinkutil: implement more efficent bytetostruct method. (50% faster)
pluginloader: fix path to all lower case
common: add new gmapmarkerwp
flightplanner: use new wpmarker and homename
gridui: use new wpmarkers
gmapmarkerairport: fix scale on zoomout
configantennatrakcer: remove proxymode
configantennatracker: remove proxy mode #799
parammetadatebackup: update baseline param set
flightplanner: use new dashstyle
flightdata: use new dashstyle
gridui: use new dashstyle
gmaproute: add custom dashstyle
kindex: add daily cache
tfr: add daily cache
georefimage: add a few estimates
georefimage: add option to use offsets on just cam messages
georefimage: fix GE kml networkload issue
httpserver: tweak output
sharpkml: fix folder
WarningEngine: only alert when connected.
mainv2: change adsb lock
joystick: add raw input line. (no expo)
horizontalprogressbar: seperate min max line draw
flightdata: change adsb lock
configreadioinput: prevent config if radio off #793
DistanceBar: tweaks
firmware: add bad dependancy error message on firmware upload
configplanner: change excpetion to error message
loganalyzer: handle malformed data better
confighwbt: handle comport open exception
gridui: fix error on 359 + start angle
GMap: add MercatorProjectionGCJ
Localization: move Update strings
Localization: update InitalSetup zh-Hans translation
Localization: update ConfigAC zh-Hans translation
ConfigHWBT: add a Bluetooth module picture
Multiple: update zh-Hans translation
MagCalib: add zh-Hans translation
GMap: fix GoogleChinaSatelliteMap
RawParamsTree: fix diydrones/MissionPlanner#769
3drradio: update mavlinkserialport #785
mavlinklog: fix remove from graph #790
ExtGuided: new test plugin
joysticksetup: preselect last joystick used
configplanner: restore last video resolution
flightdata: add autotune button
mavlinkinterface: remove old arming method
python example: upload mission
gitignore: add ignore
flightdata: default mode dropdown to auto
* Mission Planner 1.3.19
grid: fix exception #784
* Mission Planner 1.3.18
hud: reduce spin time and tweak image resize
capturemjpeg: tweak object lifetime
droneshare: fix messagebox type
logdownloadmavlink: add droneshare exception
logbrowse: add better cleanup on load/reload #782
dflog: add line end trimming.
mavcmd.xml: add MAV_CMD_NAV_CONTINUE_AND_CHANGE_ALT #776
Update: add Chinese CDN Mirror
ConfigFirmware: some warnings zh-Hans translation
Survey Grid generation improvement. Alternating Lanes
configraparamtree: cleanup
mavlink: update from master mavlink repo
mavlink: update
mainv2: refresh screen on usb unplug #778
tlogthumbnailhandler: remove console grab
ConfigBatVoltage: bypass low pass #779
MainV2: add rally point warning
LogMap: create image for mavlink 0.9 logs
MainSwitcher: update cleanup method
wix: update installer for com registration
httpserver: fix tracking value
ConfigArducopter: remove hld_lon_p
logindex: add .bin and .log
Tracking: fix event value
LogMap: add .log and .bin support
tlogThumbnailHandler: first commit
logbrowse: add more predefined graphs
Drivers
srtm: allow http exception to requestRunner
distancebar: fix posible overflow error
3drradio: update urls for rfd900s
srtm: return new altresponce on alt query
configfirmware: add motor setup url
RallyPoints: fetch on connect to AP
Grid: fix time calc #774
configarducopter: increase imax min/max #655
flightplanner: remove snap zooming #690
configarducopter: fix french translation #683
mavcmd: add guided_limits #676
flightdata: add colors to graph this dialog. #735
configrawparamtreeview: turn off autocomplete #714
grid: add delay to total time taken #716
configaccelplane: add more warnings. #718
mavlinklog: fix kml cdata close tag #733
wizard: fix tri frame selection #738
mainv2: make sure usb unplug is seen #744
mavcmd: remove do_Set_home for copter #747
currentstate: add optflow info #745
confighwcompass: tweak posible bad error on mag dec input.
mavcmd: add do_set_roi for plane. #763
currentstate: fix posible bad home location #768
configmotortest: update url #770
FlightData: fix time based slowdown.
mavlinkinterface: fix logplayback wp reading (gcs side)
logdownloadmavlink: add scrollbar
Firmware: update CN mirror url
Multiple: update zh-Hans translation
GMAP: add AMap and localization for maps' names
Hud: update to fail to gdi on first opengl command
logdownloadmavlink: add scrollbar to log list
px4uploader: add new public key
comms: updserialconnect
Solution: fix build dependancys
comms: udpserialconnect force initial connection
Mainv2: add new udpserialconnect
Comms: add udpserialconnect
3drradio: update note
configfirmware: default back to ENG
Strings: re-add some of Firmware
bin2log: fix chinese appear at log's mode name
mavlinkinterface: fix statustext bug
flightplanner: add loaded wp filename
logdownloadmavlink: add droneshare intergration
mavlinkinterface: fix mav type detection on getheartbeat
flightdata: fix distance bar
logbrowse: use common map provider
wizard accel: fix exception
* Mission Planner 1.3.17
confighwbt: fix retry on invalid baud
airport: update list from ourairports.com
mavlinkinterface: update to use new strings
Strings: move more strings
mavlinkinterface: implement both arm methods
Kindex: update to use new url
MainV2: move strings
Terminal: update terminal note
confighwbt: fix order of commands
confighwbt: program a hc-06
Firmware.cs: Added VRBRAIN 5.2 and corrected conflicts after rebase.
Added new board VR Brain 5.2: detection, driver and upload firmware
cleanup unused vars
DistanceBar: add trial
GStreamerHud: Testing
Firmware: add failure logging
SimpleExample: add simple example
Mavlinparse: add parser
ConfigHWBT: wip.
Translation: move some strings, cleanup
FlightData: update to use dotted line on flightdata
MAVLinkinterface: change arm/disarm to use current target id
LogBrowse: add ability to open very large logfiles (300mb bins)
CollectionBuffer: improve performance
Firmware: add chinese CDM Mirror by SkiTiSu
PluginLoader: add plugin fail logging
csproj: cleanup dependancys
MAVLink Log - add tlog fn to title bar
CollectionBuffer: make work for strings
ConfigFirmware: add licence details
configrawparamtree: add exception check on reset
LogBrowse: exception handle on no data on rowpaint
FlightData: add avi close exception handle
ConfigRawParam: exception check values on save
Joystick: add exception check to rcoverrideclear
Mainv2: fix log map create exception
joystick: fix load config path
TFR: change fill color
* Mission Planner 1.3.16
KIndex: implement kindex
Multiple: Exception checks
mavlinkinterface: reinstate request param list
MAVLinkInterface: modify parameter get when packets are lost
3drradio standalone: changelog dates
FlightPlanner: remove unused code
tfr: add exception handle
3drradio standalone: update changelog
3drradio: switch back to static strings
paramcompare: fix typo
3DRRadio: update for 900u
Strings: add some localization
ElevationGraph: add terrain follow
MeasureString: add null check
tfr: fix crossthread call on load
mavcmd: update loiter_turns
thememanager: fix alternate row colour on other themes
flightplanner: turn on autosize on all coloums
winddir: autoscale max speed
configaccelplace: add warning about only doing 1 of the 2 calibs
georef: fix field reverse #727
mavcmd: update to display do_land_start
TFR: allow enable/disable of tfrs
Support for TetraCAM Time offset Geotagging
VRBRAIN: added and updated drivers for all VRX boards
VRBRAIN: inhibited the message of waiting of musical tones after firmware's upload for all VRX boards
VRBRAIN: added recognition and management of boards VR Micro Brain 5.2, VR Gimbal 2.0 and VR Micro Gimbal 1.1
FirmwareUpload: VRBRAIN added board detection for VRBRAIN 4.
ConfigBatteryMonitoring: Added VRBRAIN4 board pins and corrected VRBRAIN 5 and VR Micro drop down auto-select
update Simplified Chinese translation
flightdata: move tfr to its own layer
firmwarehistory: update
mavlinkinterface: trigger camera only once. #731
Added DefaultWebProxy to WebRequest to use IE default settings.
flightdata: preflight_calib, only set gyro calib on copter
* Mission Planner 1.3.15
MainV2: add null check on threads on exit
wizard: compasscalib, add exception handle
Currentstate: add laser positon health message
MAVLink: update upstream lib
sphere: remeber autocomplete
tfr: update to individual shapes (wip)
progresssphere: fix autocomplete logic bug
logbrowse: move map clear inside exception handle
ConfigSimplePid: convert to invariant culture
* Mission Planner 1.3.14
tfr bug fix
* Mission Planner 1.3.13
magcalib: add mag2 0's check
magcalib: add new hitcount target, and default autcompelte to off
configarducopter: add heli FF's
magcalib: use new force param to set compass 2 offsets
mavinterface: add ability to force a param upload
magcalib: add option to not autocomplete
TFR: add tfr
mavcmd: update do_repeat_relay and do_set_relay
CurrentState: update dist to home to be 0 if home is 0
MagCalib: modify completion trigger, and change instructions
configcompassmot: add exception handle around deactivate, not sure how this is happening.
* Mission Planner 1.3.12
FlightData: fix quickview sizeing
FlightData: remove FP autopan.
Fix language issues
flightdata: make tuning graph this higher.
srtm&terrainfollow: add ability to detect ocean tiles
flightdata: PREFLIGHT_CALIBRATION do gyro cal as well
mavcmd.xml remofe ROI
ConfigFailSafe: section up failsafe screen
georefimage: fix for bad gps line
FlightPlanner: add cancel code to getwps
Mainv2: add fw version to titlebar
flightdata: add disarm confirmation
mavlinkinterface: add other radio status packet to current mav
Plugins: fix units
Fix Unit scaling.
WarningManager: fix to us correct currentstate
MAVLinkInterface: make sure radio packets are seen on active mav
currentstate: fix unit conversion
configcompassmot: fix compassmot issue
update drivers
MavlinkLog: make more efficient and add treeview
* Mission Planner 1.3.11
MetaData: update backup meta data
MAVLink: update library
Mainv2: prevent loading bad home location
RangeControl: fix orange highlighting #654
add land complete maybe #663
MAVLinkinterface: fix posible exclusive issue
cleanup warnings
AntennTrackerIcon: add heading display
configantennatracker: fix test button, and dropdowns
mavlinkNumericUpDown: add auto decimal places
move packetloss counters
MAVLinkserialport: modify to use a thread
Multiple: multiple sysids on 1 link
MovingBase: set rally total if enabled
currentstate: reinstate rc receiver message
mavlinkinterface: make sure aptype is set from log/serial
FlightData: display all connected mavs
ConfigAntennaTracker: fix increments
ConfigAntennaTracker: initial extended tuning
Backstate: add scrollbars
mavinterface: add mavchanged event
GridUI: add units to simple screen
currentstate: remove debug
px4uploader: do otp check only once
sysid selection
mavlinkinterface: fix geofence upload verification check
flightplanner: fix null exceptions on no home
Currentstate: modify binding source method
Update Simplified Chinese Translation
Add Maestro speed/accel parameters
update to use antenna tracker icon on map
common: add antenna tracker icon
MAVLinkinterface: prep for multiple sysids on 1 link
python example 2: add parameter fetch
mavlink: add frametype storing
update TC translation
WarningManager: add theme, and item remove
Joystick: modify expo function
Currentstate: update lat2lng2 to double, update lat/lng sig figures when coming from an int type packet
WarningManager: add child support. (WIP)
Flightplanner: fix mapcontrol name
FlightPlanner: add autopan to FP
configflightmodes: add simple and super simple filter
currentstate: move gps2 info, and make satcount2 visible/plotable
HUD: remember hud show option on restart
mavcmd: add do_gripper to command list for AC
MAVLink: update library
dflog: add out of memory error
Fix GeoFence Breach Logic
fix , vs . issue #636
update TC translation
* Mission Planner 1.3.10
georef: add tiff support
currentstate: add m to ft conversion on terrain alt
FlightPlanner: fix m to feet conversion
magcalib: add colours
SpainMap: update main url
Geofence: set fence_action to 0 before upload, and restore on finish
configfirmware: update 3.2 warning message
ParameterMetaData: update to use stable or master on param meta data based on MP beta usage.
app.config: update metadata to always pull from stable branchs
Capture: placeholder code for crossbar selection.
ConfigPlanner: remember video device.
flightplanner: make sline work from the grid interfaces
FlightPlanner: add distance check to dashed home line
Survey (Grid) Delay and HeadingHold Upgrades
Survey(Grid) Save "checked" for internals and footprints.
User requested survey save the checked option.
Survey (Grid).copter. Change waypoint delay.
currentstate: add battery2 values
mavlink: update library
configbatterymonitor: update hv power module number
matlab: reduce memory footprint more using file backed arrays
matlab: deal with large bin files, output split mat files
Binarylog: new function ConvertBin, and update users
configmotortest: check frame param exists
srtm: add comment
magcalib: fix exception on mag calib from log on apm2
gimbalpoint: add another check to determine if feature exists
logbrowse: add another presaved mechanical issue check
joystick: add gimbal point track.
flightdata: add gimbal point zero check
mainv2: speedup gmaps cache on mp close
opengltest2
Flightdata: expand user item selection box
Program: fix http get issues
FlightModes: add simple mode note
Common: add {curr} to speech engine
ADSB: add custom server option #617
Joystick: disable on error
joystick: add connected check when a button is pushed on the joystick #623
Mavlink: add code to prefer a non antenna tracker target. if one exists
flightdata: fix status screen exception on first run
joystick: send rcoverride of 0 on unplug. #624
program: swich back to default http options
gimbalpoint: update to use mount status message.
joystick: add ability to toggle mount pan stab on and off
initialsetup: accel fix tracker detection
flightdata: fix map update issue
srtm: update to use new data location
srtm fix srtm alt. wrong average
configaccel tracker: add ability to accel calib tracker
POI: add null check on delete poi
speedup application shutdown
program: remove bad log analysis file
update TC translation
flightdata: fix log analysis from a bin file.
flightdata: tweak thread join
joystick mount mode: add description of modes
joystick: add mount mode via joystick
joystick: add takeoff via button
flightplanner: fix mono exception
Firmware: update antenna tracker icon
add statkart_topo map for general use
Main: update httpserver stop method to new api
georef: add path list, and fix point alts
httpserver: add stop method
add statkart topo maps
flightdata: fix termination, and mount exception
adsb: fix termination
* Mission Planner 1.3.9
fix grid issue.
fix treeview save
add treeview param checking
fix fp altmode change
wp file update for frame type
add sensors precent check
hide gimbal point unless used.
add fwversion.xml excpetion check
* Mission Planner 1.3.8
grid modifications by tristan novak
language mods by ellissu
fix timeinair bug #521
LOGS BROWSER: Added interactivity between map, graph chart and data grid
turn off overflow checking in gmaps
flightplanner: add new frame selection
uploader: remove code causing exception
FlightPlanner -- Render first and last flight line to home as "dashed". Issue: #584
FlightPlanner - Click off menu to close. #583
enum: add enumtolist option
adsbplane: shrink from 59 to 40 pix
droneshare: modify ssl profile for droneshare
Threading: modify thread termination stratagy
Survey (Grid) - Remove return path between first and last point. #584
Survey (Grid) Move DO_SET_CAM_TRIGG_DIST to after the first waypoint.
Survey (Grid) Auto change units (Imperial) Stats show most reasonable unit. Area: ft^2->Acres->miles^2 Distance: ft->miles
sonar add exception check
magcalib: 0 compass 2 before calib
msi drivers
flightplanner: add ability to load custom commands
mainv2: add lang debug
currentstate: add toh and inverse geofence status check
spline: update first spline point to match actual
gridv2: mod color
DFLog: add extra df ERR messages
speech: add armed check to low alt, and low airspeed warnings
gridv2 changes
Changed "Survey (Grid)" plug-in. Added RTL option in UI. Also saves/loads camera trigger type.
heli: add heli icon on map.
magcalib: fix comments
simulation: stop exception on not connected
paramtree: add node expansion
stkv2: fix posible overflow
radioinput: use rcmap for display.
paramtreeview: fix spacing
currentstate: add monitoring of geofence,ahrs and terrain problems
flightplanner: remove terrain_check on wp upload (now done by ap)
terrainfollow: add exception protection and logging
terrain: fix east north mixup
use new gps_offset method in TerrainFollow
fix build refrences
tweak networklink kml
terrainfollow: unsubscribe on destroy and dont send 0 alts
update jsbsim.exe
currentstate: improve ch3 % calc
quickview: add number formating
gridv2: use min and max alt from file
magcalib: reduce number of points required.
enable nuget package restore on build
httpserver: update generated kml of flightpath
appconfig: remove some network tracing
flightplanner: add terrain alt frame type
gmapmarkerairport: fix overflow
paramcompare: add ability to use a callback
mavlink: add locking on getwp
rawparamtree: initial trial
flightplanner: fix null exception
commportserial: add exception logging
clean error exit on failed connect.
modify exception type to timeoutexception
make sure canceled box closes
fix bluetooth "element not found"
VRBRAIN: Added VRX/VRBRAIN into list of boards for connect the terminal
VRBRAIN: Added preset of battery monitor for VR Brain and VR Micro Brain 5
add FP null checks
add terrain status to currentstate
fix dual mag message on change
fix updateClearRouteMarker
fix a cross thread call
cleanup python engine after run
fix udp serial issues
udpserial. ensure the old client is closed.
progressreporter. if we cancel something, dont show the dialog
update Traditional Chinese translation
remove airport.dat and usage
open up udpconnections
include shorts in tlog to csv conversion
rename label on compassmot screen
clip srtm
add mirrorstream write access option
fix exceptions on connect to ardutracker
add option to stop/start adsb
fix gmaps web cache
quickview speed tweak
update mavlink
bring back gauges
add mapbox nofly zone
fix motor test text
try release joystick more
dont touch dtr on no reset
droneapi updates
add text grid fit to hud
add watts
close selectform on main log window close
add antenna tracker exception
add firmware type to stats
identify bootloader
update upload failure message
update set tracker here to use srtm alt.
add imax to pid link check for AC
change manual to loiter on action tab
check p,i,d for arducopter pid link
update for speech engine during logmap creation
update sonar types to use autodoc
add elevation graph null check
add exception handle on motor test
* Mission Planner 1.3.7
fix a mag calib issue on apm2
* Mission Planner 1.3.6
fix otp failure types
update zh-hans thanks bys1123
add poi to FD and FP
fix udp reader for split packets
add shp to poly converter with reprojection
update mavlink library
add DO_INVERTED_FLIGHT
fix gimbal pan max
use srtm for verify alt
add droneshare support
updated geotag tool by Jesus
add gimbal point lib
zedgraph zoom fix
add maplog generation
mag calib/sphere updates
gmaps update
wip survey grid v2
add srtm data to elevation graph
add vrbrain support by lukemike
add spline circle
new battery sensor
fix bluetooth issues by FenomPL
joystick library disposal fixs by jasells
change motor numbers to letters in motor test
fix antenna tracker alt
add gimbal pointing
add gps2