1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-16 00:27:42 +02:00

Quick Help now goes to Video Tutorials (which don't exist yet).

Also emphasise 'Audacity Manual' in the help menu.

With this change I'm being careful to make sure it's clear that the manual is for Audacity rather than for DarkAudacity.  For the time being DarkAudacity is for people who know Audacity already and want to try the dark theme.  Because of that, it is enough to highlight the differences between Audacity and DarkAudacity and link to the existing Audacity manual.  If the differences continue to grow over time wit future editions, then I will need the promised 'Video Tutorials'.  So I link to the page for them now.  That page will have their up to date status information.
This commit is contained in:
James Crook 2016-08-24 15:58:03 +01:00
parent 728583db24
commit 2002e751f7
3 changed files with 9 additions and 6 deletions

View File

@ -199,11 +199,11 @@ static wxString HelpTextBuiltIn( const wxString & Key )
wxString(wxT("")) +
wxT("<center><h3>DarkAudacity ") + AUDACITY_VERSION_STRING + wxT("</h3></center>") +
_("<br><br>DarkAudacity is based on Audacity:") + wxT("<ul><li>") +
_(" email to [[mailto:james@audacityteam.org|'james@audacityteam.org']] - for help using DarkAudacity.") + wxT("</li><li>") +
_(" see [[http://www.darkaudacity.com|www.darkaudacity.com]] - for differences between DarkAudacity and Audacity.") + wxT("</li></ul>") +
_(" [[http://www.darkaudacity.com|www.darkaudacity.com]] - for differences between them.") + wxT("</li><li>") +
_(" email to [[mailto:james@audacityteam.org|james@audacityteam.org]] - for help using DarkAudacity.") + wxT("</li><li>") +
_(" [[http://www.darkaudacity.com/video.html|Tutorials]] - for getting started with DarkAudacity.") + wxT("</li></ul>") +
_("<br><br>Audacity has these support methods:") + wxT("<ul><li>") +
_(" [[http://manual.audacityteam.org/quick_help.html|'Quick Help']] - for getting started with Audacity.") + wxT("</li><li>") +
_(" [[http://manual.audacityteam.org/|Manual]] - for comprehensive Audacity documentation") + wxT("</li><li>") +
_(" [[http://forum.audacityteam.org/|Forum]] - for large knowledge base on using Audacity.") + wxT("</li></ul>")
);

View File

@ -1090,7 +1090,10 @@ void AudacityProject::CreateMenusAndCommands()
c->BeginMenu(_("&Help"));
c->SetDefaultFlags(AlwaysEnabledFlag, AlwaysEnabledFlag);
c->AddItem(wxT("QuickHelp"), _("&Quick Help"), FN(OnQuickHelp));
// 'Getting Started' rather than 'Quick Help' for DarkAudacity.
// At the moment the video tutorials are aspirational (aka do not exist yet).
// Emphasise that manual is for Audacity, not DarkAudacity.
c->AddItem(wxT("QuickHelp"), _("&Getting Started"), FN(OnQuickHelp));
c->AddItem(wxT("Manual"), _("Audacity &Manual"), FN(OnManual));
c->AddSeparator();

View File

@ -296,9 +296,9 @@ void HelpSystem::ShowHelpDialog(wxWindow *parent,
}
else if (releasePageName == wxT("Quick_Help"))
{
releasePageName = wxT("quick_help") + HelpSystem::ReleaseSuffix + anchor;
releasePageName = wxT("video") + HelpSystem::ReleaseSuffix + anchor;
localHelpPage = wxFileName(FileNames::HtmlHelpDir(), releasePageName).GetFullPath();
webHelpPath = wxT("http://")+HelpSystem::HelpHostname+HelpSystem::HelpServerHomeDir;
webHelpPath = wxT("http://www.darkaudacity.com/");
}
else
{