From 6982283d7e495acfa382d28bb5d3bbffe4adc7b0 Mon Sep 17 00:00:00 2001 From: Chris Cannam Date: Sun, 2 May 2010 16:09:01 +0100 Subject: [PATCH] * Update README and dates etc for 0.9 --- README | 14 +++++--------- dssi-vst-scanner.cpp | 4 ++-- dssi-vst-server.cpp | 4 ++-- dssi-vst.cpp | 2 +- dssi-vst_gui.cpp | 4 ++-- paths.cpp | 2 +- paths.h | 2 +- rdwrops.cpp | 2 +- rdwrops.h | 2 +- remoteplugin.h | 2 +- remotepluginclient.cpp | 2 +- remotepluginclient.h | 2 +- remotepluginserver.cpp | 2 +- remotepluginserver.h | 2 +- remotevstclient.cpp | 2 +- remotevstclient.h | 2 +- vsthost.cpp | 2 +- 17 files changed, 24 insertions(+), 28 deletions(-) diff --git a/README b/README index eeb0340..2a10a2a 100644 --- a/README +++ b/README @@ -5,17 +5,13 @@ dssi-vst: a DSSI plugin wrapper for VST plugins This is a DSSI plugin wrapper for VST effects and instruments with GUI support. -Copyright (c) 2004-2008 Chris Cannam, cannam@all-day-breakfast.com. +Copyright (c) 2004-2010 Chris Cannam, cannam@all-day-breakfast.com. -This is the 0.8 release of dssi-vst. +This is the 0.9 release of dssi-vst. The only change since 0.8 is a +fix to plugin idle handling thanks to Robert Jonsson and Torben Hohn. -Changes since version 0.7: - - * The Makefile is now set up for 64-bit Linux systems (with - compatibility libraries for 32-bit code) as well as 32-bit ones. - See "Building on 64-bit systems" below. - - * A couple of other minor fixes are also included. +The 0.8 release added 64-bit support in the Makefile and a few other +fixes. The 0.7 release added a LADSPA descriptor as well as DSSI, contained several build fixes, and switched to jack_client_open in vsthost for diff --git a/dssi-vst-scanner.cpp b/dssi-vst-scanner.cpp index c34a7b9..868d0ee 100644 --- a/dssi-vst-scanner.cpp +++ b/dssi-vst-scanner.cpp @@ -2,7 +2,7 @@ /* dssi-vst: a DSSI plugin wrapper for VST effects and instruments - Copyright 2004-2008 Chris Cannam + Copyright 2004-2010 Chris Cannam */ #include @@ -130,7 +130,7 @@ WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR cmdline, int cmdshow) char *destFile = 0; cout << "DSSI VST plugin scanner v0.3" << endl; - cout << "Copyright (c) 2004-2008 Chris Cannam" << endl; + cout << "Copyright (c) 2004-2010 Chris Cannam" << endl; if (cmdline && cmdline[0]) destFile = strdup(cmdline); diff --git a/dssi-vst-server.cpp b/dssi-vst-server.cpp index 1216a93..b11543c 100644 --- a/dssi-vst-server.cpp +++ b/dssi-vst-server.cpp @@ -2,7 +2,7 @@ /* dssi-vst: a DSSI plugin wrapper for VST effects and instruments - Copyright 2004-2008 Chris Cannam + Copyright 2004-2010 Chris Cannam */ #include @@ -1137,7 +1137,7 @@ WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR cmdline, int cmdshow) bool tryGui = false, haveGui = true; cout << "DSSI VST plugin server v" << RemotePluginVersion << endl; - cout << "Copyright (c) 2004-2008 Chris Cannam" << endl; + cout << "Copyright (c) 2004-2010 Chris Cannam" << endl; char *home = getenv("HOME"); diff --git a/dssi-vst.cpp b/dssi-vst.cpp index 3975576..3ae2b9a 100644 --- a/dssi-vst.cpp +++ b/dssi-vst.cpp @@ -3,7 +3,7 @@ /* dssi-vst: a DSSI plugin wrapper for VST effects and instruments - Copyright 2004-2008 Chris Cannam + Copyright 2004-2010 Chris Cannam */ #include "remotevstclient.h" diff --git a/dssi-vst_gui.cpp b/dssi-vst_gui.cpp index 85a467c..6ae150d 100644 --- a/dssi-vst_gui.cpp +++ b/dssi-vst_gui.cpp @@ -2,7 +2,7 @@ /* dssi-vst: a DSSI plugin wrapper for VST effects and instruments - Copyright 2004-2008 Chris Cannam + Copyright 2004-2010 Chris Cannam */ #include @@ -185,7 +185,7 @@ int main(int argc, char **argv) { cout << "DSSI VST plugin GUI controller v" << RemotePluginVersion << endl; - cout << "Copyright (c) 2004-2008 Chris Cannam" << endl; + cout << "Copyright (c) 2004-2010 Chris Cannam" << endl; char *pluginlibname = 0; char *label = 0; diff --git a/paths.cpp b/paths.cpp index daf6c36..c27ecbb 100644 --- a/paths.cpp +++ b/paths.cpp @@ -2,7 +2,7 @@ /* dssi-vst: a DSSI plugin wrapper for VST effects and instruments - Copyright 2004-2008 Chris Cannam + Copyright 2004-2010 Chris Cannam */ #include "paths.h" diff --git a/paths.h b/paths.h index f2485c2..514fb41 100644 --- a/paths.h +++ b/paths.h @@ -3,7 +3,7 @@ /* dssi-vst: a DSSI plugin wrapper for VST effects and instruments - Copyright 2004-2008 Chris Cannam + Copyright 2004-2010 Chris Cannam */ #ifndef _PATHS_H_ diff --git a/rdwrops.cpp b/rdwrops.cpp index f3b57dd..5dcd20b 100644 --- a/rdwrops.cpp +++ b/rdwrops.cpp @@ -4,7 +4,7 @@ /* dssi-vst: a DSSI plugin wrapper for VST effects and instruments - Copyright 2004-2008 Chris Cannam + Copyright 2004-2010 Chris Cannam */ #include "rdwrops.h" diff --git a/rdwrops.h b/rdwrops.h index 181bbad..038be17 100644 --- a/rdwrops.h +++ b/rdwrops.h @@ -2,7 +2,7 @@ /* dssi-vst: a DSSI plugin wrapper for VST effects and instruments - Copyright 2004-2008 Chris Cannam + Copyright 2004-2010 Chris Cannam */ #ifndef _RD_WR_OPS_H_ diff --git a/remoteplugin.h b/remoteplugin.h index 615f354..09be73c 100644 --- a/remoteplugin.h +++ b/remoteplugin.h @@ -2,7 +2,7 @@ /* dssi-vst: a DSSI plugin wrapper for VST effects and instruments - Copyright 2004-2008 Chris Cannam + Copyright 2004-2010 Chris Cannam */ #ifndef REMOTE_PLUGIN_H diff --git a/remotepluginclient.cpp b/remotepluginclient.cpp index b6c5d25..5a724fc 100644 --- a/remotepluginclient.cpp +++ b/remotepluginclient.cpp @@ -2,7 +2,7 @@ /* dssi-vst: a DSSI plugin wrapper for VST effects and instruments - Copyright 2004-2008 Chris Cannam + Copyright 2004-2010 Chris Cannam */ #include "remotepluginclient.h" diff --git a/remotepluginclient.h b/remotepluginclient.h index b37280c..26b1309 100644 --- a/remotepluginclient.h +++ b/remotepluginclient.h @@ -2,7 +2,7 @@ /* dssi-vst: a DSSI plugin wrapper for VST effects and instruments - Copyright 2004-2008 Chris Cannam + Copyright 2004-2010 Chris Cannam */ #ifndef REMOTE_PLUGIN_CLIENT_H diff --git a/remotepluginserver.cpp b/remotepluginserver.cpp index 7f05730..2f1744a 100644 --- a/remotepluginserver.cpp +++ b/remotepluginserver.cpp @@ -2,7 +2,7 @@ /* dssi-vst: a DSSI plugin wrapper for VST effects and instruments - Copyright 2004-2008 Chris Cannam + Copyright 2004-2010 Chris Cannam */ #include "remotepluginserver.h" diff --git a/remotepluginserver.h b/remotepluginserver.h index d363a50..91a671c 100644 --- a/remotepluginserver.h +++ b/remotepluginserver.h @@ -2,7 +2,7 @@ /* dssi-vst: a DSSI plugin wrapper for VST effects and instruments - Copyright 2004-2008 Chris Cannam + Copyright 2004-2010 Chris Cannam */ #ifndef REMOTE_PLUGIN_SERVER_H diff --git a/remotevstclient.cpp b/remotevstclient.cpp index 86aac6f..538e2d9 100644 --- a/remotevstclient.cpp +++ b/remotevstclient.cpp @@ -2,7 +2,7 @@ /* dssi-vst: a DSSI plugin wrapper for VST effects and instruments - Copyright 2004-2008 Chris Cannam + Copyright 2004-2010 Chris Cannam */ #include "remotevstclient.h" diff --git a/remotevstclient.h b/remotevstclient.h index aaff8b5..98b28b4 100644 --- a/remotevstclient.h +++ b/remotevstclient.h @@ -2,7 +2,7 @@ /* dssi-vst: a DSSI plugin wrapper for VST effects and instruments - Copyright 2004-2008 Chris Cannam + Copyright 2004-2010 Chris Cannam */ #ifndef REMOTE_VST_CLIENT_H diff --git a/vsthost.cpp b/vsthost.cpp index 6c97009..adaa412 100644 --- a/vsthost.cpp +++ b/vsthost.cpp @@ -2,7 +2,7 @@ /* dssi-vst: a DSSI plugin wrapper for VST effects and instruments - Copyright 2004-2008 Chris Cannam + Copyright 2004-2010 Chris Cannam */ #include