From 672807bdbbc08e060bd05ef0a271f059e52556c6 Mon Sep 17 00:00:00 2001
From: James Crook <james.k.crook@gmail.com>
Date: Tue, 7 May 2019 13:24:07 +0100
Subject: [PATCH] Restore 'x' in version number.

---
 src/Audacity.h | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/Audacity.h b/src/Audacity.h
index 9bb20bd5cd..35b0cd1f6d 100644
--- a/src/Audacity.h
+++ b/src/Audacity.h
@@ -57,7 +57,7 @@
    #define IS_RELEASE
 #endif
 
-
+#define EXPERIMENTAL_DA
 
 // Increment as appropriate every time we release a NEW version.
 #define AUDACITY_VERSION   2
@@ -70,8 +70,11 @@
 #elif defined(IS_ALPHA)
    #define AUDACITY_SUFFIX wxT("-alpha-") __TDATE__
 #else
+#ifndef EXPERIMENTAL_DA
    #define AUDACITY_SUFFIX    wxT("") // for a stable release
-   //#define AUDACITY_SUFFIX wxT("x  ") __TDATE__
+#else
+   #define AUDACITY_SUFFIX wxT("x  ") __TDATE__
+#endif
 #endif
 
 #define AUDACITY_MAKESTR( x ) #x
-- 
GitLab