Bugs item #3606513, was opened at 2013-03-01 03:23
Message generated for change (Tracker Item Submitted) made by jmmmp
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3606513&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: pd-extended
Group: v0.43
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: João Pais (jmmmp)
Assigned to: Hans-Christoph Steiner (eighthave)
Summary: pd-ext .43 debian: maxlib missing
Initial Comment:
in pd-ext .43 debian, the maxlib externals aren't in the right format. instead of pd_linux, they're compiled as .l_ia64 (didn't checked for errors in other libraries)
in w7 it's ok, though.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3606513&group_…
Bugs item #3606512, was opened at 2013-03-01 03:22
Message generated for change (Tracker Item Submitted) made by jmmmp
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3606512&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: pd-extended
Group: v0.43
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: João Pais (jmmmp)
Assigned to: Hans-Christoph Steiner (eighthave)
Summary: pd-ext .43 debian: ctrl-r doesn't work
Initial Comment:
in debian 6.0.7, ctrl-r doesn't bring the pd window forward
(in windows 7 it works)
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3606512&group_…
Patches item #3606144, was opened at 2013-02-26 17:42
Message generated for change (Comment added) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3606144&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: puredata
Group: feature
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Jonathan Wilkes (jancsika1)
Assigned to: Nobody/Anonymous (nobody)
Summary: check anything selector for float content
Initial Comment:
Currently, pd_defaultanything just prints out an error. This patch passes the message selector through Pd's parser to see if it can be interpreted as a float. If it can, then the newly converted float is forwarded to the object's float method.
----------------------------------------------------------------------
>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2013-02-28 11:34
Message:
Can you give an example patch of where this would be triggered?
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3606144&group_…
Patches item #3606334, was opened at 2013-02-28 01:52
Message generated for change (Tracker Item Submitted) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3606334&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: puredata
Group: bugfix
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: IOhannes m zmölnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
Summary: empty lists to [pack] should trigger object
Initial Comment:
"[list 1 2 3( -> [pack 10 20 30 40]" will overwrite the first 3 elements ot [pack] and then trigger the output of the packed list.
but sending an empty list, e.g. "[list( -> [pack 10 20 30 49]", will be silently ignored.
the expected bahaviour is that no elements of [pack] are replaced and that the packed list is sent to the outlet.
the attached patch fixes this, by only calling obj_list() is the list is non-empty (obj_list() will immediately return if it gets an empty list) and instead call pack_bang() in this case.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3606334&group_…
Patches item #3606332, was opened at 2013-02-28 01:41
Message generated for change (Tracker Item Submitted) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3606332&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: puredata
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: IOhannes m zmölnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
Summary: fix for [trigger anything] modifying incoming messages
Initial Comment:
[t a] will convert bang, float and symbol messages to list mesages.
this becomes problematic, if the objects that receive the data from [trigger] have methods for e.g. both "list" and "bang" and use different semantics for those two messages (e.g. "bang" triggers the object's output, whereas "list" sets its internal state - an empty list could be used for clearing the state)
it also makes triggering of the empty-lists-discarded bug (fixed in #3606330) very easy, e.g the following will not do anything:
[bang(
|
[t a]
|
[pack 0 0]
the attached patch sends the incoming messages unmodified to any "a" outlet of [trigger]
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3606332&group_…
Patches item #3606330, was opened at 2013-02-28 01:33
Message generated for change (Tracker Item Submitted) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3606330&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: puredata
Group: bugfix
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: IOhannes m zmölnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
Summary: don't distribute empty lists to outlets
Initial Comment:
sending an empty list to a patchable object that has neither bang-method nor an list- or anything-method, will silently ignore the message.
e.g.
[list(
|
[sin]
the problem comes from Pd's automatic unpacking of lists to the object's inlets, which in case of an empty list just does nothing.
the attached patch will only call the unpacking code if the list is non-empty (and fall back to the default anything method).
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3606330&group_…
Patches item #3606144, was opened at 2013-02-26 17:42
Message generated for change (Settings changed) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3606144&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: puredata
Group: feature
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Jonathan Wilkes (jancsika1)
Assigned to: Nobody/Anonymous (nobody)
>Summary: check anything selector for float content
Initial Comment:
Currently, pd_defaultanything just prints out an error. This patch passes the message selector through Pd's parser to see if it can be interpreted as a float. If it can, then the newly converted float is forwarded to the object's float method.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3606144&group_…
Patches item #3606144, was opened at 2013-02-26 17:42
Message generated for change (Tracker Item Submitted) made by jancsika1
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3606144&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: puredata
Group: feature
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Jonathan Wilkes (jancsika1)
Assigned to: Nobody/Anonymous (nobody)
Summary: check anything for float content
Initial Comment:
Currently, pd_defaultanything just prints out an error. This patch passes the message selector through Pd's parser to see if it can be interpreted as a float. If it can, then the newly converted float is forwarded to the object's float method.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3606144&group_…
Does anyone know why does the following exist inside the glist_delete
function inside g_graph.c:
/* if we're a drawing command, erase all scalars now,
before deleting
it; we'll redraw them once it's deleted below. */
if (drawcommand)
canvas_redrawallfortemplate(template_findbyname(canvas_makebindsym(
glist_getcanvas(x)->gl_name)), 2);
if (glist_isvisible(canvas))
gobj_vis(y, x, 0);
--> if (x->gl_editor && (ob = pd_checkobject(&y->g_pd)))
--> rtext_new(x, ob);
if (x->gl_list == y) {
That rtext is never freed after that so unless I am missing something I
see no reason why we would want to do this. Any ideas?
--
Ivica Ico Bukvic, D.M.A
Composition, Music Technology
Director, DISIS Interactive Sound & Intermedia Studio
Director, L2Ork Linux Laptop Orchestra
Head, ICAT IMPACT Studio
Virginia Tech
Department of Music
Blacksburg, VA 24061-0240
(540) 231-6139
(540) 231-5034 (fax)
disis.music.vt.edul2ork.music.vt.eduico.bukvic.net
Patches item #3606000, was opened at 2013-02-25 18:23
Message generated for change (Tracker Item Submitted) made by jancsika1
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3606000&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: puredata
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Jonathan Wilkes (jancsika1)
Assigned to: Nobody/Anonymous (nobody)
Summary: remove list method from my_numbox
Initial Comment:
fix for bug #3414961
removing the explicit listmethod lets Pd truncate lists automatically (as well as treat empty lists as bangs)
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3606000&group_…