From 47e6e67ecfcc2015c8e1112938d4e9fae4fb92f1 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 29 Nov 2020 11:03:07 +0100 Subject: Add command line option to print version --- NEWS | 3 ++- doc/patchage.1 | 4 ++++ src/main.cpp | 14 ++++++++++++++ 3 files changed, 20 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index a3e0c95..8882fda 100644 --- a/NEWS +++ b/NEWS @@ -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 Sun, 29 Nov 2020 10:00:53 +0000 + -- David Robillard 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 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 . +License GPLv3+: . +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(); -- cgit v1.2.1