Patches item #3065242, was opened at 2010-09-13 05:00
Message generated for change (Comment added) made by millerpuckette
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3065242&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: Accepted
Priority: 5
Private: No
Submitted By: IOhannes m zmlnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
Summary: tcl-error when modifying subpatch with hidden parentwindow
Initial Comment:
i get tcl-errors when editing a subpatch in a GOP-enabled abstraction that has it's window closed.
currently i haven't found any real consequences except for the annoying error-lines in the pd-console.
cause of the bug:
Pd tries to make the title of the abstraction-window reflect the "modified" state, but since there is no such window tcl throws an error.
steps to reproduce:
- i have an abstraction that has GOP enabled. all the code is in a subpatch of this abstraction. finally, i have a pristine instance of this abstraction in my patch.
- i open the abstraction
- i open the subpatch in the abstraction
- i close the abstraction window
- i edit the contents of the subpatch
- pd-console shows an error:
(Tcl) UNHANDLED ERROR: bad window path name ".x8f67d30"
while executing
"wm title $mytoplevel "$name$dirtychar$arguments - $path" "
(procedure "pdtk_canvas_reflecttitle" line 11)
invoked from within
"pdtk_canvas_reflecttitle .x8f67d30 {/Net/iem/Benutzer/zmoelnig/src/git/pure-data} {abstraction.pd} {} 1"
("uplevel" body line 3)
invoked from within
"uplevel #0 $cmd_from_pd"
----------------------------------------------------------------------
>Comment By: Miller Puckette (millerpuckette)
Date: 2011-01-08 20:37
Message:
applied to 0.43
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2010-09-13 22:30
Message:
A given $mytoplevel window is not guaranteed to be visible when
pdtk_canvas_reflecttitle is called, so skip setting the title if
$mytoplevel does not exist.
----------------------------------------------------------------------
Comment By: IOhannes m zmlnig (zmoelnig)
Date: 2010-09-13 05:00
Message:
btw, this does not happen if the abstraction is not GOP-enabled
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3065242&group_…
Patches item #3065109, was opened at 2010-09-13 01:58
Message generated for change (Settings changed) made by millerpuckette
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3065109&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: bugfix
>Status: Pending
>Resolution: Accepted
Priority: 7
Private: No
Submitted By: IOhannes m zmlnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
Summary: [bugfix] for crasher bug when setting samplerate in alsa
Initial Comment:
on my system (with an "nvidia CK804" onboard soundcard), i get immediate crashes
if i select the plughw device (in Pd this shows up as "NVidia CK808 (plug-in)")
with 44100Hz (the device only supports 48kHz) [1]
with the help of the alsa-developpers i hunted the problem down;
it can be easily worked around if Pd was not using
snd_pcm_hw_params_set_rate_min() (without setting a rate_max()) but
snd_pcm_hw_params_set_rate_near() instead [2].
this patch does this (it's a one-liner)
so now i can select all devices that show up in the media
menu without having to fear a crash. (since it's a crasher, i raise the priority)
[1] i usually don't select plughw devices, so i haven't cared so much until now. but it's really annoying if you simply select a configuration in the preferences to make Pd crash)
[2] when alsa-devs were finally able to reproduce my problem, they simply asked "but why don't you just use rate_near()?"
----------------------------------------------------------------------
>Comment By: Miller Puckette (millerpuckette)
Date: 2011-01-08 20:33
Message:
applied for 0.43
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3065109&group_…
Patches item #3065099, was opened at 2010-09-13 01:40
Message generated for change (Comment added) made by millerpuckette
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3065099&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: bugfix
>Status: Pending
>Resolution: Accepted
Priority: 5
Private: No
Submitted By: IOhannes m zmlnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
Summary: [bugfix] broken multiple-midi dialog
Initial Comment:
in the upcoming 0.43, their is a small typo in the "long form" of the midi dialog (the "long form" is the one that allows you to select multiple midi devices):
it references to "midi_midi_outdevlist" rather than "midi_outdevlist", resulting in an tcl error.
attached patch fixes this.
----------------------------------------------------------------------
>Comment By: Miller Puckette (millerpuckette)
Date: 2011-01-08 20:31
Message:
applied for 0.43
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3065099&group_…
Patches item #3064521, was opened at 2010-09-11 15:22
Message generated for change (Comment added) made by millerpuckette
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3064521&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: bugfix
>Status: Pending
>Resolution: Accepted
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Miller Puckette (millerpuckette)
Summary: label positions in GOPs get placed wrong when changed dynami
Initial Comment:
fix label_pos in all IEMGUI
----------------------------------------------------------------------
>Comment By: Miller Puckette (millerpuckette)
Date: 2011-01-08 20:27
Message:
applied for 0.43
----------------------------------------------------------------------
Comment By: Ivica Ico Bukvic (ico_bukvic)
Date: 2010-11-12 08:51
Message:
I second this bug--had encountered the exact same problem and the patch
solves it perfectly.
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2010-09-12 18:01
Message:
see the attached patch for an illustration of the bug. Included in
Pd-extended 0.42.5.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3064521&group_…
Patches item #3139922, was opened at 2010-12-18 11:37
Message generated for change (Comment added) made by millerpuckette
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3139922&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: bugfix
>Status: Pending
Resolution: None
Priority: 8
Private: No
Submitted By: Hans-Christoph Steiner (eighthave)
Assigned to: Miller Puckette (millerpuckette)
Summary: fix plugin loading other files
Initial Comment:
GUI plugins often want to load other files, like images,etc. so make it easy to do without weird workarounds.
----------------------------------------------------------------------
>Comment By: Miller Puckette (millerpuckette)
Date: 2011-01-08 20:26
Message:
applied for 0.43
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3139922&group_…
Patches item #3138093, was opened at 2010-12-15 10:21
Message generated for change (Settings changed) made by millerpuckette
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3138093&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: bugfix
>Status: Pending
Resolution: None
Priority: 7
Private: No
Submitted By: Hans-Christoph Steiner (eighthave)
Assigned to: Miller Puckette (millerpuckette)
Summary: moving objects with arrow keys doesn't update scrollbars
Initial Comment:
If you move objects off the edge of the patch using the keyboard arrow keys, the scrollbars don't update. This patch fixes that. This patch has been included in Pd-extended since 0.40.3 as arrow_keys_update_scrollbars-0.40.3.patch.
----------------------------------------------------------------------
>Comment By: Miller Puckette (millerpuckette)
Date: 2011-01-08 20:25
Message:
applied for 0.43
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3138093&group_…
Patches item #3137000, was opened at 2010-12-13 20:48
Message generated for change (Comment added) made by millerpuckette
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3137000&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: bugfix
>Status: Pending
Resolution: None
Priority: 5
Private: No
Submitted By: Hans-Christoph Steiner (eighthave)
Assigned to: Miller Puckette (millerpuckette)
Summary: [bugfix] Tcl barfs if you hit Enter while adding a lib
Initial Comment:
In the Startup preferences, if you add a new lib, then type the name, then hit Enter, you get a Tcl dump. This simple patch fixes that.
----------------------------------------------------------------------
>Comment By: Miller Puckette (millerpuckette)
Date: 2011-01-08 20:24
Message:
applied for 0.43
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3137000&group_…
Patches item #3136984, was opened at 2010-12-13 20:08
Message generated for change (Settings changed) made by millerpuckette
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3136984&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: bugfix
>Status: Pending
Resolution: None
Priority: 6
Private: No
Submitted By: Hans-Christoph Steiner (eighthave)
Assigned to: Miller Puckette (millerpuckette)
Summary: [bugfix] "pd -font-weight normal" causes mayhem
Initial Comment:
If you launch pd like "pd -font-weight normal" then try to open a patch, you get a Tcl dump saying that 'norm' is not a correct font property. This is caused because the size of sys_fontweight gets set by the sys_fontweight[] = "bold";. This page just adds some padding.
----------------------------------------------------------------------
>Comment By: Miller Puckette (millerpuckette)
Date: 2011-01-08 20:23
Message:
applied for 0.43
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3136984&group_…
Bugs item #3153147, was opened at 2011-01-07 23:42
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3153147&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: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: pix_record doesn't work after pix_delay
Initial Comment:
pix_record doesn't work aplied in a chain after pix_delay. It records one still picture in many frames (with the auto-funktion) and a next one after the buffer time of pix_delay.
Pd version 0.42.5-extended
Mac OS X 10.6.4
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3153147&group_…
Bugs item #3152130, was opened at 2011-01-05 22:36
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3152130&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: mapping/buttongate-help.pd freezes pd
Initial Comment:
The culprit seems to be the [1( that is loadbang'ed to the [hid] object.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3152130&group_…