# HG changeset patch # User Chris Cannam # Date 1402047615 -3600 # Node ID 1c93a020c329e711239459d1d29d08c29cbb2dd3 # Parent 763370655eecb477f301ffadfa95b80647ba4269# Parent 2741e4323d1dbf002f765d1bc1e7a2442976e96a Merge diff -r 2741e4323d1d -r 1c93a020c329 README --- 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 diff -r 2741e4323d1d -r 1c93a020c329 host/vamp-simple-host.cpp --- 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;