Patches item #2958600, was opened at 2010-02-25 09:05
Message generated for change (Settings changed) made by sf-robot
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2958600&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: abstractions
Group: None
>Status: Closed
Resolution: None
Priority: 5
Private: No
Submitted By: Jonathan Wilkes (jancsika1)
Assigned to: Nobody/Anonymous (nobody)
Summary: Updated pddp/print objects
Initial Comment:
Here are some updated versions of pddp/print and pddp/print_long that display selectors correctly (or at least as correctly as vanilla [print] does). I also added a -d flag to both objects so you can explicitly show all selectors (-d for debug, but it could be changed to something else if there's a better arg). Help files are also included.
----------------------------------------------------------------------
>Comment By: SourceForge Robot (sf-robot)
Date: 2010-04-28 02: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: Hans-Christoph Steiner (eighthave)
Date: 2010-04-13 17:13
Message:
I like the (pointer) display, very nice. I included that.
http://pure-data.svn.sourceforge.net/viewvc/pure-data?view=rev&revision=134…
The thing about the "list" selector is basically impossible to handle in
Pd. It should keep the 'list', 'symbol', etc. selector just as how it
received it. I think that would only be possible with a C external.
About the -d thing, I don't like adding that kind of syntax to objects.
IMHO that functionality should be in a separate object.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2958600&group_…
Bugs item #2985017, was opened at 2010-04-10 12:40
Message generated for change (Settings changed) made by sf-robot
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2985017&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: v0.42
>Status: Closed
Resolution: Fixed
Priority: 5
Private: No
Submitted By: Paulo Casaes (irmaosaturno)
Assigned to: Hans-Christoph Steiner (eighthave)
Summary: popup not working in windows (with workaround)
Initial Comment:
Ben Bogart's popup is not working properly in windows (PD-Extended 0.41).
It loads fine but it does not output a selection nor does using its inlet work to change its selection. Whenever you try to do so it gives the error:
error: popup0xa4fda0: no such object
I tracked the problem down and it seems that in windows TK doesn't like it when the pointer reference in hex starts with 0x. This might actually be a problem with the TK provided in the windows version and not with popup itself. In Linux and OS X the reference has 0x in it and works just fine.
Here's a workaround that fixes the problem.
diff popup.c popup.c.orig
596,599d595
< #ifdef NT
< char buf2[256];
< char *buf2ptr;
< #endif
646,654d641
< #ifdef NT
< sprintf(buf2,"%p",x);
< buf2ptr = &buf2;
< if(strstr(buf2, "0x") == buf2ptr) {
< buf2ptr++;
< buf2ptr++;
< }
< sprintf(buf,"popup%s",buf2ptr);
< #else
656d642
< #endif
661,663d646
< #ifdef NT
< sys_vgui("proc popup_sel%x {index} {\n pd [concat popup%s output $index \\;]\n }\n",x,buf2ptr);
< #else
665c648
< #endif
---
>
Changes only in the popup_new function. It uses the NT preprocessing directive, in Linux and OS X it should remain unchanged. Basically it tests the pointer for 0x and removes it.
Paulo
----------------------------------------------------------------------
>Comment By: SourceForge Robot (sf-robot)
Date: 2010-04-28 02: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: Paulo Casaes (irmaosaturno)
Date: 2010-04-13 14:43
Message:
Just tested it (in windows). Works perfectly.
I had originally used %lx but figured it was "wrong" to cast a pointer to
an long unsigned int. Just checked out the source for pd, shows how what I
know :)
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2010-04-13 14:21
Message:
good idea, I got rid of the warnings by casting:
http://pure-data.svn.sourceforge.net/viewvc/pure-data?view=rev&revision=134…
----------------------------------------------------------------------
Comment By: Paulo Casaes (irmaosaturno)
Date: 2010-04-13 09:59
Message:
Changing %p to %lx does work but it gives off the warning:
popup.c:655: warning: format '%lx' expects type 'long unsigned int', but
argument 3 has type 'struct t_popup *'
when compiling. The Makefile has -Werror in the linux build, so that also
has to be changed.
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2010-04-13 06:01
Message:
These commits should have fixed it:
http://pure-data.svn.sourceforge.net/viewvc/pure-data?view=rev&revision=134…http://pure-data.svn.sourceforge.net/viewvc/pure-data?view=rev&revision=134…
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2985017&group_…
Bugs item #2929298, was opened at 2010-01-10 14:17
Message generated for change (Comment added) made by sf-robot
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2929298&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: v0.42
>Status: Closed
Resolution: Fixed
Priority: 5
Private: No
Submitted By: max (maxn)
Assigned to: Hans-Christoph Steiner (eighthave)
Summary: 10.6 + Audio on + Gem = pd hangs
Initial Comment:
turning audio on, opening a gem window and plugging in headphones Pd-0.43.0-devel-20091215 and Pd-0.42.5-extended-20091222 on 10.6 will make Pd hang. See attached patch.
----------------------------------------------------------------------
>Comment By: SourceForge Robot (sf-robot)
Date: 2010-04-28 02: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: Hans-Christoph Steiner (eighthave)
Date: 2010-04-13 03:38
Message:
I am pretty sure this has been fixed by updating the portaudio code, try a
recent nightly build:
http://autobuild.puredata.info/auto-build/latest/Pd-0.42.5-extended-macosx1…
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2929298&group_…
Bugs item #2886083, was opened at 2009-10-25 19:40
Message generated for change (Comment added) made by sf-robot
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2886083&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: v0.42
>Status: Closed
Resolution: Fixed
Priority: 5
Private: No
Submitted By: gnd gnd (gndgnd)
Assigned to: Hans-Christoph Steiner (eighthave)
Summary: Pd-extended doesnt install under Ubuntu 9.10
Initial Comment:
The 9.10 version of Ubuntu is out in 4 days from now. I tried installing pd-extended for 9.04 version but it misses dependencies - libmagick++1. In 9.10 there is libmagick++2. If i force the install PD runs OK, GEM doesnt load because opf missing libmagick++1 libraries. However if i compile GEM from sources, it is OK. Please fix the dependencies issue for Ubuntu 9.10 and make a .deb package.
----------------------------------------------------------------------
>Comment By: SourceForge Robot (sf-robot)
Date: 2010-04-28 02: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: Hans-Christoph Steiner (eighthave)
Date: 2010-04-13 03:40
Message:
The font issue has been fixed, plus there are Ubuntu Karmic 9.10 nightly
builds now, try one:
http://autobuild.puredata.info/auto-build/latest/
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2009-10-27 20:44
Message:
Hey, this is great! You should post it to the pd-list and/or forum for
other users. I'll try it once I upgrade my machine.
As for the bitstream font issue, that will be fixed in Pd-extended 0.42.5.
If you want to try fixing it in your package, look in pd/src/u_main.tk and
pd/src/s_main.c and replace "Bitstream Vera Sans Mono" with "DejaVu Sans
Mono" (I think, double-check that). Then edit
packages/linux_make/debian/control to change the package dependency.
----------------------------------------------------------------------
Comment By: gnd gnd (gndgnd)
Date: 2009-10-27 20:32
Message:
i think this will be of interest to you:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=461308
"
please remove ttf-bitstream-vera, it is completely superseeded by its
improved version named ttf-dejavu.
"
----------------------------------------------------------------------
Comment By: gnd gnd (gndgnd)
Date: 2009-10-27 20:19
Message:
geez, the last two comments are mine - i forgot to login ..
----------------------------------------------------------------------
Comment By: Nobody/Anonymous (nobody)
Date: 2009-10-27 20:18
Message:
ah and one more thing - i had to manually install ttf-bitstream-vera
because it isnt in Ubuntu 9.10
is it possible to make pd use sth else then vera ?
The package is uninstalable like this because of the missing package.
----------------------------------------------------------------------
Comment By: Nobody/Anonymous (nobody)
Date: 2009-10-27 20:04
Message:
hello, I compiled it and you can find the package here:
http://gondapeter.sk/files/Pd-0.41.4-extended.deb
I did one change in the code because without it i couldnt compile GEM:
http://lists.puredata.info/pipermail/gem-dev/2009-10/004211.html
but i think its not important ..
cheers...
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2009-10-26 01:59
Message:
I don't have access to a 9.10 machine yet. It should be pretty easy to
build there tho. Try it out, and we can post your build for others. FIrst
install the required packages:
http://puredata.info/docs/developer/Debian
Then build the pd-extended package:
http://puredata.info/docs/developer/BuildingPdExtended
If you have any troubles, try irc://irc.freenode.net/dataflow and/or the
pd-dev list: http://puredata.info/community/lists
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2886083&group_…
Bugs item #2960764, was opened at 2010-02-28 17:48
Message generated for change (Comment added) made by sf-robot
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2960764&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: v0.42
>Status: Closed
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Hans-Christoph Steiner (eighthave)
Summary: System Crash with PD
Initial Comment:
Hello,
I have a windows xp intel atom processor with 2 gb of ram (it's a fairly nice netbook). I'm running Pd version 0.42-5 compiled for Microsoft Windows.
After I close pd, i check my system programs and pd.exe stays running taking up like 70% of my cpu processing. If I choose to end task it the I get a blue screen system failure and the computer restarts. So two issues: one pd.exe won't close, and two when i try to close it, it crashes my computer. Also, I noticed each time I started pd an added icon of the AISO sound driver pops up and i'm not sure why thats happening but it could be connect to a driver issue I guess.
Here's some event logs.
Application log
Event Type: Error
Event Source: Application Hang
Event Category: (101)
Event ID: 1002
Date: 2/28/2010
Time: 1:39:50 AM
User: N/A
Computer: YOUR-W5VBZ7LYQ8
Description:
Hanging application wish84.exe, version 8.4.2.18, hang module hungapp, version 0.0.0.0, hang address 0x00000000.
For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
Data:
0000: 41 70 70 6c 69 63 61 74 Applicat
0008: 69 6f 6e 20 48 61 6e 67 ion Hang
0010: 20 20 77 69 73 68 38 34 wish84
0018: 2e 65 78 65 20 38 2e 34 .exe 8.4
0020: 2e 32 2e 31 38 20 69 6e .2.18 in
0028: 20 68 75 6e 67 61 70 70 hungapp
0030: 20 30 2e 30 2e 30 2e 30 0.0.0.0
0038: 20 61 74 20 6f 66 66 73 at offs
0040: 65 74 20 30 30 30 30 30 et 00000
0048: 30 30 30 000
System log:
Event Type: Error
Event Source: System Error
Event Category: (102)
Event ID: 1003
Date: 2/28/2010
Time: 1:35:20 AM
User: N/A
Computer: YOUR-W5VBZ7LYQ8
Description:
Error code 100000d1, parameter1 00000000, parameter2 00000002, parameter3 00000000, parameter4 a91ecab0.
For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
Data:
0000: 53 79 73 74 65 6d 20 45 System E
0008: 72 72 6f 72 20 20 45 72 rror Er
0010: 72 6f 72 20 63 6f 64 65 ror code
0018: 20 31 30 30 30 30 30 64 100000d
0020: 31 20 20 50 61 72 61 6d 1 Param
0028: 65 74 65 72 73 20 30 30 eters 00
0030: 30 30 30 30 30 30 2c 20 000000,
0038: 30 30 30 30 30 30 30 32 00000002
0040: 2c 20 30 30 30 30 30 30 , 000000
0048: 30 30 2c 20 61 39 31 65 00, a91e
0050: 63 61 62 30 cab0
----------------------------------------------------------------------
>Comment By: SourceForge Robot (sf-robot)
Date: 2010-04-28 02: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: Hans-Christoph Steiner (eighthave)
Date: 2010-04-13 02:12
Message:
Pd can't directly cause a blue screen crash, but it can trigger a bug which
does. My guess is that your sound card driver has the bug, especially
since the ASIO stuff is popping up.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2960764&group_…
Bugs item #2959373, was opened at 2010-02-26 03:26
Message generated for change (Comment added) made by sf-robot
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2959373&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: v0.42
>Status: Closed
Resolution: Fixed
Priority: 5
Private: No
Submitted By: Jonathan Wilkes (jancsika1)
Assigned to: Hans-Christoph Steiner (eighthave)
Summary: pddplink doesn't handle relative paths correctly
Initial Comment:
The attached example shows the problem clearly. If you use the link in main.pd it will open ./myPatch.pd, but myPatch.pd will erroneously inherit the path of the canvas that contains the link. Thus helperAbstraction won't create because ./folder is not searched.
You can see this clearly in the window heading of myPatch.pd after you follow the link: it lists the object as "./folder/myPatch.pd" and the path as that of main.pd. But if you make an object [./folder/myPatch.pd] in main.pd and open it, you can see it correctly lists the object as "myPatch.pd" and makes ./folder part of the path. This is what pddplink should do, too.
----------------------------------------------------------------------
>Comment By: SourceForge Robot (sf-robot)
Date: 2010-04-28 02: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: Hans-Christoph Steiner (eighthave)
Date: 2010-04-13 03:10
Message:
Fixed with this commit:
http://pure-data.svn.sourceforge.net/viewvc/pure-data?view=rev&revision=134…
And also fixed it within the menu_doc_open command in pd-extended and
pd-gui-rewrite:
http://pure-data.svn.sourceforge.net/viewvc/pure-data?view=rev&revision=134…
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2959373&group_…
Bugs item #2969731, was opened at 2010-03-13 01:51
Message generated for change (Settings changed) made by sf-robot
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2969731&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: v0.42
>Status: Closed
Resolution: Works For Me
Priority: 5
Private: No
Submitted By: Jonathan Wilkes (jancsika1)
Assigned to: Hans-Christoph Steiner (eighthave)
Summary: Can't open multiple files at once
Initial Comment:
In Pd version 0.42.5-extended-20100309 on hardy, if I go to File->Open and select multiple files like abs-help.pd and acoustics-ehlp.pd, I get the following error:
File "/path to my reference files/abs-help.pd acoustics-help.pd" does not exist. This works on xp, however, and I can open the files separately in hardy.
----------------------------------------------------------------------
>Comment By: SourceForge Robot (sf-robot)
Date: 2010-04-28 02: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: Hans-Christoph Steiner (eighthave)
Date: 2010-04-12 21:54
Message:
I can't reproduce this on Pd version 0.42.5-extended-20100409 on
Ubuntu/Karmic Netbook Remix. I selected three files and all three opened.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2969731&group_…
Bugs item #2973493, was opened at 2010-03-19 21:47
Message generated for change (Comment added) made by sf-robot
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2973493&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: Closed
Resolution: None
Priority: 5
Private: No
Submitted By: Jonathan Wilkes (jancsika1)
Assigned to: Hans-Christoph Steiner (eighthave)
Summary: folder_list doesn't handle relative paths correctly on winxp
Initial Comment:
If I have a patch in a folder on the desktop, [folder_list] will default to that folder. But if I then try to use relative paths like [symbol ../*( , my results will have the right path, but it will list the files in the parent of pd/bin. In other words, relative paths default to the path where pd was started from, but the returned files have the path relative to the patch's folder prepended to them.
----------------------------------------------------------------------
>Comment By: SourceForge Robot (sf-robot)
Date: 2010-04-28 02: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: Hans-Christoph Steiner (eighthave)
Date: 2010-04-12 21:52
Message:
I can't reproduce this using Pd version 0.42.5-extended-20100409 on Mac OS
X 10.5.8/Intel and Ubuntu/Karmic/lpia.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=2973493&group_…
So I've been working away on the final details on the libdir/makefile
template and I think its ready for a 1.0 release. I've applied it to
a bunch of libraries and debianized most of them successfully. Check
it out:
http://puredata.info/docs/developer/MakefileTemplate
It would be very nice to include things like packaging files for RPMs,
Gentoo, Arch, etc. Any volunteers?
.hc
----------------------------------------------------------------------------
"Free software means you control what your computer does. Non-free
software means someone else controls that, and to some extent controls
you." - Richard M. Stallman