aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/pool/readme.txt
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2002-11-24 21:16:26 +0000
committerThomas Grill <xovo@users.sourceforge.net>2002-11-24 21:16:26 +0000
commitef0d86caba9cfbb5cf5e404ea1100d4a771e744c (patch)
treee416803b96275bf64574186344ea209aa41c787b /externals/grill/pool/readme.txt
parentc33a1ed6b7d97d417944092f10977e85f6f0fdcd (diff)
*** empty log message ***
svn path=/trunk/; revision=229
Diffstat (limited to 'externals/grill/pool/readme.txt')
-rw-r--r--externals/grill/pool/readme.txt65
1 files changed, 65 insertions, 0 deletions
diff --git a/externals/grill/pool/readme.txt b/externals/grill/pool/readme.txt
new file mode 100644
index 00000000..513b1966
--- /dev/null
+++ b/externals/grill/pool/readme.txt
@@ -0,0 +1,65 @@
+pool - a hierarchical storage object for PD and Max/MSP
+
+Copyright (c) 2002 Thomas Grill (xovo@gmx.net)
+For information on usage and redistribution, and for a DISCLAIMER OF ALL
+WARRANTIES, see the file, "license.txt," in this distribution.
+
+Donations for further development of the package are highly appreciated.
+
+----------------------------------------------------------------------------
+
+You will need the flext C++ layer for PD and Max/MSP externals to compile this.
+
+Package files:
+- readme.txt: this one
+- gpl.txt,license.txt: GPL license stuff
+- main.cpp, pool.h, pool.cpp, data.cpp
+
+----------------------------------------------------------------------------
+
+Goals/features of the package:
+
+- pool can store and retrieve key/value pairs, where a key can be any atom and
+ the value can be any list of atoms
+- pool can manage folders. A folder name can be any atom.
+- pool objects can be named and then share their data space
+- clipboard operations are possible in a pool or among several pools
+- file operations can load/save data from disk
+
+----------------------------------------------------------------------------
+
+The package should at least compile (and is tested) with the following compilers:
+
+pd - Windows:
+-------------
+o Borland C++ 5.5 (free): edit "config-pd-bcc.txt" & run "build-pd-bcc.bat"
+
+o Microsoft Visual C++ 6: edit the project file "pool.dsp" & build
+
+pd - linux:
+-----------
+o GCC: edit "config-pd-linux.txt" & run "sh build-pd-linux.sh"
+
+pd - darwin (MacOSX):
+---------------------
+o GCC: edit "config-pd-darwin.txt" & run "sh build-pd-darwin.sh"
+
+Max/MSP - MacOS9:
+-----------------
+o CodeWarrior: edit "pool.cw" and build
+
+----------------------------------------------------------------------------
+
+Version history:
+
+0.1.0:
+- first public release
+
+---------------------------------------------------------------------------
+
+TODO list:
+
+general:
+- speed up the database
+
+