Skip to content

Commit

Permalink
Change from development to release version.
Browse files Browse the repository at this point in the history
  • Loading branch information
wb2osz committed Oct 26, 2020
1 parent 3960942 commit 79d80cc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion man/direwolf.1
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ Time stamp format for sent and received frames.

.TP
.BI "-e " "ber"
Receive Bit Error Rate (BER), e.g. 1e-5
Receive Bit Error Rate (BER), e.g. 1e-5

.SH EXAMPLES
gqrx (2.3 and later) has the ability to send streaming audio through a UDP socket to another application for further processing.
Expand Down
9 changes: 6 additions & 3 deletions src/direwolf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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, "G", __DATE__);
dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION);


#if defined(ENABLE_GPSD) || defined(USE_HAMLIB) || defined(USE_CM108)
Expand Down Expand Up @@ -1510,9 +1510,12 @@ static void usage (char **argv)
dw_printf ("\n");

#if __WIN32__
dw_printf ("Complete documentation can be found in the 'doc' folder\n");
#else
dw_printf ("Complete documentation can be found in /usr/local/share/doc/direwolf.\n");
// TODO: Could vary by platform and build options.
dw_printf ("Complete documentation can be found in /usr/local/share/doc/direwolf\n");
#endif
dw_printf ("or online at https://github.com/wb2osz/direwolf/tree/master/doc\n");
exit (EXIT_FAILURE);
}

Expand Down

0 comments on commit 79d80cc

Please sign in to comment.