Bugs item #1596279, was opened at 2006-11-14 07:40
Message generated for change (Comment added) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1596279&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: Closed
>Resolution: Fixed
Priority: 5
Private: No
Submitted By: Damian Stewart (damian_nz)
Assigned to: Hans-Christoph Steiner (eighthave)
Summary: externals missing from 0.39.2-extended-windowsxp nightly
Initial Comment:
many externals, including but not limited to the
following, are missing from the pd-0.39.2-extended
nightly builds:
- gem
- arraysize
- loop~
- aenv~
----------------------------------------------------------------------
>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2007-01-04 19:40
Message:
Logged In: YES
user_id=27104
Originator: NO
These are all included now, as of test7. all but Gem are in the
"flatspace" libdir.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1596279&group_…
two questions:
* what's the use of the size_t argument in freebytes?
* what's the use of the t_symbol argument in outlet_new?
thanks.
_ _ __ ___ _____ ________ _____________ _____________________ ...
| Mathieu Bouchard - tél:+1.514.383.3801 - http://artengine.ca/matju
| Freelance Digital Arts Engineer, Montréal QC Canada
PureUnity will now require pd 0.40. This will make things easier, as for
example the aliases [f.inlet], [~.inlet] can be renamed to [inlet.f] and
[inlet.~], which makes those class-templates sortable alphabetically, and
readable as "inlet of float" and "inlet of signal" or maybe "inlet for
floats" and "inlet for signals"... likewise for all other existing
templates of PureUnity (do,norm,outlet,packunpack3,rand,swap,taa).
(here, "template" means "parametrized classname" as in C++, and not
t_template)
_ _ __ ___ _____ ________ _____________ _____________________ ...
| Mathieu Bouchard - tél:+1.514.383.3801 - http://artengine.ca/matju
| Freelance Digital Arts Engineer, Montréal QC Canada
Patches item #1543850, was opened at 2006-08-21 12:24
Message generated for change (Comment added) made by zmoelnig
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: IOhannes m zmölnig (zmoelnig)
Date: 2007-01-02 19: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-23 00: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 #1626077, was opened at 2007-01-02 11:07
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=1626077&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: Frank Barknecht (fbar)
Assigned to: Miller Puckette (millerpuckette)
Summary: Hash signs in GUI labels get replaced by dollar signs
Initial Comment:
Hash signs ("#") in the label of a GUI object are replaced by a dollar sign ("$"). That is, giving a slider a label like "silder#" will result in a label "slider$" both in the GUI as in the saved patch file.
This is slightly different for float atoms: Here the patch file correctly saves the hash, but still displays a dollar in the patch.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1626077&group_…
Patches item #1612910, was opened at 2006-12-10 22:55
Message generated for change (Comment added) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1612910&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: feature
>Status: Closed
>Resolution: Accepted
Priority: 5
Private: No
Submitted By: Stephen Sinclair (radarsat1)
>Assigned to: Hans-Christoph Steiner (eighthave)
Summary: Patch to OSCx to support multicast
Initial Comment:
Hello,
I needed to try some multicast stuff with Pd, but found that the OSCx
externals didn't support it, so I made some small changes. Just
thought I'd send it along in case it is useful to someone else.
[sendOSC] can now take an optional TTL argument in its "connect"
message. This is "Time To Live" which says how many jumps the UDP
packet is allowed to make before dying out. Without setting this,
multicast only works on the local LAN.
[dumpOSC] can now take an optional "Group" argument _before_ the port
number. (I put it before for consistancy with sendOSC.) For example:
[dumpOSC 224.0.1.1 7879]
When this argument is provided, it will join the given multicast
group. (using setsockopt)
Tested so far on Linux (Ubuntu Dapper) and OS X 10.4.8 ppc.
I also modified configure.ac a little to make it work properly with
Pd-0.40-2.app on OS X.
Steve
----------------------------------------------------------------------
>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2007-01-01 20:39
Message:
Logged In: YES
user_id=27104
Originator: NO
Worked for me on Mac OS X 10.4.8
committed without the changes to configure.ac since those broke the
Pd-extened build stuff.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1612910&group_…