diff --git a/man/direwolf.1 b/man/direwolf.1 index 8be7cd0..76bc195 100644 --- a/man/direwolf.1 +++ b/man/direwolf.1 @@ -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. diff --git a/src/direwolf.c b/src/direwolf.c index 8d6e8a7..456b16f 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, "G", __DATE__); + dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION); #if defined(ENABLE_GPSD) || defined(USE_HAMLIB) || defined(USE_CM108) @@ -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); }