Update of /cvsroot/pure-data/externals/grill/vst In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25336
Modified Files: license.txt package.txt readme.txt vst.vcproj Log Message: restructured VSThost code better shell support fix for build system update for flext build systemcleanups VSTTime info added event processing (like Midi in)
Index: vst.vcproj =================================================================== RCS file: /cvsroot/pure-data/externals/grill/vst/vst.vcproj,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** vst.vcproj 10 Mar 2005 05:01:26 -0000 1.15 --- vst.vcproj 11 Mar 2005 04:58:00 -0000 1.16 *************** *** 88,92 **** Optimization="0" AdditionalIncludeDirectories=""c:\data\prog\pd\pd-cvs\src";..\flext\source;c:\data\prog\audio\vstsdk2.3\source\common" ! PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_WIN32_WINNT=0x0501,WINVER=0x0501;_USRDLL;FLEXT_SYS=2;FLEXT_THREADS;FLEXT_LOGGING" BasicRuntimeChecks="3" RuntimeLibrary="1" --- 88,92 ---- Optimization="0" AdditionalIncludeDirectories=""c:\data\prog\pd\pd-cvs\src";..\flext\source;c:\data\prog\audio\vstsdk2.3\source\common" ! PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_WIN32_WINNT=0x0501;WINVER=0x0501;_USRDLL;FLEXT_SYS=2;FLEXT_THREADS;xFLEXT_LOGGING" BasicRuntimeChecks="3" RuntimeLibrary="1" *************** *** 276,279 **** --- 276,282 ---- </File> <File + RelativePath=".\src\vstedit.cpp"> + </File> + <File RelativePath=".\src\vsthost.cpp"> </File> *************** *** 281,284 **** --- 284,296 ---- RelativePath=".\src\vsthost.h"> </File> + <File + RelativePath=".\src\vstmaster.cpp"> + </File> + <File + RelativePath=".\src\vstmidi.cpp"> + </File> + <File + RelativePath=".\src\vstparam.cpp"> + </File> </Filter> <Filter *************** *** 327,330 **** --- 339,345 ---- RelativePath="src\main.h"> </File> + <File + RelativePath=".\src\resource.h"> + </File> </Files> <Globals>
Index: license.txt =================================================================== RCS file: /cvsroot/pure-data/externals/grill/vst/license.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** license.txt 31 Mar 2003 02:41:01 -0000 1.3 --- license.txt 11 Mar 2005 04:58:00 -0000 1.4 *************** *** 1,5 **** vst~ - VST plugin object for PD based on the work of Jarno Seppänen and Mark Williamson ! Copyright (C) 2003 Thomas Grill
This program is free software; you can redistribute it and/or --- 1,5 ---- vst~ - VST plugin object for PD based on the work of Jarno Seppänen and Mark Williamson ! Copyright (C) 2003-2005 Thomas Grill
This program is free software; you can redistribute it and/or *************** *** 53,57 **** --- flext ---------------------------------------------- flext - C++ layer for Max/MSP and pd (pure data) externals ! Copyright (C) 2001-2003 Thomas Grill
This program is free software; you can redistribute it and/or --- 53,57 ---- --- flext ---------------------------------------------- flext - C++ layer for Max/MSP and pd (pure data) externals ! Copyright (C) 2001-2005 Thomas Grill
This program is free software; you can redistribute it and/or
Index: readme.txt =================================================================== RCS file: /cvsroot/pure-data/externals/grill/vst/readme.txt,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** readme.txt 10 Mar 2005 05:01:25 -0000 1.13 --- readme.txt 11 Mar 2005 04:58:00 -0000 1.14 *************** *** 56,59 **** --- 56,62 ---- - pre18: open plug interface on Alt-Click - pre18: experimental plug shell support + - pre19: better shell support + - pre19: restructured code and added time info + - pre19: support for event processing (like MIDI in)
0.0.0:
Index: package.txt =================================================================== RCS file: /cvsroot/pure-data/externals/grill/vst/package.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** package.txt 19 Jan 2005 05:00:43 -0000 1.3 --- package.txt 11 Mar 2005 04:58:00 -0000 1.4 *************** *** 6,10 **** SRCDIR=src
! SRCS=main.cpp vsthost.cpp editor.cpp
HDRS=main.h vsthost.h editor.h editorwin.hpp editormac.hpp --- 6,10 ---- SRCDIR=src
! SRCS=main.cpp vsthost.cpp vstmaster.cpp vstedit.cpp vstparam.cpp vstmidi.cpp editor.cpp
HDRS=main.h vsthost.h editor.h editorwin.hpp editormac.hpp