1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-07 07:39:29 +02:00

Remove the BETA definition, so we can't use it.

This commit is contained in:
martynshaw99 2013-06-20 22:20:32 +00:00
parent d8a9d774fe
commit 18c2d64775
2 changed files with 2 additions and 8 deletions

View File

@ -23,11 +23,7 @@
#ifndef __AUDACITY_H__
#define __AUDACITY_H__
// Set to 0 for a release version and 1 for a beta version
#define IS_BETA 0
// As of November 2009, we can have alphas of a beta release or
// alphas of a stable release, typically the nightly builds.
// We only do alpha builds and release versions.
// Most of the time we're in development, so IS_ALPHA should be defined
// to 1.
#define IS_ALPHA 1 // #define IS_ALPHA 0
@ -40,8 +36,6 @@
#if IS_ALPHA
#define AUDACITY_SUFFIX wxT("-alpha-") __TDATE__
#elif (IS_BETA)
#define AUDACITY_SUFFIX wxT("-beta")
#else
#define AUDACITY_SUFFIX wxT("") // for a stable release
#endif

View File

@ -1040,7 +1040,7 @@ void AudacityProject::CreateMenusAndCommands()
c->AddItem(wxT("Screenshot"), _("&Screenshot Tools..."), FN(OnScreenshot));
#if IS_BETA
#if IS_ALPHA
// TODO: What should we do here? Make benchmark a plug-in?
// Easy enough to do. We'd call it mod-self-test.
c->AddSeparator();