Mercurial > hg > vamp-plugin-sdk
changeset 363:1c93a020c329
Merge
author | Chris Cannam |
---|---|
date | Fri, 06 Jun 2014 10:40:15 +0100 |
parents | 763370655eec (diff) 2741e4323d1d (current diff) |
children | bca93a149bd7 |
files | |
diffstat | 2 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/README Fri Mar 28 13:13:08 2014 +0000 +++ b/README Fri Jun 06 10:40:15 2014 +0100 @@ -237,7 +237,7 @@ Vamp and the Vamp SDK were designed and made at the Centre for Digital Music at Queen Mary, University of London. -The SDK was written by Chris Cannam, copyright (c) 2005-2009 +The SDK was written by Chris Cannam, copyright (c) 2005-2014 Chris Cannam and QMUL. Mark Sandler and Christian Landone provided ideas and direction, and
--- a/host/vamp-simple-host.cpp Fri Mar 28 13:13:08 2014 +0000 +++ b/host/vamp-simple-host.cpp Fri Jun 06 10:40:15 2014 +0100 @@ -114,6 +114,7 @@ " " << name << " --list\n\n" " -- List the plugin libraries and Vamp plugins in the library search path\n" " in a verbose human-readable format.\n\n" + " " << name << " -L\n" " " << name << " --list-full\n\n" " -- List all data reported by all the Vamp plugins in the library search\n" " path in a very verbose human-readable format.\n\n" @@ -161,7 +162,7 @@ enumeratePlugins(PluginInformation); return 0; - } else if (!strcmp(argv[1], "--list-full")) { + } else if (!strcmp(argv[1], "-L") || !strcmp(argv[1], "--list-full")) { enumeratePlugins(PluginInformationDetailed); return 0;