diff --git a/src/AboutDialog.cpp b/src/AboutDialog.cpp index 737fa04c4..75bb7bbad 100644 --- a/src/AboutDialog.cpp +++ b/src/AboutDialog.cpp @@ -438,12 +438,19 @@ void AboutDialog::PopulateInformationPage( ShuttleGui & S ) informationStr += _("Build Information"); informationStr += wxT("\n"); // Only for debug builds, for now. -#if __WXDEBUG__ + +//The version we intend to use for live Audacity. +#define VER_CHECK_URL "[[http://www.audacityteam.org/download/?" +//For testing of our scriptlet. +//#define VER_CHECK_URL "[[http://www.audacityteam.org/slug/?" +//For testing locally +//#define VER_CHECK_URL "[[http://localhost:63342/WorkingDocs/demos/download.html?" + informationStr += wxT("
"); - informationStr += wxString("[[http://www.audacityteam.org/download/?") + VerCheckArgs() + "|" + + informationStr += wxString(VER_CHECK_URL) + VerCheckArgs() + "|" + _("Check Online") + "]]"; informationStr += wxT("
\n"); -#endif + // top level heading informationStr += wxT("

"); informationStr += _("File Format Support");