Add link to Barry's script to README. (#819)

* Add link to Barry's script to README.

* Wording update.

* Remove git hash from version string.

* s/devel2/dev2/
pull/825/head v2.0.0-20250130
Mooneer Salem 2025-01-30 00:38:47 -08:00 committed by GitHub
parent d6577a1ba7
commit 607dec1d33
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 2 deletions

View File

@ -49,7 +49,7 @@ endif(APPLE)
# Adds a tag to the end of the version string. Leave empty # Adds a tag to the end of the version string. Leave empty
# for official release builds. # for official release builds.
if(NOT DEFINED FREEDV_VERSION_TAG) if(NOT DEFINED FREEDV_VERSION_TAG)
set(FREEDV_VERSION_TAG "devel") set(FREEDV_VERSION_TAG "dev2")
add_definitions(-DUNOFFICIAL_RELEASE) add_definitions(-DUNOFFICIAL_RELEASE)
endif(NOT DEFINED FREEDV_VERSION_TAG) endif(NOT DEFINED FREEDV_VERSION_TAG)

View File

@ -102,6 +102,11 @@ Linux by following these steps:
(rade-venv) $ PYTHONPATH="$(pwd)/rade_src:$PYTHONPATH" src/freedv (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 ## Building without LPCNet
In preparation for possible future deprecation of FreeDV 2020 and 2020B modes, it is In preparation for possible future deprecation of FreeDV 2020 and 2020B modes, it is

View File

@ -7,7 +7,8 @@
#define FREEDV_VERSION_SUFFIX @FreeDV_VERSION_TWEAK@ #define FREEDV_VERSION_SUFFIX @FreeDV_VERSION_TWEAK@
#if defined(FREEDV_VERSION_TAG) #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 #else
#define FREEDV_VERSION ("@FreeDV_VERSION@") #define FREEDV_VERSION ("@FreeDV_VERSION@")
#endif // defined(FREEDV_VERSION_TAG) #endif // defined(FREEDV_VERSION_TAG)