Sorry, posted this to the wrong list the first time. Thanks Frank
----
Hallo,
I'd like to be added to the CVS dev list, such that I can begin
posting a few of the publicly-useful abstractions I've been working
on, and more presently to get the mmonoplayer externals added.
I'd also still be interested in getting us over to Subversion, if
there is still a supportive group for this? I've maintained several
SVN repos now, and feel a bit more up to the task of organizing the
project.
Reasons …
[View More]for my admission include the bad luck of a prime number of developers.
Thanks!
Luke
proyekto.net
[View Less]
hi,
I've been using jedit as ide whenever i need to write pd objects
and code in general, and i'm satisfied with the results... I'm curious
about what editors are you using and especially if there's someone with
experience in coding pd objects using eclipse ...
Thanks...
Julian Villegas
____________________________________________________________________________________
The fish are biting.
Get more visitors on your site using Yahoo! Search Marketing.
http://searchmarketing.yahoo.com/arp/sponsoredsearch_v2.php
Patches item #1670440, was opened at 2007-02-27 19:49
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1670440&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-dev
Group: bugfix
Status: Open
Resolution: None
Priority: 5
…
[View More]Private: No
Submitted By: Ivica Ico Bukvic (ico_bukvic)
Assigned to: Nobody/Anonymous (nobody)
Summary: 8.5 tcl help browser bug
Initial Comment:
This help browser bug using CVS and tcl/tk 8.5 has been present since at least last fall. After digging through the code, I found the following:
proc doc_make_listbox {base dir count} {
# check for [file readable]?
if { [info tclversion] >= 8.5 } {
# requires Tcl 8.5 but probably deals with special chars better
# destroy {expand}[lrange [winfo children $base] [expr {2 * $count}] end]
} else {
The comment before "destroy" in effect disables destroying of children widgets and causes errors whenever I have more than one column open and try to click on a column preceding one that is already created. The error reported is that the "listbox1-list already exists" and the only way around is to close the help browser and reopen it. This obviously prevents going up the file tree once a particular subfolder has been opened which obviously means it is a non-lethal bug, but nonetheless annoying.
Thus, the "else" clause only affects non 8.5 versions and as such causes pd with tcl/tk 8.5 to be broken.
I just checked this out and the 8.4 syntax does work on 8.5 but in the current code it is never accessed due to the existing "if" statement. The new fix simply comments the "if" and "else" statements making the 8.4 style of closing children widgets mandatory for all versions, and since it appears that 8.4 code works fine with tcl/tk 8.5, this appears to be a universal fix for this issue.
Please see attached (diff -uw against the fresh CVS checkout).
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1670440&group_…
[View Less]
Hi all,
Tried sending a couple of e-mails not realizing I am not subscribed to dev
list... DOH! So, please prepare for a small salvo of e-mails :-)
Topic #1: tcl/tk 8.5 help browser bug
This help browser bug using CVS and tcl/tk 8.5 has been present since at least
last fall. After digging through the code, I found the following:
proc doc_make_listbox {base dir count} {
# check for [file readable]?
if { [info tclversion] >= 8.5 } {
# requires Tcl 8.5 but probably deals …
[View More]with special chars better
# destroy {expand}[lrange [winfo children $base] [expr {2 * $count}] end]
} else {
The comment before "destroy" in effect disables destroying of children widgets
and causes errors whenever I have more than one column open and try to click on
a column preceding one that is already created. The error reported is that the
"listbox1-list already exists" and the only way around is to close the help
browser and reopen it. This obviously prevents going up the file tree once a
particular subfolder has been opened which obviously means it is a non-lethal
bug, but nonetheless annoying.
The fix is obvious, remove the comment from the offending line and everything
works like a charm:
proc doc_make_listbox {base dir count} {
# check for [file readable]?
if { [info tclversion] >= 8.5 } {
# requires Tcl 8.5 but probably deals with special chars better
destroy {expand}[lrange [winfo children $base] [expr {2 * $count}] end]
} else {
It would be great if one of the devs/maintiners would please commit this change
(I'd do it but I have not bothered to get the CVS dev access).
Many thanks!
Best wishes,
Ico
[View Less]
Hallo!
ATM the help path system does not work for Pd-Extended (at least on linux).
All the helpfiles are installed in /5.reference/externalname, but pd
automatically searches in extra/externalname.
So there are 2 possibilities to fix this:
1) we also have to add all /5.reference/externalname in libdir.pd_linux
to the help path
2) why don't we install all the helpfiles simply in extra/externalname ?
Then all this would be no problem and I also find it much clearer this
way ...
So please …
[View More]anyone feel free to comment on this - then I will implement it.
LG
Georg
[View Less]
Hallo!
Because of this error (see below) Pd-Extended didn't install.
What is this 0-pager.pd file for and why is it not here ? (is it generated?)
However, I added a "touch 0-pager-pd" in the abstractions Makefile, so
it should install correct ...
LG
Georg
> install -p /home/pd/auto-build/pd-extended/doc/pddp/*.pd /home/pd/auto-build/pd-extended/packages/linux_make/build//usr/local/lib/pd/doc/5.reference
> install -p /home/pd/auto-build/pd-extended/doc/pddp/keyboard_fun.txt /home/pd/…
[View More]auto-build/pd-extended/packages/linux_make/build//usr/local/lib/pd/doc/5.reference
> install -d /home/pd/auto-build/pd-extended/packages/linux_make/build//usr/local/lib/pd/doc/manuals/PdDrums
> install -p /home/pd/auto-build/pd-extended/doc/tutorials/footils/pddrums/*.* /home/pd/auto-build/pd-extended/packages/linux_make/build//usr/local/lib/pd/doc/manuals/PdDrums
> install -d /home/pd/auto-build/pd-extended/packages/linux_make/build//usr/local/lib/pd/doc/manuals/PlayNow
> install -p /home/pd/auto-build/pd-extended/doc/tutorials/playnow/*.* /home/pd/auto-build/pd-extended/packages/linux_make/build//usr/local/lib/pd/doc/manuals/PlayNow
> install -d /home/pd/auto-build/pd-extended/packages/linux_make/build//usr/local/lib/pd/doc/manuals/Cognition
> install -p /home/pd/auto-build/pd-extended/doc/tutorials/cognition/*.* /home/pd/auto-build/pd-extended/packages/linux_make/build//usr/local/lib/pd/doc/manuals/Cognition
> install -d /home/pd/auto-build/pd-extended/packages/linux_make/build//usr/local/lib/pd/doc/manuals/0.Intro
> install -p /home/pd/auto-build/pd-extended/doc/tutorials/intro/*.* /home/pd/auto-build/pd-extended/packages/linux_make/build//usr/local/lib/pd/doc/manuals/0.Intro
> install -p /home/pd/auto-build/pd-extended/abstractions/pddp/0-pager.pd /home/pd/auto-build/pd-extended/packages/linux_make/build//usr/local/lib/pd/doc/manuals/0.Intro
> install: cannot stat `/home/pd/auto-build/pd-extended/abstractions/pddp/0-pager.pd': No such file or directory
> make[2]: *** [tutorials_install] Error 1
> make[2]: Leaving directory `/home/pd/auto-build/pd-extended/doc'
> make[1]: *** [doc_install] Error 2
> make[1]: Leaving directory `/home/pd/auto-build/pd-extended/packages'
> make: *** [install] Error 2
> upload specs linux_make build tar.bz2
> Uploading /home/pd/auto-build/pd-extended/packages/linux_make/build/Pd*.tar.bz2
> ls: /home/pd/auto-build/pd-extended/packages/linux_make/build/Pd*.tar.bz2: No such file or directory
[View Less]
Patches item #1668080, was opened at 2007-02-24 17:30
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1668080&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
…
[View More]Submitted By: Stephen Sinclair (radarsat1)
Assigned to: Nobody/Anonymous (nobody)
Summary: fix crash in OSCroute when it receives a bang
Initial Comment:
OSCroute currently crashes when you send it a bang.
This is a fix, causing it to properly forward the bang out of the "rejected" (right-most) outlet.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1668080&group_…
[View Less]
Patches item #1667928, was opened at 2007-02-24 12:49
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1667928&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: Open
Resolution: None
Priority: 5
Private:…
[View More] No
Submitted By: Stephen Sinclair (radarsat1)
Assigned to: Nobody/Anonymous (nobody)
Summary: allow multiple dumpOSC instances to bind same multicast port
Initial Comment:
Currently, attempting to create two dumpOSC objects that listen to the same port fails. The second attempt does not get created. However, in a multicast environment it is useful to have two or more patches listen to the same port.
This patch sets the SO_REUSEADDR socket option for dumpOSC objects that are lisetning to multicast groups.
It should be applied on top of the "TTL only for multicast groups" patch (Request ID: 1656382).
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1667928&group_…
[View Less]
>
> If your externals as single files are installed into a directory "el"
> and if not this directory, but the its parent is in Pd's search path
> then the object can be used as [el/adsr~] etc. This solution is
> standard on Pd-extended, where every collection of abstractions or
> externals is installed as a subdirectory of "extra". "extra"
> automatically is part of the search path.
That's very cool, thanks. Does this work for core Pd too or are we back to
name clashes …
[View More]in that world?
best,
Eric
[View Less]
i have been using pd-39 from the cvs this week and for some reason i
am experiencing click and crackles when the gui refreshes. when i
delete or move an object, i get a harsh crackle through my sound card.
this is even more present when i load a sound file into an array. i
don't get this if i use the official 40.
not sure if i should be posting this here or not but just wondering if
it is a issue for anyone else?
also, what are developers working on the most at the moment. 38-dev
39-dev, 40, …
[View More]desire etc. what would be the most useful to be testing
and what has the best functionality, opinions?. all but desire seem to
have the annoying paranoid closing question whenever i want to close a
patch. even unedited help files etc.
thanks
[View Less]