diff --git a/ground/openpilotgcs/src/plugins/welcome/qml/SitesPanel.qml b/ground/openpilotgcs/src/plugins/welcome/qml/SitesPanel.qml index 3e8aa3934..d7e7f57cd 100644 --- a/ground/openpilotgcs/src/plugins/welcome/qml/SitesPanel.qml +++ b/ground/openpilotgcs/src/plugins/welcome/qml/SitesPanel.qml @@ -23,19 +23,17 @@ Item { id: sitesModel ListElement { link: "http://www.librepilot.org" } ListElement { link: "http://wiki.openpilot.org" } - ListElement { link: "http://www.openpilot.org/hardware/get-hardware/" } ListElement { link: "http://forum.librepilot.org" } - ListElement { link: "http://github.com/librepilot" } + ListElement { link: "http://github.com/librepilot/LibrePilot/pulls" } ListElement { link: "http://github.com/librepilot/LibrePilot/issues" } function title(index){ if (title["text"] === undefined) { title.text = [ qsTr("Home"), qsTr("Wiki"), - qsTr("Store"), qsTr("Forums"), - qsTr("Code Reviews"), - qsTr("Progress Tracker") + qsTr("Pull Requests"), + qsTr("Progress") ] } return title.text[index]