Update of /cvsroot/pure-data/externals/grill/pool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10064
Modified Files: pool-help.pd pool.vcproj readme.txt Log Message: clarify usage of absdir flag for file operations fixed buffer overrun problems some assertions added success/error reporting for file operations got rid of type abbreviations changed obviously buggy pool name registering
Index: pool-help.pd =================================================================== RCS file: /cvsroot/pure-data/externals/grill/pool/pool-help.pd,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** pool-help.pd 4 Mar 2007 14:16:33 -0000 1.5 --- pool-help.pd 3 Jan 2008 16:06:07 -0000 1.6 *************** *** 1,3 **** ! #N canvas 24 27 964 785 12; #X msg 296 105 set 1 2 3; #X obj 238 631 print K; --- 1,3 ---- ! #N canvas 24 27 968 789 12; #X msg 296 105 set 1 2 3; #X obj 238 631 print K; *************** *** 240,245 **** #X text 424 343 clear value at index; #X msg 425 363 clri 2; - #X text 272 13 a hierarchical storage object , (C)2002-2006 Thomas - Grill; #X text 713 523 output ordering; #N canvas 285 155 534 455 ordered 0; --- 240,243 ---- *************** *** 277,280 **** --- 275,280 ---- #X obj 499 666 print ------------; #X text 503 646 separator on bang; + #X text 272 13 a hierarchical storage object , (C)2002-2008 Thomas + Grill; #X connect 0 0 67 0; #X connect 2 0 67 0; *************** *** 307,311 **** #X connect 67 1 1 0; #X connect 67 2 5 0; ! #X connect 67 3 92 0; #X connect 67 4 60 0; #X connect 70 0 67 0; --- 307,311 ---- #X connect 67 1 1 0; #X connect 67 2 5 0; ! #X connect 67 3 91 0; #X connect 67 4 60 0; #X connect 70 0 67 0; *************** *** 316,319 **** #X connect 82 0 67 0; #X connect 84 0 67 0; ! #X connect 92 0 93 0; ! #X connect 92 1 90 0; --- 316,319 ---- #X connect 82 0 67 0; #X connect 84 0 67 0; ! #X connect 91 0 92 0; ! #X connect 91 1 89 0;
Index: pool.vcproj =================================================================== RCS file: /cvsroot/pure-data/externals/grill/pool/pool.vcproj,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** pool.vcproj 30 Sep 2006 19:23:16 -0000 1.21 --- pool.vcproj 3 Jan 2008 16:06:07 -0000 1.22 *************** *** 89,93 **** Name="VCCLCompilerTool" Optimization="0" ! AdditionalIncludeDirectories=""c:\data\pd\pd-cvs\src";..\flext\source" PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;FLEXT_SYS=2" StringPooling="TRUE" --- 89,93 ---- Name="VCCLCompilerTool" Optimization="0" ! AdditionalIncludeDirectories=""c:\programme\pd-0.40-2\src";..\flext\source" PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;FLEXT_SYS=2" StringPooling="TRUE" *************** *** 112,116 **** LinkIncremental="2" SuppressStartupBanner="TRUE" ! AdditionalLibraryDirectories="c:\data\pd\pd-cvs\bin" GenerateDebugInformation="TRUE" ProgramDatabaseFile="$(outdir)/pool.pdb" --- 112,116 ---- LinkIncremental="2" SuppressStartupBanner="TRUE" ! AdditionalLibraryDirectories="c:\programme\pd-0.40-2\bin" GenerateDebugInformation="TRUE" ProgramDatabaseFile="$(outdir)/pool.pdb"
Index: readme.txt =================================================================== RCS file: /cvsroot/pure-data/externals/grill/pool/readme.txt,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** readme.txt 20 Jan 2007 14:27:39 -0000 1.33 --- readme.txt 3 Jan 2008 16:06:07 -0000 1.34 *************** *** 1,5 **** pool - a hierarchical storage object for PD and Max/MSP
! Copyright (c) 2002-2006 Thomas Grill (gr@grrrr.org) For information on usage and redistribution, and for a DISCLAIMER OF ALL WARRANTIES, see the file, "license.txt," in this distribution. --- 1,5 ---- pool - a hierarchical storage object for PD and Max/MSP
! Copyright (c) 2002-2008 Thomas Grill (gr@grrrr.org) For information on usage and redistribution, and for a DISCLAIMER OF ALL WARRANTIES, see the file, "license.txt," in this distribution. *************** *** 88,91 **** --- 88,92 ---- - XML files are now encoded UTF-8 - implemented output sorting (ogetall, ogetrec, ogetsub) + - fixed some potential buffer overrun problems
0.2.1: