Skip to content

Commit 12abb8d

Browse files
committed
dev branch is now 1.8 development.
1 parent 2260df1 commit 12abb8d

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ project(direwolf)
44

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

src/direwolf.c

+12-12
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ static int d_u_opt = 0; /* "-d u" command line option to print UTF-8 also in h
186186
static int d_p_opt = 0; /* "-d p" option for dumping packets over radio. */
187187

188188
static int q_h_opt = 0; /* "-q h" Quiet, suppress the "heard" line with audio level. */
189-
static int q_d_opt = 0; /* "-q d" Quiet, suppress the printing of decoded of APRS packets. */
189+
static int q_d_opt = 0; /* "-q d" Quiet, suppress the printing of description of APRS packets. */
190190

191191
static int A_opt_ais_to_obj = 0; /* "-A" Convert received AIS to APRS "Object Report." */
192192

@@ -302,24 +302,24 @@ int main (int argc, char *argv[])
302302
text_color_init(t_opt);
303303
text_color_set(DW_COLOR_INFO);
304304
//dw_printf ("Dire Wolf version %d.%d (%s) BETA TEST 7\n", MAJOR_VERSION, MINOR_VERSION, __DATE__);
305-
//dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "G", __DATE__);
306-
dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION);
305+
dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "A", __DATE__);
306+
//dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION);
307307

308308

309309
#if defined(ENABLE_GPSD) || defined(USE_HAMLIB) || defined(USE_CM108) || USE_AVAHI_CLIENT || USE_MACOS_DNSSD
310310
dw_printf ("Includes optional support for: ");
311-
#if defined(ENABLE_GPSD)
311+
#if defined(ENABLE_GPSD)
312312
dw_printf (" gpsd");
313-
#endif
314-
#if defined(USE_HAMLIB)
313+
#endif
314+
#if defined(USE_HAMLIB)
315315
dw_printf (" hamlib");
316-
#endif
317-
#if defined(USE_CM108)
316+
#endif
317+
#if defined(USE_CM108)
318318
dw_printf (" cm108-ptt");
319-
#endif
320-
#if (USE_AVAHI_CLIENT|USE_MACOS_DNSSD)
319+
#endif
320+
#if (USE_AVAHI_CLIENT|USE_MACOS_DNSSD)
321321
dw_printf (" dns-sd");
322-
#endif
322+
#endif
323323
dw_printf ("\n");
324324
#endif
325325

@@ -1708,7 +1708,7 @@ static void usage (char **argv)
17081708
dw_printf (" d d = APRStt (DTMF to APRS object translation).\n");
17091709
dw_printf (" -q Quiet (suppress output) options:\n");
17101710
dw_printf (" h h = Heard line with the audio level.\n");
1711-
dw_printf (" d d = Decoding of APRS packets.\n");
1711+
dw_printf (" d d = Description of APRS packets.\n");
17121712
dw_printf (" x x = Silence FX.25 information.\n");
17131713
dw_printf (" -t n Text colors. 0=disabled. 1=default. 2,3,4,... alternatives.\n");
17141714
dw_printf (" Use 9 to test compatibility with your terminal.\n");

0 commit comments

Comments
 (0)