Bugs item #3576885, was opened at 2012-10-12 16:56
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3576885&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: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Pd doesn't quit after deleting array in a subpatch
Initial Comment:
No idea, deleted array in a subpatch and tried to quit Pd, it doesn't
Happened a few times now in Pd vanilla 0.43.2 / Win 7 / Intel
See console message
(Tcl) INVALID COMMAND NAME: invalid command name ".x786638.c"
while executing
".x786638.c delete graph2fe0368o0"
("uplevel" body line 3)
invoked from within
"uplevel #0 $cmd_from_pd".x71ddc8: no such object
.x71ddc8: no such object
.x71ddc8: no such object
.x71ddc8: no such object
.x71ddc8: no such object
.x71ddc8: no such object
.x71ddc8: no such object
.x71ddc8: no such object
.x71ddc8: no such object
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3576885&group_…
Bugs item #3576822, was opened at 2012-10-12 15:01
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3576822&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-devel
Group: v0.42
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Pointers and Lists Bug
Initial Comment:
Hey,
might it be that pointers and lists don't go well together??
I wanted to make a list containing pointers..
( Most (Some) "list"-externals don't recognize this construction. They rather do if the 1st element is not a pointer. )
I can get an element with [list split], but what comes out is not a pointer anymore...
[rawprint] says it is still a list ( [print] tells me it's just a pointer) , but [list trim] won't change anything!!!
..And a [pointer] doesn't recognize it either way..
Argh...
( I can't really remember, but there are other situations when there is "internal" confusion about datatypes)
And I find it confusing myself as well.. especially these "hidden datatypes" and the "autoconversion" sometimes make things complicated/ weird internally and externally.
It's Pd-ext 0.42.5 on windows
(Btw. please update the windows-autobuilds as well)
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3576822&group_…
Feature Requests item #3576754, was opened at 2012-10-12 09:39
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478073&aid=3576754&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: data structures
Group: None
Status: Open
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Delete single scalars
Initial Comment:
Heyho,
I am just dealing with datastructures. Very cool, but...
Is it possible to delete certain things on a canvas, instead of clearing the whole canvas???
If not, please add this feature..
I mean there is more than one way to add things but no way to delete a certain datastructure..
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478073&aid=3576754&group_…
Bugs item #3576401, was opened at 2012-10-11 11:12
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3576401&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: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Hans-Christoph Steiner (eighthave)
Summary: $@ crashes with >= 1000 args
Initial Comment:
[1000(
|
[until]
|
[list append foo]x[list append foo]
|
[$@(
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3576401&group_…
Patches item #1543850, was opened at 2006-08-21 03:24
Message generated for change (Comment added) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1543850&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: wishlist
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: IOhannes m zmölnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
Summary: $@ and $# expansion (argc, argv)
Initial Comment:
the attached patch extends the $-expansion mechanism:
$# expands to the number of arguments; usable both as
A_DOLLAR (just "$#") and A_DOLLSYM ("$#-bla")
$@ expands to the entire list of arguments (e.g. [$@
$@( will expand [1 2 3( to [1 2 3 1 2 3(); this is only
usable as A_DOLLAR; i.e. [symbol $@-a( will always
expand to "$@-a"
why:
well, its a way to deal with dynamic length lists that
is still missing in pd (though 1st steps have been made
with [list])
caveats:
what is still missing is an expansion for the selector
of messages and objects (the selector of an object
would be the object's instantation name); would $$ be a
good name for this? (since $0 is already taken)
----------------------------------------------------------------------
>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2012-10-11 09:01
Message:
This is included in Pd-extended 0.43
----------------------------------------------------------------------
Comment By: Mathieu Bouchard (matju)
Date: 2007-01-12 21:24
Message:
Logged In: YES
user_id=801174
Originator: NO
i think that $@ is what is necessary to allow abstractions to do what they
want with args, and that $# is not so useful in comparison, and what would
be more useful than $# (in the sense of avoiding more detours) would be to
be able to do a $@-like thing that only starts at the Nth argument, e.g. if
I have an abstraction that takes $1 $2 $3 and then a variable number of
arguments, and those arguments starting with $4 are to be all written
directly in an objectbox. witness the strange stuff going on in [nqpoly]...
----------------------------------------------------------------------
Comment By: IOhannes m zmölnig (zmoelnig)
Date: 2007-01-02 10:52
Message:
Logged In: YES
user_id=564396
Originator: YES
updated for current CVSversion of pd (2007-01-02)
File Added: dollargcargv.patch
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2006-08-22 15:21
Message:
Logged In: YES
user_id=27104
Yes! This is great!
As for the selector, $0 is not taken in message space, so I
think it makes sense there. Since message expansion
variables are already different than object arguments, I
think that won't be too confusing. Plus the $ variable
syntax comes from shell scripting, where $0 is basically the
selector of the message that is the command line arguments.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1543850&group_…
Bugs item #3576130, was opened at 2012-10-10 14:02
Message generated for change (Tracker Item Submitted) made by reduzent
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3576130&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: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Roman Haefeli (reduzent)
Assigned to: Hans-Christoph Steiner (eighthave)
Summary: comport hangs on USB plug disconnect
Initial Comment:
Recently, an long-standing problem in [comport] got fixed, so that pulling the USB plug of a [comport] connected device does not make Pd hang anymore. It seems that change didn't make it into Pd-extended.
This was tested on Ubuntu 12.04 with Pd-0.43.4-extended-20121009
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3576130&group_…
Bugs item #3576120, was opened at 2012-10-10 13:47
Message generated for change (Tracker Item Submitted) made by reduzent
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3576120&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: externals
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Roman Haefeli (reduzent)
Assigned to: Nobody/Anonymous (nobody)
Summary: zexy: can't load classes by alias
Initial Comment:
When compiled as single-object externals (./configure --enable-library=no), it's not possible to instantiate objects, when using 'zexy/' prefix and when using the alias names of the classes.
Examples:
[zexy/mux~]
[zexy/mux]
[zexy/demux~]
[zexy/demux]
[zexy/l2i]
[zexy/l2s]
[zexy/l]
When instantiating one of the above objects, I get:
zexy/l: already loaded
zexy/l: already loaded
zexy/l: already loaded
zexy/l: already loaded
zexy/l: already loaded
zexy/l: already loaded
[...] (above message repeated 1000 times)
error: maximum object loading depth 1000 reached
zexy/l
error: ... couldn't create
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3576120&group_…
Bugs item #3576117, was opened at 2012-10-10 13:29
Message generated for change (Tracker Item Submitted) made by reduzent
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3576117&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: externals
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Roman Haefeli (reduzent)
Assigned to: Nobody/Anonymous (nobody)
Summary: [zexy/mux~ ] fails to load
Initial Comment:
[zexy/mux~] does not load when zexy is compiled as single-object externals
(--enable-library=no). When creating [zexy/mux~], I get:
load_object: Symbol "mux_tilde_setup" not found
zexy/mux~
error: ... couldn't create
Accordingly, it does load after having created [zexy/multiplex~]. It seems
This is with the current svn head.
Attached patch fixes the problem.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3576117&group_…
Bugs item #3576103, was opened at 2012-10-10 11:59
Message generated for change (Tracker Item Submitted) made by postlude
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3576103&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: Jamie Bullock (postlude)
Assigned to: Nobody/Anonymous (nobody)
Summary: Channel leakage in dac~
Initial Comment:
There seems to be channel leakage in the dac~ object on OS X. Current system: OS X 10.8.2, Pd-0.43.3. I have observed this with previous systems.
Steps to reproduce:
1.
[osc~ 440]
|
[dac~]
2. Start DSP
Expected behaviour:
Channel 1 has audio, channel 2 is silent
Actual behaviour:
Channel 1 has audio, channel 2 also has audio (low-level and distorted leakage)
Use headphones to confirm!
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3576103&group_…
Bugs item #3576062, was opened at 2012-10-10 07:23
Message generated for change (Tracker Item Submitted) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3576062&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: externals
Group: None
Status: Open
Resolution: None
Priority: 7
Private: No
Submitted By: IOhannes m zmölnig (zmoelnig)
Assigned to: Ed Kelly (edkelly)
Summary: lpreson~ crashes if not properly initialized
Initial Comment:
[lpreson~] is very likely to crash.
e.g.: start Pd with lpreson~ loaded, create a new [lpreson~] object, turn-audio on: crash!
this is because the filter coefficents do not exist yet, but is accessed in the dsp routine.
the attached file fixes this, and also moves the t_atom->float conversion code into the list-callback (which will supposedly be called less often than the perform routine).
finally, the patch uses "t_sample" rather than "t_float" and/or "float", to allow this object to work in Pd-doubleprecision builds as well.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3576062&group_…