forked from ArduPilot/apm_planner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release_notes.txt
1863 lines (1793 loc) · 144 KB
/
release_notes.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
Release Notes - APM Planner 2.0.30 - 2023-07-28
5aa9f1810 build: Update to 2.0.30 - Arne-W
e5acf25bf Fix and refactor Auto update check - Arne-W
270b3defe Correct English - Iragne
476439a82 Add Github link to the PR workflow - Iragne
84e290aae Improve documentation for PR associated to 3rd parties libs or framework - Iragne
b7e7dc782 Build: Correction of the “.gitignore” and uploading missing file for SDL2 Fixes #1292 - Iragne
f6bb8962d GraphView: Updated event messages and added fixed wing support. - Arne-W
7244b624c GraphView: Update mode messages for fixed wing and added support for mode change reasons. - Arne-W
2ee0b7664 GraphView: Improved detection of fixed wing mavtype while logparsing. - Arne-W
44b3bd735 Param Setup: Fix some problems with connecting to Qt signals. - Arne-W
6fcb63a1c Build: Update SDL2 and command line to compile. Fixes #1289 #1290 - Iragne
6bd09e4f2 Update README.md for building on Ubuntu 22.04 - Arne-W
6d2b96ba0 Update the framework for Mac Undefined symbols for architecture arm64 - ja
634e81353 Delete old SDK - ja
d9f0286a4 build: update release_notes for 2.0.30-RC3 - Arne-W
502cafe80 build: Update to 2.0.30-RC3 - Arne-W
f8436270a mavlink ComponentID used when handling waypoints can be changed now. - Arne-W
d53fe3e52 Comms: Fix wrong system ID and component ID for timesync message. Fixes #1270 - Arne-W
ba4aff29a MainWindow: Fix segfault when calling dtor due to static singleton object. Uses static pointer again. - Arne-W
1fba2b8fc Added another map source, with Svalbard topomap. - AndKe
3ac48e51c Added another map source, with Svalbard topomap. - AndKe
377b57add build: update release_notes for 2.0.30-RC2 - Arne-W
658c8d205 build: Update to 2.0.30-RC2 - Arne-W
8a4754a27 Minor cleanup and suprress terrain request log entries - Arne-W
7897793b7 Build: Updated to QCustomPlot 2.1.0 - Arne-W
8bda08473 Build: Fixed some clang warnings - Arne-W
9c8919420 Build: Removed all warnings from external librarys - Arne-W
d26413b32 Build: Reorganized includes - Arne-W
072d2082f Build: Add support for Qt versions before 5.15 again - Arne-W
a2da4a8f9 Build: Removed all deprecated warnings introduced with Qt 5.14 and Qt 5.15 - Arne-W
0788604b1 Build: Fixed Qt version detection and a type issue - Arne-W
3b5715f4b mavlink: Suppress also warnings for gcc 7 - Arne-W
0bd3a796f mavlink: suppress warnings - Andy Piper
a2c482f8c mavlink: add remaining mission modules - Andy Piper
c061e9e19 mavlink: add lowheiser - Andy Piper
f5338764b files: update parameter definitions - Andy Piper
aba40a91b mavlink: update mavlink to latest version - Andy Piper
556552e23 Request AUTOPILOT_VERSION using MAV_CMD_REQUEST_MESSAGE - Peter Barker
981f7507b Vagrant: use focal, Qt deps to 5.15.2, use install-qt - Peter Barker
339533bfb Imported new Sik uploader from https://github.com/ArduPilot/SiK ID: 7276fb99c7cbb9bf0bdebe16b48457412edd04e5 - Arne-W
68a00d13a build: update release_notes for 2.0.30-RC1 - Arne-W
efc4ae4f4 build: Update to 2.0.30-rc1. - Arne-W
92927240a mavlink: Supress gcc warnings when using mavlink includes. - Arne-W
91737c76d uas: Update to the latest MAVLINK messages - murata
fb912fb50 mavlink: update mavlink headers - murata
fdc0557aa Graph View: Ignore GCS messages when parsing Tlogs. Fixes #1251 - Arne-W
d52d5995d Graph View: Support indexed data types flash log files. Fixes #1253 - Arne-W
c24ce9ea2 Changed default build from 32 to 64 bit. - Arne-W
bc6721a6b GraphView: Fix uint32 overflow when calculating time of Message arrows. Fixes #1246 - Arne-W
38f14c34a Update README.md - Andrei
d2d261cd3 GraphView: Fix table cursor not moving when selecting table row. Scaled models only. - Arne-W
d097296ab GraphView: Don't use exponent in Graph view anymore. Fixes #1150 - Arne-W
a8bde8ea2 Allow 2000m in PFD altitude indicator. Fixes #1239 - Arne-W
56841e3f8 Firmware Install: Made area scrollable for small displays. - Arne-W
bbb231cae Removed doubled entries from release notes - Arne-W
f754ca65f build: update release_notes for 2.0.29-RC1 - Arne-W
c7f81f8ba build: Update to 2.0.29-rc1. - Arne-W
2e47d56d8 Firmware Install: Add "done" message on progress bar - Arne-W
8248f7eae Build: Project file cleanup - Arne-W
6ac563ab2 Mavlink: update to commit 6e08c075 from https://github.com/ArduPilot/mavlink - Arne-W
323a7133d Widget: removed some logging polluting the log - Arne-W
a63d6d591 Comms: Removed some old unneeded mavlink structures and includes - Arne-W
f3b0b41ce Firmware Install: replaced some native pointers. - Arne-W
31fe75ffd Work around non-instant modem availability for PX4 - Maxim Buzdalov
5d3f27e7d Firmware Install: Completely rewritten and redesigned. Fixes #1171 #1139 #1111 - Arne-W
cd056ee6d Comms: Minor optimizations for reading data from a serial interface. - Arne-W
19c045c43 Comms: MavLinkProtocol now provides getter for received messages and lost messages - Arne-W
a7dca95ed Comms: MavLinkInspector now gets a pointer to mavLinkProtocol class - Arne-W
88cf50bf1 Comms: UAS now stores a pointer to mavLinkProtocol class - Arne-W
eb710a668 Comms: Mavlink now uses internal buffers - Arne-W
c780f15e6 Comms: Allow changing the Mavlink ID of APM Planner in advanced config dialog. Fixes #1228 - Arne-W
bf74360ac Removed some clazy warnings - Arne-W
be6acb19f Improved handling of corrupted data in tlogs. Fixes #1225 - Arne-W
b558146b1 Added support for parsing data with typecode 'a' like ISBD and ISBH data. Fixes #1225 - Arne-W
ab6059ca1 General: Updated README.md Fixes #1200 - Arne-W
499c43318 Allow MAV_CMD with values > 255 - Dino Hüllmann
f4b39d893 Added mission type to MAVLink mission_count message - Dino Hüllmann
f38bef77f ui: Radio3DRSettings: don't use qAsConst - Peter Barker
aaf9f8094 Vagrantfile: move to Bionic - Peter Barker
fea4a37e0 build: update release_notes for 2.0.28-RC1 - Arne-W
70fe4eb67 build: Update to 2.0.28-rc1 - Arne-W
750a12ac3 GraphView: File dialog does not use signal/slot mechanism anymore. - Arne-W
565ff6f23 Telemetry radio flashing fixed, and updated to SiK v2.0 - Andre Kjellstrup
aaa4777bb Radio-Settings: added support for newer SiK versions - Andre Kjellstrup
d7bea2a2e Add log message when waypoint should be sent, but state does not allow it - Dino Hüllmann
18218033b mavlink: support both MISSION_REQUEST and MISSION_REQUEST_INT - Dino Hüllmann
b7cebba77 Tuning Setup: Added support for Arducopter 4.0 Fixes #1193 - Arne-W
aa0760c8f Vagrantfile: move to xenial64; write scripts for compilation - Peter Barker
32e3eeb40 Use https:// for ardupilot.org URLs - Peter Barker
34c66dde3 Comms: Changed handling of mavlink GLOBAL_ORIGIN message - Arne-W
49643bc3d Map Widget: Update Home position icon when vehicle sends HOME_POSITION mavlink message. Fixes #1173 - Arne-W
fa2a28793 Camera Setup: Fixed some wrong parameter names and multiple mount mode requesting - Arne-W
84840586d Frame Config: Support for ardupilot 4.0.0 and later - Arne-W
00cd64070 read and request int32 waypoints - niuxw
150cf4c33 Firmwareupdater: added support for flashing of CubeBlack. - André
a022bedb9 map: Added Japan Map - murata
48c13a2fb configuration: Delete unnecessary files - murata
13480cc6e CameraGimbal: Enable setting of camera trigger group box - murata
d9242a2c5 CameraGimbal: Change from RC to SERVO - murata
1d5704eb9 Copter: Change from CH to RC - murata
e39ecf386 Copter: Add throwing mode and zigzag mode to flight mode selection item. - murata
5ddba4155 Copter: Change to setting parameter of AC 3.6.9 release version. - murata
80b62f1c7 Graph View: Added Support for GPS trail to loganalysis. Fixes #1096 - Arne-W
ffbc3e88b Graph View: Adapted mapwidget classes to enable GPS-Trail painting - Arne-W
299ff23b5 Removed QMap3d.ui as is was not used. Fixes #1166 - Arne-W
c64ead17c Firmware Install: Removed OpenSSL requirement from firmware upload - Arne-W
bf14b3a7e Firmware Install: Stop scanning for devices if flashing has started and better logging. - Arne-W
562fa65f7 Comms: Linkmanager does not store 10.1.1.1 Adresses anymore - Arne-W
edbb38910 Firmware Install: More changes for fmu-v5 and some cleanup - Arne-W
fc70222ef Reverted accidentally pushed change on project file - Arne-W
de4262112 Firmware Install: Adapted for fmu-v5 - Arne-W
4c0826c44 build: Update to 2.0.27-rc1 - Bill Bonney
98cf653ee Radio Setup: Added compatibility for MAVLink 2 and increased to 16 channels. Fixes #1153 - Arne-W
e2a15de52 GraphView: Disabled KML export for all files but flashlogs. #Fixes 1154 - Arne-W
db4ded16e GraphView: Bugfix mode was not read correctly from tlogs. Fixes #1155 - Arne-W
718b06ebb GraphView: Changed NaN detection Fixes #1144 - Arne-W
adb583fc7 MavLink Inspector: Added simple mavlink statistics - Arne-W
838d2968b Fix some Compiler warning - Arne-W
528b83078 GraphView: Changed detection of start message to name - Arne-W
d68c2ba29 GraphView: Message IDs for Unit data are now setup dynamically. - Arne-W
717ab8bac GraphView: Bugfix for flashlog crashing when no unit data available. - Arne-W
786d1a9d8 Comms: Added support for timesync message - Arne-W
040445eb7 Tuning Setup: Basic tuning adapted description / typo fix - Arne-W
58518c5d2 Comms: Linkmanager will store each UDP connection only once. Fixes #1121 - Arne-W
aaeee8cf9 Tuning Setup: Basic tuning adapted parameter names for arducopter 3.6 - Arne-W
b464216e3 Parameters: parameters which are already fetched are not fetched again - Arne-W
89592371c Tuning Setup: Adapted extended tuning to copter 3.6 Fixes #1138 - Arne-W
5eb5b56a0 Comms: Added mutex to avoid concurrent access to QList container - Arne-W
3e4adab0a Comms: improved mavlink version detection - Arne-W
b679433ca Comms: Adapted/unified includes for mavlink 2.0 and made mavlink_status global - Arne-W
cb3a517f8 Fedora 26 build scripts and spec files - Александр Фролов
e3357d026 GraphView: Adapted Ascii log export and import to handle unit data if available. - Arne-W
4bb3d410b Graph View: Added Support for parsing and storing unit data from dataflash logs. - Arne-W
45af180cd Build: Added files generated during build to gitignore (*.qmlc, .qmake.cache and files in config.tests/has_flite) - Dino Hüllmann
223fe9c22 Added missing change log generation step to README.md. Fixes #1128 - Arne-W
736532f14 Comms: Adapted code base to support mavlink 2 - Arne-W
284b0fdb7 Comms: Update mavlink library to mavlink 2 - Arne-W
3dc0167d8 Typo fixes - Rob Campbell
262c6d2bd build: Update to 2.0.26-rc2 - Bill Bonney
3abd9948c Update README.md - Bill Bonney
88abb1699 Update README.md - Bill Bonney
ac7a3a2e3 Create BUILD-EASY.md - Bill Bonney
d72b06620 Mission Widget: Terrain Alt will not loose markers anymore. Fixes #1117 - Arne-W
029099d9e maps: removed all references to map-version for Statkart - Andre Kjellstrup
1bc74e0c5 Maps: statkart (map-source) updated to v4 - Andre Kjellstrup
41d3c50a9 Graph View: Added "Use Time on X axis" setting to persistence. - Arne-W
28b2e8b2d Graph View: Cursor check boxes will be unchecked when changing x-axis. Fixes #1101 - Arne-W
81b79ff44 Graph View: Simplified dialog handling on file export. Fixes #1107 - Arne-W
f8a9e1999 Logging: Created logging category and set it to debug level. Fixes #1108 - Arne-W
503e4e1d5 Graph View: Better handling of message boxes and progress window at the end of logexport - Arne-W
b5361126d Firmware: changed URL, .eu is discontinued - André
9c606bb86 OpenBSD compatibility - David Bern
95954a080 Graph View: Improved performance when moving cursors and sliders. They behaved somehow tenacious. - Arne-W
f07a5a035 Graph View: Adapted the message Formatters to new messages. Fixes #1099 - Arne-W
b9dfebd1d APMToolBar Widget: Donate eval Fixes #1103 - David Bern
239ffd997 Graph View: Bugfix for table filter bug where filter by "IMU" also shows "IMU2" entries. Fixes #1100 - Arne-W
c33c84096 About Dialog: Fixed credits link - Dave C
27f740211 Update README.md - Bill Bonney
8b66bf1d4 build: Update to 2.0.26-rc1 - Bill Bonney
1dd5e8051 Several small fixes - Tomaz Canabrava
942f3e493 COMMS: Fixed wrong host string for UDP connection - Dino Hüllmann
af6b04439 Flightplan: Introduced GraphicsItem base class for graphics items on map - Dino Hüllmann
ff5e3512b Build: Enabled c++ 11 support for all plattforms - Arne-W
9eb3a1f49 Info View: fix set speed - André Kjellstrup
a9663f234 Graph View: Added handling of soft / hard NaNs for float and double values in flash logs. Fixes #1067 - Arne-W
22d8370c7 Graph View: Better handling of load progress window. Does not log a cancel message anymore even if it was not canceled. - Arne-W
a2e94ff14 Param Setup: Added some output to the log which was only shown on gui. - Arne-W
83d96d731 Flightplan: Removed if-statement before delete in opmapcontrol (since deleting a null-pointer is a nop) - Dino Hüllmann
9d9c69ae1 Replaced nullptr by 0 - Dino Hüllmann
5ec23fb97 Flightplan: Put opmapcontrol object files in extra directory - Dino Hüllmann
8867ddf1b Flightplan: Virtual destructor required for inheritance in opmapcontrol - Dino Hüllmann
f1eff3900 Flightplan: Fixed memory leaks in opmapcontrol - Dino Hüllmann
258d654c2 Flightplan: Fixed project files and removed unused includes in opmapcontrol - Dino Hüllmann
9910ae2e7 GraphView: Unchecked index lead to crash on empty logs. - Arne-W
d9b275098 GraphView: Logparser can handle multiple flights in one log now. Fixes #1041 - Arne-W
dd331536d GraphView: Graphs with only one point will be handled correctly now. Fixes #1071 - Arne-W
1df5ee28c GraphView: Migrated to new qcustomplot version 2.0.0 - Arne-W
6286fd977 Improved path handling of pdef.xml - Arne-W
18a874670 Update README.md - Bill Bonney
6fc419e1e Update ArduPlane config files, add for Rover and Copter - Peter Barker
67afba51b Avoid downloading deprecated apm.pdef.xml - Peter Barker
42a83ca01 Vagrantfile: update for new dependencies - Peter Barker
cdcb39014 Map: added Eniro as map for Norway,Sweden,Finland,Denmark,Poland - André Kjellstrup
3f35d759a fix CAM_DIST_TRIG label from to - jtuchek
46092ae4c Update README.md - RiccardoBe
89a626ae3 build cleanups and bugfixes - Lars Kellogg-Stedman
7770d4a99 GraphView: Fix SaveView bug where current view was not saved correctly - Arne-W
6bca0edd1 Updated Readme.md Fixes #1010 - Arne-W
95c951070 FlightPlan: Fixed creation of mapscache directory in home. Fixes #1058 - Arne-W
0c5ef67c8 GraphView: Fixed GraphControls showing wrong colors. Fixes #1062 - Arne-W
1a96b716e FlightDisplay: Extend the maximum value of the altitude indicator. Fixes #930 - yamsam
02324eea8 FlightDisplay: Add wordwrap to status message. #Fixes 1034 - yamsam
d9bae3ff5 System: Fixed minor memory leak on style sheet loading by using scoped pointers now. - Arne-W
38513ff77 System: Determining location of apm planner executable should work better now. Fixes #986 - Arne-W
afcf5f64f Update Readme.md - Arne-W
fe24a2588 Vagrant: add vagrant file - Peter Barker
8e9956c38 Build: release version 2.0.25 - Bill Bonney
780acb522 Fix incompatibility w/ openssl 1.1.x - Lars Kellogg-Stedman
6cfb863d9 Maps:Update urls to get GoogleVersion - yamsam
38c5f5e28 GraphView: KML export: specify colors for additional flight modes - Mark Whitehorn
58e389952 GraphView: KML export: handle old versions of GPS and Mode messages - Mark Whitehorn
c940f83dd GraphView: KML export: specify min distance between EKF placemarks - Mark Whitehorn
ab6df5bf6 GraphView: add unsgemented flight path to KML - Mark Whitehorn
fdcaf067a GraphView: fix flight mode handling in KML export - Mark Whitehorn
08a7ca3d4 GraphView: generate a plane icon for every attitude record - Mark Whitehorn
a81b566ec GraphView: clean up timestamping code and add timestamps to FlightPath - Mark Whitehorn
095db215f Build: Compile on Arch Linux. - Miguel Arroyo
38b21e1f0 GraphView: Added preset feature. It is possible to store different graphing presets and reapply them to other graphs. - Arne-W
3b299827e GraphView: Plane model in Gmaps now has correct yaw, pitch and roll values. Fixed corrupt CDATA structure. Fixes #1036 - Arne-W
97a6ee46b FlightPlan: Fix for waypoint lines not moving when panning map without having an UAV connected. Fixes #1035 - Arne-W
cd07fd1b6 Build: Refactor docker directory, create Dockerfiles for different distributions - Eduardo Feo
d3beca03e libs: quazip: add definition for OF macro - Ralf Ramsauer
7a23a1cd4 MainWindow: update helper to add user to dialout - Pierre Kancir
1bf4bba18 Updated shellscript to make console output visible - Andre Kjellstrup
e67a6e4af FlightPlan: Fixed waypoint bug introduced while fixing - Arne-W
2a5e6cf15 FlightPlan: Changed status text updates upon way point transfer, improving readability. Fixes #1027 - Arne-W
5889fa340 Build: Fixed warning regarding c++11 initialization. - Arne-W
04bb765df GraphView: Bugfix for wrong auto scaling of groups - Arne-W
3769131c1 FlightPlan: Fixed the orphaned Lines between waypoints issue. Fixes #1024 - Arne-W
f634990b2 FlightPlan: Added and corrected logmessages on waypoint receiving and sending. - Arne-W
0b03d1015 FlightPlan: Fixed the multi waypoint movement on mission load. Fixes #1019 - Arne-W
e43ab2f22 GraphView: Fixed UI inconsistency regarding table filter and reorganized some UI parts. Fixes #1023 - Arne-W
1042f1a70 GraphView: Logparser for .bin files could not handle double values. Fixes #1022 - Arne-W
3e8968fd2 Build: Update to 2.0.25-rc1 - Bill Bonney
5334dbef1 Frame Config: Added Single and Coax Copter to frame selection. UI cleanup. - Arne-W
a456b5931 Firmware Upload: Added support for changed file names for Copter firmware. Fixes #1001 - Arne-W
168751eb7 Frame Config: Added support for ArduCupter 3.5.0 frame configuration. Fixes #1000 - Arne-W
0843a048c Update Linux shortcut to use shellscript with enviroment parameter - Andre Kjellstrup
5c8b6667e Shellscript sets enviroment variable to prevent CPU hogging on Intel - Andre Kjellstrup
35c3ff8a9 System: Added application attributes Qt::AA_X11InitThreads to fix the CPU hogging on Intel Graphics. * Partly fix for #646 - Arne-W
740b61dc7 GraphView: BugFix log loading dialog did not always disappear. - Arne-W
e040658f5 GraphView: Added new range cursor feature and refactored AP2DataPlot2D into online and offline part. * All cursors can be moved by drag and drop * Value Axis can be scaled by mousewheel - Arne-W
a202002ad GraphView: Migrated to new qcustomplot version 2.0.0-beta - Arne-W
83aa82445 another typo correction - Roel Hoek
1e68cc941 updated dependencies in README.md - André Kjellstrup
5ff8f10ec updated dependencies - Andre Kjellstrup
cb4b3c676 SiK_uploader fixed - Andre Kjellstrup
3b4333a09 Config: BugFix for loading global settings #730 - yamsam
524b1c034 3DR Radio Config: Changed Status presentation - removed popup and colorized status output - Arne-W
490cf22f7 3DR Radio Config: Added sanity checks to every pointer access and a message box when loosing connection. - Arne-W
d32aa4064 3DR Radio Config: Several Bugfixes Fixes #917 - Arne-W
5c7f7c178 GraphView: Refactored the log exporting for Ascii and KML - Arne-W
bdaf491bc GraphView: renamed LogParser folder to Loghandling and moved all log dependent files to this folder. - Arne-W
cb495360d GraphView: Removed several superfluous const and casts. - Arne-W
bb0d93cc7 GraphView: Adapted message formatters for copters to new features - Arne-W
35ccff21c GraphView: Added new getValues method to data storage to avoid additional copying. * added filter for string measurements which will be filtered out in the tree view. - Arne-W
6aeba43fc Replaced all isinf() and isnan() by qIsInf() and qIsNaN() fixing build issue with Qt 5.6.x - Arne-W
637a526a0 build: Fix Qt5.5.1 build issue with ULLONG_MAX - Bill Bonney
63fd14dee build: Add tools to patch Qt for Xcode3.0 - Bill Bonney
ca85a836e build: TravisCI add OSX build - Bill Bonney
02e663922 build: Remove QScript - Bill Bonney
f94c1f1fb ParamDownload: Migrate to use of QJson - Bill Bonney
c0757bf5b Elevation: Migrate to use of QJson - Bill Bonney
b7f9203de AutoUpdateCheck: Migrate to use of QJson - Bill Bonney
e674cbf5e Graph View: Moved repair function to base class. - Arne-W
6d7ccc419 Graph View: BugFix - Message index in parsing state now matches logline in table view. - Arne-W
c741d7955 Graph View: Improved timestamp handling * each type has now its own timeline - less error messages about wrong timestamps - Arne-W
517e53f24 Graph View: Added repair function for corrupt messages in tlogs. - Arne-W
3acc9f85a Graph View: Extended type checking for tlog parser - Arne-W
d2ef0b280 Graph View: Fixed mav type detection for ASCII logs. Was too restrictive. - Arne-W
0f9dc74dc Travis CI Addition (#996) - Bill Bonney
e3cb14d91 Update README.md - Bill Bonney
4036ed036 Graph View: Refactored data-model for storing log data - Arne-W
39579bf92 QuickView: Update to show QuickView items in other units. - Bill Bonney
d8d6d262c Cleanup: couple of extra fixes to file removal - Bill Bonney
d72c3c5ec UAS: Add terrain message decoding to logs - Bill Bonney
2ddc703d4 KML: Update to only plot NAV commands - Bill Bonney
d64c2e3c5 Cleanup and remove old files - Bill Bonney
c4b441902 KML: Update to fix GPS msg removal of RelAlt. - Bill Bonney
8e204f603 BasicTuning: Fix incorrect naming - Bill Bonney
aa75a65ef BasicTuning: Fix to use auto detection - Bill Bonney
dda7ea2e2 MainWindow: Remove AutoPilot PIXHAWK - Bill Bonney
349923586 MAVLink: Fix method signature change - Bill Bonney
2e666bb9e Remove MAV_AUTOPILOT_PIXHAWK - Bill Bonney
429057ba9 MAVLink: Update to latest v1.0 spec - Bill Bonney
6cb87f521 MissionEditor: Disable points without valid locations - Bill Bonney
97de82c47 Graph View: Refactored logparser for telemetry log (tlog) files. * Removed old parsing code completely - Arne-W
e989f89b3 Graph View: Refactored logparser for ascii log (log) files - Arne-W
05bdd58b2 Graph View: Refactored logparser for flashlog (bin) files - Arne-W
3a8939058 RadioCalibration: add new ELEVON_OUTPUT values - Mathieu OTHACEHE
daa1798b5 Graph: display .BIN files too (uppercase) when selecting log. - Andre Kjellstrup
b7ea135e5 KMZ: Fixes export to use newer naming - Bill Bonney
f6fb874c3 Mission: Add Terrain Alt as an option. - Bill Bonney
f76ce0370 build: update update file - Bill Bonney
e2bcdb472 build: Update to 2.0.24 - Bill Bonney
97271a853 Build: Update to 2.0.24-rc1 - Bill Bonney
2181ed2d7 AutoUpdate: Fix to handle redirects - Bill Bonney
ca00d23c1 ApmFirmware: Fix to handle redirects on firmware download links - Bill Bonney
0e97390eb Enlarge m_buttonStates array to prevent crash - Alexey Chernov
3105fcf42 Fix build instruction - Mirko Denecke
e8a6382a8 changed due to rename of project file to apm_planner.pro for debian builds - ChristopherOlson
013bea293 build: Update to 2.0.23 release - Bill Bonney
acdbf12c0 build: renamed project build to apm_planner.pro - Bill Bonney
5683b8410 build: Update for Xcode8 builds - Bill Bonney
ee7118b34 Removed index from data model interface. - Arne-W
b91873beb Datamodel now generates its own index. - Arne-W
7f6ed4723 build: update version object - Bill Bonney
677358e6e build: Add C++11 option - Bill Bonney
8ccca61d0 build: Update to 2.0.23-rc4 - Bill Bonney
d9dba572f BasicTuningVC: Add support for AC3.4rc2+ - Bill Bonney
c9bdeab28 CopterPIDs: Fix AC3.4+ detection for new param names - Bill Bonney
9eaa95826 APMToolBar: Fix Typo - Bill Bonney
f2aab7180 AP2Settings: Remove Compatibility Option - Bill Bonney
bad8c5611 ArduPilotMAV: Update code mapping for severity - Bill Bonney
4075e8880 ArduPilotMAV: Adds but detection of Severity Adjustment - Bill Bonney
065f1600d Waypoints: Add Do Set Reverse support for Rover - Bill Bonney
46a68d418 WaypointManager: Update Digicam Control - Bill Bonney
15058c092 build: Update to 2.0.23-rc3 - Bill Bonney
4fe8c43a8 Maps: Update Google API version - Bill Bonney
93ca0f828 build: Update to 2.0.23-rc2 - Bill Bonney
87e322794 BasicTuning: Modify Throttle Accel as Sensitivity - Bill Bonney
2ba7e87a7 CopterPIDs: Fix to use new AC3.4+ naming - Bill Bonney
93363ee4b ArduCopterPIDs: Fix to retrieve parameters on view load - Bill Bonney
056e17cf5 BasicTuning: Update to use new names for AC3.4+ - Bill Bonney
e058efd03 build: fix typo - Bill Bonney
a7184c367 Merge pull request #967 from yuripourre/patch-1 - Bill Bonney
052629a01 Serial Link: Disconnect from signal in case of error to avoid endless loop. Fixes #946 - Arne-W
2f85bed47 Add Linux Build in Fedora - Yuri Pourre
0de02db3b Logging: Adapted debug log window to new logging system - Arne-W
9713647c6 Graph View: Adapted Mode message to handle reason and added reason to formatter. Fixes #955 - Arne-W
bd3b919f7 Graph View: Adapted Message formatters for copter to match AC 3.4 - Arne-W
9a2110098 Merge pull request #960 from dcarpy/nsis - Bill Bonney
29b9be6f8 NSIS Script : Updates for Windows - Dave C
e4fe05269 build: update to build 2.0.23-rc1 - Bill Bonney
f862eac13 Camera Gimbal Config: update interface when disabling other outputs - Ben van Klinken
38adcac62 added docker file for issue #953 - Rik Bruggink
eacc4cacb Found a UI typo and fixed it. - Bradley Conn
f4f451467 Logging: Removed old QsLog initcode and created temp string to avoid double formatting - Arne-W
a8f8e67af Logging: qInfo() will only be used if Qt > 5.5.0 - Arne-W
1c780a796 Logging: Replaced QsLog with Qt mechanisms - Arne-W
ccce60be6 Graph View: Removed member holding database connnection cause it leads to resouce leaks. * DB can now be cleanly closed - Arne-W
5205eb2c9 Graph View: Added finish call to all reused DB queries - Arne-W
82ee43d09 GraphView: Fix Multirotor detection due to parameter renaming in AC3.4 - Bill Bonney
3f6c56d2b Logging: Added messagehandler to reenable file logging. - Arne-W
beb0a028c GraphView: clean up old code - Bill Bonney
33885d151 InfoView: Fix missing dependency - Bill Bonney
25c9d9e1e Graph View: Use HSV Color Model Fixes #932 - Dave C
4d0fc86f8 Logging: Fix to enable QS_LOG or QtDebug logging - Bill Bonney
fbe577694 Changed m_progressDialog back to Smartpointer. * As you can give a "deleter" to the Smartpointer it is possible to call deleteLater() if refcount goes to 0 - Arne-W
28bf758bc Disabled all QsLog objects and redefined macros to use Qt logging. Workaround for #941 - Arne-W
e35fc42bf Graph View: Fix for race condition between deletion of progress dialog and already emitted signals - Arne-W
9d40bbcc3 Graph View: Fixed memleak - m_tableFilterProxyModel was not deleted - Arne-W
e25adcddc Valgrind Fix: Conditional jump or move depends on uninitialised value. * Added value to initializer list. - Arne-W
b2297a35d Valgrind Fix: Conditional jump or move depends on uninitialised value. * Added value to initializer list. - Arne-W
ea1d0f6d5 Valgrind Fix: Conditional jump or move depends on uninitialised value. * Added value to initializer list. - Arne-W
5ba68499b Maps: Update Google API version - Bill Bonney
8d776969c build: 2.0.22 - Bill Bonney
021ee2d1a Logging: Fix random crashing - Bill Bonney
1df39ab54 build: Update to 2.0.21 - Bill Bonney
c679336a0 About: Fix links and version display - Bill Bonney
05810e3ef Parameters: Add support for URL redirection - Bill Bonney
e0d48566d Added QLAND and QRTL flight modes for plane - Andrew Tridgell
5e8e82d80 Logging: Fix C++11 warning (errors with GCC) - Bill Bonney
a2b1ac052 logging: enable multi-thread support and update QSLOG to avoid lockup - Bill Bonney
c1e1ce20e Graph View: Removed memory leak - Arne-W
80a456a1c Graph View: Inserted Semaphore to block parsing thread. Fixes #940 - Arne-W
4014cc9d3 Graph View: Fix some warnings about signals and unregistered metatypes - Arne-W
6cf155604 KML export fix - Kelly Schrock
68f292ea8 QuickView: Use HSV Color Model - Dave C
651bbcc75 Info View: added camera trigger - Andre Kjellstrup
3baea5585 Graph View: Enhanced error handling of logparsing. * improved AP2DataPlotStatus class to reflect more information. * Added specialized handling for time errors - Arne-W
dc4e85fed Graph View: Added some sanity checks to tlog parsing - Arne-W
a2cb5ca34 Graph View: Enable STATUSTEXT tlog message to be handeled as MsgMessage. Fixes #920 - Arne-W
7e3d0027f Graph View: Extracted time handling of data removing some code doubling - Arne-W
d33aca279 Graph View: Converted timestamp from pair to struct (better naming) an made it class member. - Arne-W
6bb3bcabb AccelCalibration: Fix issue with ArduCopter 3.2.1 - Bill Bonney
9fc757bef Graph View: Check for increasing time when reading tlogs. - Arne-W
5c81f622e Firmware: Update url to new ardupilot.org - Bill Bonney
5f0ecdc25 Graph View: Bugfix for potentially detecting wrong mav type when loading a tlog. - Arne-W
81bee3f5c Graph View: Export to google earth (KML) is now done direct from memory if a log is loaded. Fixes:#919 - Arne-W
68ad2020b Improoved scroller behaviour - Arne-W
41e30ecad Graph View: Enabled "time on x-axis" feature for all log types. Fixes:#918 - Arne-W
2f90f1f7b build: update release notes and version object - Bill Bonney
Release Notes - APM Planner 2.0.20 - 2014-03-18
0b4ab40: build: update to 2.0.20 - Bill Bonney
a17c2e6: FirmwareUpdate: rename to http://firmware.ardupilot.org - Bill Bonney
0a10d8b: build: update to release 2.0.19 - Bill Bonney
23458d2: Graph View: Basic fix for #916 - Arne-W
8b0ab7f: Graph View: small refactoring - Arne-W
0eafed2: Graph View: Moved code for adding axis to grouping dialog. Fixes #859 - Arne-W
181b0a5: Build fix for C++03 - Arne-W
45ee104: Graph View: Enabled vertical cursor when using time on x-axis - Arne-W
99486d4: Graph View: Added value grid if only one graph enabled - Arne-W
959a736: Graph View: Changed scaling of legend when in time x-axis mode - Arne-W
ec5a49a: Graph View: Fixed crash when doubleclick into graph while in tlog replay - Arne-W
8e4cc97: Graph View: Mode text arrows now work for loaded Tlogs too. Fixes #668 - Arne-W
19c59aa: Merge pull request #910 from Arne-W/pull_NewFix_661 - Bill Bonney
2295cc4: Merge pull request #908 from Arne-W/pull_hideUnusedCheckBoxes - Bill Bonney
cf44484: Merge pull request #906 from Arne-W/Update_Graphic_framwork - Bill Bonney
6bfba99: Graph View: BugFix for crash while replaying tlog - Arne-W
712ae4a: Graph View: Hide checkboxes in tlog view which have no effect. - Arne-W
9cfddc3: Updated graphic framework to QCustomPlot V1.3.2 - Arne-W
3239d99: Config: prevent space from double-registering clicks. - Andre Kjellstrup
ea74341: Config: revert MAV_SEVERITY_ERROR change - Bill Bonney
1b62bf5: Config: accelerometer calibration fix - Andre Kjellstrup
7df9025: ArduPilot: Fix Severity (part1) - Bill Bonney
aae8d0a: Graph View: Add text arrows for MSG messages - Fixes #898 - Arne-W
5939254: Graph View: Prevent Crash due to disabling an item that was not enabled (not in graph class map) - Arne-W
d5bd651: Graph View: disable clicking/red line when time on X axis - Ben van Klinken
5f61808: Graph View: put red line at currently selected table row - Ben van Klinken
e8e161d: Graphing: save the various checkbox state - Ben van Klinken
ed1d180: Graphing: add ok button to warning screen - Ben van Klinken
20c182f: Graphing: jump to location on double click - Ben van Klinken
40eb821: Info View Raw Status: show table immediately - Ben van Klinken
1c516c6: QT Styles: QToolTip visibility - Ben van Klinken
0b579a8: Graph View: Implemented Event plotting and unified handling of "MODE,ERR,EV" messages Fixes #870 - Arne-W
c41ea0d: Radio3DRConfig: typo in error - Ben van Klinken
4a4bda6: StatusText: Fix severity to be MAVLink Standard - Bill Bonney
bb87b1f: Reformat Links - Bill Bonney
d71a4a7: Update README.md - Bill Bonney
c7a7ec3: DroneShare: Remove Support - Bill Bonney
48a8d61: Build: Update version object - Bill Bonney
68485d7: Build: Update to 2.0.19-rc5 - Bill Bonney
eab51ee: Maps Widget: Update Google API Version 2016-01-31 - Bill Bonney
b0d0fa0: Graph View: Graph selection will be saved when switching x-Axis. Partly fixes #881 - Arne-W
bca0d75: Graph View: Bugfix for table sorting did not work correctly when used first time - Arne-W
c2d4e15: Graph View: Fixed TableView does not start at 0 - Arne-W
8d8c1e8: RangeFinderConfig: Add LightWare rangefinder support. - mirkix
aa1c2d0: PX4Firmware: Added product identifier 0x0012 = v4 - Bill Bonney
ddb4af9: PX4Firmware: Update to download PX4-v4 firmware - Bill Bonney
9487762: PX4Firmware: Disable OTP read - Bill Bonney
359422f: Update README.md - Bill Bonney
f9fc68b: Graph View: Support for plotting data vs. time if all data has microsec timestamp - Arne-W
e12527f: Graph View: Crash fixing and restructuring of TLOG parsing - Arne-W
394bc17: Graph View: Removed unused, already commented variable. - Arne-W
bd5249a: Graph View: Fixed warning (Fixes #875) - Arne-W
758a0f2: Graph View:Create more detailed error message on corrupt log file loading. - Arne-W
73e11a1: Graph View: Allow all Errors to be shown - Arne-W
2c95046: Graph View: Better handling of corrupted logfiles Fixes #868 - Arne-W
72c65dd: Graph View: Speed up table filtering - Arne-W
126f7fc: Graph View: Speed up log export restructured - Arne-W
36cd961: Graph View: Moved member init to initializer list - Arne-W
bbaa3f7: Graph View: Removed useless include - Arne-W
1092d9a: Graph View: Double the speed of binary log parsing. - Arne-W
3004012: Graph View: fixed naming convention for Text Stream - Bill Bonney
a55fdca: Graph: impoved description of ERROR_SUBSYSTEM_FLIGHT_MODE - Andre Kjellstrup
2f8c4b6: Build: Update OSX to use Xcode 7.x 10.11 SDK - Bill Bonney
0711381: Build: Fix wrong message - Bill Bonney
786e9c6: Graph View: Remove commented out lines - Bill Bonney
ad4fc58: Graph View: Fixed sanity check in dataFromPrefetchedRow(). - Arne-W
a0578ba: Graph View: Speed up binary log parsing and log exporting. - Arne-W
e13097b: Graph View: Bugfix: Log Export not complete Fixes #796 - Arne-W
a59c555: Graph: tooltip will show coordinates, milliseconds better - Andre Kjellstrup
4d67d34: Build: Make Flite Audio optional - Bill Bonney
f23fc66: Build: Remove MSVC2010 from supported compilers - Mark Sutherland
a662992: Build: Cleaner check for MSVC def and version - Mark Sutherland
788e20c: Fix Compiler Warnings: un-initialized variables and std::abs - Bill Bonney
e673c46: Fix compiler warnings: Qt Ui Invalid z-order assignment (issue #40) - Markus Reitboeck
7919d78: Fix compiler warnings: removed set but unused variables (issue #40) - Markus Reitboeck
35a4097: Fix compiler warning: unused parameter (issue #40) - Markus Reitboeck
0795d16: Fix compiler warning: unused parameter (issue #40) - Markus Reitboeck
7000f6e: Fix compiler warning: unused parameter in libs (issue #40) - Markus Reitboeck
6c9f161: Fix compiler warning: enumeration value not handled in switch (issue #40) - Markus Reitboeck
84ac262: Fix compiler warning: deleting object of polymorphic class type which has non-virtual destructor (issue #40) - Markus Reitboeck
28fab89: Fix compiler warnings: case value 38 not in enumerated type QVariant::Type and comparison between enum QVariant::Type and enum QMetaType::Type - Markus Reitboeck
71c7fc4: Fix compiler warning: ignored qualifiers (issue #40) - Markus Reitboeck
20d41e1: Fix compiler warning: suggest explicit braces to avoid ambiguous else (issue #40) - Markus Reitboeck
db25ab1: Fix compiler warning unused but set variable and unused variable (issue #40) - Markus Reitboeck
46f0d04: Fix compiler warning initalization sequence (issue #40) - Markus Reitboeck
6f4ec1f: Audio: Fix #834: Revert "Audio: Fixes #812 Port to flite2" - Markus Reitboeck
41e9ab6: Freenect: fix libfreenect working with APM serveral bugs and updates serveral function names - xros
c160fc5: 3DR Radio: Fix Python script dependence on TIMEOUT (fix via @xros) - Bill Bonney
8a29a0d: Graph View: Removed errortype inheritance. - Arne-W
3c90c75: Graph View:Introduced Type herachy for ErrorTypes - Arne-W
3a264f1: Graph View: Moved ErrorType class to mav section. - Arne-W
31f6ed0: Graph View: Changed std::stringstream to QTextstream. - Arne-W
c5a5689: Graph View: Make errors show up like the mode does - Arne-W
69161a7: Build: Add back isnan and isinf defs for MSVC2012 - Mark Sutherland
39478ea: Documentation: Update Windows README section - Mark Sutherland
ae16ecb: Build: Windows MSVC2013 and MinGW work - Mark Sutherland
0719d67: Graph: Add support for logs with Q (64bit data types) - Bill Bonney
98c08f1: Firmware Update: Fix Product recognition for Ubuntu - Andre Kjellstrup
16489dd: Firmware Update: Fix new Product Idenitfier reported on Ubuntu - Bill Bonney
50b2f53: build: Fixes #767 Use SDL version 2.0.3 instead for native Windows builds - Dave C
3aa4f3d: build: Fixes #767 Replace SDL2 x64 dll with x86 dll - Dave C
8d60b71: Waypoint Manager: improvement: use QT built-in function to delete list of pointers - Markus Reitboeck
6ca8ce6: Waypoint Manager: Fixes #808 - segfault when loading mission file - Markus Reitboeck
92e3afa: build: cache working envs for windows build (almost) - Bill Bonney
1e29055: build: update to ignore gstreamer libs - Bill Bonney
e8665ed: Windows NSIS script : Needed updates - Dave C
eeca772: Build: update windows git commands - Bill Bonney
6437a98: Build: Remove G3D and webkit dependency - Bill Bonney
8c676b6: Build: Fix OSX and Windows dependencies - Bill Bonney
51911be: Build: Add qml dependencies to config - Bill Bonney
0ce96ed: Merge branch 'map_improvements' of https://github.com/mrpilot2/apm_planner into mrpilot2-map_improvements - Bill Bonney
bc92870: Update dependencies for ubuntu buillds - Bill Bonney
6eb79fc: Mission Widget: refactoring - merge child items that are searched for SpinBox in one list to fix duplicate for loop - Markus Reitboeck
d933af4: Mission Widget: refactoring - remove unused variable - Markus Reitboeck
ed19592: Mission Widget: refactoring - remove duplicate code when blocking/unblocking SpinBox signals - Markus Reitboeck
b0172b7: Map Widget: refactoring - removed old unused code - Markus Reitboeck
c222de7: Map Widget: Fixes #691 - dragging multiple waypoints - Markus Reitboeck
faded5a: Build: Release 2.0.19-rc4 - Bill Bonney
d7c904a: UAS: Fix queue of requested parameters not emptying. - Bill Bonney
fc042ba: Config View: Fix default tab to be General - Bill Bonney
ccd1fea: AP2DataPlot2DModel: corrections to facilitate export of data to .log - Peter Barker
4dcd8d7: Serial Ports: Fix Qt5.5 reverting serial port naming to pre Qt5.4.1 - Bill Bonney
3ed2b4f: Config View: Add Extra1 label for clarity - Bill Bonney
8f4a7ef: UDP Link: Fixes #802 Dont use QObjects in different threads - Tomaz Canabrava
1c4dded: Version Detection: Fix match of version for name changes - Bill Bonney
8fdbd34: CameraView: make GL header optional for OSX - Bill Bonney
9a75aff: Graph View: Fixes #815 Color not being set - Bill Bonney
5f0890a: Audio: Fixes #812 Port to flite2 - Tomaz Canabrava
7b3aa04: UAS: Fixes #813 misleading message arming audio warning. - mirkix
8082f85: Firmware Update: Fixes #814 infinite recursion while loading MainWindow v2 - Tomaz Canabrava
3d236d1: Mission Widget: Add support for NAV_LOITER_TO_ALT - Andre Kjellstrup
e65fbf7: General: Fixed some build issues on Qt 5.5.0 on AOSC GNU/Linux - Icenowy
d676bbc: Build: Update to 2.0.19-rc3 - Bill Bonney
a151dfe: Donate Button: Made the button more prominent. - Bill Bonney
447157d: APM TooBar: Changes to Donation button - Bill Bonney
7484a20: Vehicle Info: Fix double property declaration - Bill Bonney
df93e5e: Build: Fixes to support Xcode 7.0 with Qt5.4.2 - Bill Bonney
283b400: Build: Fix beta release to go to 2.0.18 - Bill Bonney
1234d59: Vibration Monitor: Added Key - Bill Bonney
98d0b57: EKF Monitor: Added Key - Bill Bonney
41ac966: EKF Monitor: Additions to connect EKF STATUS REPORT DATA - Bill Bonney
fc455ed: EKF Monitor: Change name to BarGauge - Bill Bonney
8aaf3d2: Vibration Monitor: Rename VibrationGauge to BarGauge - Bill Bonney
bb2ee6b: EKF Monitor: Create EKF Monitor Widget - Bill Bonney
c085ca2: Vibration Monitor: Add Vibration Widget to Tool Widgets Menu - Bill Bonney
e09a0de: Vibration Monitor: Simple Text readout - Bill Bonney
d4f9729: Vibration Monitor: Create Widget Fraemwork - Bill Bonney
71456bc: UI Framework: Enable use of Network Proxies - Mark D Horn
20f7b8f: UDP Link: Fixes issue with UDP connections and Qt5.4.2+ - Bill Bonney
b51d430: Firmware Update: Fix Arduino uploader for Qt5.2.x OSX defect - Bill Bonney
b0fa90c: UAS: Fixes #776 Radio RSSI argument missing - Bill Bonney
1754f8b: Serial Link: Fix UI Layout - Bill Bonney
8e8263c: UDP Link: Fix layout - Bill Bonney
88dda5c: TCP Link: Add hostname lookup - Bill Bonney
12ab123: MAVLink: Update to MAVLink dated Wed Jun 17 14:19:15 2015 - Bill Bonney
2879e48: UAS: Queue requested parameters - walmis
341be4c: CopterPidConfig: Disable fields if parameters are not fetched properly. Add Z Accel D field - walmis
aa71f47: Graph View: Fixes #774 Integer Division impacting resolution - Bill Bonney
280e79e: Release: Update 2.0.18 release notes - Bill Bonney
f7a04f8: config: update version object for AP2 2.0.18 release - Bill Bonney
51b6aa9: configuration: Update to 2.0.18 release - Bill Bonney
245fb82: Graph View: Use int conversion for QString::number() - Bill Bonney
70b9a58: Graph View: Fix conversion issue - Bill Bonney
f6823e2: UDP Link: Improve naming - Bill Bonney
2f30aa0: Camera Setup: Add extra RC channel selectors to support up to 16 channels - Александр Фролов
62cb360: Map Widget: Update Google API versions - Bill Bonney
1afd084: APM Toolbar: Add Donate Button to Toolbar and Menu Item - Bill Bonney
8809381: Serial Ports: stop scanning when ports have been selected - Bill Bonney
cdf3a7c: 3DR Radio Config: Stop scanning serial ports until view shown - Bill Bonney
b996db6: Full Parameter View: Fix locale to use ‘decimal’ only - Bill Bonney
a6f3219: Full Parameter View: Fix inconsistency when param update refreshed - Bill Bonney
02c8069: build: fixed radio uplaoder problem in Linux build - martinjuju
fc9fca0: Graph View: correct FMT header in plain-text export - Peter Barker
e193313: Range Finder: Add BBB-PRU support - mirkix
54df6c6: Radio Calibration: lower minimum PWM value - Lucas De Marchi
7b34a00: Firmware Upload: Add support for Gumstix AeroCore. - Andrew C. Smith
0b76f70: APM: Add Brake mode - Bill Bonney
c3d06ab: Comms UI: Remove automatic dismiss of TCP link - Bill Bonney
1b22a3c: Map Widget: Fixes #701 Add auto map caching option - Mark Sutherland
14c0ff5: Elevation Widget: added distance from previous WP. - Andre Kjellstrup
0703c8d: Extended Tuning: Fixes #755 WP NAV/LOITER SPEED swapped - Bill Bonney
c59edad: Map Widget: Add 3D+DGPS and 3D+RTK to Fix label - mirkix
d7e38a9: Build: update autoudpate object - Bill Bonney
c0ee96c: Main View: fixed #605 - Markus Reitboeck
44ea50a: README: Add note about libxcb crashing on 14.04LTS - Bill Bonney
230b768: RPM-packaged Yum repository configuration files - Александр Фролов
d7af33d: Repository base URL fixed - Александр Фролов
54fd6cd: Yum repository support - Александр Фролов
0b4ab40: build: update to 2.0.20 - Bill Bonney
a17c2e6: FirmwareUpdate: rename to http://firmware.ardupilot.org - Bill Bonney
0a10d8b: build: update to release 2.0.19 - Bill Bonney
23458d2: Graph View: Basic fix for #916 - Arne-W
8b0ab7f: Graph View: small refactoring - Arne-W
0eafed2: Graph View: Moved code for adding axis to grouping dialog. Fixes #859 - Arne-W
181b0a5: Build fix for C++03 - Arne-W
45ee104: Graph View: Enabled vertical cursor when using time on x-axis - Arne-W
99486d4: Graph View: Added value grid if only one graph enabled - Arne-W
959a736: Graph View: Changed scaling of legend when in time x-axis mode - Arne-W
ec5a49a: Graph View: Fixed crash when doubleclick into graph while in tlog replay - Arne-W
8e4cc97: Graph View: Mode text arrows now work for loaded Tlogs too. Fixes #668 - Arne-W
19c59aa: Merge pull request #910 from Arne-W/pull_NewFix_661 - Bill Bonney
2295cc4: Merge pull request #908 from Arne-W/pull_hideUnusedCheckBoxes - Bill Bonney
cf44484: Merge pull request #906 from Arne-W/Update_Graphic_framwork - Bill Bonney
6bfba99: Graph View: BugFix for crash while replaying tlog - Arne-W
712ae4a: Graph View: Hide checkboxes in tlog view which have no effect. - Arne-W
9cfddc3: Updated graphic framework to QCustomPlot V1.3.2 - Arne-W
3239d99: Config: prevent space from double-registering clicks. - Andre Kjellstrup
ea74341: Config: revert MAV_SEVERITY_ERROR change - Bill Bonney
1b62bf5: Config: accelerometer calibration fix - Andre Kjellstrup
7df9025: ArduPilot: Fix Severity (part1) - Bill Bonney
aae8d0a: Graph View: Add text arrows for MSG messages - Fixes #898 - Arne-W
5939254: Graph View: Prevent Crash due to disabling an item that was not enabled (not in graph class map) - Arne-W
d5bd651: Graph View: disable clicking/red line when time on X axis - Ben van Klinken
5f61808: Graph View: put red line at currently selected table row - Ben van Klinken
e8e161d: Graphing: save the various checkbox state - Ben van Klinken
ed1d180: Graphing: add ok button to warning screen - Ben van Klinken
20c182f: Graphing: jump to location on double click - Ben van Klinken
40eb821: Info View Raw Status: show table immediately - Ben van Klinken
1c516c6: QT Styles: QToolTip visibility - Ben van Klinken
0b579a8: Graph View: Implemented Event plotting and unified handling of "MODE,ERR,EV" messages Fixes #870 - Arne-W
c41ea0d: Radio3DRConfig: typo in error - Ben van Klinken
4a4bda6: StatusText: Fix severity to be MAVLink Standard - Bill Bonney
bb87b1f: Reformat Links - Bill Bonney
d71a4a7: Update README.md - Bill Bonney
c7a7ec3: DroneShare: Remove Support - Bill Bonney
48a8d61: Build: Update version object - Bill Bonney
68485d7: Build: Update to 2.0.19-rc5 - Bill Bonney
eab51ee: Maps Widget: Update Google API Version 2016-01-31 - Bill Bonney
b0d0fa0: Graph View: Graph selection will be saved when switching x-Axis. Partly fixes #881 - Arne-W
bca0d75: Graph View: Bugfix for table sorting did not work correctly when used first time - Arne-W
c2d4e15: Graph View: Fixed TableView does not start at 0 - Arne-W
8d8c1e8: RangeFinderConfig: Add LightWare rangefinder support. - mirkix
aa1c2d0: PX4Firmware: Added product identifier 0x0012 = v4 - Bill Bonney
ddb4af9: PX4Firmware: Update to download PX4-v4 firmware - Bill Bonney
9487762: PX4Firmware: Disable OTP read - Bill Bonney
359422f: Update README.md - Bill Bonney
f9fc68b: Graph View: Support for plotting data vs. time if all data has microsec timestamp - Arne-W
e12527f: Graph View: Crash fixing and restructuring of TLOG parsing - Arne-W
394bc17: Graph View: Removed unused, already commented variable. - Arne-W
bd5249a: Graph View: Fixed warning (Fixes #875) - Arne-W
758a0f2: Graph View:Create more detailed error message on corrupt log file loading. - Arne-W
73e11a1: Graph View: Allow all Errors to be shown - Arne-W
2c95046: Graph View: Better handling of corrupted logfiles Fixes #868 - Arne-W
72c65dd: Graph View: Speed up table filtering - Arne-W
126f7fc: Graph View: Speed up log export restructured - Arne-W
36cd961: Graph View: Moved member init to initializer list - Arne-W
bbaa3f7: Graph View: Removed useless include - Arne-W
1092d9a: Graph View: Double the speed of binary log parsing. - Arne-W
3004012: Graph View: fixed naming convention for Text Stream - Bill Bonney
a55fdca: Graph: impoved description of ERROR_SUBSYSTEM_FLIGHT_MODE - Andre Kjellstrup
2f8c4b6: Build: Update OSX to use Xcode 7.x 10.11 SDK - Bill Bonney
0711381: Build: Fix wrong message - Bill Bonney
786e9c6: Graph View: Remove commented out lines - Bill Bonney
ad4fc58: Graph View: Fixed sanity check in dataFromPrefetchedRow(). - Arne-W
a0578ba: Graph View: Speed up binary log parsing and log exporting. - Arne-W
e13097b: Graph View: Bugfix: Log Export not complete Fixes #796 - Arne-W
a59c555: Graph: tooltip will show coordinates, milliseconds better - Andre Kjellstrup
4d67d34: Build: Make Flite Audio optional - Bill Bonney
f23fc66: Build: Remove MSVC2010 from supported compilers - Mark Sutherland
a662992: Build: Cleaner check for MSVC def and version - Mark Sutherland
788e20c: Fix Compiler Warnings: un-initialized variables and std::abs - Bill Bonney
e673c46: Fix compiler warnings: Qt Ui Invalid z-order assignment (issue #40) - Markus Reitboeck
7919d78: Fix compiler warnings: removed set but unused variables (issue #40) - Markus Reitboeck
35a4097: Fix compiler warning: unused parameter (issue #40) - Markus Reitboeck
0795d16: Fix compiler warning: unused parameter (issue #40) - Markus Reitboeck
7000f6e: Fix compiler warning: unused parameter in libs (issue #40) - Markus Reitboeck
6c9f161: Fix compiler warning: enumeration value not handled in switch (issue #40) - Markus Reitboeck
84ac262: Fix compiler warning: deleting object of polymorphic class type which has non-virtual destructor (issue #40) - Markus Reitboeck
28fab89: Fix compiler warnings: case value 38 not in enumerated type QVariant::Type and comparison between enum QVariant::Type and enum QMetaType::Type - Markus Reitboeck
71c7fc4: Fix compiler warning: ignored qualifiers (issue #40) - Markus Reitboeck
20d41e1: Fix compiler warning: suggest explicit braces to avoid ambiguous else (issue #40) - Markus Reitboeck
db25ab1: Fix compiler warning unused but set variable and unused variable (issue #40) - Markus Reitboeck
46f0d04: Fix compiler warning initalization sequence (issue #40) - Markus Reitboeck
6f4ec1f: Audio: Fix #834: Revert "Audio: Fixes #812 Port to flite2" - Markus Reitboeck
41e9ab6: Freenect: fix libfreenect working with APM serveral bugs and updates serveral function names - xros
c160fc5: 3DR Radio: Fix Python script dependence on TIMEOUT (fix via @xros) - Bill Bonney
8a29a0d: Graph View: Removed errortype inheritance. - Arne-W
3c90c75: Graph View:Introduced Type herachy for ErrorTypes - Arne-W
3a264f1: Graph View: Moved ErrorType class to mav section. - Arne-W
31f6ed0: Graph View: Changed std::stringstream to QTextstream. - Arne-W
c5a5689: Graph View: Make errors show up like the mode does - Arne-W
69161a7: Build: Add back isnan and isinf defs for MSVC2012 - Mark Sutherland
39478ea: Documentation: Update Windows README section - Mark Sutherland
ae16ecb: Build: Windows MSVC2013 and MinGW work - Mark Sutherland
0719d67: Graph: Add support for logs with Q (64bit data types) - Bill Bonney
98c08f1: Firmware Update: Fix Product recognition for Ubuntu - Andre Kjellstrup
16489dd: Firmware Update: Fix new Product Idenitfier reported on Ubuntu - Bill Bonney
50b2f53: build: Fixes #767 Use SDL version 2.0.3 instead for native Windows builds - Dave C
3aa4f3d: build: Fixes #767 Replace SDL2 x64 dll with x86 dll - Dave C
8d60b71: Waypoint Manager: improvement: use QT built-in function to delete list of pointers - Markus Reitboeck
6ca8ce6: Waypoint Manager: Fixes #808 - segfault when loading mission file - Markus Reitboeck
92e3afa: build: cache working envs for windows build (almost) - Bill Bonney
1e29055: build: update to ignore gstreamer libs - Bill Bonney
e8665ed: Windows NSIS script : Needed updates - Dave C
eeca772: Build: update windows git commands - Bill Bonney
6437a98: Build: Remove G3D and webkit dependency - Bill Bonney
8c676b6: Build: Fix OSX and Windows dependencies - Bill Bonney
51911be: Build: Add qml dependencies to config - Bill Bonney
0ce96ed: Merge branch 'map_improvements' of https://github.com/mrpilot2/apm_planner into mrpilot2-map_improvements - Bill Bonney
bc92870: Update dependencies for ubuntu buillds - Bill Bonney
6eb79fc: Mission Widget: refactoring - merge child items that are searched for SpinBox in one list to fix duplicate for loop - Markus Reitboeck
d933af4: Mission Widget: refactoring - remove unused variable - Markus Reitboeck
ed19592: Mission Widget: refactoring - remove duplicate code when blocking/unblocking SpinBox signals - Markus Reitboeck
b0172b7: Map Widget: refactoring - removed old unused code - Markus Reitboeck
c222de7: Map Widget: Fixes #691 - dragging multiple waypoints - Markus Reitboeck
faded5a: Build: Release 2.0.19-rc4 - Bill Bonney
d7c904a: UAS: Fix queue of requested parameters not emptying. - Bill Bonney
fc042ba: Config View: Fix default tab to be General - Bill Bonney
ccd1fea: AP2DataPlot2DModel: corrections to facilitate export of data to .log - Peter Barker
4dcd8d7: Serial Ports: Fix Qt5.5 reverting serial port naming to pre Qt5.4.1 - Bill Bonney
3ed2b4f: Config View: Add Extra1 label for clarity - Bill Bonney
8f4a7ef: UDP Link: Fixes #802 Dont use QObjects in different threads - Tomaz Canabrava
1c4dded: Version Detection: Fix match of version for name changes - Bill Bonney
8fdbd34: CameraView: make GL header optional for OSX - Bill Bonney
9a75aff: Graph View: Fixes #815 Color not being set - Bill Bonney
5f0890a: Audio: Fixes #812 Port to flite2 - Tomaz Canabrava
7b3aa04: UAS: Fixes #813 misleading message arming audio warning. - mirkix
8082f85: Firmware Update: Fixes #814 infinite recursion while loading MainWindow v2 - Tomaz Canabrava
3d236d1: Mission Widget: Add support for NAV_LOITER_TO_ALT - Andre Kjellstrup
e65fbf7: General: Fixed some build issues on Qt 5.5.0 on AOSC GNU/Linux - Icenowy
d676bbc: Build: Update to 2.0.19-rc3 - Bill Bonney
a151dfe: Donate Button: Made the button more prominent. - Bill Bonney
447157d: APM TooBar: Changes to Donation button - Bill Bonney
7484a20: Vehicle Info: Fix double property declaration - Bill Bonney
df93e5e: Build: Fixes to support Xcode 7.0 with Qt5.4.2 - Bill Bonney
283b400: Build: Fix beta release to go to 2.0.18 - Bill Bonney
1234d59: Vibration Monitor: Added Key - Bill Bonney
98d0b57: EKF Monitor: Added Key - Bill Bonney
41ac966: EKF Monitor: Additions to connect EKF STATUS REPORT DATA - Bill Bonney
fc455ed: EKF Monitor: Change name to BarGauge - Bill Bonney
8aaf3d2: Vibration Monitor: Rename VibrationGauge to BarGauge - Bill Bonney
bb2ee6b: EKF Monitor: Create EKF Monitor Widget - Bill Bonney
c085ca2: Vibration Monitor: Add Vibration Widget to Tool Widgets Menu - Bill Bonney
e09a0de: Vibration Monitor: Simple Text readout - Bill Bonney
d4f9729: Vibration Monitor: Create Widget Fraemwork - Bill Bonney
71456bc: UI Framework: Enable use of Network Proxies - Mark D Horn
20f7b8f: UDP Link: Fixes issue with UDP connections and Qt5.4.2+ - Bill Bonney
b51d430: Firmware Update: Fix Arduino uploader for Qt5.2.x OSX defect - Bill Bonney
b0fa90c: UAS: Fixes #776 Radio RSSI argument missing - Bill Bonney
1754f8b: Serial Link: Fix UI Layout - Bill Bonney
8e8263c: UDP Link: Fix layout - Bill Bonney
88dda5c: TCP Link: Add hostname lookup - Bill Bonney
12ab123: MAVLink: Update to MAVLink dated Wed Jun 17 14:19:15 2015 - Bill Bonney
2879e48: UAS: Queue requested parameters - walmis
341be4c: CopterPidConfig: Disable fields if parameters are not fetched properly. Add Z Accel D field - walmis
aa71f47: Graph View: Fixes #774 Integer Division impacting resolution - Bill Bonney
Release Notes - APM Planner 2.0.18 - 2015-07-25
51b6aa9: configuration: Update to 2.0.18 release - Bill Bonney
245fb82: Graph View: Use int conversion for QString::number() - Bill Bonney
70b9a58: Graph View: Fix conversion issue - Bill Bonney
f6823e2: UDP Link: Improve naming - Bill Bonney
2f30aa0: Camera Setup: Add extra RC channel selectors to support up to 16 channels - Александр Фролов
62cb360: Map Widget: Update Google API versions - Bill Bonney
1afd084: APM Toolbar: Add Donate Button to Toolbar and Menu Item - Bill Bonney
8809381: Serial Ports: stop scanning when ports have been selected - Bill Bonney
cdf3a7c: 3DR Radio Config: Stop scanning serial ports until view shown - Bill Bonney
b996db6: Full Parameter View: Fix locale to use ‘decimal’ only - Bill Bonney
a6f3219: Full Parameter View: Fix inconsistency when param update refreshed - Bill Bonney
02c8069: build: fixed radio uplaoder problem in Linux build - martinjuju
fc9fca0: Graph View: correct FMT header in plain-text export - Peter Barker
e193313: Range Finder: Add BBB-PRU support - mirkix
54df6c6: Radio Calibration: lower minimum PWM value - Lucas De Marchi
7b34a00: Firmware Upload: Add support for Gumstix AeroCore. - Andrew C. Smith
0b76f70: APM: Add Brake mode - Bill Bonney
c3d06ab: Comms UI: Remove automatic dismiss of TCP link - Bill Bonney
1b22a3c: Map Widget: Fixes #701 Add auto map caching option - Mark Sutherland
14c0ff5: Elevation Widget: added distance from previous WP. - Andre Kjellstrup
0703c8d: Extended Tuning: Fixes #755 WP NAV/LOITER SPEED swapped - Bill Bonney
c59edad: Map Widget: Add 3D+DGPS and 3D+RTK to Fix label - mirkix
d7e38a9: Build: update autoudpate object - Bill Bonney
c0ee96c: Main View: fixed #605 - Markus Reitboeck
44ea50a: README: Add note about libxcb crashing on 14.04LTS - Bill Bonney
230b768: RPM-packaged Yum repository configuration files - Александр Фролов
d7af33d: Repository base URL fixed - Александр Фролов
54fd6cd: Yum repository support - Александр Фролов
Release Notes - APM Planner 2.0.18-rc2 - 2015-06-17
65caf45: configuration: Update to 2.0.18-rc2 release - Bill Bonney
a1ed6d2: Joystick Support: bugfix: moved init method back to run method to allow initializing a joystick during runtime - Markus Reitboeck
6ff6926: Joystick Widget: removed init() as it locks startup (requires fix) - Bill Bonney
8ec23e8: Joystick Widget: improvement: create joystick buttons dynamically as there are joysticks with more than 11 buttons - Markus Reitboeck
cb87b43: Joystick Widget: improvement: change button label color only if the button state changes - Markus Reitboeck
2062769: Joystick Widget: bugfix: There are 11 joystick button labels displayed - Markus Reitboeck
d68d913: Joystick Mapping: Fixes #718 Add 'save settings' feature - Markus Reitboeck
a52fca0: Settings Widget: added window title for file location dialog - mrpilot
3d59a75: Settings Widget: disable file locations text fields because user input in these fields is not applied - mrpilot
16c408d: Settings Widget: added support to change missions directory - mrpilot
87d11d3: General Settings: Fixes #730 default directory always created - mrpilot
bca8b5c: Extended Tuning: Fixes #733 Stab Roll/Pitch reversed - Bill Bonney
d368575: configuration: Update json version object to 2.0.18-rc1 - Bill Bonney
0743f5f: Release: Update 2.0.18-rc1 release notes - Bill Bonney
Release Notes - APM Planner 2.0.18-rc1 - 2015-06-08
e5405e1: configuration: Update to 2.0.18-rc1 release - Bill Bonney
c085141: UDP Client Link: minor defect fix - Bill Bonney
b9671ed: UDP Client Link: improve link conenction and UI - Bill Bonney
35d1f82: UDP Client Link: Add fix to force send data - Bill Bonney
ae24dce: UDP Client Link: Add new files for UDP Client Connection - Add changes for LinkManager Factory and UDP_CLIENT link type - Bill Bonney
16dfc14: Serial Link: Change to use new Link signal - Bill Bonney
b51e04e: Serial Link: Update to use new LinkManagerFactory - Bill Bonney
90eff10: UDP Link: Update to use new LinkManagerFactory - Bill Bonney
5ab3331: TCP Link: Update to use new LinkManagerFactory - Bill Bonney
ed1f602: Link Manager: Refactor object creation to LinkManagerFactory object - Bill Bonney
0279cf5: UDP Link: Update you use new updateLink signal - Bill Bonney
851359a: TCP Link: Refactored to emit LinkChanged signal - Bill Bonney
804ee15: Link Manager: Major refactor to Link Manager and dependents - Bill Bonney
7934a28: Graph View: fix output of log load times - Peter Barker
0b59fee: PX4 Firmware Uploader: Update for Linux and OSX certs - Bill Bonney
dfb0f76: PX4Uploader: Update valid certificates - Bill Bonney
503e689: UAS: Fix parameter reads of 16 bytes failing - Bill Bonney
57e08b3: Extended Tuning: Add Filter params to View - Bill Bonney
e08a6fd: Extended Tuning: Update Copter 3.3 PID Layout issue - Bill Bonney
14fe717: Extended Tuning: Improve PID view loading - Bill Bonney
37e265d: Extended Config: Make dynamic based on uas - Bill Bonney
6b8d4cc: Extended Config: Update Copter PID UI layout - Bill Bonney
068b8b4: Extended Config: Add new Copter PID tuning view for Copter3.3+ - Bill Bonney
0d7e8c2: Fix dates - Bill Bonney
81fe167: Accel Calibration: Add MAV ID ident to calibration message - Bill Bonney
05140b8: Accel Calibration: Fix missing timer reset - Bill Bonney
71ab1ab: Accel Calibration: Fixes #713 Update Accel Calibration for 3D only for all vehicles - Bill Bonney
15f2e35: Release Notes: Add notes for 2.0.15/2.0.16/2.0.17 - Bill Bonney
1088826: MAVLink Decoder: Fix Compile Warnings - Bill Bonney
92ff19d: Maps Widget: Update Google API Version - Bill Bonney
6e65d06: MAVLink: Fix comparison to use correct type. - Bill Bonney
c454c66: MAVLink: Fixes #703 Ambiguous type cast for 64bit Systems - Bill Bonney
3910844: Audio: use "default" ALSA device instead of "plughw:0" - Michał Wróbel
0fd6525: Plan View: Move mission item to Top/Bottom - Andre Kjellstrup
4cad40f: Graph View: Fix for #699 time_boot_ms and time_usec fields not showing - [email protected]
1bc3f17: AP2DataPlot: add support for q and Q format types - Peter Barker
10076e2: Elevation Widget: Fix incomplete refactor of elevation update - Bill Bonney
6593e7b: Joystick Widget: Add Activate/Deactivate button - Bill Bonney
249bc8e: Plan View: tooltip no longer adds MSL to any altitude. - Andre Kjellstrup
43d5f9d: Airspeed setup: adding Pixhawk I2C airspeed sensor - Andre Kjellstrup
1f99ca5: Mission Widget: button hotkeys fix - Andre Kjellstrup
3d23423: APM Tool Bar: Add simple view of TCP connections - Bill Bonney
bc66726: ArduPilot: Fix new modes to be displayed as text - Bill Bonney
e98bce4: Garph View: Fix default mode view display - Bill Bonney
01efa08: Graph View: Fix tooltip to show to only 4 decimal places when not 0 - Andre Kjellstrup
9781a93: Accel Calibration: Fixes the display of warning messages in output window - Bill Bonney
9fe1d6b: Serial Configuration: Update Serial Ports Dynamically - Bill Bonney
7ee506e: 3DR Radio Config: Fixes #690 Update Serial Ports Dynamically - Bill Bonney
14d7149: Range Finder: Add PX4-PWM as an option - Bill Bonney
af29fe8: UAS Widget: Add scrollbar to Unmanned Systems list when list is long - labtoast
d860cc9: MissionEditor: Allow higher default/preset altitude - Andre Kjellstrup
56d9bfb: Mission Widget: Rename Get/Set to Read/Write - Bill Bonney
8fb3b2a: Mission Widget: button hotkeys - André Kjellstrup
f7c06d8: Flight Modes: Hotkey, and name change - André Kjellstrup
15ac5ab: Tuning Setup: hotkeys for ArduRover buttons - André Kjellstrup
23c8f8e: Tuning Setup: hotkeys for ArduPlane buttons - André Kjellstrup
6934e8b: Tuning Setup: hotkeys for ArduCopter buttons - André Kjellstrup
6536ac0: Full Parameter View - added keyboard shortcuts - André Kjellstrup
bc73268: Accel Calibration: Fix compiler warnings - Bill Bonney
37c86c0: Accel Calibration: Update to work with AC3.3-rc1 - Bill Bonney
e76141c: GraphView: Added reasonable default to display mode integer if no mode is found for loaded tlogs - Michael Carpenter
1651346: GraphView: Fix for tlog loading not displaying mode changes - Michael Carpenter
acb0a57: ApmToolbar: Actual fix for #669, commited wrong modification - Michael Carpenter
7aa3f92: ApmToolbar: Fix #669, crash when toolbar fails to load, and added info to readme about additional dependancies - Michael Carpenter
b8b677c: PrimaryFlightDisplay: Fix #666, PFD not updating when replaying tlogs - Michael Carpenter
7c09afe: Maps Widget: Fixes #657 map shown in Portuguese - Bill Bonney
9fbdb4b: Radio Calibration: Drop channel validation lower PWM to 895 - Bill Bonney
c9259ea: config: update version object for AP2 2.0.17 release - Bill Bonney
dc9bc43: Serial Connection: Fixes #656 for QT5.4.1 issue on OS X - Bill Bonney
88b8af5: Full Parameter View: Fixed typo in suggested filename - Chris Anderson
bd86a57: Param Widget: Add ‘=’ as a delimiter for param files - Bill Bonney
5f8aa07: Param Widget: Add ‘tab’ & ‘crlf’ as a delimiter for param files - Bill Bonney
b081977: Graph View: Fix #654, logs loaded using unsigned when they should used signed for 'h' values - Michael Carpenter
298a91c: Radio Calibration: Fixes #653: Cannot use radios with less than 8 channels - Bill Bonney
Release Notes - APM Planner 2.0.17 - 2015-03-31
47bd731: Version change for 2.0.17 release - Michael Carpenter
c9718ee: Param Manager: Added timer to check if UAV missed the parameter request message, and resend - Michael Carpenter
8ff7139: Compass Config: Remove commented out code - Bill Bonney
66bbb9c: Compass Config: Fix #640, when it attempts to calibrate a second compass when there is none - Michael Carpenter
204a976: Compass Config: Add extra logging to see which compass is failing calibration - Bill Bonney
b61d447: Firmware Upload: Remove extra debug messages - Michael Carpenter
af4cc61: Firmware Upload: Show error on invalid autopilot, rather than just not displaying firmware versions - Michael Carpenter
5a76308: Set AbsPositionOverview and RelPositionOverview variables to zero on class construction. prevents random values entering the system. - Andrew Harrison
a53153e: Rewrite of the RollPitchIndicator.qml to scale nicely at different sizes - Andrew Harrison
a8f49fc: Got the roll indicator to display correctly. Still need to get window rescalling correct - Andrew Harrison
2475ee2: Set the member variables to 0. Prevents random values crashing PrimaryFlightDisplay.qml - Andrew Harrison
08ca5a8: Adv Parameter List: Fix #642, issue caused by checking locale of converted numbers. - Michael Carpenter
512a779: Firmware Upload: Added message to notify users of AC3.3 not being available for APM1/APM2 - Michael Carpenter
d3dfe8b: Droneshare: Added some better window text to the Droneshare dialog - Michael Carpenter
cefb41f: Radio Calibration: Fixes #641: Add rev checkboxes to rover - Bill Bonney
55d8d46: Radio Calibration: Fix Button renaming when calibration cancelled - Bill Bonney
Release Notes - APM Planner 2.0.16 - 2015-03-09
ecf57ca: Version change for 2.0.16 release - Michael Carpenter
6cd6f59: Adv Param List: Fix for invalid numbers entered in Adv Param List being taken as zero - Michael Carpenter
9880902: Graph View: Fix #612 Clear scaling button clears all custom scaling and grouping - Michael Carpenter
066d0e3: Graph View: Fix #563, removed MODE from the graph control so clear selection actually clears - Michael Carpenter
bb5de3b: Build: Fix for Eigen removal breaking windows and linux builds - Michael Carpenter
712e454: MAVLINK: Remove Warning - Bill Bonney
2ad42ee: Compass Config: Update to use new Vector3d object - Bill Bonney
19d3cab: Simulation: Remove XPlane simulation (NOT WORKING) - Bill Bonney
6894b78: Compass Config: Addition of new Vector3d class - Bill Bonney
e42c30c: Eigen Libs: Removal of library - Bill Bonney
3f7633f: Linux: removed extraneous paths and QT4 reference - Stephen Dade
7afe01b: scripts: update upload_osx build server script - Bill Bonney
85499ad: Compass Config: Fix calibration not reseting offsets to zero. - Bill Bonney
32d3a5a: Install Firmware: Fixes #624 Firmware list not showing - Bill Bonney
77a7866: Graph View: Fix setPen to use QPen not QColor - Bill Bonney
4bd337f: Graph View: Fix pen width to be 1pt size - Bill Bonney
26cc973: Radio Config: Fix crash when closing Radio Flash Wizard - Bill Bonney
d1600a3: Add Waffle.io progress graph - Bill Bonney
e3d6537: Mission Widget: Fixes #614 to correctly show infinite Do Jumps - Bill Bonney
fb242d0: scripts: add new gitter notification scripts - Bill Bonney
7dd2072: scripts: Update to TeamCity and ‘stable’ version - Bill Bonney
4c29f49: Graph View: Fix #608, no longer show messages for selection that are not in the log - Michael Carpenter
c4be11b: Graph View: Fix for #597, child graph items are now sorted by message order - Michael Carpenter
87313d3: Graph View: Fix #600 Addition of horizontal splitter, and graphical indicators of the splitters for resizing items in the graph view - Michael Carpenter
2b0682f: scripts: Update Scripts for TeamCity Builds - Bill Bonney
2e11c86: Droneshare: Fix Dialog not showing and crashing - Bill Bonney
b060c07: Add Wind/Linux 2.0.16-rc3 to version object - Bill Bonney
51f495b: Add OSX 2.0.16-rc3 to version object - Bill Bonney
56f1856: configuration: Update to 2.0.16-rc3 release - Bill Bonney
5eca229: Camera Gimbal Config: Update to change MNT_MODE to RC_TARGETTING - Bill Bonney
249889f: 3DR Radio Config: Update HW flow not being updated - Bill Bonney
bfcd686: 3DR Radio Config: Adds device_id to settings object - Bill Bonney
3a8236c: 3DR Radio Config: Fixes #579 433MHz frequencies not showing correctly - Bill Bonney
ac4c3cf: Map Widget: Fixes display of ROI and missing lines between waypoints - wolkstein
143785b: Radio Calibration: Check for valid PWM in range of 900-2100 - Bill Bonney
09d6742: Radio Calibration: Fixes #601 RC_TRIM values not being saved - Bill Bonney
8f464d4: Parameters: Reduce logging to spped up download of parameters - Bill Bonney
bcd52e1: Graph View: Added the ability to change graph color, fix #558 - Michael Carpenter
cc0e32a: Camera Config: Fix stabilize options not udpating - Bill Bonney
8ec0220: Graph View: Made default window size more reasonable and smaller - Michael Carpenter
8da7baf: Graph View: Fixed export progress cancel button to actually work - Michael Carpenter
b8018db: Graph View: Fix for cancel of progress dialog to work for binary logs. - Michael Carpenter
2b8b19a: General: Code cleanup to fix warnings and remove commented code - Michael Carpenter
287d7ed: Graph View: Reworked log graph layout. - Michael Carpenter
782d056: Graph View: Fix #572, graph not automatically scrolling to fit when loading - Michael Carpenter
1e89f9f: Graph View: Make Progress Dialogs modal - Bill Bonney
a0c1dab: Graph View: Only show Export Button in graph window - Bill Bonney
b72ff5a: Frame Config: Fix layout size - Bill Bonney
812e144: Graph View: Add Log to KML button implementation - Bill Bonney
8848bf8: Terminal View: remove Log to KML button - Bill Bonney
f00e845: Download Params: Fix broken signal connection - Bill Bonney
c52448a: Frame Config: Fix layout issues for frame selection - Bill Bonney
2c50874: Terminal View: Improve Layout margins - Bill Bonney
a690758: Main Window: Add shortcut for Terminal Console SHIFT—META-M - Bill Bonney
b91b62f: Terminal View: Add feature to enable local echo - Bill Bonney
0bfadfe: Terminal View: Remove automatic disabling of toolbar - Bill Bonney
313e4ca: Terminal View: Refactor Terminal View in a menu option - Bill Bonney
1e95919: configuration: Update to 2.0.16-rc2 in update object - Bill Bonney
a99aeb3: configuration: Update to 2.0.16-rc2 release - Bill Bonney
d6612aa: Graph View: Add log name to window title - Bill Bonney
a5d1bd5: Graph View: Fix Close Log crashing - Bill Bonney
52228c1: Radio Setup: Support to flash 3DR Radio Complete (uses Python) - Bill Bonney
89d6e9f: Radio Setup: Add Port Scanning - Bill Bonney
b0fde99: Radio Setup: Initial 3DR Radio Flash Wizard - Bill Bonney
9680cb5: Build: processing paths in a better way - Александр Фролов
678db61: Build: distortion of filenames inside tarball - Александр Фролов
c76fd65: Build: Repo URL fixed - Александр Фролов
7a93198: Build: Spec-file and scripts to build RPM - Александр Фролов
2165950: Graph View: Fix for ascii log indexing to be identical to binary logs - Michael Carpenter
0733264: Graph View: Fix for scroll bars not working, and table indexes not making sense - Michael Carpenter
d60360f: Graph View: Fix crash when closing AP2 when a graph has been opened - Michael Carpenter
87fc70e: Graph View: Fix for timestamps not being properly read from tlog files - Michael Carpenter
1a65586: Graph View: Fix for column count not being calculated - Michael Carpenter
c513c50: Mission Widget: Fix Crash when m_ui not instantiated - Bill Bonney
a2f424d: Log Playback: Fix unix epoch timestamp decoding - Bill Bonney
1368220: Graph View: Fix unix epoch timestamp decoding - Bill Bonney
54eeafb: Graph View: reduce font size of log loaded label - Bill Bonney
e23e7d8: Graph View: Fix debug message - Bill Bonney
c97bac9: MAVLink Decoder: Cleanup header file - Bill Bonney
0041048: Graph View: Fix explicit declaration of static data - Bill Bonney
ef267a8: Radio Config: Fix settings storage and initial values - Bill Bonney
4890573: Serial Config: Fix initial values - Bill Bonney
d4d347f: Terminal View: Fix settings storage and initial values - Bill Bonney
2e66b3f: Graph View: Extra debugging infromation for OSX - Bill Bonney
fbd4865: Build: Removed unneccesary build options, fix #497 - Michael Carpenter
e4832f6: Graph View: Fix for TLogs not loading log indexes properly - Michael Carpenter
2b5d833: Graph View: Fixed crash on close - Michael Carpenter
0213edc: Code Cleanup: Added copyright headers and reorganized variables for readability - Michael Carpenter
696f529: Graph View: Added closing of extra graph windows on close of AP2 - Michael Carpenter
9fb8a55: Graph View: Fix so adding "Roll" to the graph, doesn't add "DesRoll" - Michael Carpenter
e507938: Graph View: Added more error checking to AP2DataPlot2DModel - Michael Carpenter
5a2ec39: Graph View: Code cleanup, and UI fixes. Also changes so export log file works as expected - Michael Carpenter
0614405: Graph View: Fixes for ascii log loading and addition of independant graph views for loaded logs - Michael Carpenter
60bfa6d: Graphing: Changes to how logs are loaded, so they should all load identically. - Michael Carpenter
d5a2a46: Mission Widget: Fix some layout issues in table view - Bill Bonney
d9f7e77: Mission Widget: Add support for Continue and Change Alt Item - Bill Bonney
2f2326d: Build: Remove old qgroundcontrol.pri - Bill Bonney
c208324: Parameters: Fixes #587 file wildcards not seperated using a space - Bill Bonney
d709454: Compass View: Fix #586: Compassmot Current/Interference yAxis reversed - Bill Bonney
2ebbb5b: MAVLink: Update to latest MAVLink messages - Bill Bonney
8eb0dd6: Build: Added Debian compatibility on dependencies. - Jose Antonio Quevedo