Bugs item #1544676, was opened at 2006-08-22 08:31
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=1544676&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
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: error in patchname
Initial Comment:
The patchname is reduced to DOS name with pd 0.40 in winXP
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1544676&group_…
Patches item #1544041, was opened at 2006-08-21 17:55
Message generated for change (Comment added) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1544041&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
Submitted By: IOhannes m zmölnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
>Summary: [initbang]/[closebang] for patch constructor/destuctor
Initial Comment:
attached is a patch that adds a new object [initbang]
to Pd.
This object is similar to [loadbang], however it gets
executed just after the rest of the abstraction is
built and _before_ the parent of the abstraction is
finished.
reasoning:
this object allows abstractions to have a runtime
constructor (similar to the <object>_new() constructor
of c-externals); the [initbang] is emitted before the
parent patch is finalized, thus allowing the
abstraction to add inlets/outlets depending on its
arguments).
caveats:
a similar method for the abstraction _destructor_ is
still missing.
i haven't implemented an "initbang" message to the
canvas to rerun the initialization again.
----------------------------------------------------------------------
>Comment By: IOhannes m zmölnig (zmoelnig)
Date: 2006-08-22 16:29
Message:
Logged In: YES
user_id=564396
for reasoning why this is needed, see the pd-dev archives
----------------------------------------------------------------------
Comment By: IOhannes m zmölnig (zmoelnig)
Date: 2006-08-22 16:25
Message:
Logged In: YES
user_id=564396
the 2nd patch additionally implements a [closebang] object,
which gets called just before a canvas is destroyed.
note that the patch (cloeinitbang.diff) holds both the
closebang- and the initbang-changes; do not! apply both patches
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1544041&group_…
Patches item #1544041, was opened at 2006-08-21 17:55
Message generated for change (Comment added) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1544041&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
Submitted By: IOhannes m zmölnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
Summary: [initbang] for abstraction-constructor
Initial Comment:
attached is a patch that adds a new object [initbang]
to Pd.
This object is similar to [loadbang], however it gets
executed just after the rest of the abstraction is
built and _before_ the parent of the abstraction is
finished.
reasoning:
this object allows abstractions to have a runtime
constructor (similar to the <object>_new() constructor
of c-externals); the [initbang] is emitted before the
parent patch is finalized, thus allowing the
abstraction to add inlets/outlets depending on its
arguments).
caveats:
a similar method for the abstraction _destructor_ is
still missing.
i haven't implemented an "initbang" message to the
canvas to rerun the initialization again.
----------------------------------------------------------------------
>Comment By: IOhannes m zmölnig (zmoelnig)
Date: 2006-08-22 16:25
Message:
Logged In: YES
user_id=564396
the 2nd patch additionally implements a [closebang] object,
which gets called just before a canvas is destroyed.
note that the patch (cloeinitbang.diff) holds both the
closebang- and the initbang-changes; do not! apply both patches
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1544041&group_…
Patches item #1544083, was opened at 2006-08-21 19:14
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=1544083&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
Submitted By: IOhannes m zmölnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
Summary: alternative names for [list] objects
Initial Comment:
this patch adds alternative names with space " "
changed to slash "/" for the group of [list]-objects:
[list append] == [list/append]
[list prepend] == [list/prepend]
[list trim] == [list/trim]
[list split] == [list/split]
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1544083&group_…
Patches item #1544076, was opened at 2006-08-21 18:53
Message generated for change (Comment added) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1544076&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
Submitted By: IOhannes m zmölnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
Summary: build pd without tcl/tk
Initial Comment:
sometimes pd is run in non-gui environments (e.g. with
"-nogui");
it is desireable that one can build such a gui-less pd,
without having to install the tcl/tk-headers.
the patch adds a "--disable-tk" flag to configure and
only sets the GSRC in makefile.in if tk is enabled.
this has been in the feature request tracker.
the patch only modifies configure.in and makefile.in;
in order to work, one must run "autoconf" to generate a
proper configure file.
----------------------------------------------------------------------
>Comment By: IOhannes m zmölnig (zmoelnig)
Date: 2006-08-21 19:07
Message:
Logged In: YES
user_id=564396
2nd attempt; this time it should work (this new patch also
has the AC_SUBST(tk,yes) line, so you can ignore _that_ post)
----------------------------------------------------------------------
Comment By: IOhannes m zmölnig (zmoelnig)
Date: 2006-08-21 19:00
Message:
Logged In: YES
user_id=564396
after applying the patch, you should set line 10 to
AC_SUBST(tk, yes)
(instead of "no") to make it work properly
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1544076&group_…
Patches item #1544076, was opened at 2006-08-21 18:53
Message generated for change (Comment added) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1544076&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
Submitted By: IOhannes m zmölnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
Summary: build pd without tcl/tk
Initial Comment:
sometimes pd is run in non-gui environments (e.g. with
"-nogui");
it is desireable that one can build such a gui-less pd,
without having to install the tcl/tk-headers.
the patch adds a "--disable-tk" flag to configure and
only sets the GSRC in makefile.in if tk is enabled.
this has been in the feature request tracker.
the patch only modifies configure.in and makefile.in;
in order to work, one must run "autoconf" to generate a
proper configure file.
----------------------------------------------------------------------
>Comment By: IOhannes m zmölnig (zmoelnig)
Date: 2006-08-21 19:00
Message:
Logged In: YES
user_id=564396
after applying the patch, you should set line 10 to
AC_SUBST(tk, yes)
(instead of "no") to make it work properly
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1544076&group_…
Patches item #1544076, was opened at 2006-08-21 18: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=1544076&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
Submitted By: IOhannes m zmölnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
Summary: build pd without tcl/tk
Initial Comment:
sometimes pd is run in non-gui environments (e.g. with
"-nogui");
it is desireable that one can build such a gui-less pd,
without having to install the tcl/tk-headers.
the patch adds a "--disable-tk" flag to configure and
only sets the GSRC in makefile.in if tk is enabled.
this has been in the feature request tracker.
the patch only modifies configure.in and makefile.in;
in order to work, one must run "autoconf" to generate a
proper configure file.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1544076&group_…
Patches item #1544041, was opened at 2006-08-21 17:55
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=1544041&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
Submitted By: IOhannes m zmölnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
Summary: [initbang] for abstraction-constructor
Initial Comment:
attached is a patch that adds a new object [initbang]
to Pd.
This object is similar to [loadbang], however it gets
executed just after the rest of the abstraction is
built and _before_ the parent of the abstraction is
finished.
reasoning:
this object allows abstractions to have a runtime
constructor (similar to the <object>_new() constructor
of c-externals); the [initbang] is emitted before the
parent patch is finalized, thus allowing the
abstraction to add inlets/outlets depending on its
arguments).
caveats:
a similar method for the abstraction _destructor_ is
still missing.
i haven't implemented an "initbang" message to the
canvas to rerun the initialization again.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1544041&group_…
Patches item #1543850, was opened at 2006-08-21 12:24
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=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
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)
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1543850&group_…
Bugs item #1543668, was opened at 2006-08-20 16:23
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=1543668&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.0
Status: Open
Resolution: None
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: audio
Initial Comment:
Pd freezes when it looses communication with audio card
(USB) with winXP (<= 0.40).
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=1543668&group_…