1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-19 04:52:12 +01:00

Merged in rbekken/librepilot/update_fix (pull request #19)

Fix welcome page update link.
This commit is contained in:
James Duley 2015-08-09 21:20:36 +01:00
commit 03077231dc
2 changed files with 2 additions and 2 deletions

View File

@ -141,7 +141,7 @@ Rectangle {
width: parent.width width: parent.width
height: parent.height height: parent.height
onClicked: { onClicked: {
welcomePlugin.openUrl("http://wiki.openpilot.org/display/BUILDS/OpenPilot+Software+Downloads") welcomePlugin.openUrl("https://github.com/librepilot/LibrePilot/releases/")
} }
} }
} }

View File

@ -89,7 +89,7 @@ WelcomeMode::WelcomeMode() :
// This will delete the network access manager instance when we're done // This will delete the network access manager instance when we're done
connect(networkAccessManager, SIGNAL(finished(QNetworkReply *)), networkAccessManager, SLOT(deleteLater())); connect(networkAccessManager, SIGNAL(finished(QNetworkReply *)), networkAccessManager, SLOT(deleteLater()));
networkAccessManager->get(QNetworkRequest(QUrl("http://www.librepilot.org/opver"))); networkAccessManager->get(QNetworkRequest(QUrl("https://github.com/librepilot/LibrePilot/raw/master/.STABLEVER")));
} else { } else {
// No network, can delete this now as we don't need it. // No network, can delete this now as we don't need it.
delete networkAccessManager; delete networkAccessManager;