From 074e9f711af723f10dfb027ed2344556b6b9f463 Mon Sep 17 00:00:00 2001 From: Marcus Llewellyn Date: Fri, 10 Jan 2020 16:20:00 -0600 Subject: [PATCH] Update Help menu links for Project Athena. Changes links in the help menu to point to Project Athena sites. Removed menu option for Online Forums, cuz I don't think we have one yet. --- interface/src/Menu.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/interface/src/Menu.cpp b/interface/src/Menu.cpp index e4ea9d8c45..b0e5bbe8de 100644 --- a/interface/src/Menu.cpp +++ b/interface/src/Menu.cpp @@ -776,22 +776,22 @@ Menu::Menu() { }); helpMenu->addSeparator(); - // Help > HiFi Docs + // Help > Athena Docs action = addActionToQMenuAndActionHash(helpMenu, "Online Documentation"); connect(action, &QAction::triggered, qApp, [] { - QDesktopServices::openUrl(QUrl("https://docs.highfidelity.com/")); + QDesktopServices::openUrl(QUrl("https://docs.projectathena.dev/")); }); - // Help > HiFi Forum - action = addActionToQMenuAndActionHash(helpMenu, "Online Forums"); + // Help > Athena Forum + /* action = addActionToQMenuAndActionHash(helpMenu, "Online Forums"); connect(action, &QAction::triggered, qApp, [] { QDesktopServices::openUrl(QUrl("https://forums.highfidelity.com/")); - }); + }); */ // Help > Scripting Reference action = addActionToQMenuAndActionHash(helpMenu, "Online Script Reference"); connect(action, &QAction::triggered, qApp, [] { - QDesktopServices::openUrl(QUrl("https://docs.highfidelity.com/api-reference")); + QDesktopServices::openUrl(QUrl("https://apidocs.projectathena.dev/")); }); addActionToQMenuAndActionHash(helpMenu, "Controls Reference", 0, qApp, SLOT(showHelp())); @@ -801,7 +801,7 @@ Menu::Menu() { // Help > Release Notes action = addActionToQMenuAndActionHash(helpMenu, "Release Notes"); connect(action, &QAction::triggered, qApp, [] { - QDesktopServices::openUrl(QUrl("https://docs.highfidelity.com/release-notes.html")); + QDesktopServices::openUrl(QUrl("https://docs.projectathena.dev/release-notes.html")); }); // Help > Report a Bug!