Bump version number up to 1.7 development.

This commit is contained in:
wb2osz 2020-11-07 18:38:10 -05:00
parent a20728762b
commit 714d03f1d8
3 changed files with 16 additions and 6 deletions

View File

@ -2,13 +2,23 @@
# Revision History # # 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: ### ### 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***. - README.md has a quick summary of the process. More details in the ***User Guide***.

View File

@ -4,9 +4,9 @@ project(direwolf)
# configure version # configure version
set(direwolf_VERSION_MAJOR "1") set(direwolf_VERSION_MAJOR "1")
set(direwolf_VERSION_MINOR "6") set(direwolf_VERSION_MINOR "7")
set(direwolf_VERSION_PATCH "0") set(direwolf_VERSION_PATCH "0")
set(direwolf_VERSION_SUFFIX "") set(direwolf_VERSION_SUFFIX "Development")
# options # options
option(FORCE_SSE "Compile with SSE instruction only" OFF) option(FORCE_SSE "Compile with SSE instruction only" OFF)

View File

@ -288,8 +288,8 @@ int main (int argc, char *argv[])
text_color_init(t_opt); text_color_init(t_opt);
text_color_set(DW_COLOR_INFO); 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 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 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); //dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION);
#if defined(ENABLE_GPSD) || defined(USE_HAMLIB) || defined(USE_CM108) #if defined(ENABLE_GPSD) || defined(USE_HAMLIB) || defined(USE_CM108)