From 505d0873a58b30c2d6a9d88d4b762bb73fc73ba3 Mon Sep 17 00:00:00 2001 From: Roy Bekken Date: Mon, 3 Aug 2015 17:22:03 +0200 Subject: [PATCH] Fix welcome page update link. --- ground/openpilotgcs/src/plugins/welcome/qml/main.qml | 2 +- ground/openpilotgcs/src/plugins/welcome/welcomemode.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ground/openpilotgcs/src/plugins/welcome/qml/main.qml b/ground/openpilotgcs/src/plugins/welcome/qml/main.qml index 55a363766..266ea977b 100644 --- a/ground/openpilotgcs/src/plugins/welcome/qml/main.qml +++ b/ground/openpilotgcs/src/plugins/welcome/qml/main.qml @@ -141,7 +141,7 @@ Rectangle { width: parent.width height: parent.height onClicked: { - welcomePlugin.openUrl("http://wiki.openpilot.org/display/BUILDS/OpenPilot+Software+Downloads") + welcomePlugin.openUrl("https://github.com/librepilot/LibrePilot/releases/") } } } diff --git a/ground/openpilotgcs/src/plugins/welcome/welcomemode.cpp b/ground/openpilotgcs/src/plugins/welcome/welcomemode.cpp index 336b69aa8..438dce8ab 100644 --- a/ground/openpilotgcs/src/plugins/welcome/welcomemode.cpp +++ b/ground/openpilotgcs/src/plugins/welcome/welcomemode.cpp @@ -89,7 +89,7 @@ WelcomeMode::WelcomeMode() : // This will delete the network access manager instance when we're done 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 { // No network, can delete this now as we don't need it. delete networkAccessManager;