Add more menu entries to the 'Help' menu.
authorAndré Nusser <andre.nusser@googlemail.com>
Wed, 4 Nov 2015 19:28:32 +0000 (20:28 +0100)
committerPaul Davis <paul@linuxaudiosystems.com>
Wed, 25 Nov 2015 22:32:46 +0000 (17:32 -0500)
* The functions were already implemented -- I just added the links in
ardour.menu.in, corrected spelling and the link to the tracker.
* The tracker link was corrected as I considered it confusing when one
is not already logged in.

gtk2_ardour/ardour.menus.in
gtk2_ardour/ardour_ui.cc
gtk2_ardour/ardour_ui_ed.cc

index bc95ac4ce6a17517101a9bbae9109d0040b72125..97c15c31dfe3b7f8ca76479c06c1fbe89a47dbad 100644 (file)
       <menuitem action='Chat'/>
       <menuitem action='Manual'/>
       <menuitem action='Reference'/>
+      <menuitem action='Forums'/>
+      <menuitem action='Howto_Report'/>
+      <menuitem action='Tracker'/>
+      <menuitem action='Website'/>
+      <menuitem action='Website_Dev'/>
     </menu>
   </menubar>
 
index 6a9137cd6c610d1c5283c76d1b79c4c258bf016f..b4a8017851ecef023484d8b3ae1ec2738a9d9c74 100644 (file)
@@ -3362,7 +3362,7 @@ ARDOUR_UI::launch_reference ()
 void
 ARDOUR_UI::launch_tracker ()
 {
-       PBD::open_uri ("http://tracker.ardour.org/bug_report_page.php");
+       PBD::open_uri ("http://tracker.ardour.org");
 }
 
 void
index 1b2bfcc895ade99e97401cb4d67b182ffb3adf38..0755f99b7c6cae1c019523f7e902d4b9b3611501 100644 (file)
@@ -230,12 +230,12 @@ if (Profile->get_mixbus())
        /** TRANSLATORS: This is `Manual' in the sense of an instruction book that tells a user how to use Ardour */
        ActionManager::register_action (common_actions, X_("Manual"), S_("Help|Manual"),  mem_fun(*this, &ARDOUR_UI::launch_manual));
        ActionManager::register_action (common_actions, X_("Reference"), _("Reference"),  mem_fun(*this, &ARDOUR_UI::launch_reference));
-       ActionManager::register_action (common_actions, X_("Tracker"), _("Report A Bug"), mem_fun(*this, &ARDOUR_UI::launch_tracker));
+       ActionManager::register_action (common_actions, X_("Tracker"), _("Report a Bug"), mem_fun(*this, &ARDOUR_UI::launch_tracker));
        ActionManager::register_action (common_actions, X_("Cheat_Sheet"), _("Cheat Sheet"), mem_fun(*this, &ARDOUR_UI::launch_cheat_sheet));
        ActionManager::register_action (common_actions, X_("Website"), _("Ardour Website"), mem_fun(*this, &ARDOUR_UI::launch_website));
        ActionManager::register_action (common_actions, X_("Website_Dev"), _("Ardour Development"), mem_fun(*this, &ARDOUR_UI::launch_website_dev));
        ActionManager::register_action (common_actions, X_("Forums"), _("User Forums"), mem_fun(*this, &ARDOUR_UI::launch_forums));
-       ActionManager::register_action (common_actions, X_("Howto_Report"), _("How to report a bug"), mem_fun(*this, &ARDOUR_UI::launch_howto_report));
+       ActionManager::register_action (common_actions, X_("Howto_Report"), _("How to Report a Bug"), mem_fun(*this, &ARDOUR_UI::launch_howto_report));
 
        act = ActionManager::register_action (common_actions, X_("Save"), _("Save"),  sigc::hide_return (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::save_state), string(""), false)));
        ActionManager::session_sensitive_actions.push_back (act);