forked from ArduPilot/apm_planner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release_notes.txt
1460 lines (1419 loc) · 116 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.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
f63ef9a: 3DR Radio Config: Enable SiLabs USB support - Qube2org
6138c60: Mission Widget: Fix issue where optional description field created a crash - Bill Bonney
64b9be4: Radio Calibration: Add channel number to calibration bars - Bill Bonney
87a3948: Radio Calibration: Add Transmitter Mode 1/2/3/4 to view - Bill Bonney
272d85b: Initial Config: Add I2C Airspeed Option for APM2.x HW - Bill Bonney
11363a6: TCP Link: remove unnecessary boolean - Bill Bonney
5784673: TCP Link: Add signal to cleanup on socket disconnection - [email protected]
cd77ebf: MAVLink Inspector: Fix build issue on windows. - Bill Bonney
6b82be5: Map View: Fix #571, crash when double clicking on a waypoint. - Michael Carpenter
d7df888: Install Firmware: Compile fix for windows build - Michael Carpenter
b23ade6: Install Firmware: Added new 3DR public key to validcertificate xml file - Michael Carpenter
337ac73: Audio: Fixed "stuttering" at the end of audio messages - Michał Wróbel
f9dd730: Graph View: Change Live Data plot to use plotTextArrow() method for plot clarity - Bill Bonney
84f580e: PFD QML: Prevent seg fault due to NULL uasObject - labtoast
8095725: Install Firmware: Add new 3DR Public key to PX4 firmware install - Bill Bonney
3dff0cc: Graph View: Fix for "Load Log" button not showing tlog files by default - Michael Carpenter
4046706: MAVLink Inspector: Remove sorting as it was creating display inconsistencies - Bill Bonney
0c8ccaf: Graph View: Improve Text Markers so they do not clash on-screen - Bill Bonney
b178d7b: Graph View: Reduced widget margins to max use on available area - Bill Bonney
69aa0b3: Droneshare: Renamed button to ‘Thanks, Got it!’ + added ‘Sign-Up’ button - Bill Bonney
f1b1cfd: Graph View: Code Review: remove superfluous currentindex variable - Bill Bonney
3db698f: Graph View: Remove Warnings from member data initialization - Bill Bonney
85f08e6: Graph View: Move ‘Log Loaded’ label to save screen real-estate - Bill Bonney
f3c3003: About Dialog: Allow version label to be copied - Bill Bonney
31b75fc: Radio Setup: Fix layout issues - Bill Bonney
c4aa3bf: Install Firmware: Make Output Window status sticky - Bill Bonney
5d393b7: Update README.md - Bill Bonney
b55f358: Build: Make CameraView optional build - dcarpy
db9d37c: configuration: Update to 2.0.16-rc1 release - Bill Bonney
33d0567: Fix Title of README.md - Bill Bonney
3d7d7de: Add link to Gitter chat - Bill Bonney
31dbe97: Comm: reset receivedMode even if base_mode hasn't changed - [email protected]
5c8a31f: Joystick: Make Joystick variables volitile - [email protected]
19917f7: Comms: Disconnect TCPLink on link loss to avoid crash. - [email protected]
ba56cff: UAS: Add events for ArduCopter 3.2 to ArduPilotMegaMAV - Andre Kjellstrup
79c2147: PFD QML: Increase multi-sampling to improve aliasing in PFD - Bill Bonney
97c0f46: Build: Update Install Instructions - Bill Bonney
2acfa6c: Comms: Fix for disconnecting USB detection on Windows - Michael Carpenter
6c1232f: Firmware: Fix for OTP check failing 100% of the time... - Michael Carpenter
054b578: PFD QML: Updates for scaling and position of Roll & Compass Indicators - Bill Bonney
7da2093: Stylesheet: Combobox improvements for background color display. - Bill Bonney
eb5c019: Airspeed Setup: Fix Layout Issues - Bill Bonney
a0baffc: Action Widget: Fix spelling mistake for word ‘ground’ - Bill Bonney
6c8f26b: Install Firmware: Fix resources not being cleanup after flashing - Bill Bonney
17999b0: Stylesheet: Fix GroupBox Title layout - Bill Bonney
ad48106: Stylesheet: Add new styles for Radio Buttons - Bill Bonney
b346735: Stylesheet: Modify CheckBox layout to solve clipping issue - Bill Bonney
4ccab11: Action Widget: Add Position Hold as a default ‘Shortcut’ mode - Bill Bonney
62512d5: Config/Tuning View: Fix unnecessary horizontal scrollbar showing - Bill Bonney
d2151bd: Initial Setup: Fix unnecessary horizontal scrollbar showing - Bill Bonney
cb3629f: Stylesheet: Fix indoor style checkbox to remove border - Bill Bonney
67cf01f: Stylesheet: Improvement to table headers not rendering in white on black - Bill Bonney
a8f7d91: Map Widget: Update Provider strings with new Google version - Bill Bonney
00f7e98: Map Widget: Place cache inside apmplanner2 directory - Bill Bonney
6e0e3e0: Stylesheet: Improvements to the indoor stylesheet - Bill Bonney
aa6ffd5: APM Toolbar: Colour changes to improve look of toolbar buttons. - Bill Bonney
d5f6b19: APM Toolbar: Enable connection dialog show on clicking MAV indicator - Bill Bonney
f484967: APM Toolbar: Improve Tab highlighting and selection - Bill Bonney
d2b86f0: Param Widget: Fix crash if setParameter called when no parameter list for component exists. - Bill Bonney
36eea99: Serial Connection: Improvement to react to USB cable disconnection - Bill Bonney
3fe4d6b: MAVLink: Remove deprecated messages - Bill Bonney
c3ce685: MAVLink: Update to new version 2014/12/15 - Bill Bonney
753e6c1: MAVLINK: Rename MAV_COMP_ID_AUTOPILOT to MAV_COMP_ID_PRIMARY - Bill Bonney
aea6b84: PFD: Added checks inside setActiveUAS to check if UasObjects are valid before using them - Michael Carpenter
b9a7fe0: Graphing: Fix #548, string messages having trailing zeros - Michael Carpenter
c6e0eba: Graphing: Fix so sort checkboxes are all checked by default - Michael Carpenter
774d2d2: Graphing: Small graphical fix, move checkboxes over to the left - Michael Carpenter
042eb9f: Graphing: Add the ability to filter by message type for logs loaded in the table view - Michael Carpenter
c21e72a: MAVLINK: Fix instances where MAV_COMP_ID_ALL was used to be MAV_COMP_ID_AUTOPILOT - Bill Bonney
1e68147: Graph View: Fix Export Log option to work on OSX - Bill Bonney
70e16d1: FlightMode View: Fix PWM indicator to reflect FLIGHTMODE_CH settings - Bill Bonney
cb3c44a: Serial Link: Remove SerialLink.h and cc - Bill Bonney
f296bc9: Serial Connection: Add logging to creation/destruction - Bill Bonney
23d9b51: SerialLink: SerialLink object deprecated for SerialConnection - Bill Bonney
4a5b9b4: Initial Setup: Remove dependency on old SerialLink object - Bill Bonney
05ebb72: Graphing: Fix #541, added name of loaded log to the graph view - Michael Carpenter
5cd5dea: Graphing: Fixes #110, proper support for ERR, EV, and MODE in graphing - Michael Carpenter
1b8592d: Mission Elevation: Fix the issue with non sequential waypoint IDs - Bill Bonney
3e9ca31: Actions Widget: Preflight Calibration Dialog (III) - Bill Bonney
80a7a99: Actions Widget: Preflight Calibration Dialog (part II) - Bill Bonney
fc4d734: Fixed ambiguous cast that breaks compile. - Tony Baltovski
f27a10a: Map Widget: Fix #530, waypoint numbers not readable - Michael Carpenter
cfc1ede: Graphing: Fixes #529, graph scroll slider disappearing when load is loaded - Michael Carpenter
670ccf1: Joystick: make sure base_mode has been received from UAS before testing it - [email protected]
a3051f7: Build: Fixes for compiling for (RedHat-style) Linux, removed reference to SDL2main lib - Holger Steinhaus
b765a39: Graphing: Code cleanup - Michael Carpenter
8232793: Graphing: Reworked graphing to include loading TLOG files directly. - Michael Carpenter
56fb4bf: Linux Build: Add dependancy on qtdeclarative5-qtquick2-plugin - blutack
d141068: Actions Widget: Preflight Calibration Dialog (part II) - Bill Bonney
f72b112: Actions Widget: Add Preflight Calibration Dialog - Bill Bonney
2506ffc: UAS Object: cleanup and addition of MissionOverview object - Bill Bonney
d94637c: Radio Calibration: Protect for array out-of-bounds error - Bill Bonney
161622e: Mission Widget: Wire up WPNAV_RADIUS setting - Bill Bonney
f2c04f8: Mission Widget: Add Default Alt & WP Radius - Bill Bonney
e4bc3d3: Mission Widget: Fix layout issues with mission editing - Bill Bonney
6e42488: configuration: update to JSON object - Bill Bonney
4de7a39: ComboBox: Add ‘down-arrow’ - Bill Bonney
Release Notes - APM Planner 2.0.15 - 2014-11-17
4dbe9bc: configuration: update to 2.0.15 stable - Bill Bonney
ea8a9c5: Log Download: Additions to logging to improve debugging - Bill Bonney
29659d4: Action Widget: Fixes to layout to move mode drop down - Bill Bonney
c5981bc: Graph View: Fixes #521 Segmentation Fault - Bill Bonney
e220533: ComboBox Control: Fixes #522 combobox and layouts effected - Bill Bonney
7507df6: configuration: update to RC6 - Bill Bonney
a421627: Firmware Loader: Fix for px4 PID misdetection - Michael Carpenter
b53b6d0: Mission Widget: fix waypoint save dilaog not appearing - Bill Bonney
c7f8bd0: configuration: add a default directory for missions (flight plans) - Bill Bonney
c58e3a9: Control Widget: rename member variables (code review) - Bill Bonney
f37521c: Log replay: Fix for crash when loading tlogs, and another when tlogs stop playing - Michael Carpenter
59283b2: Full Param Setup: Add EEPROM format fix for APM:Copter - Bill Bonney
7e2fe00: Compass View: Add compatibility mode for compass calibration pre-AC3.2 - Bill Bonney
b739a30: Compass View: Add fix for compass calibration with DEV_IDs in use - Bill Bonney
86763a4: configuration: Update to beta 2.0.15-rc5 - Bill Bonney
16e6241: Build: Fixes for compiling and installing with SDL2 for Windows and Linux - Michael Carpenter
dc9ae88: Joystick Widget: use explicit calls load()/store() to compile under Qt5.4 - [email protected]
d054bb4: Joystick Widget: only emit joystickChanged at 10Hz if the joystick hasn't actually changed - [email protected]
f87f80e: Joystick Widget: Fix button pressed events not showing up in the UI - [email protected]
e12c4de: Joystick Widget: Revive joystick code - [email protected]
15d45bb: Joystick Widget: Upgrade to SDL2 - [email protected]
0260e0f: Log Console: fix SIGSEGV - [email protected]
5a0db34: Log Download: Robustness improvements on log download - Bill Bonney
628e3df: Comms: Slightly modify the modality change to Comms Dialog - Bill Bonney
9743a66: configuration: update to RC5 (and revert back to Qt5.2.1) - Bill Bonney
e07d952: Action Widget: Associate Shortcuts with Meta+SHIFT &RTL/&Loiter/&Stabilize - Bill Bonney
d4f970d: build: ignore stash file - Bill Bonney
61619ef: Maps Widget: Update Google MAPs API - Bill Bonney
944e095: Map Widget: Fix #483, adjusted waypoints so they use absolute index rather than relative, allowing for easier understanding of what waypoint corrosponds to which item in the waypoint list. - Michael Carpenter
a15fdc8: Comms: Fix #486, added a custom baud rate option, as well as fixing issues where the window would sometimes be behind the main window - Michael Carpenter
09db021: Waypoint List: Fix #507, waypoint save dialog saying "open" instead of "save" - Michael Carpenter
0e422e9: Install Firmware: trigger port scan after 1s - Bill Bonney
d457174: Link Manager: Move LoadSettings to a timer - Bill Bonney
db84b6f: configuration: update JSON object to 2.0.15-rc4 - Bill Bonney
7ba03b9: configuration: Update to 2.0.15-rc4 - Bill Bonney
1c698bc: Graphing: Change in how the table view for graphs are loaded, and fixes for graph grouping to be much simpler and more reliable - Michael Carpenter
50c9152: Graphing: Fix #501 Limit memory usage on map zoom changes - Michael Carpenter
10d7fa4: Build: remove backport of QtSerialPort - Bill Bonney
74cf4c7: Scripts: Update for Jenkins Builds on OSX - Bill Bonney
85e95b6: General: Support Qt5.3.x and Qt5.4 - Bill Bonney
c4856bd: Scripts: Update scripts to Qt5.3.x and Qt5.4 Beta Builds - Bill Bonney
0e0710b: Map View: Fix for #232, excessive memory usage when loading previous zoom levels. Reloading previous zoom is disabled for the time being - Michael Carpenter
9feb563: Settings View: Fixed spacing of General Settings and checkboxes - Michael Carpenter
4a264a4: Firmware Upload: Fix #498, logic error that doesn't crash my build for some reason, but crashes others (rightfully so) - Michael Carpenter
da80ece: Firmware: New PX4 Firmware uploader rewrite, should fix #488 and other assorted Windows firmware flashing issues with PX4 - Michael Carpenter
9d7b0ac: AP2 Setup: Fix layout issue with groupboxes - Bill Bonney
051b07f: Full Param Setup: Make Compare File Dialog consistent in OSX - Bill Bonney
cf4701a: Full Param Setup: Fix Save Dialog not showing on OSX - Bill Bonney
7160f86: PFD Widget: Clean up UAS object association with QML - Bill Bonney
b3ae151: UAS: Fix RelPositionOverview warnings - Bill Bonney
d991546: UAS: Fix AbsPositionOverview warnings - Bill Bonney
ed36853: UAS: refactor UAS object to use degrees (as QML uses degrees, not rads) - Bill Bonney
70f0eb2: UAS: Fix altitude not being reported in metres to PFD - Bill Bonney
8c2633d: PFD Widget: remove unnecessary PFD UI file - Bill Bonney
f38d70b: TCP Link: automatically connects a TCPLink acting as server (like UDP Link) - [email protected]
0583ced: TCP Link: avoid NULL exception when the Link fires a disconnected event when the link is deleted. - [email protected]
d9e5a1d: TCP Link: Add backgorund behaviour to TCP Link - [email protected]
0cad98b: Battery Monitor: Fix setup of 3DR Power Module HV on Pixhawk - Bill Bonney
0f689da: Full Parameter View: Fix warning - Bill Bonney
c0a12ca: TCP Link: log bind failures - [email protected]
c184cc0: TCP Link: Don't close the CommConfiguration window if connection fails - [email protected]
15bb0ff: TCP Link: emit all the connected/disconnected signals so the UI stays in-sync - [email protected]
ef4630a: TCP Link: Add the 'As Server?' checkbox in the TCPLink configuration window. - [email protected]
060bd31: Firmware upload: Extended error message to remind users to disconnect power on uploading - Bill Bonney
5d4b5bf: Droneshare: Fix dialog to show OK instead of skip - Bill Bonney
794503a: LinkManager: Clean up and destroy MAVLinkProtocol object on tear down. - Bill Bonney
5416672: MAVLinkProtocol: Add destructor to stop logging - Bill Bonney
aa93705: Quick View Widget: Fix column count being reset to 2 - Bill Bonney
deea2e5: configuration: update to autoupdate JSON object - Bill Bonney
c7c01b4: Build: Fixed some runtime warnings, and added option for disabling pro file touch during build - Michael Carpenter
1dd850c: configuration: update version to object to 2.0.15-rc3 - Bill Bonney
dcd2709: Actions Widget: Quick fix to make text readable. - Bill Bonney
e28b94d: Battery Monitor: Add preset for Pixhawk/Power Module HV - Bill Bonney
772ffdb: Map Toolbar: Add horizontal layout to fix button overlapping issue - Bill Bonney
8a96163: Comms: Disabled LinkManagers link timeout detection - Michael Carpenter
ed79593: Stylesheets: Fix #484, dock widget detach/close icons were broken due toduplicate entry in the stylesheet - Michael Carpenter
c8fb903: Stylesheets: Fix outdoor style error that was preventing buttons from showing correctly - Michael Carpenter
56f99d2: Graphing: Fix #481 string modes in logs not being properly recognized - Michael Carpenter
fe4a47f: Docs: updated README.md to reflect linux package build process and dependancy requirements. - Michael Carpenter
7dff002: configuration: update JSON object for new 2.0.15-rc2 builds - Bill Bonney
ea41cd7: configuration: update version to object to 2.0.15-rc2 - Bill Bonney
f317b35: Droneshare: Add info dialog about service on startup - Bill Bonney
c377243: Update to reflect move to Qt5.2.1 (or greater) - Bill Bonney
834bb37: Build: Add QtQuick.2 libs to OSX build - Bill Bonney
b723e59: Build: Remove OSG from QT5 OSX build - Bill Bonney
5ccb1c6: Map Widget: Reduce redraw logging - Bill Bonney
744a6b7: Main View: More CSS changes - Bill Bonney
fd1295f: Optical Flow: Fixes clipping in Optical Flow UI - Bill Bonney
caf0c3c: UASManager: Fixes ambiguity so activeUASSet(UASInterface*) is called - Bill Bonney
45d9fb0: Main View: Fixes Checkboxes in Outdoor Style - Bill Bonney
a6163ba: Comms: Fix #466, allowing removal of links and the associated UAS objects - Michael Carpenter
c8abf84: PFD QML: Fix the border and reduce font size for status message - Bill Bonney
867048a: build: re-enable touch feature to copy qml file changes - Bill Bonney
d2f4e68: Audio: Update to new text2speech API on OSX - Bill Bonney
afb5e36: build: Add script to all platforms - Bill Bonney
3503e77: Dialogs: Change in how most QFileDialogs are handled, so they are in the event loop rather than being modal and blocking. - Michael Carpenter
2967e4a: Comms: Added enable/disableTimeouts to the LinkManager, to stop timeouts from being propagated up the UI when they are expected - Michael Carpenter
e1c0b33: Project: Removed dependancy for OSG, as it relies on Qt4 - Michael Carpenter
36ea8e2: Installer: Change to installer file to properly point to libraries - Michael Carpenter
ef41527: Installer: More file fixes for Qt5 - Michael Carpenter
50b149c: Installer: Changes for win32 installer to install proper Qt5 files - Michael Carpenter
42815d6: Qml: Fix for QML import pathsy - Michael Carpenter
e9d49a9: Qt5: Compile fixes for cross-compiling with Qt5 - Michael Carpenter
22048c0: Qml: Fix for PFD to work with new QtQuick 2.0 interface - Michael Carpenter
b90f41e: More compile fixes - Michael Carpenter
e421eb8: Qt5: Added #ifdef for including zlib on windows, and removed unused LineChart code - Michael Carpenter
a84b850: Qml: Replaced QtQuick 1.0/1.1 with 2.0 in QML files - Michael Carpenter
e92697b: Qt5: Convert all QML QDeclarativeViews over to QQuickViews - Michael Carpenter
d29a759: Couple of changes to allow Linux and Mac to compile with Qt5 - Michael Carpenter
88c6f76: Build: Commit of new debian rules for Qt5 - Michael Carpenter
778a428: Qt5: Bulk of changes to support the move to Qt5 - Michael Carpenter
3e67633: UAS: UASObject change to be the primary data provider for the PFD - Michael Carpenter
db6d690: Addition of new UASObject children for propigating values to QML - Michael Carpenter
f60b08a: Commiting missing files - Michael Carpenter
df84b24: Addition of UASObject and child classes for handling mavlink messages - Michael Carpenter
df1df2a: Initial commit of UASObject - Michael Carpenter
a54bb5b: UAS: Return Ant Tracker as custom mode 5 - Bill Bonney
7a66f0b: Waypoint Widget: Fix Action combo box to be consistent size - Bill Bonney
5f592eb: Mission Widget: Fixes alignment issue within the control - Bill Bonney
5a62b86: Mission Widget: Add the DO SET ROI command - Bill Bonney
084dfe1: Comms: Fixes #476: UDPLink settings not saved/restored properly - [email protected]
9da21eb: Terminal View: Fixes #324 Log Download - Kelly Schrock
a592519: Camera Gimbal: Fixes spinbox ranges to stop errant inputs - Bill Bonney
55cf467: Camera Gimbal: Fixes random disabling of output servos - Bill Bonney
7cb7f98: Camera Gimbal: Fixes #440 Makes sure parameters are not reset and are up to date. - Bill Bonney
e5c2cce: Camera Gimbal Config: Fixes RC channel reversal to be 1.0|-1.0 - Bill Bonney
eb3c6a7: Radio Calibration: Fixes channel reversal for elevon CH1/CH2 - Bill Bonney
760126b: Radio Calibration: Fixes #471: Reverse not being set correctly - Bill Bonney
809724c: Compass Config: Fix spelling mistake in Compass Config MessageBox - Bill Bonney
61d4cbb: Graphing: Fixed #470, Plane modes were not being graphed, due to their integer values being listed under ModeNum not Mode - Michael Carpenter
8e6158b: ParamManager: Fixes #459, segfault due to params not being recieved by the time the UI is done loading - Michael Carpenter
b4e5fd6: Full Param View: Fix #463, uninitialized state of a boolean causing the param file list to sometimes not download - Michael Carpenter
814f0b5: Advanced Param View: added default .param extension - Andre Kjellstrup
0da07fe: Waypoint Widget: Fix Naming on Spline Waypoint - Bill Bonney
dab1d97: Map Widget: delete existing waypoint lines when switching to new UAS - [email protected]
2ce5747: Waypoint Widget: refactor large methods from WaypointNavigation.h to WaypointNavigation.cc - [email protected]
1ce18e6: Mission Widget: Add spline waypoint - Bill Bonney
79ef13c: Waypoint Widget: support spline waypoints - [email protected]
c8809e3: Map Widget: Make sure the Waypoint is fully constructed before firing waypointEditableChanged - [email protected]
4106e97: Comms Config: Fixes buttons in dialog showing connect/disconnect correctly - Bill Bonney
728901f: Link Manager: Add prototype method for ‘remove link by id’ - Bill Bonney
61a677c: waypoint list resolving MAV_CMD_DO_CHANGE_SPEED - Andre Kjellstrup
d555e19: improved "Camera by distance" description if disabled - Andre Kjellstrup
f4b0213: resolving mission item MAV_CMD_NAV_SPLINE_WAYPOINT - Andre Kjellstrup
04725bc: resolving mission item MAV_CMD_DO_SET_CAM_TRIGG_DIST - Andre Kjellstrup
6105b43: Configuration: Update to JSON version object - Bill Bonney
7bb6859: Installer: Change for linux installer control file to have proper filename - Michael Carpenter
c044c00: Configuration: APM Planner 2.0.15-rc1 release - Bill Bonney
a35f11f: Mavlink Widget: Fix sort of MAVlink packets to be alphabetical in order - Bill Bonney
2cf4fe1: Graph View: Fix for bug causing duplicate removals/adding of graphs when a log is loaded - Michael Carpenter
8726d10: Battery Monitor: Change of the battery monitor view - Michael Carpenter
88abe4b: Graph View: Proper fix for #432, lat/long were being handled as uint's. Also fixed a bug involving float parsing - Michael Carpenter
0d3eaa5: Standard/Advanced Param View: Fix for components not being updated after initial connection and parameter request - Michael Carpenter
2b4ac94: Setting default extension(.txt) when saving WP - Andre Kjellstrup
33d09fa: Mission DoChangeSpeed updated - Andre Kjellstrup
9b262c6: Advanced Parameter List: Fixes #439 adds .param & .txt extensions. - Bill Bonney
17f68c3: Added norwegian topographic maps. - Andre Kjellstrup
a33877b: Comms: Fix #438 baud rates were not being remembered by com port name - Michael Carpenter
1024611: Graph View: Fix #227, graph tooltip displaying on wrong monitor in a multi-monitor environment - Michael Carpenter
17aae27: Docs: updated README.md to fix #430 - Michael Carpenter
b774e18: Graph View: Fix #420 auto-zooming the graph when the first value is inserted - Michael Carpenter
c62bca6: Graph View: Fix #422, items in treeview are now sorted alphabetically - Michael Carpenter
9a956d1: Graph View: Fix #435, table view of loaded log data now adjusts column headers from keyboard and mouse input - Michael Carpenter
f68bfdd: Graph View: Fix #432 and Fix #431, issue parsing QByteArray into values, switched to use QDataStream to prevent future issues - Michael Carpenter
d8d6d0f: Range Finder: Initial implementation - Bill Bonney
5a1f022: Tuning Setup: Add new CH6 and CH7/8 options - Bill Bonney
21271a4: Dev Env: Scripts to switch between Qt5 and Qt4 - Bill Bonney
872b751: Compass View: Fix layout in Message Box - Bill Bonney
acec743: Compass View: Refactor all offset related ‘guard code’ - Bill Bonney
d6102c8: Compass View: Set all Offsets to 0 - Bill Bonney
a8e1b4a: Compass View: Fixes #403: Calibration for second compass (when available) - Bill Bonney
ebab53e: Compass Calibration: Added signals for IMU messages - Bill Bonney
1f5ccef: Radio Calibration Widget: Fixes to RCMAP translation and channel reversal - Bill Bonney
0
Release Notes - APM Planner 2.0.14 - 2014-08-01
8f93791: Configuration: Updated to 2.0.14 release - Bill Bonney
b75472b: Droneshare: Fix to use https for uploads - Bill Bonney
0d2638e: ParamCompare: Fixes #419 identical values being returned as a difference - Bill Bonney
4ff0de7: MainWindow: Lower maximum required width to support 1024x600 screen widths - Bill Bonney
12d4ec1: UAS: Fix floats to be doubles to avoid conversion errors - Bill Bonney
a7283ce: Autoupdate: Fix regexp definition for version update - Bill Bonney
e53d003: APM MAV: Rename Hybrid Loiter to Position Hold - Bill Bonney
e7cfd14: Graphs View: Fixes #74 Add support for Plane/Rover to KMZ generation. - Bill Bonney
7a6ae05: APM MAV: Add new colorForMode() API - Bill Bonney
baf52e5: Autoupdate: Fix variables being undefined. - Craig R. Hughes
f2d3947: AutoUpdate: Fix Typo in parameter name - Bill Bonney
6dd2146: QuickView Widget: Fixes QVariant toDouble conversion issues. - Bill Bonney
ffa4573: Droneshare Widget: Fixed API to return Url - Bill Bonney
ef206c3: MAP Widget: Improves sensitivity of Mouse Zooming with scroll wheel - Bill Bonney
2f788f8: MAP Widget: Changes to support better zooming sensitivity (slider) - Bill Bonney
f74de7c: QuickView Widget: Fixes #405 rounding error in HDOP and COG values - Bill Bonney
a5a20a0: configuration: update JSON object for 'beta' releases - Bill Bonney
fc3552a: configuration: update to 2.0.14-rc3 - Bill Bonney
8de0f15: Autoupdate: Fixes RC version compare - Bill Bonney
0eb5f67: configuration: update to 2.0.14-rc2 - Bill Bonney
434b551: Autoupdate: Fix debug message - Bill Bonney
7594641: QGCCore: Fix to remember if update is 'beta' or 'stable' - Bill Bonney
6f2bc26: Autoupdate: Add check for update type - Bill Bonney
1d4bdf8: Settings View: Add checkbox to enable 'beta' releases - Bill Bonney
46f5345: Settings View: Fixes #401 incomplete label display in settings - Bill Bonney
89c59d6: Comm Settings: Change to better sync com port between Link and Widget - Michael Carpenter
Release Notes - APM Planner 2.0.13 - 2014-07-14
cc32a9a: configuration: Update json version object - Bill Bonney
58f4268: configuration: Update to 2.0.13 to fix type conversion issue - Bill Bonney
7876a60: Comms: Fix for Serial Port errors not propagating up to inform the user, and added retries on connect() calls - Michael Carpenter
8380a9c: UAS: Fix for double QVariants not being checked for alongside float - Michael Carpenter
Release Notes - APM Planner 2.0.12 - 2014-07-12
c52534a: configuration: Update Version Object - Bill Bonney
23666a0: Configuration: Update to 2.0.12 - Bill Bonney
80720c8: UAS: Update conversion to use Plain Old Types to avoid conversion errors. - Bill Bonney
b29f6a7: UAS: Fixes #399 issues with conversion from floats not being cast to double. - Bill Bonney
51ef0c3: Info Widget: Roll back fix for #389, and set static column width. - Michael Carpenter
d878ee2: Graphing: Fix #388, grid view getting out of sync with hide checkbox - Michael Carpenter
dfe1865: Graphing: Fix #396, QVariants use both floats, and doubles - Michael Carpenter
83e0753: Logging: Fix #397, TLogs not being generated, and added option to enable/disable logging in the Config window - Michael Carpenter
249d4e2: Graphing: Added export button to export a loaded .bin file to a .log file, beginning of a fix for #395 - Michael Carpenter
89b28ad: Code Cleanup: Added error checking to Log Download filename changes, and set an pointer to null after deletion - Michael Carpenter
8b5e8f7: MapWidget: Set deleted variable to null for properness - Michael Carpenter
8546ff5: MapWidget: Fix #394, MapRipper not closing out after the last zoom level is downloaded - Michael Carpenter
58ddf2f: Log Download: Fixes #391. Checks for existing file and if exists appends duplicate number to new file. - foobarbecue
54c5d46: Info Widget: Fixes #389 by making columns expand in response to new data - foobarbecue
ab135da: GITHUB: add link and commit rules to CONTRIBUTING.md - Bill Bonney
5fbd68b: Update CONTRIBUTING.md - Bill Bonney
07a8146: Fix the main problem with dataflash downloads: function was expecting time in milliseconds, getting seconds. - foobarbecue
938fa5f: Add support for ArcGIS World Topo maps - Jim Kuhn
11dfbb2: Create CONTRIBUTING.md - Bill Bonney
Release Notes - APM Planner 2.0.11 - 2014-07-03
e0bb72c: Update Object: Increase to 2.0.11 release and support for 'trusty' builds - Bill Bonney
b3e995a: configuration: Update to 2.0.11 release - Bill Bonney
5684111: Droneshare Widget: add support to remember username for droneshare - Bill Bonney
28c39fb: Droneshare Widget: Add support for tlog/bin/blog/log/flog datatypes - Bill Bonney
22ebb4e: Droneshare Widget: Add better processing for server messages and clickable link - Bill Bonney
644d4f5: Droneshare Widget: Adding Droneshare Query Object - Bill Bonney
c55eff4: Droneshare Widget: Initial commit - Bill Bonney
a9745a3: Graphing: Fix for crash involving tlogs, and final fix #318, clearing the graph when a tlog is loaded - Michael Carpenter
5b53f10: Graphing: Fix for graph grouping not clearing when removed - Michael Carpenter
e5c5116: Graphing: Fix for binary and ascii logs not displaying MODE text when loaded, and fix for the zoom bar following mouse wheel movements - Michael Carpenter
21eef30: Terminal Console: Remove duplicate baud rate entry, closes #382 - [email protected]
1a33fcb: Comms: Set Serial port baud if no settings file exists, and a default UDPLink is now created if one does not exist - Michael Carpenter
36fb347: Comms: Readdition of GCS heartbeat packets, and the ability to enable or disable them - Michael Carpenter
cb556e6: Comms: Fix for Serial Port advanced settings UI - Michael Carpenter
5332ed5: Elevation Widget: Fix font sizes to be smaller - Bill Bonney
edb142d: Autoupate: Fix copyright notice - Bill Bonney
82d7208: Comms: Fix for Link name not updating the menu item - Michael Carpenter
e380ed5: Graphing: Fix for timestamp being wrong in live graph mode - Michael Carpenter
c189276: Comms: Fix for UDP/TCP links not correctly sending bytes and emitting connect/disconnect messages - Michael Carpenter
5d8d309: Comms: Fix for COM port not being saved in settings when changed - Michael Carpenter
cfd1cd9: GraphView: Fix #228, filter loadable logs by file extension in the UI, to avoid users attempting to open the wrong file type - Michael Carpenter
601ea96: Toolbar: Fix for port/baud buttons on toolbar not detecting initial settings - Michael Carpenter
a836939: Copyright: Fix files to explicitly state copyright - Bill Bonney
18009f8: Elevation Widget: Add waypoint Labels - Bill Bonney
65a404a: Elevation Widget: Add markers and resolution inidcators - Bill Bonney
76e7a47: Elevation Widget: Improve handling of when elevation map needs to be refresh - Bill Bonney
bdcabe4: Elevation Widget: Fix not showing error dialog on no internet connection - Bill Bonney
a5099c5: Stylesheets: Fix #381, menu items not having mouse-hover backgrounds in outdoor mode - Michael Carpenter
73a9eef: Comms: Added some reasonable defaults for invalid serial port baud rates - Michael Carpenter
48bcaa9: Comms: Current links are now saved, and restored on start. - Michael Carpenter
68c8d9e: Comms: Added functionality to add new links in advanced mode, including TCP Links - Michael Carpenter
ca149be: Graphing: Fix #380, Don't try to create the same table twice if a second message format packet is encountered - Matthew Lloyd
2cb7345: Mission Elevation Widget: Add Google Elevation data graph - Bill Bonney
f9805e6: PFD QML: Fix over sensitive pitch on artificial horizon - Bill Bonney
4d920fa: Installer: Addition of Ubuntu Trusty to the build system - Michael Carpenter
0b03c14: UI Framwork: Removed DebugConsole, as it is obsolete. - Michael Carpenter
53d6cd6: Mission Edit: Add Mission Elevation Display widget - Bill Bonney
9dd2c01: Compass Calibration: Fix bad include - Bill Bonney
f4a39ff: Mission Edit Widget: Remove Alt color strategy from mission edit widget - Bill Bonney
a4f757d: Mission Edit Widget: Fix to layout to show commands better in comboBox - Bill Bonney
1c1206b: Mission Edit Widget: Fixes to layout of DO commands - Bill Bonney
3f4016e: Mission Edit Widget: Layout fix to Condition Yaw - Bill Bonney
7802ebd: Mission Edit Widget: Changes to DO SET HOME layout - Bill Bonney
ad64480: Mission Edit Widget: Fix Typo for Do Set Home - Bill Bonney
216c0eb: Mission Edit Widget: Add DO_MOUNT_CONTROL command support - Bill Bonney
c0678cc: Mission Edit Widget: Fix Take Off command to not show location in Mission Frame mode - Bill Bonney
3105325: Mission Edit Widget: entry updates are much more responsive - Bill Bonney
a1f71ae: Mission Edit Widget: Add more missing APM mission command definitions - Bill Bonney
79d30c6: Mission Edit Widget: Make command Combo box bigger - Bill Bonney
814024b: APM ToolBar: rename disconnected to MAV ID before first connection - Bill Bonney
79278e8: PX4 Firmware Uploader: Fix status messages to use 'COA' - Bill Bonney
ffe502e: Comms: Fixed mavlink message typo, and reenabled MAVLink Inspector - Michael Carpenter
68928b2: Installer: Fix #372 icon file not being detected in Windows - Michael Carpenter
035ecb3: Installer: Fix #309 Fix #374 for OpenSSL error missing MSVC 2008 runtime - Michael Carpenter
eab7108: Comms: Renamed files, enabled mavlink logging, added copyright headers - Michael Carpenter
6d3cecd: Comms: Major changes to the serial communications and LinkManager to improve stability - Michael Carpenter
db234f3: Full Param Setup: Fix #371, QVariant value type not being used properly when setting and reading param values - Michael Carpenter
88af779: Fix loading of ArduCopter dataflash logs - Matthew Lloyd
a47e750: Fix typo. - Aaron Curtis
b6f8259: Mission Widget: Add CONDITION_YAW command - Bill Bonney
26bb31a: Mission Widget: Fix error in adding DO_DIGICAM_CONTROL command - Bill Bonney
4f21d80: Mission Widget: Added support for DO_DIGICAM_CONTROL command - Bill Bonney
b724064: Mission Widget: Added support for DO_REPEAT_SERVO command - Bill Bonney
a99d6ef: Mission Widget: Added support for DO_SET_SERVO command - Bill Bonney
41dd0c3: Map Widget: Refactor map action list generation - Jim Kuhn
25b9faa: Compass Setup: Warn users about dangers of Compass Mot Calibration - Bill Bonney
f14323e: AutoUpdate: Fixes #367 Added dialog to indicate no update available on manual check - Bill Bonney
02ae255: Waypoint Edit Widget: Fix to keep wpEditableViews and wpViewOnlyViews in-sync - [email protected]
009d794: Maps: Allow selection of Bing and Google street maps and satellite maps - Stephen Dade