From d7c18b1022bde6888420d6880e07f4e6445d1be4 Mon Sep 17 00:00:00 2001 From: Alessio Morale Date: Mon, 10 Feb 2014 21:53:08 +0100 Subject: [PATCH 1/3] OP-1166 there was still a problem with ManualcontrolSettings.channelMin. This is a hacky workaround until the binding framework does not allow for a cleaner solution. --- ground/openpilotgcs/src/plugins/config/configinputwidget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ground/openpilotgcs/src/plugins/config/configinputwidget.cpp b/ground/openpilotgcs/src/plugins/config/configinputwidget.cpp index c6f7313a6..c8400300f 100644 --- a/ground/openpilotgcs/src/plugins/config/configinputwidget.cpp +++ b/ground/openpilotgcs/src/plugins/config/configinputwidget.cpp @@ -91,6 +91,7 @@ ConfigInputWidget::ConfigInputWidget(QWidget *parent) : addWidgetBinding("ManualControlSettings", "ChannelGroups", inpForm->ui->channelGroup, index); addWidgetBinding("ManualControlSettings", "ChannelNeutral", inpForm->ui->channelNeutral, index); addWidgetBinding("ManualControlSettings", "ChannelNeutral", inpForm->ui->neutralValue, index); + addWidgetBinding("ManualControlSettings", "ChannelMax", inpForm->ui->channelMax, index); addWidgetBinding("ManualControlSettings", "ChannelMin", inpForm->ui->channelMin, index); addWidgetBinding("ManualControlSettings", "ChannelMax", inpForm->ui->channelMax, index); From f6c7b5c185544e10377727003e7a9b5ec7ab450b Mon Sep 17 00:00:00 2001 From: Philippe Renon Date: Mon, 17 Feb 2014 21:32:30 +0100 Subject: [PATCH 2/3] OP-1228 disabled telemetry monitor option page creation to fix gcs crash - a fully functional option page will be re-introduced with OP-1185 +review OPReview --- .../openpilotgcs/src/plugins/telemetry/monitorgadgetfactory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ground/openpilotgcs/src/plugins/telemetry/monitorgadgetfactory.cpp b/ground/openpilotgcs/src/plugins/telemetry/monitorgadgetfactory.cpp index bdd675458..8eb384464 100644 --- a/ground/openpilotgcs/src/plugins/telemetry/monitorgadgetfactory.cpp +++ b/ground/openpilotgcs/src/plugins/telemetry/monitorgadgetfactory.cpp @@ -81,5 +81,5 @@ IUAVGadgetConfiguration *MonitorGadgetFactory::createConfiguration(QSettings *qS IOptionsPage *MonitorGadgetFactory::createOptionsPage(IUAVGadgetConfiguration *config) { - return new MonitorGadgetOptionsPage(qobject_cast(config)); + return 0; //new MonitorGadgetOptionsPage(qobject_cast(config)); } From dad05235e327e912c7ca9f376ab438c48e0624e3 Mon Sep 17 00:00:00 2001 From: Alessio Morale Date: Thu, 20 Feb 2014 00:16:11 +0100 Subject: [PATCH 3/3] Update WHATSNEW.txt for release --- WHATSNEW.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/WHATSNEW.txt b/WHATSNEW.txt index 5bfddcace..0bccc1016 100644 --- a/WHATSNEW.txt +++ b/WHATSNEW.txt @@ -1,3 +1,10 @@ +--- RELEASE-14.01-RC4 --- Cruising Ratt --- +this issue includes the following fixes to previous RC3: +OP-1228 OP-1218 + +Full list of bug fixed in this release is accessible here +http://progress.openpilot.org/issues/?filter=11364 + --- RELEASE-14.01-RC3 --- Cruising Ratt --- this issue includes the following fixes to previous RC2: OP-1088 OP-1141 OP-1166 OP-1187 OP-1191 OP-1195 OP-1211 OP-1218