mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 21:12:53 +02:00
Merge pull request #1288 from digisomni/feature/add-talk-to-help
Add "Talk" link to "Help" menu.
This commit is contained in:
commit
b293dd2816
2 changed files with 6 additions and 5 deletions
|
@ -827,10 +827,10 @@ Menu::Menu() {
|
||||||
});
|
});
|
||||||
|
|
||||||
// Help > Vircadia Forum
|
// Help > Vircadia Forum
|
||||||
/* action = addActionToQMenuAndActionHash(helpMenu, "Online Forums");
|
action = addActionToQMenuAndActionHash(helpMenu, "Community Support");
|
||||||
connect(action, &QAction::triggered, qApp, [] {
|
connect(action, &QAction::triggered, qApp, [] {
|
||||||
QDesktopServices::openUrl(NetworkingConstants::HELP_FORUM_URL));
|
QDesktopServices::openUrl(NetworkingConstants::HELP_COMMUNITY_URL);
|
||||||
}); */
|
});
|
||||||
|
|
||||||
// Help > Scripting Reference
|
// Help > Scripting Reference
|
||||||
action = addActionToQMenuAndActionHash(helpMenu, "Online Script Reference");
|
action = addActionToQMenuAndActionHash(helpMenu, "Online Script Reference");
|
||||||
|
|
|
@ -71,8 +71,9 @@ namespace NetworkingConstants {
|
||||||
const unsigned short STUN_SERVER_DEFAULT_PORT = 19302;
|
const unsigned short STUN_SERVER_DEFAULT_PORT = 19302;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const QUrl HELP_DOCS_URL { "https://docs.vircadia.com" };
|
const QUrl HELP_COMMUNITY_URL{ "https://vircadia.com/#community" };
|
||||||
const QUrl HELP_FORUM_URL { "https://forum.vircadia.com" };
|
const QUrl HELP_DOCS_URL{ "https://docs.vircadia.com" };
|
||||||
|
const QUrl HELP_FORUM_URL{ "https://forum.vircadia.com" };
|
||||||
const QUrl HELP_SCRIPTING_REFERENCE_URL{ "https://apidocs.vircadia.dev/" };
|
const QUrl HELP_SCRIPTING_REFERENCE_URL{ "https://apidocs.vircadia.dev/" };
|
||||||
const QUrl HELP_RELEASE_NOTES_URL{ "https://docs.vircadia.com/release-notes.html" };
|
const QUrl HELP_RELEASE_NOTES_URL{ "https://docs.vircadia.com/release-notes.html" };
|
||||||
const QUrl HELP_BUG_REPORT_URL{ "https://github.com/vircadia/vircadia/issues" };
|
const QUrl HELP_BUG_REPORT_URL{ "https://github.com/vircadia/vircadia/issues" };
|
||||||
|
|
Loading…
Reference in a new issue