Commit d3d333d0 authored by Lorenz Meier's avatar Lorenz Meier

Remove reference to defunct droneos service

parent 93cbdea2
...@@ -48,7 +48,7 @@ MAVLinkSettingsWidget::MAVLinkSettingsWidget(MAVLinkProtocol* protocol, QWidget ...@@ -48,7 +48,7 @@ MAVLinkSettingsWidget::MAVLinkSettingsWidget(MAVLinkProtocol* protocol, QWidget
// AUTH // AUTH
m_ui->droneOSCheckBox->setChecked(protocol->getAuthEnabled()); m_ui->droneOSCheckBox->setChecked(protocol->getAuthEnabled());
QSettings settings; QSettings settings;
m_ui->droneOSComboBox->setCurrentIndex(m_ui->droneOSComboBox->findText(settings.value("DRONEOS_HOST", "droneos.com:14555").toString())); m_ui->droneOSComboBox->setCurrentIndex(m_ui->droneOSComboBox->findText(settings.value("DRONELINK_HOST", "dronelink.io:14555").toString()));
m_ui->droneOSLineEdit->setText(protocol->getAuthKey()); m_ui->droneOSLineEdit->setText(protocol->getAuthKey());
// Initialize state // Initialize state
...@@ -169,7 +169,7 @@ void MAVLinkSettingsWidget::enableDroneOS(bool enable) ...@@ -169,7 +169,7 @@ void MAVLinkSettingsWidget::enableDroneOS(bool enable)
// Set key // Set key
protocol->setAuthKey(m_ui->droneOSLineEdit->text().trimmed()); protocol->setAuthKey(m_ui->droneOSLineEdit->text().trimmed());
QSettings settings; QSettings settings;
settings.setValue("DRONEOS_HOST", m_ui->droneOSComboBox->currentText()); settings.setValue("DRONELINK_HOST", m_ui->droneOSComboBox->currentText());
} }
protocol->enableAuth(enable); protocol->enableAuth(enable);
} }
......
...@@ -146,7 +146,7 @@ ...@@ -146,7 +146,7 @@
</property> </property>
<item> <item>
<property name="text"> <property name="text">
<string>mavlink.droneos.com:14555</string> <string>dronelink.io:14555</string>
</property> </property>
</item> </item>
<item> <item>
...@@ -236,7 +236,7 @@ ...@@ -236,7 +236,7 @@
<item row="15" column="0" colspan="3"> <item row="15" column="0" colspan="3">
<widget class="QCheckBox" name="droneOSCheckBox"> <widget class="QCheckBox" name="droneOSCheckBox">
<property name="text"> <property name="text">
<string>Forward MAVLink packets of all links to http://droneos.com</string> <string>Forward MAVLink packets of all links to the host below</string>
</property> </property>
</widget> </widget>
</item> </item>
...@@ -280,7 +280,7 @@ ...@@ -280,7 +280,7 @@
<item row="16" column="1" colspan="2"> <item row="16" column="1" colspan="2">
<widget class="QLineEdit" name="droneOSLineEdit"> <widget class="QLineEdit" name="droneOSLineEdit">
<property name="text"> <property name="text">
<string>Enter your DroneOS API Token/Key</string> <string>Enter your authentication token</string>
</property> </property>
<property name="maxLength"> <property name="maxLength">
<number>32</number> <number>32</number>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment