From 714d03f1d8b8093e88b633deaf06372321539b89 Mon Sep 17 00:00:00 2001 From: wb2osz Date: Sat, 7 Nov 2020 18:38:10 -0500 Subject: [PATCH] Bump version number up to 1.7 development. --- CHANGES.md | 14 ++++++++++++-- CMakeLists.txt | 4 ++-- src/direwolf.c | 4 ++-- 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 5097db7..44c3da3 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,13 +2,23 @@ # Revision History # -## Version 1.6 -- October 2020 ## +## Version 1.7 -- Under Development ('dev' branch) ## +### New Features: ### + + +- The BEACON configuration now recognizes the SOURCE= option. This replaces the AX.25 source address rather than using the MYCALL value for the channel. This is useful for sending more than 5 analog telemetry channels. Use two, or more, source addresses with up to 5 analog channels each. + + + + +## Version 1.6 -- October 2020 ## + ### New Build Procedure: ### -- Rather than trying to keep a bunch of different platform specific Makefiles in sync, "cmake" is now used for greater portability and easier maintenance. +- Rather than trying to keep a bunch of different platform specific Makefiles in sync, "cmake" is now used for greater portability and easier maintenance. This was contributed by Davide Gerhard. - README.md has a quick summary of the process. More details in the ***User Guide***. diff --git a/CMakeLists.txt b/CMakeLists.txt index 9e710f5..878bea7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,9 +4,9 @@ project(direwolf) # configure version set(direwolf_VERSION_MAJOR "1") -set(direwolf_VERSION_MINOR "6") +set(direwolf_VERSION_MINOR "7") set(direwolf_VERSION_PATCH "0") -set(direwolf_VERSION_SUFFIX "") +set(direwolf_VERSION_SUFFIX "Development") # options option(FORCE_SSE "Compile with SSE instruction only" OFF) diff --git a/src/direwolf.c b/src/direwolf.c index 456b16f..c900075 100644 --- a/src/direwolf.c +++ b/src/direwolf.c @@ -288,8 +288,8 @@ int main (int argc, char *argv[]) text_color_init(t_opt); text_color_set(DW_COLOR_INFO); //dw_printf ("Dire Wolf version %d.%d (%s) Beta Test 4\n", MAJOR_VERSION, MINOR_VERSION, __DATE__); - //dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "G", __DATE__); - dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION); + dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "A", __DATE__); + //dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION); #if defined(ENABLE_GPSD) || defined(USE_HAMLIB) || defined(USE_CM108)