[Gimp-developer] [GSoC] Logo, Flyer, FAQ, Timeline, Project Proposals

2009-02-13 Thread Michael Schumacher
Hi,

the start of Google's Summer of Code is getting closer.

They have published:

1. Official logos


http://code.google.com/p/google-summer-of-code/wiki/GsocLogos

I'm planning to add a news item to www.gimp.org once they do provide
scaled-down versions of their logos that can be used there.


2. Flyers


http://code.google.com/p/google-summer-of-code/wiki/GsocFlyers

Already translated into a number of languages, but any help to get them
translated even more - and of course get them spread  - is appreciated.


3. Program FAQ


http://code.google.com/intl/de-DE/opensource/gsoc/2009/faqs.html

Useful information, especially for people who have not been involved in
the past years. Including the...


4. Program Timeline


http://code.google.com/intl/de-DE/opensource/gsoc/2009/faqs.html#0_1_timeline_5354032302481437_

For potential mentors: this means that you should be reachable for your
students starting from at least end of April to end of August. Holidays
are possible, of course, if this is know to either one of you and
preferably other people (like organization admins) as well.


5. Project Proposals


Our project proposals page is at
http://wiki.gimp.org/gimp/SummerOfCode2009ideas

Before you add anything there, please drop by at the #gimp IRC channel
(irc://irc.gimp.org/#gimp, http://www.gimp.org/irc.html) for a quick
reality check regarding the proposed project - the developers will
usually be able to tell if something is too trivial, too complex, too
weird (as most of my ideas) or suitable for Summer of Code



Regards,
Michael

-- 
GIMP > http://www.gimp.org  | IRC: irc://irc.gimp.org/gimp
Wiki > http://wiki.gimp.org | .de: http://gimpforum.de
Plug-ins > http://registry.gimp.org |
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] bogus floating selection code?

2009-02-13 Thread Michael Natterer
On Fri, 2009-02-13 at 15:41 +1030, David Gowers wrote:
> I had just pasted a piece of image (copied from a layer without alpha,
> pasted back on to a layer without alpha) and, as I clicked to anchor
> it, GIMP crashed with this message:
> 
> ERROR:gegl-node.c:1929:gegl_node_remove_child: assertion failed:
> (child_priv->parent == self || child_priv->parent == NULL)
> 
> I'm guessing this is a fairly simple mistake, so I posted here (mainly
> for Mitch's benefit).  It's difficult to reproduce, though.
> I had only used pencil (with 1px brush) and bucketfill (threshold = 0)
> before the crash occurred.

I was able to reproduce it and fixed it.

Thanks for spotting
--mitch

2009-02-13  Michael Natterer  

* app/core/gimpdrawable.c (gimp_drawable_sync_source_node): need
to rip the floating selection's source node out of its layer's
graph before using it in the floating selection sub-graph, and
need to plug it back there when it's not a floating selection any
longer.

Unrelated:

Also introduce a "fs_crop_node" that makes sure the floating
selection stops at the drawable's boundaries.

(gimp_drawable_visibility_changed): use item->node instead of
gimp_item_get_node() because the latter creates the node on
demand.

* app/core/gimpdrawable-private.h: add fs_crop_node member.


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] bogus floating selection code?

2009-02-13 Thread Alexandre Prokoudine
On Fri, Feb 13, 2009 at 11:58 AM, Michael Natterer wrote:

>> > I'm guessing this is a fairly simple mistake, so I posted here (mainly
>> > for Mitch's benefit).  It's difficult to reproduce, though.
>> > I had only used pencil (with 1px brush) and bucketfill (threshold = 0)
>> > before the crash occurred.
>
> I can't reproduce this at all.

Here is related reproducible crash sequence:

1. Open an image without alpha-channel
2. Ctrl+A, Ctrl+V
3. Ctrl+Shift+N to put the FS to a new layer
4. Repeat steps 2 and 3
5. GIMP crashes

That drove me nuts few days ago :)

Alexandre
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] bogus floating selection code?

2009-02-13 Thread Michael Natterer
On Fri, 2009-02-13 at 09:34 +0100, peter sikking wrote:
> David Gowers wrote:
> 
> > I had just pasted a piece of image (copied from a layer without alpha,
> > pasted back on to a layer without alpha) and, as I clicked to anchor
> > it, GIMP crashed with this message:
> >
> > ERROR:gegl-node.c:1929:gegl_node_remove_child: assertion failed:
> > (child_priv->parent == self || child_priv->parent == NULL)
> >
> > I'm guessing this is a fairly simple mistake, so I posted here (mainly
> > for Mitch's benefit).  It's difficult to reproduce, though.
> > I had only used pencil (with 1px brush) and bucketfill (threshold = 0)
> > before the crash occurred.

I can't reproduce this at all.

> or a lot of layer (mask) create. I can consistently crash svn GIMP
> on this, but not fresh put of the box.

And I don't understand this at all ;)

ciao,
--mitch


___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] bogus floating selection code?

2009-02-13 Thread peter sikking
David Gowers wrote:

> I had just pasted a piece of image (copied from a layer without alpha,
> pasted back on to a layer without alpha) and, as I clicked to anchor
> it, GIMP crashed with this message:
>
> ERROR:gegl-node.c:1929:gegl_node_remove_child: assertion failed:
> (child_priv->parent == self || child_priv->parent == NULL)
>
> I'm guessing this is a fairly simple mistake, so I posted here (mainly
> for Mitch's benefit).  It's difficult to reproduce, though.
> I had only used pencil (with 1px brush) and bucketfill (threshold = 0)
> before the crash occurred.


or a lot of layer (mask) create. I can consistently crash svn GIMP
on this, but not fresh put of the box.

 --ps

 founder + principal interaction architect
 man + machine interface works

 http://mmiworks.net/blog : on interaction architecture



___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer