diff --git a/ground/openpilotgcs/src/plugins/welcome/communitywelcomepagewidget.cpp b/ground/openpilotgcs/src/plugins/welcome/communitywelcomepagewidget.cpp index 32da11b53..f8819e83f 100644 --- a/ground/openpilotgcs/src/plugins/welcome/communitywelcomepagewidget.cpp +++ b/ground/openpilotgcs/src/plugins/welcome/communitywelcomepagewidget.cpp @@ -52,14 +52,15 @@ CommunityWelcomePageWidget::CommunityWelcomePageWidget(QWidget *parent) : connect(m_rssFetcher, SIGNAL(newsItemReady(QString, QString, QString)), ui->newsTreeWidget, SLOT(slotAddNewsItem(QString, QString, QString))); //: Add localized feed here only if one exists - m_rssFetcher->fetch(QUrl(tr("http://newwww.openpilot.org/rss.xml"))); + m_rssFetcher->fetch(QUrl(tr("http://www.openpilot.org/feed/"))); QList > sites; sites << qMakePair(tr("OpenPilot Home"), QString(QLatin1String("http://www.openpilot.org"))); sites << qMakePair(tr("OpenPilot Wiki"), QString(QLatin1String("http://wiki.openpilot.org"))); - sites << qMakePair(tr("OpenPilot Store"), QString(QLatin1String("http://www.openpilot.org/store"))); + sites << qMakePair(tr("OpenPilot Store"), QString(QLatin1String("http://www.openpilot.org/hardware/get-hardware/"))); sites << qMakePair(tr("OpenPilot Forums"), QString(QLatin1String("http://forums.openpilot.org"))); - sites << qMakePair(tr("OpenPilot Progress Tracker"), QString(QLatin1String("http://progress.openpilot.org"))); + sites << qMakePair(tr("OpenPilot Code Reviews"), QString(QLatin1String("http://git.openpilot.org"))); + sites << qMakePair(tr("OpenPilot Progress Tracker"), QString(QLatin1String("http://progress.openpilot.org"))); QListIterator > it(sites); while (it.hasNext()) {