Patches item #2171733, was opened at 2008-10-16 15:53
Message generated for change (Comment added) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2171733&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: IOhannes m zmlnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
Summary: [feature] select objects without gui interaction
Initial Comment:
currently the only available method to select an object, is to use GUI-interaction (mouse) or simulate this via "mouse"-messages to the canvas.
both things only work with gui enabled and have problems with overlapping objects.
the attached patch (against current svn) adds following messages to the canvas:
- select <id>
- deselect <id>
- deselectall
they allow programmatic selection of objects; <id> is the same object-id as used e.g. for the "connect" message.
this also allows programmatic deletion of objects-per-id, e.g. by sending a message "deselectall, select 14, cut" to the canvas.
----------------------------------------------------------------------
>Comment By: IOhannes m zmlnig (zmoelnig)
Date: 2008-10-16 15:54
Message:
File Added: objectselection.diff
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2171733&group_…
Patches item #2171733, was opened at 2008-10-16 15:53
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=2171733&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: IOhannes m zmlnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
Summary: [feature] select objects without gui interaction
Initial Comment:
currently the only available method to select an object, is to use GUI-interaction (mouse) or simulate this via "mouse"-messages to the canvas.
both things only work with gui enabled and have problems with overlapping objects.
the attached patch (against current svn) adds following messages to the canvas:
- select <id>
- deselect <id>
- deselectall
they allow programmatic selection of objects; <id> is the same object-id as used e.g. for the "connect" message.
this also allows programmatic deletion of objects-per-id, e.g. by sending a message "deselectall, select 14, cut" to the canvas.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2171733&group_…
Bugs item #2168637, was opened at 2008-10-15 16:34
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=2168637&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: IOhannes m zmlnig (zmoelnig)
Assigned to: Hans-Christoph Steiner (eighthave)
Summary: please install rsync on all build-machines
Initial Comment:
currently the planetccrma6-i386.idmi.poly.edu does not have rsync installed, thus the nightly builds cannot get uploaded
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2168637&group_…
Bugs item #2127854, was opened at 2008-09-25 03:55
Message generated for change (Comment added) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2127854&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: IOhannes m zmlnig (zmoelnig)
Assigned to: Hans-Christoph Steiner (eighthave)
Summary: autobuild: partconv~
Initial Comment:
partconv~ has stopped the auto-builds for a rather long period now.
please somene do one of the following:
- remove [partconv~] from the auto-build system
- install fftw on the auto-build machines
- make the dependency on fftw optional
----------------------------------------------------------------------
>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2008-10-07 14:03
Message:
all of the build servers have fftw3 now AFAIK, so I am closing this.
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2008-10-01 05:08
Message:
I agree that partconv~ shouldn't be built if fftw3 isn't found, but that
should be handled by the build system (i.e. something like ./configure),
not the compiler.
As for including it in Pd-extended, I think it is more useful to have a
working partconv~ that is not perfectly optimized than none at all. People
who can figure out how to build fftw3 for their CPU, then build partconv~
using that fftw3 can easily figure out how to replace the included
partconv~.
----------------------------------------------------------------------
Comment By: IOhannes m zmlnig (zmoelnig)
Date: 2008-10-01 03:43
Message:
ok i have reverted my change.
however, the #ifdef's do not make the object more unuseable then how it
already is, if fftw3 is missing, so i don't fully understand the arguing.
attached is a simplified patch that fully disables the object when no
HAVE_FFTW3_H is not defined (leaving only the _setup function to tell the
user what went wrong)
File Added: partconv~.diff
----------------------------------------------------------------------
Comment By: christopher clepper (cclepper)
Date: 2008-09-30 14:08
Message:
FFTW is required for partconv~ to work so the #ifdef additions will make it
unusable. FFTW is tricky to include with binaries since it has such
extensive optimizations for each CPU. You could attempt to statically link
a generic x87 version, but that would result in pretty poor performance and
partconv~ needs really good code to work with longer impulse responses.
I would recommend leaving it out of the autobuild and letting those who
want it build it on their own. The other option would be to make some
static linked binaries for various CPUs and stick them in the build
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2008-09-30 05:42
Message:
does partconv~ work with out FFTW3? If this just builds a dummy object, I
don't think it is useful to include this hack.
----------------------------------------------------------------------
Comment By: IOhannes m zmlnig (zmoelnig)
Date: 2008-09-30 03:43
Message:
i have added a number of #ifdef's to the original code (i hope nobody
minds),
so now the object should compile again on systems without fftw3
installed.
the drawback is, that you have to explicitely define the HAVE_FFTW3_H at
the command-line in order to enable it!
(so hack the externals/Makefile which i don't dare)
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2008-09-26 12:00
Message:
I am working on it, but I have limited access to that machine, since it is
a lab machine of a university. Plus there are still some bugs in Apple's
gcc causing fftw3 not to build., so hopefully that's been fixed.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2127854&group_…
Patches item #2013659, was opened at 2008-07-08 19:17
Message generated for change (Settings changed) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2013659&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: Pending
>Resolution: Fixed
Priority: 5
Private: No
Submitted By: Frank Barknecht (fbar)
Assigned to: Miller Puckette (millerpuckette)
Summary: Arrow keys (should not) change the modified status of patch
Initial Comment:
Anytime an arrow key (Up, Down, Left, Right) is pressed, the patch file that has focus is marked as "dirty" as if there was a modification made in edit mode: The little star appears in the window title and on closing the patch, Pd asks if changes should be saved.
Checked with pd 41.4, pd-extended from 2008-06-27 on OS-X and pd 0.41 on Linux.
----------------------------------------------------------------------
>Comment By: IOhannes m zmlnig (zmoelnig)
Date: 2008-10-07 18:47
Message:
seems to be fixed (at least) with Pd-0.42.0-test5
----------------------------------------------------------------------
Comment By: IOhannes m zmlnig (zmoelnig)
Date: 2008-09-15 17:08
Message:
the solution is rather simple: g_editor.c:canvas_displaceselection() should
return immediately if nothing is selected
the attached patch fixes this
File Added: g_editor.diff
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2013659&group_…
Patches item #2151892, was opened at 2008-10-07 18:43
Message generated for change (Settings changed) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2151892&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 zmlnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
>Summary: bugfix: [route 0] should not route symbols
Initial Comment:
up till now, [route 0] would happily route messages like [symbol foo( or [list foo bar( to the "0" outlet.
this is due to the use of atom_getfloat() which will return "0" for non-numeric atoms.
i think this is a bug.
the attached patch fixes this.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2151892&group_…
Patches item #2151892, was opened at 2008-10-07 18:43
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=2151892&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 zmlnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
Summary: [route 0] should not route symbols
Initial Comment:
up till now, [route 0] would happily route messages like [symbol foo( or [list foo bar( to the "0" outlet.
this is due to the use of atom_getfloat() which will return "0" for non-numeric atoms.
i think this is a bug.
the attached patch fixes this.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2151892&group_…
Feature Requests item #2148501, was opened at 2008-10-05 19:32
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478073&aid=2148501&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
Priority: 5
Private: No
Submitted By: Hans-Christoph Steiner (eighthave)
Assigned to: Cyrille Henry (nusmuk)
Summary: [mapping/iir] should ignore -inf and inf
Initial Comment:
Since the IIR object can overload, it makes sense that it should ignore -inf and inf on its inputs. Those values just cause the IIR to permanently overload.
Perhaps a reset from overload would be useful too.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478073&aid=2148501&group_…
Bugs item #2122705, was opened at 2008-09-22 13:28
Message generated for change (Comment added) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2122705&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: 3
Private: No
Submitted By: IOhannes m zmlnig (zmoelnig)
Assigned to: IOhannes m zmlnig (zmoelnig)
Summary: auto-build system: add link to the full logfile in emails
Initial Comment:
in the current auto-build process, the system sends an email if the build-process fails.
since it doesn't send the full logfile (for good reasons), one often has to go to auto-build.puredata.info in order to get the full failure report.
it would be very helpful, if the email sent could contain a link to the corresponding full logfile, so one wouldn't have to search for it.
----------------------------------------------------------------------
>Comment By: IOhannes m zmlnig (zmoelnig)
Date: 2008-10-06 00:41
Message:
well, what's wrong with it?
the log says that it was unable to upload via rsync, so naturally there
are no logfiles either (since they are uploaded via the same method):
rsync error: error in file IO (code 11) at receiver.c(259)
[receiver=2.6.9]
rsync error: error in rsync protocol data stream (code 12) at io.c(454)
[sender=2.6.9]
i could change line from "the full logfile can be viewed at:" to "the full
logfile (if it has been successfully uploaded) can be viewed at:" :-)
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2008-10-06 00:15
Message:
In the email from 2008-10-04, the links don't work. They seem to have the
wrong timestamps:
atom_alphabet.c:99: error: for each function it appears in.)
atom_alphabet.c:100: error: gfsmPdAtomAlphabet has no member named
aa_binbuf
atom_alphabet.c:106: error: expected declaration specifiers or ...
before GString
atom_alphabet.c:108: error: gfsmPdAtomAlphabet has no member named
aa_strbuf
atom_alphabet.c:109: error: gstr undeclared (first use in this
function)
atom_alphabet.c:109: error: gfsmPdAtomAlphabet has no member named
aa_strbuf
atom_alphabet.c:121: error: expected expression before
gfsmPdAtomAlphabet
atom_alphabet.c:122: error: gfsmAlphabet undeclared (first use in
this function)
atom_alphabet.c:122: error: expected expression before ) token
atom_alphabet.c:122: error: gfsmATUser undeclared (first use in this
function)
atom_alphabet.c:123: error: gfsmUserAlphabet undeclared (first use
in this function)
atom_alphabet.c:123: error: expected expression before ) token
atom_alphabet.c:130: error: gfsmPdAtomAlphabet has no member named
aa_binbuf
atom_alphabet.c:137: error: gfsmPdAtomAlphabet has no member named
aa_binbuf
atom_alphabet.c:137: error: gfsmPdAtomAlphabet has no member named
aa_binbuf
atom_alphabet.c:138: error: gfsmAlphabet undeclared (first use in
this function)
atom_alphabet.c:138: error: expected expression before ) token
allhammers.c:84: error: expected identifier or ( before -
token
rsync error: error in file IO (code 11) at receiver.c(259)
[receiver=2.6.9]
rsync error: error in rsync protocol data stream (code 12) at io.c(454)
[sender=2.6.9]
the full logfile can be viewed at
http://autobuild.puredata.info/auto-build/2008-10-04/logs/2008-10-04_07.55.…
----------------------------------------------------------------------
Comment By: IOhannes m zmlnig (zmoelnig)
Date: 2008-09-26 12:56
Message:
i have implemented this feature and added it to the "run-automated-builder"
script (but not to the "mail-mingw-log-hack.sh")
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2122705&group_…
Bugs item #2122705, was opened at 2008-09-22 07:28
Message generated for change (Settings changed) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2122705&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: 3
Private: No
Submitted By: IOhannes m zmlnig (zmoelnig)
>Assigned to: IOhannes m zmlnig (zmoelnig)
Summary: auto-build system: add link to the full logfile in emails
Initial Comment:
in the current auto-build process, the system sends an email if the build-process fails.
since it doesn't send the full logfile (for good reasons), one often has to go to auto-build.puredata.info in order to get the full failure report.
it would be very helpful, if the email sent could contain a link to the corresponding full logfile, so one wouldn't have to search for it.
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2008-10-05 18:15
Message:
In the email from 2008-10-04, the links don't work. They seem to have the
wrong timestamps:
atom_alphabet.c:99: error: for each function it appears in.)
atom_alphabet.c:100: error: gfsmPdAtomAlphabet has no member named
aa_binbuf
atom_alphabet.c:106: error: expected declaration specifiers or ...
before GString
atom_alphabet.c:108: error: gfsmPdAtomAlphabet has no member named
aa_strbuf
atom_alphabet.c:109: error: gstr undeclared (first use in this
function)
atom_alphabet.c:109: error: gfsmPdAtomAlphabet has no member named
aa_strbuf
atom_alphabet.c:121: error: expected expression before
gfsmPdAtomAlphabet
atom_alphabet.c:122: error: gfsmAlphabet undeclared (first use in
this function)
atom_alphabet.c:122: error: expected expression before ) token
atom_alphabet.c:122: error: gfsmATUser undeclared (first use in this
function)
atom_alphabet.c:123: error: gfsmUserAlphabet undeclared (first use
in this function)
atom_alphabet.c:123: error: expected expression before ) token
atom_alphabet.c:130: error: gfsmPdAtomAlphabet has no member named
aa_binbuf
atom_alphabet.c:137: error: gfsmPdAtomAlphabet has no member named
aa_binbuf
atom_alphabet.c:137: error: gfsmPdAtomAlphabet has no member named
aa_binbuf
atom_alphabet.c:138: error: gfsmAlphabet undeclared (first use in
this function)
atom_alphabet.c:138: error: expected expression before ) token
allhammers.c:84: error: expected identifier or ( before -
token
rsync error: error in file IO (code 11) at receiver.c(259)
[receiver=2.6.9]
rsync error: error in rsync protocol data stream (code 12) at io.c(454)
[sender=2.6.9]
the full logfile can be viewed at
http://autobuild.puredata.info/auto-build/2008-10-04/logs/2008-10-04_07.55.…
----------------------------------------------------------------------
Comment By: IOhannes m zmlnig (zmoelnig)
Date: 2008-09-26 06:56
Message:
i have implemented this feature and added it to the "run-automated-builder"
script (but not to the "mail-mingw-log-hack.sh")
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2122705&group_…