[Gimp-developer] Help for 2.8 needed?

2012-02-28 Thread Sven C. GrafxUser
Hi, is there anything a beginner with not much time, but willing to contribute can do to push the release of version 2.8 forward? Greetings Sven ___ gimp-developer-list mailing list gimp-developer-list@gnome.org http://mail.gnome.org/mailman/listinfo

Re: [Gimp-developer] Python FU Scripting -- Memory Leak? or How to release python gimp objects properly to manage memory usage?

2012-02-28 Thread Michael Natterer
On Tue, 2012-02-28 at 10:52 -0500, Kevin Cozens wrote: > On 12-02-15 11:42 PM, Tom Vrankar wrote: > > Here's the simple command sequence that demonstrates the "leak". > [snip] > > img =gp.gimp_image_new (1280, 720, 0) > > dsp =gp.gimp_display_new (img) > > lyr =gp.gimp_layer_new_from_drawable (src.

Re: [Gimp-developer] Python FU Scripting -- Memory Leak? or How to release python gimp objects properly to manage memory usage?

2012-02-28 Thread Kevin Cozens
On 12-02-15 11:42 PM, Tom Vrankar wrote: Here's the simple command sequence that demonstrates the "leak". [snip] img =gp.gimp_image_new (1280, 720, 0) dsp =gp.gimp_display_new (img) lyr =gp.gimp_layer_new_from_drawable (src.layers[1], img) img.insert_layer (lyr, position =0) gp.gimp_display_del