Bugs item #1906246, was opened at 2008-03-03 04:54
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1906246&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: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: pd-0.41-2.msw.exe does not include [expr]
Initial Comment:
When I install pd-0.41-2.msw.exe on a machine where pd has not been previously installed, it does not include the [expr] object. So, things like exponential.pd in the Audio Examples portion of the documentation don't work.
If installed over an older version of Pd, it apparently picks up the expr library from the older version. Thus masking the bug.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1906246&group_…
In case anyone wants it, here's the universal binary (32/64 for Tcl,
32-bit for Tk) that is used in the nightly builds.
http://idmi.poly.edu/pdlab/TclTk_Mac_OS_X_Universal-2008-03-03.tar.bz2
.hc
------------------------------------------------------------------------
----
kill your television
Bugs item #1905909, was opened at 2008-03-02 14:00
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1905909&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: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: pd-0.41-2.msw.exe does not include [expr]
Initial Comment:
When I install pd-0.41-2.msw.exe on a machine where pd has not been previously installed, it does not include the [expr] object. So, things like exponential.pd in the Audio Examples portion of the documentation don't work.
If installed over an older version of Pd, it apparently picks up the expr library from the older version. Thus masking the bug.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1905909&group_…
Bugs item #1847016, was opened at 2007-12-08 22:45
Message generated for change (Comment added) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1847016&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: v0.40.2
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Jack Moffitt (jackiem)
>Assigned to: Miller Puckette (millerpuckette)
Summary: midirealtimein generates spurious warning on os x
Initial Comment:
It seems to me (from using it on os x) that midirealtimein works just fine. However, each time it is used it complains that it is only supported on Windows.
This was tested in the 20071205 intel build of pd extended 0.40.3.
----------------------------------------------------------------------
>Comment By: IOhannes m zmölnig (zmoelnig)
Date: 2008-02-29 16:40
Message:
Logged In: YES
user_id=564396
Originator: NO
this is not related to pd-extended. i get the same error on pd-vanilla on
linux (though i haven't tested whether it actually works)
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1847016&group_…
Bugs item #1904754, was opened at 2008-02-29 16:38
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1904754&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: [midiout] only outputs sysex on alsa-midi
Initial Comment:
when using alsa-midi as midi-transport, the [midiout] object does not what i would expect: it outputs the bytes and sysex bytes instead of raw-midi, which is incompatible with the behaviour when using other transports.
i understand that this is not so simple to implement, as alsa-seq does not have a notion of "raw midi".
the way to do it, would probably be to parse the raw midi and use the proper alsa-midi calls (and let alsa unparse the events into raw-midi again :-))
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1904754&group_…
Bugs item #1890931, was opened at 2008-02-11 08:01
Message generated for change (Settings changed) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1890931&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: v0.41.0
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Luke Iannini (lukeiannini)
>Assigned to: Miller Puckette (millerpuckette)
>Summary: empty lists != bang ([list-split] outputs bad bang type)
Initial Comment:
Hi,
Attached it a patch demonstrating the bug. [list-split] outputs a bang on the right outlet when the input is a bang, but it seems to invisibly add the "list" selector so that the bang is unrecognized by, for example, [until] (giving the error: inlet: expected 'bang' but got 'list')
Cheers
Luke
----------------------------------------------------------------------
Comment By: ClaudiusMaximus (claudiusmaximus)
Date: 2008-02-11 09:51
Message:
Logged In: YES
user_id=769033
Originator: NO
I'd say it was a bug in Pd core. Rather than adding special cases to
*all* objects, I think the "distribute lists over inlets if there is no
method for 'list'" code should notice empty lists and call the 'bang'
method, furthermore extra 'list' methods for objects that don't really need
them should be removed. Both these steps are necessary to maintain the
("list",{}) == ("bang",{}) invariant in more places with less code.
Something like this (totally untested, so be warned):
--- m_obj.c.orig 2008-02-11 08:48:44.000000000 +0000
+++ m_obj.c 2007-12-17 20:28:49.000000000 +0000
@@ -224,7 +224,7 @@
t_atom *ap;
int count;
t_inlet *ip = ((t_object *)x)->ob_inlet;
- if (!argc) return;
+ if (!argc) { pd_bang(&x->ob_pd); return; }
for (count = argc-1, ap = argv+1; ip && count--; ap++, ip =
ip->i_next)
{
if (ap->a_type == A_POINTER) pd_pointer(&ip->i_pd,
ap->a_w.w_gpointer);
----------------------------------------------------------------------
Comment By: Frank Barknecht (fbar)
Date: 2008-02-11 09:24
Message:
Logged In: YES
user_id=569446
Originator: NO
I guess you mean [list split] (without dash). If it's a bug it's one in
[until] I believe. [list split] outputs a zero-element list in your
example, which is what the help-file says it would do. Usually empty lists
get converted to a bang. I suppose this happens at an object's inlet.
However [until] doesn't convert - probably it needs to get a
until_list2(...) method?
(Btw: Better avoid whitespace in the names of example patches uploaded
here. I uploaded a new version and deleted the old.)
File Added: list-split-bug.pd
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1890931&group_…
Bugs item #1854037, was opened at 2007-12-19 15:34
Message generated for change (Comment added) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1854037&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: Deleted
>Resolution: Duplicate
Priority: 5
Private: No
Submitted By: boonier (boonier)
Assigned to: Hans-Christoph Steiner (eighthave)
Summary: JackOSX 0.75 crashing Pd 0.40-2
Initial Comment:
The latest beta of Jack for Multiprocessor support: http://www.grame.fr/~letz/JackOSX.0.75b15.pkg.zip
Is crashing the latest version (autobuild) of Pd-extended 0.40-2 when Jack is selected from the Media menu.
System is:
10.5.1 os x
MacIntel 2.4ghz
----------------------------------------------------------------------
>Comment By: IOhannes m zmölnig (zmoelnig)
Date: 2008-02-29 16:15
Message:
Logged In: YES
user_id=564396
Originator: NO
this is a duplicate of #1854008
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1854037&group_…
Bugs item #1893620, was opened at 2008-02-14 15:42
Message generated for change (Settings changed) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1893620&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: v0.41.0
>Status: Deleted
>Resolution: Invalid
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: turning on DSP crashes PD (at least in Windows)
Initial Comment:
When turning on DSP for the N-th time, PD sometimes crashes.
My empirical investigations lead me to think it happens when there are a big number of instances containing both [outlet]s and [outlet~]s
I attach 3 zip files containing 3 tests.
Each zip contains a main patch and the abstractions used within it.
Testing on PD Vanilla 0.40, Windows XP, Intel core duo.
*** A.ZIP ***
- Open the main patch "test_crash_dsp3_new.pd"
- Turn DSP on and off repeatedly. You can either do it manually or use the metro included in the patch.
-> PD will crash around the 48-th time you turn DSP on.
You don't need to switch "frenetically": I set the metro at a high rate to reach the crash in less time, but you can change it to [metro 1000] if you are willing to wait 96 seconds.
*** B.ZIP ***
- Open the main patch "dspcrash.pd"
- Turn DSP on and off repeatedly.
-> PD will crash around the 30-th time you turn DSP on; sometime much earlier, such as at the 8-th time.
*** C.ZIP ***
This is cleaner, but triggers the bug more unpredictably.
- Open the main patch "main.pd"
- Turn DSP on and off repeatedly
-> PD will crash at some time when turning DSP on. It may crash at the 10-th time you turn it on, or you may need to turn it on/off more than 500 times.
----------------------------------------------------------------------
>Comment By: IOhannes m zmölnig (zmoelnig)
Date: 2008-02-29 16:05
Message:
Logged In: YES
user_id=564396
Originator: NO
deleted as requested
----------------------------------------------------------------------
Comment By: Matteo Sisti Sette (sistisette)
Date: 2008-02-14 15:46
Message:
Logged In: YES
user_id=1709568
Originator: NO
PLEASE DELETE THIS BUG.
It was me who submitted it, but I didn't realize I wasn't logged in so noy
I can't add files!!!
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1893620&group_…