Skip to content

Commit 79d80cc

Browse files
committed
Change from development to release version.
1 parent 3960942 commit 79d80cc

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

man/direwolf.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ Time stamp format for sent and received frames.
170170

171171
.TP
172172
.BI "-e " "ber"
173-
Receive Bit Error Rate (BER), e.g. 1e-5
173+
Receive Bit Error Rate (BER), e.g. 1e-5
174174

175175
.SH EXAMPLES
176176
gqrx (2.3 and later) has the ability to send streaming audio through a UDP socket to another application for further processing.

src/direwolf.c

+6-3
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, "G", __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)
@@ -1510,9 +1510,12 @@ static void usage (char **argv)
15101510
dw_printf ("\n");
15111511

15121512
#if __WIN32__
1513+
dw_printf ("Complete documentation can be found in the 'doc' folder\n");
15131514
#else
1514-
dw_printf ("Complete documentation can be found in /usr/local/share/doc/direwolf.\n");
1515+
// TODO: Could vary by platform and build options.
1516+
dw_printf ("Complete documentation can be found in /usr/local/share/doc/direwolf\n");
15151517
#endif
1518+
dw_printf ("or online at https://github.com/wb2osz/direwolf/tree/master/doc\n");
15161519
exit (EXIT_FAILURE);
15171520
}
15181521

0 commit comments

Comments
 (0)