In case any Pd developers out there try running the newest git version on
windows, don't try running portaudio -- I broke it and probably won't be able
to fix it for a few days.
The mmio ("normal") audio API works the same as usual.
cheers
Miller
Bugs item #3193526, was opened at 2011-02-26 22:09
Message generated for change (Tracker Item Submitted) made by ritsch
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3193526&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: 3
Private: No
Submitted By: Winfried Ritsch (ritsch)
Assigned to: IOhannes m zmölnig (zmoelnig)
Summary: iemnet does not take the PD_INCLUDE for compiling anymore
Initial Comment:
It seems that the PD_INCLUDE which has been used for pointing to the pd include headers
does not add a /pd which does not work on pd0.42 sources.
It would be nice to have this feature or another like PDSOURCE= since PD_PATH do not do anything
I am not sure if it is a bug, but it breaks my makefiles and I dont know how to add this without changing CFLAGS and so on.
mfg winfried
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3193526&group_…
Bugs item #3192731, was opened at 2011-02-25 23:01
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3192731&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-devel
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: recent files - gui hangs when tried to open a deleted file
Initial Comment:
Needs checking for existence of file before opening from the list of recent files.
I just checkout from git repo and am on linux with tk8.5
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3192731&group_…
Patches item #3189135, was opened at 2011-02-22 06:17
Message generated for change (Comment added) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3189135&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: Rich E (reakin)
>Assigned to: Miller Puckette (millerpuckette)
Summary: glob_evalfile returns reference *
Initial Comment:
glob_evalfile returns a reference to the patch that it opens, which is useful when opening/closing patches with a system other than the messaging (pd open ....) system. We are already using this system in libpd to open and close patches by reference instead of file name, and this also allows us to know more about the patch at instantiation (ex. dollar args).
As the method glob_evalfile currently returns void, it has no backwards incompatibility issues.
----------------------------------------------------------------------
>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2011-02-25 11:27
Message:
yeah git format-patch preserves the author, etc. so its quite nice. The
code looks good, and the patch looks perfect, thanks for the update!
----------------------------------------------------------------------
Comment By: Rich E (reakin)
Date: 2011-02-25 04:40
Message:
Okay, new uploaded patch file, this time formatted with git format-patch -
I didn't realize that there was a difference between this and using git
diff. Please let me know if there is any other issues.
----------------------------------------------------------------------
Comment By: Rich E (reakin)
Date: 2011-02-24 07:16
Message:
Please look at the updated diff file, I have removed all the tabs and
inserted white spaces instead (sorry, its my ide's fault not mine).
The brackets around the while statement are preferred, as we want to
return x when it is still valid, not assign it a new value at each
iteration (at which point the loop ends when x == null).
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2011-02-24 00:05
Message:
Sounds like a reasonable patch, but the diff itself is fully of whitespace
changes, so its quite hard to read. A patch should only have relevant
changes in it.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3189135&group_…
Bugs item #3192228, was opened at 2011-02-25 11:48
Message generated for change (Tracker Item Submitted) made by postlude
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3192228&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.43
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Jamie Bullock (postlude)
Assigned to: Nobody/Anonymous (nobody)
Summary: Audio stops on Macbook Pro when headphones are plugged in
Initial Comment:
Steps to reproduce:
1. Download Pd-0.43test3 for OS X
2. Open Media -> Test Audio and MIDI... -> select test tone
3. Plug in stereo minijack into the headphone socket
This causes audio to stop.
Audio can be restarted by toggling Pd's DSP status
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3192228&group_…
Patches item #3189135, was opened at 2011-02-22 03:17
Message generated for change (Comment added) made by reakin
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3189135&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: Rich E (reakin)
Assigned to: Nobody/Anonymous (nobody)
Summary: glob_evalfile returns reference *
Initial Comment:
glob_evalfile returns a reference to the patch that it opens, which is useful when opening/closing patches with a system other than the messaging (pd open ....) system. We are already using this system in libpd to open and close patches by reference instead of file name, and this also allows us to know more about the patch at instantiation (ex. dollar args).
As the method glob_evalfile currently returns void, it has no backwards incompatibility issues.
----------------------------------------------------------------------
Comment By: Rich E (reakin)
Date: 2011-02-25 01:40
Message:
Okay, new uploaded patch file, this time formatted with git format-patch -
I didn't realize that there was a difference between this and using git
diff. Please let me know if there is any other issues.
----------------------------------------------------------------------
Comment By: Rich E (reakin)
Date: 2011-02-24 04:16
Message:
Please look at the updated diff file, I have removed all the tabs and
inserted white spaces instead (sorry, its my ide's fault not mine).
The brackets around the while statement are preferred, as we want to
return x when it is still valid, not assign it a new value at each
iteration (at which point the loop ends when x == null).
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2011-02-23 21:05
Message:
Sounds like a reasonable patch, but the diff itself is fully of whitespace
changes, so its quite hard to read. A patch should only have relevant
changes in it.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3189135&group_…
Patches item #3189135, was opened at 2011-02-22 03:17
Message generated for change (Comment added) made by reakin
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3189135&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: Rich E (reakin)
Assigned to: Nobody/Anonymous (nobody)
Summary: glob_evalfile returns reference *
Initial Comment:
glob_evalfile returns a reference to the patch that it opens, which is useful when opening/closing patches with a system other than the messaging (pd open ....) system. We are already using this system in libpd to open and close patches by reference instead of file name, and this also allows us to know more about the patch at instantiation (ex. dollar args).
As the method glob_evalfile currently returns void, it has no backwards incompatibility issues.
----------------------------------------------------------------------
Comment By: Rich E (reakin)
Date: 2011-02-24 04:16
Message:
Please look at the updated diff file, I have removed all the tabs and
inserted white spaces instead (sorry, its my ide's fault not mine).
The brackets around the while statement are preferred, as we want to
return x when it is still valid, not assign it a new value at each
iteration (at which point the loop ends when x == null).
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2011-02-23 21:05
Message:
Sounds like a reasonable patch, but the diff itself is fully of whitespace
changes, so its quite hard to read. A patch should only have relevant
changes in it.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3189135&group_…
Patches item #3189135, was opened at 2011-02-22 06:17
Message generated for change (Comment added) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3189135&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: Rich E (reakin)
Assigned to: Nobody/Anonymous (nobody)
Summary: glob_evalfile returns reference *
Initial Comment:
glob_evalfile returns a reference to the patch that it opens, which is useful when opening/closing patches with a system other than the messaging (pd open ....) system. We are already using this system in libpd to open and close patches by reference instead of file name, and this also allows us to know more about the patch at instantiation (ex. dollar args).
As the method glob_evalfile currently returns void, it has no backwards incompatibility issues.
----------------------------------------------------------------------
>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2011-02-24 00:05
Message:
Sounds like a reasonable patch, but the diff itself is fully of whitespace
changes, so its quite hard to read. A patch should only have relevant
changes in it.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3189135&group_…
Patches item #3189135, was opened at 2011-02-22 03:17
Message generated for change (Tracker Item Submitted) made by reakin
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3189135&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: Rich E (reakin)
Assigned to: Nobody/Anonymous (nobody)
Summary: glob_evalfile returns reference *
Initial Comment:
glob_evalfile returns a reference to the patch that it opens, which is useful when opening/closing patches with a system other than the messaging (pd open ....) system. We are already using this system in libpd to open and close patches by reference instead of file name, and this also allows us to know more about the patch at instantiation (ex. dollar args).
As the method glob_evalfile currently returns void, it has no backwards incompatibility issues.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3189135&group_…
Patches item #3011285, was opened at 2010-06-03 23:54
Message generated for change (Comment added) made by sf-robot
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3011285&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: Closed
Resolution: Accepted
Priority: 7
Private: No
Submitted By: Hans-Christoph Steiner (eighthave)
Assigned to: Miller Puckette (millerpuckette)
Summary: fix gl_goprect logic
Initial Comment:
Based on a patch from Ivica Ico Bukvic, this change seems to help the GOP red rectangle get set more accurately, and according to Ivica also helps with other GOP bugs. I checked it into Pd-extended 0.42.5 here:
http://pure-data.svn.sourceforge.net/viewvc/pure-data?view=rev&revision=135…
----------------------------------------------------------------------
>Comment By: SourceForge Robot (sf-robot)
Date: 2011-02-22 10:20
Message:
This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 14 days (the time period specified by
the administrator of this Tracker).
----------------------------------------------------------------------
Comment By: IOhannes m zmlnig (zmoelnig)
Date: 2011-02-08 10:06
Message:
it seems like the side-problem has been fixed in patch#3160988 and commit
1ae496ba963b5cae7bea0891e097706e1d53bb17.
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2010-09-09 16:51
Message:
and here's the commit for removing from Pd-extended 0.42.5
http://pure-data.svn.sourceforge.net/viewvc/pure-data?view=revision&revisio…
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2010-09-09 16:49
Message:
Oops, forgot to add, this patch causes bug #3052388
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2010-09-09 16:47
Message:
uh oh, bad news. While this patch does seem to make sense, it breaks other
things. I removed this patch from Pd-extended 0.42.5
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2010-08-20 21:42
Message:
accepted in git commit 56964c07b4ad572fdf4a2f03e7ed72f99da4a28d
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3011285&group_…