Skip to content

Commit 714d03f

Browse files
committed
Bump version number up to 1.7 development.
1 parent a207287 commit 714d03f

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

CHANGES.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,23 @@
22
# Revision History #
33

44

5-
## Version 1.6 -- October 2020 ##
5+
## Version 1.7 -- Under Development ('dev' branch) ##
6+
7+
8+
### New Features: ###
9+
610

11+
- 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.
12+
13+
14+
15+
16+
## Version 1.6 -- October 2020 ##
717

818
### New Build Procedure: ###
919

1020

11-
- Rather than trying to keep a bunch of different platform specific Makefiles in sync, "cmake" is now used for greater portability and easier maintenance.
21+
- 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.
1222

1323
- README.md has a quick summary of the process. More details in the ***User Guide***.
1424

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ project(direwolf)
44

55
# configure version
66
set(direwolf_VERSION_MAJOR "1")
7-
set(direwolf_VERSION_MINOR "6")
7+
set(direwolf_VERSION_MINOR "7")
88
set(direwolf_VERSION_PATCH "0")
9-
set(direwolf_VERSION_SUFFIX "")
9+
set(direwolf_VERSION_SUFFIX "Development")
1010

1111
# options
1212
option(FORCE_SSE "Compile with SSE instruction only" OFF)

src/direwolf.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -288,8 +288,8 @@ int main (int argc, char *argv[])
288288
text_color_init(t_opt);
289289
text_color_set(DW_COLOR_INFO);
290290
//dw_printf ("Dire Wolf version %d.%d (%s) Beta Test 4\n", MAJOR_VERSION, MINOR_VERSION, __DATE__);
291-
//dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "G", __DATE__);
292-
dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION);
291+
dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "A", __DATE__);
292+
//dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION);
293293

294294

295295
#if defined(ENABLE_GPSD) || defined(USE_HAMLIB) || defined(USE_CM108)

0 commit comments

Comments
 (0)