Patches item #2746054, was opened at 2009-04-08 21:40
Message generated for change (Comment added) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2746054&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: Closed
Resolution: Accepted
Priority: 9
Private: No
Submitted By: Hans-Christoph Steiner (eighthave)
Assigned to: Miller Puckette (millerpuckette)
Summary: hard-code default user-install paths
Initial Comment:
This patch hard-codes user install paths outlined in this FAQ entry. This makes it so
that Pd has a standard, documented place for users to install their files, and means Pd will look in the user install paths regardless of the prefs.
http://puredata.info/docs/faq/how-do-i-install-externals-and-help-files-wit…
----------------------------------------------------------------------
>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2010-08-16 23:33
Message:
git commits f33337633053e15152d6afc3975bc4b58e5ecc34
e210a2e2bba14324da3a38e5d7ac5f649082c28e
4cea03fe24aa8af45213495c85f5a1d37fe09e38
----------------------------------------------------------------------
Comment By: Miller Puckette (millerpuckette)
Date: 2010-08-03 00:23
Message:
This appears to be already patched -- I have no idea when or how :)
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2010-07-19 15:14
Message:
updated git-format-patch for 0.43.0-test1
this patch also relies on this one:
https://sourceforge.net/tracker/?func=detail&aid=1961878&group_id=55736&ati…
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2009-04-11 17:28
Message:
I forgot to mention that this patch relies on sys_expandpath that is
defined in add_tilde_support_toopen-0.41.4.patch.
http://pure-data.svn.sourceforge.net/viewvc/pure-data/trunk/packages/patche…
----------------------------------------------------------------------
Comment By: Nobody/Anonymous (nobody)
Date: 2009-04-10 18:51
Message:
Some relevant threads about the name ~/pd-externals/
http://lists.puredata.info/pipermail/pd-list/2008-07/063769.htmlhttp://lists.puredata.info/pipermail/pd-list/2008-06/063036.html
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2746054&group_…
Patches item #1242459, was opened at 2005-07-21 13:29
Message generated for change (Comment added) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1242459&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: Fixed
Priority: 5
Private: No
Submitted By: Hans-Christoph Steiner (eighthave)
Assigned to: Miller Puckette (millerpuckette)
Summary: [bonk~] reads and writes to / by default
Initial Comment:
When reading and writing files with [bonk~], it
defaults to / if no directory is specified. [qlist]
and [textfile] default to the current directory of the
patch. This seems to me to be the correct behavior.
To see this bug in action, save the attached patch to
/tmp and open it.
----------------------------------------------------------------------
>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2010-08-16 23:31
Message:
git commit e1cf337a89d9175ab6fd397b1b3dfa2e0afd52d6
----------------------------------------------------------------------
Comment By: IOhannes m zmlnig (zmoelnig)
Date: 2007-10-16 09:04
Message:
Logged In: YES
user_id=564396
Originator: NO
however it might be that this my correct behaviour is specific to
linux...
attached is a unified diff against bonk~.c that uses canvas_makefilename()
for writing and canvas_open() for reading; this should behave exactly the
same as qlist/textfile
File Added: bonk~.diff
----------------------------------------------------------------------
Comment By: IOhannes m zmlnig (zmoelnig)
Date: 2007-10-16 08:32
Message:
Logged In: YES
user_id=564396
Originator: NO
hmm, on pd-0.40 (linux), bonk~ correctly reads from/writes to the current
directory.
can you confirm whether the bug still exists?
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1242459&group_…
Patches item #2527413, was opened at 2009-01-21 19:59
Message generated for change (Comment added) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2527413&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: Closed
Resolution: Accepted
Priority: 6
Private: No
Submitted By: Hans-Christoph Steiner (eighthave)
Assigned to: Miller Puckette (millerpuckette)
Summary: add Yes/No/Cancel dialog for saving dirty files
Initial Comment:
This patch adds a standard "Do you want to save the changes" Yes/No/Cancel dialog where appropriate.
----------------------------------------------------------------------
>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2010-08-16 23:30
Message:
git commit c11ef145e41924f10e9fdface38e451d0e7e4285
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2527413&group_…
Patches item #2317572, was opened at 2008-11-20 08:49
Message generated for change (Comment added) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2317572&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: 5
Private: No
Submitted By: IOhannes m zmlnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
Summary: [bugfix] garray_resize should use int
Initial Comment:
currently the function to resize arrays is "garray_resize(t_garray *x, t_floatarg f)".
using "float32" as resize-arguments is a bad idea, especially in comparision to "garray_getfloatwords(t_garray *x, int *size, t_word **vec)".
a real problem occured when using [soundfiler] with "-resize" (and "-maxsize") for bigger soundfiles: soundfiler refused to load a soundfile into an array, because resizing "failed".
the "failure" was due to passing the wantedsize to resize() in float32 (losing precision) and then comparing the wantedsize with the gotsize (in int32).
since the sizes differed, [soundfiler] would issue a "resize failed".
the attached patch changes the resize-function to "garray_resize(t_garray *x, int size)".
this might be a bit problematic, as this function is exposed in m_pd.h and thus might break binary compatibility with externals.
an alternative (though not as elegant, imho) solution would be to add another method garray_resize_i() and use this new function throughout internally.
----------------------------------------------------------------------
>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2010-08-16 23:29
Message:
git commit 98b4959f03f0fd9acfd7c117d8061589504c89e6
----------------------------------------------------------------------
Comment By: Miller Puckette (millerpuckette)
Date: 2010-08-02 23:41
Message:
renamed it garray_resize_long to keep garray_resize backward compatible.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2317572&group_…
Patches item #2151892, was opened at 2008-10-07 12:43
Message generated for change (Comment added) made by eighthave
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: Closed
Resolution: Accepted
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.
----------------------------------------------------------------------
>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2010-08-16 23:22
Message:
git commit 2c966618db8899fc0a19b7c33f3be37d920f4186
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2151892&group_…
Patches item #2532431, was opened at 2009-01-24 00:13
Message generated for change (Comment added) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2532431&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: Closed
Resolution: Accepted
Priority: 7
Private: No
Submitted By: Hans-Christoph Steiner (eighthave)
Assigned to: Miller Puckette (millerpuckette)
Summary: fix opening of .PD/.Pd/.pD and Max patches (.mxt/.pat)
Initial Comment:
add support for Max patch file .mxt file extension, which should be the same file format as a text .pat".
Anyone know the status of the Max patch file conversion code in Pd?
----------------------------------------------------------------------
>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2010-08-16 23:20
Message:
oops, actually this is the right git commit
b1fc612415b9d4274337a1ce55299bfd2e7bf578
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2010-08-16 23:17
Message:
git commit e980269e976db443358f0b32f698b457daab29d4
----------------------------------------------------------------------
Comment By: Miller Puckette (millerpuckette)
Date: 2010-08-03 00:12
Message:
hope I edited this one in OK -- not sure what cases to test.
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2009-01-24 00:24
Message:
This patch fixes .pat and .mxt loading, it turns out that open_file was
just testing for .pd as a valid file. It also has the nice side effect of
allowing Pd to open .pD, .Pd and .PD files. Currently, open_file will only
open .pd files.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2532431&group_…
Patches item #2588029, was opened at 2009-02-11 01:47
Message generated for change (Comment added) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2588029&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: 5
Private: No
Submitted By: Hans-Christoph Steiner (eighthave)
Assigned to: Miller Puckette (millerpuckette)
Summary: fix exporting to Max .pat/.mxt file
Initial Comment:
The Max export feature was pretty broken, this patch makes it export a much more usable patch. This was checked into Pd-extended 0.41.4:
http://pure-data.svn.sourceforge.net/viewvc/pure-data/branches/pd-extended/…
----------------------------------------------------------------------
>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2010-08-16 23:19
Message:
git commit e980269e976db443358f0b32f698b457daab29d4
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2009-02-11 20:13
Message:
A couple additions:
- fixed up exporting to Max .pat so that it should export working
[trigger],
[osc~], and [hsl]
- code will now import the slightly newer hslider and uslider from Max
http://pure-data.svn.sourceforge.net/viewvc/pure-data/branches/pd-extended/…
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2588029&group_…
Patches item #2532431, was opened at 2009-01-24 00:13
Message generated for change (Comment added) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2532431&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: Closed
Resolution: Accepted
Priority: 7
Private: No
Submitted By: Hans-Christoph Steiner (eighthave)
Assigned to: Miller Puckette (millerpuckette)
Summary: fix opening of .PD/.Pd/.pD and Max patches (.mxt/.pat)
Initial Comment:
add support for Max patch file .mxt file extension, which should be the same file format as a text .pat".
Anyone know the status of the Max patch file conversion code in Pd?
----------------------------------------------------------------------
>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2010-08-16 23:17
Message:
git commit e980269e976db443358f0b32f698b457daab29d4
----------------------------------------------------------------------
Comment By: Miller Puckette (millerpuckette)
Date: 2010-08-03 00:12
Message:
hope I edited this one in OK -- not sure what cases to test.
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2009-01-24 00:24
Message:
This patch fixes .pat and .mxt loading, it turns out that open_file was
just testing for .pd as a valid file. It also has the nice side effect of
allowing Pd to open .pD, .Pd and .PD files. Currently, open_file will only
open .pd files.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=2532431&group_…
Bugs item #3046432, was opened at 2010-08-16 16:33
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3046432&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: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Hans-Christoph Steiner (eighthave)
Summary: [multimodel] texture mode bug
Initial Comment:
The texture mode message for [multimodel] needs to be triggered twice to be set correctly.
Pd version 0.42.5 extended RC4
GEM: ver: 0.92.3
Windows7/Geforce8600M GT
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3046432&group_…
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On 08/15/2010 12:00 PM, pd-cvs-request(a)iem.at wrote:
> ------------------------------
>
> Message: 4
> Date: Sat, 14 Aug 2010 21:02:41 +0000
> From: eighthave(a)users.sourceforge.net
> Subject: [PD-cvs] SF.net SVN: pure-data:[13794] trunk
> To: pd-cvs(a)iem.at
> Message-ID: <E1OkNsH-0008IV-8E(a)sfp-svn-1.v30.ch3.sourceforge.com>
> Content-Type: text/plain; charset=UTF-8
>
> Revision: 13794
> http://pure-data.svn.sourceforge.net/pure-data/?rev=13794&view=rev
> Author: eighthave
> Date: 2010-08-14 21:02:39 +0000 (Sat, 14 Aug 2010)
>
> Log Message:
> -----------
> applied Felipe Sateler's feedback on the pd-motex package to these packages
>
> Modified Paths:
> --------------
> trunk/abstractions/footils/list-abs/debian/changelog
hi hans,
so do you plan to maintain debian/ files in both the pure-data svn and
the pkg-multimedia repositories?
what's the good use of that?
fgmasdr
IOhannes
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
iEYEARECAAYFAkxoK6sACgkQkX2Xpv6ydvQdvwCePEtCVNS4sJ7i4/+FMOk0M2Sm
w1QAmwU6gv0RxVeveVQn7NhkIEKoGQWt
=JJUn
-----END PGP SIGNATURE-----