mirror of
https://github.com/overte-org/overte.git
synced 2025-06-26 03:29:50 +02:00
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.
This commit is contained in:
parent
00855cba3d
commit
074e9f711a
1 changed files with 7 additions and 7 deletions
|
@ -776,22 +776,22 @@ Menu::Menu() {
|
||||||
});
|
});
|
||||||
helpMenu->addSeparator();
|
helpMenu->addSeparator();
|
||||||
|
|
||||||
// Help > HiFi Docs
|
// Help > Athena Docs
|
||||||
action = addActionToQMenuAndActionHash(helpMenu, "Online Documentation");
|
action = addActionToQMenuAndActionHash(helpMenu, "Online Documentation");
|
||||||
connect(action, &QAction::triggered, qApp, [] {
|
connect(action, &QAction::triggered, qApp, [] {
|
||||||
QDesktopServices::openUrl(QUrl("https://docs.highfidelity.com/"));
|
QDesktopServices::openUrl(QUrl("https://docs.projectathena.dev/"));
|
||||||
});
|
});
|
||||||
|
|
||||||
// Help > HiFi Forum
|
// Help > Athena Forum
|
||||||
action = addActionToQMenuAndActionHash(helpMenu, "Online Forums");
|
/* action = addActionToQMenuAndActionHash(helpMenu, "Online Forums");
|
||||||
connect(action, &QAction::triggered, qApp, [] {
|
connect(action, &QAction::triggered, qApp, [] {
|
||||||
QDesktopServices::openUrl(QUrl("https://forums.highfidelity.com/"));
|
QDesktopServices::openUrl(QUrl("https://forums.highfidelity.com/"));
|
||||||
});
|
}); */
|
||||||
|
|
||||||
// Help > Scripting Reference
|
// Help > Scripting Reference
|
||||||
action = addActionToQMenuAndActionHash(helpMenu, "Online Script Reference");
|
action = addActionToQMenuAndActionHash(helpMenu, "Online Script Reference");
|
||||||
connect(action, &QAction::triggered, qApp, [] {
|
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()));
|
addActionToQMenuAndActionHash(helpMenu, "Controls Reference", 0, qApp, SLOT(showHelp()));
|
||||||
|
@ -801,7 +801,7 @@ Menu::Menu() {
|
||||||
// Help > Release Notes
|
// Help > Release Notes
|
||||||
action = addActionToQMenuAndActionHash(helpMenu, "Release Notes");
|
action = addActionToQMenuAndActionHash(helpMenu, "Release Notes");
|
||||||
connect(action, &QAction::triggered, qApp, [] {
|
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!
|
// Help > Report a Bug!
|
||||||
|
|
Loading…
Reference in a new issue