diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | doc/patchage.1 | 4 | ||||
-rw-r--r-- | src/main.cpp | 14 |
3 files changed, 20 insertions, 1 deletions
@@ -1,11 +1,12 @@ patchage (1.0.3) unstable; + * Add command line option to print version * Fix making and breaking connections with Jack DBus * Fix sample rate with Jack DBus * Improve man page * Remove Jack session support - -- David Robillard <d@drobilla.net> Sun, 29 Nov 2020 10:00:53 +0000 + -- David Robillard <d@drobilla.net> Sun, 29 Nov 2020 10:02:25 +0000 patchage (1.0.2) stable; diff --git a/doc/patchage.1 b/doc/patchage.1 index f99eb92..210ea0b 100644 --- a/doc/patchage.1 +++ b/doc/patchage.1 @@ -24,5 +24,9 @@ Print the command line options and exit. \fB\-J\fR, \fB\-\-no\-jack\fR Do not automatically attach to JACK. +.TP +\fB\-V\fR, \fB\-\-version\fR +Print version information and exit. + .SH AUTHOR Patchage was written by David Robillard <d@drobilla.net> diff --git a/src/main.cpp b/src/main.cpp index db4721b..2763852 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -82,6 +82,17 @@ print_usage() std::cout << " -J, --no-jack Do not automatically attack to JACK.\n"; } +void +print_version() +{ + std::cout << "Patchage " PATCHAGE_VERSION << R"( +Copyright 2007-2020 David Robillard <d@drobilla.net>. +License GPLv3+: <http://gnu.org/licenses/gpl.html>. +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law. +)"; +} + } // namespace int @@ -111,6 +122,9 @@ main(int argc, char** argv) options.alsa_driver_autoattach = false; } else if (!strcmp(*argv, "-J") || !strcmp(*argv, "--no-jack")) { options.jack_driver_autoattach = false; + } else if (!strcmp(*argv, "-V") || !strcmp(*argv, "--version")) { + print_version(); + return 0; } else { std::cerr << "patchage: invalid option -- '" << *argv << "'\n"; print_usage(); |