diff --git a/CMakeLists.txt b/CMakeLists.txt index d76138ea..d61d581f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -49,7 +49,7 @@ endif(APPLE) # Adds a tag to the end of the version string. Leave empty # for official release builds. if(NOT DEFINED FREEDV_VERSION_TAG) -set(FREEDV_VERSION_TAG "devel") +set(FREEDV_VERSION_TAG "dev2") add_definitions(-DUNOFFICIAL_RELEASE) endif(NOT DEFINED FREEDV_VERSION_TAG) diff --git a/README.md b/README.md index ff04011f..a373515f 100644 --- a/README.md +++ b/README.md @@ -102,6 +102,11 @@ Linux by following these steps: (rade-venv) $ PYTHONPATH="$(pwd)/rade_src:$PYTHONPATH" src/freedv ``` +Alternatively, you can use [this script](https://github.com/barjac/freedv-rade-build) developed by +Barry Jackson G4MKT to automate the above steps. While the FreeDV project thanks him for his contribution +to helping Linux users more easily get on the air with FreeDV, the FreeDV development team will not provide +support. All support inquiries regarding this script should be directed to the linked repo. + ## Building without LPCNet In preparation for possible future deprecation of FreeDV 2020 and 2020B modes, it is diff --git a/cmake/version.h.in b/cmake/version.h.in index 604f2d78..5c0a0367 100644 --- a/cmake/version.h.in +++ b/cmake/version.h.in @@ -7,7 +7,8 @@ #define FREEDV_VERSION_SUFFIX @FreeDV_VERSION_TWEAK@ #if defined(FREEDV_VERSION_TAG) -#define FREEDV_VERSION ("@FreeDV_VERSION@-" FREEDV_VERSION_TAG "-" GIT_HASH) +//#define FREEDV_VERSION ("@FreeDV_VERSION@-" FREEDV_VERSION_TAG "-" GIT_HASH) +#define FREEDV_VERSION ("@FreeDV_VERSION@-" FREEDV_VERSION_TAG) #else #define FREEDV_VERSION ("@FreeDV_VERSION@") #endif // defined(FREEDV_VERSION_TAG)