1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-19 17:11:12 +02:00

Changed the conditional compilation for alpha/beta/release...

... In particular, don't put the extra information in MIDI device info for Beta

But still link to the Alpha manual.
This commit is contained in:
Paul Licameli
2017-09-11 00:08:31 -04:00
parent 5a29660266
commit 954a974422
5 changed files with 35 additions and 16 deletions

View File

@@ -36,7 +36,7 @@
#include "ErrorDialog.h"
#include "HelpSystem.h"
#if IS_ALPHA
#ifdef USE_ALPHA_MANUAL
const wxString HelpSystem::HelpHostname = wxT("alphamanual.audacityteam.org");
const wxString HelpSystem::HelpServerHomeDir = wxT("/man/");
const wxString HelpSystem::HelpServerManDir = wxT("/man/");
@@ -354,7 +354,7 @@ void HelpSystem::ShowHelp(wxWindow *parent,
webHelpPath = wxT("https://")+HelpSystem::HelpHostname+HelpSystem::HelpServerManDir;
}
#if IS_ALPHA
#ifdef USE_ALPHA_MANUAL
webHelpPage = webHelpPath + PageName;
#else
webHelpPage = webHelpPath + releasePageName;