Update of /cvsroot/pure-data/externals/unauthorized/cooled~
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1599/unauthorized/cooled~
Modified Files:
cooled~.c
Log Message:
Following this thread:
http://lists.puredata.info/pipermail/pd-dev/2007-10/009797.html
I have changed the save functions so that they will save the name of the
object that it was actually instantiated with. This allows objects with
savefns to work properly with namespaces.
This is a fix for this bug:
http://sourceforge.net/tracker/index.php?&aid=1818219&group_id=55736&atid=4…
Index: cooled~.c
===================================================================
RCS file: /cvsroot/pure-data/externals/unauthorized/cooled~/cooled~.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** cooled~.c 26 Jul 2006 16:44:53 -0000 1.12
--- cooled~.c 29 Oct 2007 18:58:43 -0000 1.13
***************
*** 593,597 ****
binbuf_addv(b, "ssiisiiii", gensym("#X"),gensym("obj"),
(int)x->x_obj.te_xpix, (int)x->x_obj.te_ypix,
! gensym("cooled~"), x->x_size, x->x_width, x->x_height, x->x_draw );
binbuf_addv(b, ";");
}
--- 593,598 ----
binbuf_addv(b, "ssiisiiii", gensym("#X"),gensym("obj"),
(int)x->x_obj.te_xpix, (int)x->x_obj.te_ypix,
! atom_getsymbol(binbuf_getvec(x->x_obj.te_binbuf)),
! x->x_size, x->x_width, x->x_height, x->x_draw );
binbuf_addv(b, ";");
}
Update of /cvsroot/pure-data/externals/miXed/toxy
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1599/miXed/toxy
Modified Files:
widget.c
Log Message:
Following this thread:
http://lists.puredata.info/pipermail/pd-dev/2007-10/009797.html
I have changed the save functions so that they will save the name of the
object that it was actually instantiated with. This allows objects with
savefns to work properly with namespaces.
This is a fix for this bug:
http://sourceforge.net/tracker/index.php?&aid=1818219&group_id=55736&atid=4…
Index: widget.c
===================================================================
RCS file: /cvsroot/pure-data/externals/miXed/toxy/widget.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** widget.c 10 May 2005 17:59:59 -0000 1.17
--- widget.c 29 Oct 2007 18:58:43 -0000 1.18
***************
*** 470,474 ****
t_atom *arg = props_getall(x->x_arguments, &narg);
binbuf_addv(bb, "ssiisss", gensym("#X"), gensym("obj"),
! (int)t->te_xpix, (int)t->te_ypix, gensym("widget"),
x->x_type, x->x_name);
if (narg) binbuf_add(bb, narg, arg);
--- 470,475 ----
t_atom *arg = props_getall(x->x_arguments, &narg);
binbuf_addv(bb, "ssiisss", gensym("#X"), gensym("obj"),
! (int)t->te_xpix, (int)t->te_ypix,
! atom_getsymbol(binbuf_getvec(x->x_obj.te_binbuf)),
x->x_type, x->x_name);
if (narg) binbuf_add(bb, narg, arg);
Update of /cvsroot/pure-data/externals/miXed/cyclone/sickle
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1599/miXed/cyclone/sickle
Modified Files:
Scope.c
Log Message:
Following this thread:
http://lists.puredata.info/pipermail/pd-dev/2007-10/009797.html
I have changed the save functions so that they will save the name of the
object that it was actually instantiated with. This allows objects with
savefns to work properly with namespaces.
This is a fix for this bug:
http://sourceforge.net/tracker/index.php?&aid=1818219&group_id=55736&atid=4…
Index: Scope.c
===================================================================
RCS file: /cvsroot/pure-data/externals/miXed/cyclone/sickle/Scope.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Scope.c 27 Jan 2005 14:42:48 -0000 1.6
--- Scope.c 29 Oct 2007 18:58:43 -0000 1.7
***************
*** 843,847 ****
binbuf_addv(b, "ssiisiiiiiffififiiiiiii;", gensym("#X"), gensym("obj"),
(int)t->te_xpix, (int)t->te_ypix,
! gensym("Scope~"),
x->x_width, x->x_height, x->x_period, 3, x->x_bufsize,
x->x_minval, x->x_maxval, x->x_delay, 0.,
--- 843,847 ----
binbuf_addv(b, "ssiisiiiiiffififiiiiiii;", gensym("#X"), gensym("obj"),
(int)t->te_xpix, (int)t->te_ypix,
! atom_getsymbol(binbuf_getvec(x->x_obj.te_binbuf)),
x->x_width, x->x_height, x->x_period, 3, x->x_bufsize,
x->x_minval, x->x_maxval, x->x_delay, 0.,
Update of /cvsroot/pure-data/externals/pidip/modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1599/pidip/modules
Modified Files:
pdp_colorgrid.c
Log Message:
Following this thread:
http://lists.puredata.info/pipermail/pd-dev/2007-10/009797.html
I have changed the save functions so that they will save the name of the
object that it was actually instantiated with. This allows objects with
savefns to work properly with namespaces.
This is a fix for this bug:
http://sourceforge.net/tracker/index.php?&aid=1818219&group_id=55736&atid=4…
Index: pdp_colorgrid.c
===================================================================
RCS file: /cvsroot/pure-data/externals/pidip/modules/pdp_colorgrid.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** pdp_colorgrid.c 10 May 2007 23:01:30 -0000 1.3
--- pdp_colorgrid.c 29 Oct 2007 18:58:43 -0000 1.4
***************
*** 416,420 ****
binbuf_addv(b, "ssiissiffiffiffiiff", gensym("#X"),gensym("obj"),
(int)x->x_obj.te_xpix, (int)x->x_obj.te_ypix,
! gensym("pdp_colorgrid"), x->x_name, x->x_width, x->x_min,
x->x_max, x->x_height,
x->y_min, x->y_max,
--- 416,421 ----
binbuf_addv(b, "ssiissiffiffiffiiff", gensym("#X"),gensym("obj"),
(int)x->x_obj.te_xpix, (int)x->x_obj.te_ypix,
! atom_getsymbol(binbuf_getvec(x->x_obj.te_binbuf)),
! x->x_name, x->x_width, x->x_min,
x->x_max, x->x_height,
x->y_min, x->y_max,
Update of /cvsroot/pure-data/externals/pdvjtools/imagegrid
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1599/pdvjtools/imagegrid
Modified Files:
imagegrid.c
Log Message:
Following this thread:
http://lists.puredata.info/pipermail/pd-dev/2007-10/009797.html
I have changed the save functions so that they will save the name of the
object that it was actually instantiated with. This allows objects with
savefns to work properly with namespaces.
This is a fix for this bug:
http://sourceforge.net/tracker/index.php?&aid=1818219&group_id=55736&atid=4…
Index: imagegrid.c
===================================================================
RCS file: /cvsroot/pure-data/externals/pdvjtools/imagegrid/imagegrid.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** imagegrid.c 24 Oct 2007 20:37:21 -0000 1.1.1.1
--- imagegrid.c 29 Oct 2007 18:58:43 -0000 1.2
***************
*** 581,585 ****
binbuf_addv(b, "ssiissiisss", gensym("#X"),gensym("obj"),
x->x_obj.te_xpix, x->x_obj.te_ypix,
! gensym("imagegrid"),x->x_name,x->x_num_fil,x->x_num_col,x->x_color_fons,x->x_color_marc,gensym(cadenaPathsInicials));
binbuf_addv(b, ";");
}
--- 581,586 ----
binbuf_addv(b, "ssiissiisss", gensym("#X"),gensym("obj"),
x->x_obj.te_xpix, x->x_obj.te_ypix,
! atom_getsymbol(binbuf_getvec(x->x_obj.te_binbuf)),
! x->x_name,x->x_num_fil,x->x_num_col,x->x_color_fons,x->x_color_marc,gensym(cadenaPathsInicials));
binbuf_addv(b, ";");
}
Update of /cvsroot/pure-data/externals/unauthorized/audience~
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1599/unauthorized/audience~
Modified Files:
audience~.c
Log Message:
Following this thread:
http://lists.puredata.info/pipermail/pd-dev/2007-10/009797.html
I have changed the save functions so that they will save the name of the
object that it was actually instantiated with. This allows objects with
savefns to work properly with namespaces.
This is a fix for this bug:
http://sourceforge.net/tracker/index.php?&aid=1818219&group_id=55736&atid=4…
Index: audience~.c
===================================================================
RCS file: /cvsroot/pure-data/externals/unauthorized/audience~/audience~.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** audience~.c 26 Jul 2006 16:42:34 -0000 1.7
--- audience~.c 29 Oct 2007 18:58:43 -0000 1.8
***************
*** 368,373 ****
binbuf_addv(b, "ssiisiiiifi", gensym("#X"),gensym("obj"),
(t_int)x->x_obj.te_xpix, (t_int)x->x_obj.te_ypix,
! gensym("audience~"), x->x_width, x->x_height,
! x->x_nbinputs, x->x_nboutputs, x->x_attenuation, x->x_applydelay );
for ( ii=0; ii<x->x_nbinputs; ii++ )
{
--- 368,374 ----
binbuf_addv(b, "ssiisiiiifi", gensym("#X"),gensym("obj"),
(t_int)x->x_obj.te_xpix, (t_int)x->x_obj.te_ypix,
! atom_getsymbol(binbuf_getvec(x->x_obj.te_binbuf)),
! x->x_width, x->x_height,
! x->x_nbinputs, x->x_nboutputs, x->x_attenuation, x->x_applydelay );
for ( ii=0; ii<x->x_nbinputs; ii++ )
{
Update of /cvsroot/pure-data/externals/pdvjtools/colorgrid
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1599/pdvjtools/colorgrid
Modified Files:
colorgrid.c
Log Message:
Following this thread:
http://lists.puredata.info/pipermail/pd-dev/2007-10/009797.html
I have changed the save functions so that they will save the name of the
object that it was actually instantiated with. This allows objects with
savefns to work properly with namespaces.
This is a fix for this bug:
http://sourceforge.net/tracker/index.php?&aid=1818219&group_id=55736&atid=4…
Index: colorgrid.c
===================================================================
RCS file: /cvsroot/pure-data/externals/pdvjtools/colorgrid/colorgrid.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** colorgrid.c 24 Oct 2007 20:37:20 -0000 1.1.1.1
--- colorgrid.c 29 Oct 2007 18:58:43 -0000 1.2
***************
*** 1276,1280 ****
binbuf_addv(b, "ssiissiffiffiffiiff", gensym("#X"),gensym("obj"),
(t_int)x->x_obj.te_xpix, (t_int)x->x_obj.te_ypix,
! gensym("colorgrid"), x->x_name, x->x_width, x->x_min,
x->x_max, x->x_height,
x->y_min, x->y_max,
--- 1276,1281 ----
binbuf_addv(b, "ssiissiffiffiffiiff", gensym("#X"),gensym("obj"),
(t_int)x->x_obj.te_xpix, (t_int)x->x_obj.te_ypix,
! atom_getsymbol(binbuf_getvec(x->x_obj.te_binbuf)),
! x->x_name, x->x_width, x->x_min,
x->x_max, x->x_height,
x->y_min, x->y_max,
Update of /cvsroot/pure-data/externals/pdvjtools/videogrid
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1599/pdvjtools/videogrid
Modified Files:
videogrid.c
Log Message:
Following this thread:
http://lists.puredata.info/pipermail/pd-dev/2007-10/009797.html
I have changed the save functions so that they will save the name of the
object that it was actually instantiated with. This allows objects with
savefns to work properly with namespaces.
This is a fix for this bug:
http://sourceforge.net/tracker/index.php?&aid=1818219&group_id=55736&atid=4…
Index: videogrid.c
===================================================================
RCS file: /cvsroot/pure-data/externals/pdvjtools/videogrid/videogrid.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** videogrid.c 24 Oct 2007 20:37:21 -0000 1.1.1.1
--- videogrid.c 29 Oct 2007 18:58:43 -0000 1.2
***************
*** 585,589 ****
binbuf_addv(b, "ssiissiisss", gensym("#X"),gensym("obj"),
x->x_obj.te_xpix, x->x_obj.te_ypix,
! gensym("videogrid"),x->x_name,x->x_num_fil,x->x_num_col,x->x_color_fons,x->x_color_marc,gensym(cadenaPathsInicials));
binbuf_addv(b, ";");
}
--- 585,590 ----
binbuf_addv(b, "ssiissiisss", gensym("#X"),gensym("obj"),
x->x_obj.te_xpix, x->x_obj.te_ypix,
! atom_getsymbol(binbuf_getvec(x->x_obj.te_binbuf)),
! x->x_name,x->x_num_fil,x->x_num_col,x->x_color_fons,x->x_color_marc,gensym(cadenaPathsInicials));
binbuf_addv(b, ";");
}