Sun Dec 1 11:58:44 2013 UTC ()
Changes 2.8.10:

Core:
- Set manifest as Windows 8 compatible

GUI:
- Indicate if a file was exported in the Quit dialog
- Add shortcuts and hint labels to the close and quit dialogs
  that make closing and quitting easier and more consistent
- Rename the File->Export menu labels to match Save/Save as
- Fix keyboard shortcuts on OSX Mavericks
- Don't open lots of progress popups when opening many files
- Correctly restore the hidden state of docks in single window mode

Libgimp:
- Fix exporting an image consisting of a single layer group
- Don't attempt to pick transparent colors

Plug-ins:
- Fix crash in LCMS plugin if RGB profile was missing

General:
- Fix compile on NetBSD (missing -lexecinfo)
- Bug fixes
- Translation updates


(adam)
diff -r1.240 -r1.241 pkgsrc/graphics/gimp/Makefile
diff -r1.51 -r1.52 pkgsrc/graphics/gimp/PLIST
diff -r1.78 -r1.79 pkgsrc/graphics/gimp/distinfo

cvs diff -r1.240 -r1.241 pkgsrc/graphics/gimp/Makefile (switch to unified diff)

--- pkgsrc/graphics/gimp/Makefile 2013/11/06 20:32:45 1.240
+++ pkgsrc/graphics/gimp/Makefile 2013/12/01 11:58:44 1.241
@@ -1,73 +1,76 @@ @@ -1,73 +1,76 @@
1# $NetBSD: Makefile,v 1.240 2013/11/06 20:32:45 adam Exp $ 1# $NetBSD: Makefile,v 1.241 2013/12/01 11:58:44 adam Exp $
2 2
3DISTNAME= gimp-2.8.8 3DISTNAME= gimp-2.8.10
4CATEGORIES= graphics 4CATEGORIES= graphics
5MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/v${PKGVERSION_NOREV:R}/ \ 5MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/v${PKGVERSION_NOREV:R}/ \
6 ${MASTER_SITE_GNU:=gimp/v${PKGVERSION_NOREV:R}/} \ 6 ${MASTER_SITE_GNU:=gimp/v${PKGVERSION_NOREV:R}/} \
7 ftp://ftp.gwdg.de/pub/misc/grafik/gimp/gimp/v${PKGVERSION_NOREV:R}/ 7 ftp://ftp.gwdg.de/pub/misc/grafik/gimp/gimp/v${PKGVERSION_NOREV:R}/
8EXTRACT_SUFX= .tar.bz2 8EXTRACT_SUFX= .tar.bz2
9 9
10MAINTAINER= adam@NetBSD.org 10MAINTAINER= adam@NetBSD.org
11HOMEPAGE= http://www.gimp.org/ 11HOMEPAGE= http://www.gimp.org/
12COMMENT= The GNU image manipulation program 12COMMENT= The GNU image manipulation program
13LICENSE= gnu-lgpl-v2.1 AND gnu-gpl-v2 13LICENSE= gnu-lgpl-v2.1 AND gnu-gpl-v2
14 14
15BUILD_DEPENDS+= p5-XML-Parser>=2.31nb1:../../textproc/p5-XML-Parser 15BUILD_DEPENDS+= p5-XML-Parser>=2.31nb1:../../textproc/p5-XML-Parser
16CONFLICTS+= gimp<=1.2.3 16CONFLICTS+= gimp<=1.2.3
17 17
18USE_LIBTOOL= yes 18USE_LIBTOOL= yes
19USE_PKGLOCALEDIR= yes 19USE_PKGLOCALEDIR= yes
20USE_TOOLS+= gmake intltool msgfmt pkg-config 20USE_TOOLS+= gmake intltool msgfmt pkg-config
21GNU_CONFIGURE= yes 21GNU_CONFIGURE= yes
22CONFIGURE_ARGS+= --disable-perl 22CONFIGURE_ARGS+= --disable-perl
23CONFIGURE_ARGS+= --disable-python 23CONFIGURE_ARGS+= --disable-python
24CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} 24CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
25CONFIGURE_ARGS+= --without-linux-input 25CONFIGURE_ARGS+= --without-linux-input
26CONFIGURE_ARGS+= --without-mac-twain 26CONFIGURE_ARGS+= --without-mac-twain
27 27
28PKG_SYSCONFSUBDIR= gimp/2.0 28PKG_SYSCONFSUBDIR= gimp/2.0
29PKGCONFIG_OVERRIDE= gimp.pc.in 29PKGCONFIG_OVERRIDE= gimp.pc.in
30UNLIMIT_RESOURCES+= datasize 30UNLIMIT_RESOURCES+= datasize
31 31
32.include "../../mk/bsd.prefs.mk" 32.include "../../mk/bsd.prefs.mk"
33 33
34EGDIR= ${PREFIX}/share/examples/gimp-2.0 34EGDIR= ${PREFIX}/share/examples/gimp-2.0
35.for f in controllerrc gimprc gtkrc menurc sessionrc templaterc unitrc 35.for f in controllerrc gimprc gtkrc menurc sessionrc templaterc unitrc
36CONF_FILES+= ${EGDIR}/${f} ${PKG_SYSCONFDIR}/${f} 36CONF_FILES+= ${EGDIR}/${f} ${PKG_SYSCONFDIR}/${f}
37.endfor 37.endfor
38 38
39# Ensure we export symbols in the linked shared object. 39# Ensure we export symbols in the linked shared object.
40LDFLAGS+= ${EXPORT_SYMBOLS_LDFLAGS} 40LDFLAGS+= ${EXPORT_SYMBOLS_LDFLAGS}
41 41
42PLIST_VARS+= remote 42PLIST_VARS+= remote
43 43
44BUILDLINK_API_DEPENDS.fontconfig+= fontconfig>=2.2.0 44BUILDLINK_API_DEPENDS.fontconfig+= fontconfig>=2.2.0
45BUILDLINK_API_DEPENDS.lcms+= lcms>=1.12 45BUILDLINK_API_DEPENDS.lcms+= lcms>=1.12
46 46
47.include "options.mk" 47.include "options.mk"
48 48
49.include "../../sysutils/desktop-file-utils/desktopdb.mk" 49.include "../../sysutils/desktop-file-utils/desktopdb.mk"
50.include "../../databases/shared-mime-info/mimedb.mk" 50.include "../../databases/shared-mime-info/mimedb.mk"
51.include "../../devel/gettext-lib/buildlink3.mk" 51.include "../../devel/gettext-lib/buildlink3.mk"
52.include "../../fonts/fontconfig/buildlink3.mk" 52.include "../../fonts/fontconfig/buildlink3.mk"
53.include "../../graphics/hicolor-icon-theme/buildlink3.mk" 53.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
54.include "../../graphics/babl/buildlink3.mk" 54.include "../../graphics/babl/buildlink3.mk"
55.include "../../graphics/gegl/buildlink3.mk" 55.include "../../graphics/gegl/buildlink3.mk"
56.include "../../mk/jpeg.buildlink3.mk" 56.include "../../mk/jpeg.buildlink3.mk"
57.include "../../graphics/jasper/buildlink3.mk" 57.include "../../graphics/jasper/buildlink3.mk"
58.include "../../graphics/lcms/buildlink3.mk" 58.include "../../graphics/lcms/buildlink3.mk"
59.include "../../graphics/libart/buildlink3.mk" 59.include "../../graphics/libart/buildlink3.mk"
60.include "../../graphics/libexif/buildlink3.mk" 60.include "../../graphics/libexif/buildlink3.mk"
61.include "../../graphics/png/buildlink3.mk" 61.include "../../graphics/png/buildlink3.mk"
62.include "../../graphics/tiff/buildlink3.mk" 62.include "../../graphics/tiff/buildlink3.mk"
63.include "../../graphics/libwmf/buildlink3.mk" 63.include "../../graphics/libwmf/buildlink3.mk"
64.include "../../x11/gtk2/buildlink3.mk" 64.include "../../x11/gtk2/buildlink3.mk"
65.if !empty(PKG_BUILD_OPTIONS.gtk2:Mx11) 65.if !empty(PKG_BUILD_OPTIONS.gtk2:Mx11)
66PLIST.remote= yes 66PLIST.remote= yes
67.include "../../x11/libICE/buildlink3.mk" 67.include "../../x11/libICE/buildlink3.mk"
68.include "../../x11/libSM/buildlink3.mk" 68.include "../../x11/libSM/buildlink3.mk"
69.include "../../x11/libXmu/buildlink3.mk" 69.include "../../x11/libXmu/buildlink3.mk"
70.include "../../x11/libXpm/buildlink3.mk" 70.include "../../x11/libXpm/buildlink3.mk"
71.endif 71.endif
 72.if !empty(PKG_BUILD_OPTIONS.gtk2:Mquartz)
 73.include "../../x11/gtk-mac-integration/buildlink3.mk"
 74.endif
72.include "../../mk/pthread.buildlink3.mk" 75.include "../../mk/pthread.buildlink3.mk"
73.include "../../mk/bsd.pkg.mk" 76.include "../../mk/bsd.pkg.mk"

cvs diff -r1.51 -r1.52 pkgsrc/graphics/gimp/PLIST (switch to unified diff)

--- pkgsrc/graphics/gimp/PLIST 2013/08/15 15:37:46 1.51
+++ pkgsrc/graphics/gimp/PLIST 2013/12/01 11:58:44 1.52
@@ -1,1423 +1,1424 @@ @@ -1,1423 +1,1424 @@
1@comment $NetBSD: PLIST,v 1.51 2013/08/15 15:37:46 richard Exp $ 1@comment $NetBSD: PLIST,v 1.52 2013/12/01 11:58:44 adam Exp $
2bin/gimp 2bin/gimp
3bin/gimp-2.8 3bin/gimp-2.8
4bin/gimp-console 4bin/gimp-console
5bin/gimp-console-2.8 5bin/gimp-console-2.8
6bin/gimptool-2.0 6bin/gimptool-2.0
7include/gimp-2.0/libgimp/gimp.h 7include/gimp-2.0/libgimp/gimp.h
8include/gimp-2.0/libgimp/gimp_pdb.h 8include/gimp-2.0/libgimp/gimp_pdb.h
9include/gimp-2.0/libgimp/gimp_pdb_headers.h 9include/gimp-2.0/libgimp/gimp_pdb_headers.h
10include/gimp-2.0/libgimp/gimpaspectpreview.h 10include/gimp-2.0/libgimp/gimpaspectpreview.h
11include/gimp-2.0/libgimp/gimpbrush_pdb.h 11include/gimp-2.0/libgimp/gimpbrush_pdb.h
12include/gimp-2.0/libgimp/gimpbrushes.h 12include/gimp-2.0/libgimp/gimpbrushes.h
13include/gimp-2.0/libgimp/gimpbrushes_pdb.h 13include/gimp-2.0/libgimp/gimpbrushes_pdb.h
14include/gimp-2.0/libgimp/gimpbrushmenu.h 14include/gimp-2.0/libgimp/gimpbrushmenu.h
15include/gimp-2.0/libgimp/gimpbrushselect.h 15include/gimp-2.0/libgimp/gimpbrushselect.h
16include/gimp-2.0/libgimp/gimpbrushselect_pdb.h 16include/gimp-2.0/libgimp/gimpbrushselect_pdb.h
17include/gimp-2.0/libgimp/gimpbrushselectbutton.h 17include/gimp-2.0/libgimp/gimpbrushselectbutton.h
18include/gimp-2.0/libgimp/gimpbuffer_pdb.h 18include/gimp-2.0/libgimp/gimpbuffer_pdb.h
19include/gimp-2.0/libgimp/gimpchannel.h 19include/gimp-2.0/libgimp/gimpchannel.h
20include/gimp-2.0/libgimp/gimpchannel_pdb.h 20include/gimp-2.0/libgimp/gimpchannel_pdb.h
21include/gimp-2.0/libgimp/gimpcolor_pdb.h 21include/gimp-2.0/libgimp/gimpcolor_pdb.h
22include/gimp-2.0/libgimp/gimpcompat.h 22include/gimp-2.0/libgimp/gimpcompat.h
23include/gimp-2.0/libgimp/gimpcontext_pdb.h 23include/gimp-2.0/libgimp/gimpcontext_pdb.h
24include/gimp-2.0/libgimp/gimpconvert_pdb.h 24include/gimp-2.0/libgimp/gimpconvert_pdb.h
25include/gimp-2.0/libgimp/gimpdisplay_pdb.h 25include/gimp-2.0/libgimp/gimpdisplay_pdb.h
26include/gimp-2.0/libgimp/gimpdrawable.h 26include/gimp-2.0/libgimp/gimpdrawable.h
27include/gimp-2.0/libgimp/gimpdrawable_pdb.h 27include/gimp-2.0/libgimp/gimpdrawable_pdb.h
28include/gimp-2.0/libgimp/gimpdrawablepreview.h 28include/gimp-2.0/libgimp/gimpdrawablepreview.h
29include/gimp-2.0/libgimp/gimpdrawabletransform_pdb.h 29include/gimp-2.0/libgimp/gimpdrawabletransform_pdb.h
30include/gimp-2.0/libgimp/gimpdynamics_pdb.h 30include/gimp-2.0/libgimp/gimpdynamics_pdb.h
31include/gimp-2.0/libgimp/gimpedit_pdb.h 31include/gimp-2.0/libgimp/gimpedit_pdb.h
32include/gimp-2.0/libgimp/gimpenums.h 32include/gimp-2.0/libgimp/gimpenums.h
33include/gimp-2.0/libgimp/gimpexport.h 33include/gimp-2.0/libgimp/gimpexport.h
34include/gimp-2.0/libgimp/gimpfileops_pdb.h 34include/gimp-2.0/libgimp/gimpfileops_pdb.h
35include/gimp-2.0/libgimp/gimpfloatingsel_pdb.h 35include/gimp-2.0/libgimp/gimpfloatingsel_pdb.h
36include/gimp-2.0/libgimp/gimpfontmenu.h 36include/gimp-2.0/libgimp/gimpfontmenu.h
37include/gimp-2.0/libgimp/gimpfonts_pdb.h 37include/gimp-2.0/libgimp/gimpfonts_pdb.h
38include/gimp-2.0/libgimp/gimpfontselect.h 38include/gimp-2.0/libgimp/gimpfontselect.h
39include/gimp-2.0/libgimp/gimpfontselect_pdb.h 39include/gimp-2.0/libgimp/gimpfontselect_pdb.h
40include/gimp-2.0/libgimp/gimpfontselectbutton.h 40include/gimp-2.0/libgimp/gimpfontselectbutton.h
41include/gimp-2.0/libgimp/gimpgimprc.h 41include/gimp-2.0/libgimp/gimpgimprc.h
42include/gimp-2.0/libgimp/gimpgimprc_pdb.h 42include/gimp-2.0/libgimp/gimpgimprc_pdb.h
43include/gimp-2.0/libgimp/gimpgradient_pdb.h 43include/gimp-2.0/libgimp/gimpgradient_pdb.h
44include/gimp-2.0/libgimp/gimpgradientmenu.h 44include/gimp-2.0/libgimp/gimpgradientmenu.h
45include/gimp-2.0/libgimp/gimpgradients.h 45include/gimp-2.0/libgimp/gimpgradients.h
46include/gimp-2.0/libgimp/gimpgradients_pdb.h 46include/gimp-2.0/libgimp/gimpgradients_pdb.h
47include/gimp-2.0/libgimp/gimpgradientselect.h 47include/gimp-2.0/libgimp/gimpgradientselect.h
48include/gimp-2.0/libgimp/gimpgradientselect_pdb.h 48include/gimp-2.0/libgimp/gimpgradientselect_pdb.h
49include/gimp-2.0/libgimp/gimpgradientselectbutton.h 49include/gimp-2.0/libgimp/gimpgradientselectbutton.h
50include/gimp-2.0/libgimp/gimpgrid_pdb.h 50include/gimp-2.0/libgimp/gimpgrid_pdb.h
51include/gimp-2.0/libgimp/gimpguides_pdb.h 51include/gimp-2.0/libgimp/gimpguides_pdb.h
52include/gimp-2.0/libgimp/gimphelp_pdb.h 52include/gimp-2.0/libgimp/gimphelp_pdb.h
53include/gimp-2.0/libgimp/gimpimage.h 53include/gimp-2.0/libgimp/gimpimage.h
54include/gimp-2.0/libgimp/gimpimage_pdb.h 54include/gimp-2.0/libgimp/gimpimage_pdb.h
55include/gimp-2.0/libgimp/gimpimagecombobox.h 55include/gimp-2.0/libgimp/gimpimagecombobox.h
56include/gimp-2.0/libgimp/gimpimageselect_pdb.h 56include/gimp-2.0/libgimp/gimpimageselect_pdb.h
57include/gimp-2.0/libgimp/gimpitem_pdb.h 57include/gimp-2.0/libgimp/gimpitem_pdb.h
58include/gimp-2.0/libgimp/gimpitemcombobox.h 58include/gimp-2.0/libgimp/gimpitemcombobox.h
59include/gimp-2.0/libgimp/gimpitemtransform_pdb.h 59include/gimp-2.0/libgimp/gimpitemtransform_pdb.h
60include/gimp-2.0/libgimp/gimplayer.h 60include/gimp-2.0/libgimp/gimplayer.h
61include/gimp-2.0/libgimp/gimplayer_pdb.h 61include/gimp-2.0/libgimp/gimplayer_pdb.h
62include/gimp-2.0/libgimp/gimpmenu.h 62include/gimp-2.0/libgimp/gimpmenu.h
63include/gimp-2.0/libgimp/gimpmessage_pdb.h 63include/gimp-2.0/libgimp/gimpmessage_pdb.h
64include/gimp-2.0/libgimp/gimppainttools_pdb.h 64include/gimp-2.0/libgimp/gimppainttools_pdb.h
65include/gimp-2.0/libgimp/gimppalette.h 65include/gimp-2.0/libgimp/gimppalette.h
66include/gimp-2.0/libgimp/gimppalette_pdb.h 66include/gimp-2.0/libgimp/gimppalette_pdb.h
67include/gimp-2.0/libgimp/gimppalettemenu.h 67include/gimp-2.0/libgimp/gimppalettemenu.h
68include/gimp-2.0/libgimp/gimppalettes.h 68include/gimp-2.0/libgimp/gimppalettes.h
69include/gimp-2.0/libgimp/gimppalettes_pdb.h 69include/gimp-2.0/libgimp/gimppalettes_pdb.h
70include/gimp-2.0/libgimp/gimppaletteselect.h 70include/gimp-2.0/libgimp/gimppaletteselect.h
71include/gimp-2.0/libgimp/gimppaletteselect_pdb.h 71include/gimp-2.0/libgimp/gimppaletteselect_pdb.h
72include/gimp-2.0/libgimp/gimppaletteselectbutton.h 72include/gimp-2.0/libgimp/gimppaletteselectbutton.h
73include/gimp-2.0/libgimp/gimppaths_pdb.h 73include/gimp-2.0/libgimp/gimppaths_pdb.h
74include/gimp-2.0/libgimp/gimppattern_pdb.h 74include/gimp-2.0/libgimp/gimppattern_pdb.h
75include/gimp-2.0/libgimp/gimppatternmenu.h 75include/gimp-2.0/libgimp/gimppatternmenu.h
76include/gimp-2.0/libgimp/gimppatterns.h 76include/gimp-2.0/libgimp/gimppatterns.h
77include/gimp-2.0/libgimp/gimppatterns_pdb.h 77include/gimp-2.0/libgimp/gimppatterns_pdb.h
78include/gimp-2.0/libgimp/gimppatternselect.h 78include/gimp-2.0/libgimp/gimppatternselect.h
79include/gimp-2.0/libgimp/gimppatternselect_pdb.h 79include/gimp-2.0/libgimp/gimppatternselect_pdb.h
80include/gimp-2.0/libgimp/gimppatternselectbutton.h 80include/gimp-2.0/libgimp/gimppatternselectbutton.h
81include/gimp-2.0/libgimp/gimppixbuf.h 81include/gimp-2.0/libgimp/gimppixbuf.h
82include/gimp-2.0/libgimp/gimppixelfetcher.h 82include/gimp-2.0/libgimp/gimppixelfetcher.h
83include/gimp-2.0/libgimp/gimppixelrgn.h 83include/gimp-2.0/libgimp/gimppixelrgn.h
84include/gimp-2.0/libgimp/gimpplugin.h 84include/gimp-2.0/libgimp/gimpplugin.h
85include/gimp-2.0/libgimp/gimpplugin_pdb.h 85include/gimp-2.0/libgimp/gimpplugin_pdb.h
86include/gimp-2.0/libgimp/gimpprocbrowserdialog.h 86include/gimp-2.0/libgimp/gimpprocbrowserdialog.h
87include/gimp-2.0/libgimp/gimpproceduraldb.h 87include/gimp-2.0/libgimp/gimpproceduraldb.h
88include/gimp-2.0/libgimp/gimpproceduraldb_pdb.h 88include/gimp-2.0/libgimp/gimpproceduraldb_pdb.h
89include/gimp-2.0/libgimp/gimpprocview.h 89include/gimp-2.0/libgimp/gimpprocview.h
90include/gimp-2.0/libgimp/gimpprogress.h 90include/gimp-2.0/libgimp/gimpprogress.h
91include/gimp-2.0/libgimp/gimpprogress_pdb.h 91include/gimp-2.0/libgimp/gimpprogress_pdb.h
92include/gimp-2.0/libgimp/gimpprogressbar.h 92include/gimp-2.0/libgimp/gimpprogressbar.h
93include/gimp-2.0/libgimp/gimpregioniterator.h 93include/gimp-2.0/libgimp/gimpregioniterator.h
94include/gimp-2.0/libgimp/gimpselectbutton.h 94include/gimp-2.0/libgimp/gimpselectbutton.h
95include/gimp-2.0/libgimp/gimpselection.h 95include/gimp-2.0/libgimp/gimpselection.h
96include/gimp-2.0/libgimp/gimpselection_pdb.h 96include/gimp-2.0/libgimp/gimpselection_pdb.h
97include/gimp-2.0/libgimp/gimpselectiontools_pdb.h 97include/gimp-2.0/libgimp/gimpselectiontools_pdb.h
98include/gimp-2.0/libgimp/gimptextlayer_pdb.h 98include/gimp-2.0/libgimp/gimptextlayer_pdb.h
99include/gimp-2.0/libgimp/gimptexttool_pdb.h 99include/gimp-2.0/libgimp/gimptexttool_pdb.h
100include/gimp-2.0/libgimp/gimptile.h 100include/gimp-2.0/libgimp/gimptile.h
101include/gimp-2.0/libgimp/gimptransformtools_pdb.h 101include/gimp-2.0/libgimp/gimptransformtools_pdb.h
102include/gimp-2.0/libgimp/gimptypes.h 102include/gimp-2.0/libgimp/gimptypes.h
103include/gimp-2.0/libgimp/gimpui.h 103include/gimp-2.0/libgimp/gimpui.h
104include/gimp-2.0/libgimp/gimpuitypes.h 104include/gimp-2.0/libgimp/gimpuitypes.h
105include/gimp-2.0/libgimp/gimpundo_pdb.h 105include/gimp-2.0/libgimp/gimpundo_pdb.h
106include/gimp-2.0/libgimp/gimpunit_pdb.h 106include/gimp-2.0/libgimp/gimpunit_pdb.h
107include/gimp-2.0/libgimp/gimpvectors.h 107include/gimp-2.0/libgimp/gimpvectors.h
108include/gimp-2.0/libgimp/gimpvectors_pdb.h 108include/gimp-2.0/libgimp/gimpvectors_pdb.h
109include/gimp-2.0/libgimp/gimpzoompreview.h 109include/gimp-2.0/libgimp/gimpzoompreview.h
110include/gimp-2.0/libgimpbase/gimpbase.h 110include/gimp-2.0/libgimpbase/gimpbase.h
111include/gimp-2.0/libgimpbase/gimpbaseenums.h 111include/gimp-2.0/libgimpbase/gimpbaseenums.h
112include/gimp-2.0/libgimpbase/gimpbasetypes.h 112include/gimp-2.0/libgimpbase/gimpbasetypes.h
113include/gimp-2.0/libgimpbase/gimpchecks.h 113include/gimp-2.0/libgimpbase/gimpchecks.h
114include/gimp-2.0/libgimpbase/gimpcpuaccel.h 114include/gimp-2.0/libgimpbase/gimpcpuaccel.h
115include/gimp-2.0/libgimpbase/gimpdatafiles.h 115include/gimp-2.0/libgimpbase/gimpdatafiles.h
116include/gimp-2.0/libgimpbase/gimpenv.h 116include/gimp-2.0/libgimpbase/gimpenv.h
117include/gimp-2.0/libgimpbase/gimplimits.h 117include/gimp-2.0/libgimpbase/gimplimits.h
118include/gimp-2.0/libgimpbase/gimpmemsize.h 118include/gimp-2.0/libgimpbase/gimpmemsize.h
119include/gimp-2.0/libgimpbase/gimpparam.h 119include/gimp-2.0/libgimpbase/gimpparam.h
120include/gimp-2.0/libgimpbase/gimpparasite.h 120include/gimp-2.0/libgimpbase/gimpparasite.h
121include/gimp-2.0/libgimpbase/gimpparasiteio.h 121include/gimp-2.0/libgimpbase/gimpparasiteio.h
122include/gimp-2.0/libgimpbase/gimprectangle.h 122include/gimp-2.0/libgimpbase/gimprectangle.h
123include/gimp-2.0/libgimpbase/gimpsignal.h 123include/gimp-2.0/libgimpbase/gimpsignal.h
124include/gimp-2.0/libgimpbase/gimpunit.h 124include/gimp-2.0/libgimpbase/gimpunit.h
125include/gimp-2.0/libgimpbase/gimputils.h 125include/gimp-2.0/libgimpbase/gimputils.h
126include/gimp-2.0/libgimpbase/gimpversion.h 126include/gimp-2.0/libgimpbase/gimpversion.h
127include/gimp-2.0/libgimpcolor/gimpadaptivesupersample.h 127include/gimp-2.0/libgimpcolor/gimpadaptivesupersample.h
128include/gimp-2.0/libgimpcolor/gimpbilinear.h 128include/gimp-2.0/libgimpcolor/gimpbilinear.h
129include/gimp-2.0/libgimpcolor/gimpcairocolor.h 129include/gimp-2.0/libgimpcolor/gimpcairocolor.h
130include/gimp-2.0/libgimpcolor/gimpcmyk.h 130include/gimp-2.0/libgimpcolor/gimpcmyk.h
131include/gimp-2.0/libgimpcolor/gimpcolor.h 131include/gimp-2.0/libgimpcolor/gimpcolor.h
132include/gimp-2.0/libgimpcolor/gimpcolormanaged.h 132include/gimp-2.0/libgimpcolor/gimpcolormanaged.h
133include/gimp-2.0/libgimpcolor/gimpcolorspace.h 133include/gimp-2.0/libgimpcolor/gimpcolorspace.h
134include/gimp-2.0/libgimpcolor/gimpcolortypes.h 134include/gimp-2.0/libgimpcolor/gimpcolortypes.h
135include/gimp-2.0/libgimpcolor/gimphsl.h 135include/gimp-2.0/libgimpcolor/gimphsl.h
136include/gimp-2.0/libgimpcolor/gimphsv.h 136include/gimp-2.0/libgimpcolor/gimphsv.h
137include/gimp-2.0/libgimpcolor/gimprgb.h 137include/gimp-2.0/libgimpcolor/gimprgb.h
138include/gimp-2.0/libgimpconfig/gimpcolorconfig-enums.h 138include/gimp-2.0/libgimpconfig/gimpcolorconfig-enums.h
139include/gimp-2.0/libgimpconfig/gimpcolorconfig.h 139include/gimp-2.0/libgimpconfig/gimpcolorconfig.h
140include/gimp-2.0/libgimpconfig/gimpconfig-deserialize.h 140include/gimp-2.0/libgimpconfig/gimpconfig-deserialize.h
141include/gimp-2.0/libgimpconfig/gimpconfig-error.h 141include/gimp-2.0/libgimpconfig/gimpconfig-error.h
142include/gimp-2.0/libgimpconfig/gimpconfig-iface.h 142include/gimp-2.0/libgimpconfig/gimpconfig-iface.h
143include/gimp-2.0/libgimpconfig/gimpconfig-params.h 143include/gimp-2.0/libgimpconfig/gimpconfig-params.h
144include/gimp-2.0/libgimpconfig/gimpconfig-path.h 144include/gimp-2.0/libgimpconfig/gimpconfig-path.h
145include/gimp-2.0/libgimpconfig/gimpconfig-serialize.h 145include/gimp-2.0/libgimpconfig/gimpconfig-serialize.h
146include/gimp-2.0/libgimpconfig/gimpconfig-utils.h 146include/gimp-2.0/libgimpconfig/gimpconfig-utils.h
147include/gimp-2.0/libgimpconfig/gimpconfig.h 147include/gimp-2.0/libgimpconfig/gimpconfig.h
148include/gimp-2.0/libgimpconfig/gimpconfigtypes.h 148include/gimp-2.0/libgimpconfig/gimpconfigtypes.h
149include/gimp-2.0/libgimpconfig/gimpconfigwriter.h 149include/gimp-2.0/libgimpconfig/gimpconfigwriter.h
150include/gimp-2.0/libgimpconfig/gimpscanner.h 150include/gimp-2.0/libgimpconfig/gimpscanner.h
151include/gimp-2.0/libgimpmath/gimpmath.h 151include/gimp-2.0/libgimpmath/gimpmath.h
152include/gimp-2.0/libgimpmath/gimpmathtypes.h 152include/gimp-2.0/libgimpmath/gimpmathtypes.h
153include/gimp-2.0/libgimpmath/gimpmatrix.h 153include/gimp-2.0/libgimpmath/gimpmatrix.h
154include/gimp-2.0/libgimpmath/gimpmd5.h 154include/gimp-2.0/libgimpmath/gimpmd5.h
155include/gimp-2.0/libgimpmath/gimpvector.h 155include/gimp-2.0/libgimpmath/gimpvector.h
156include/gimp-2.0/libgimpmodule/gimpmodule.h 156include/gimp-2.0/libgimpmodule/gimpmodule.h
157include/gimp-2.0/libgimpmodule/gimpmoduledb.h 157include/gimp-2.0/libgimpmodule/gimpmoduledb.h
158include/gimp-2.0/libgimpmodule/gimpmoduletypes.h 158include/gimp-2.0/libgimpmodule/gimpmoduletypes.h
159include/gimp-2.0/libgimpthumb/gimpthumb-enums.h 159include/gimp-2.0/libgimpthumb/gimpthumb-enums.h
160include/gimp-2.0/libgimpthumb/gimpthumb-error.h 160include/gimp-2.0/libgimpthumb/gimpthumb-error.h
161include/gimp-2.0/libgimpthumb/gimpthumb-types.h 161include/gimp-2.0/libgimpthumb/gimpthumb-types.h
162include/gimp-2.0/libgimpthumb/gimpthumb-utils.h 162include/gimp-2.0/libgimpthumb/gimpthumb-utils.h
163include/gimp-2.0/libgimpthumb/gimpthumb.h 163include/gimp-2.0/libgimpthumb/gimpthumb.h
164include/gimp-2.0/libgimpthumb/gimpthumbnail.h 164include/gimp-2.0/libgimpthumb/gimpthumbnail.h
165include/gimp-2.0/libgimpwidgets/gimp3migration.h 165include/gimp-2.0/libgimpwidgets/gimp3migration.h
166include/gimp-2.0/libgimpwidgets/gimpbrowser.h 166include/gimp-2.0/libgimpwidgets/gimpbrowser.h
167include/gimp-2.0/libgimpwidgets/gimpbutton.h 167include/gimp-2.0/libgimpwidgets/gimpbutton.h
168include/gimp-2.0/libgimpwidgets/gimpcairo-utils.h 168include/gimp-2.0/libgimpwidgets/gimpcairo-utils.h
169include/gimp-2.0/libgimpwidgets/gimpcellrenderercolor.h 169include/gimp-2.0/libgimpwidgets/gimpcellrenderercolor.h
170include/gimp-2.0/libgimpwidgets/gimpcellrenderertoggle.h 170include/gimp-2.0/libgimpwidgets/gimpcellrenderertoggle.h
171include/gimp-2.0/libgimpwidgets/gimpchainbutton.h 171include/gimp-2.0/libgimpwidgets/gimpchainbutton.h
172include/gimp-2.0/libgimpwidgets/gimpcolorarea.h 172include/gimp-2.0/libgimpwidgets/gimpcolorarea.h
173include/gimp-2.0/libgimpwidgets/gimpcolorbutton.h 173include/gimp-2.0/libgimpwidgets/gimpcolorbutton.h
174include/gimp-2.0/libgimpwidgets/gimpcolordisplay.h 174include/gimp-2.0/libgimpwidgets/gimpcolordisplay.h
175include/gimp-2.0/libgimpwidgets/gimpcolordisplaystack.h 175include/gimp-2.0/libgimpwidgets/gimpcolordisplaystack.h
176include/gimp-2.0/libgimpwidgets/gimpcolorhexentry.h 176include/gimp-2.0/libgimpwidgets/gimpcolorhexentry.h
177include/gimp-2.0/libgimpwidgets/gimpcolornotebook.h 177include/gimp-2.0/libgimpwidgets/gimpcolornotebook.h
178include/gimp-2.0/libgimpwidgets/gimpcolorprofilecombobox.h 178include/gimp-2.0/libgimpwidgets/gimpcolorprofilecombobox.h
179include/gimp-2.0/libgimpwidgets/gimpcolorprofilestore.h 179include/gimp-2.0/libgimpwidgets/gimpcolorprofilestore.h
180include/gimp-2.0/libgimpwidgets/gimpcolorscale.h 180include/gimp-2.0/libgimpwidgets/gimpcolorscale.h
181include/gimp-2.0/libgimpwidgets/gimpcolorscales.h 181include/gimp-2.0/libgimpwidgets/gimpcolorscales.h
182include/gimp-2.0/libgimpwidgets/gimpcolorselect.h 182include/gimp-2.0/libgimpwidgets/gimpcolorselect.h
183include/gimp-2.0/libgimpwidgets/gimpcolorselection.h 183include/gimp-2.0/libgimpwidgets/gimpcolorselection.h
184include/gimp-2.0/libgimpwidgets/gimpcolorselector.h 184include/gimp-2.0/libgimpwidgets/gimpcolorselector.h
185include/gimp-2.0/libgimpwidgets/gimpcontroller.h 185include/gimp-2.0/libgimpwidgets/gimpcontroller.h
186include/gimp-2.0/libgimpwidgets/gimpdialog.h 186include/gimp-2.0/libgimpwidgets/gimpdialog.h
187include/gimp-2.0/libgimpwidgets/gimpenumcombobox.h 187include/gimp-2.0/libgimpwidgets/gimpenumcombobox.h
188include/gimp-2.0/libgimpwidgets/gimpenumlabel.h 188include/gimp-2.0/libgimpwidgets/gimpenumlabel.h
189include/gimp-2.0/libgimpwidgets/gimpenumstore.h 189include/gimp-2.0/libgimpwidgets/gimpenumstore.h
190include/gimp-2.0/libgimpwidgets/gimpenumwidgets.h 190include/gimp-2.0/libgimpwidgets/gimpenumwidgets.h
191include/gimp-2.0/libgimpwidgets/gimpfileentry.h 191include/gimp-2.0/libgimpwidgets/gimpfileentry.h
192include/gimp-2.0/libgimpwidgets/gimpframe.h 192include/gimp-2.0/libgimpwidgets/gimpframe.h
193include/gimp-2.0/libgimpwidgets/gimphelpui.h 193include/gimp-2.0/libgimpwidgets/gimphelpui.h
194include/gimp-2.0/libgimpwidgets/gimphintbox.h 194include/gimp-2.0/libgimpwidgets/gimphintbox.h
195include/gimp-2.0/libgimpwidgets/gimpintcombobox.h 195include/gimp-2.0/libgimpwidgets/gimpintcombobox.h
196include/gimp-2.0/libgimpwidgets/gimpintstore.h 196include/gimp-2.0/libgimpwidgets/gimpintstore.h
197include/gimp-2.0/libgimpwidgets/gimpmemsizeentry.h 197include/gimp-2.0/libgimpwidgets/gimpmemsizeentry.h
198include/gimp-2.0/libgimpwidgets/gimpnumberpairentry.h 198include/gimp-2.0/libgimpwidgets/gimpnumberpairentry.h
199include/gimp-2.0/libgimpwidgets/gimpoffsetarea.h 199include/gimp-2.0/libgimpwidgets/gimpoffsetarea.h
200include/gimp-2.0/libgimpwidgets/gimpoldwidgets.h 200include/gimp-2.0/libgimpwidgets/gimpoldwidgets.h
201include/gimp-2.0/libgimpwidgets/gimppageselector.h 201include/gimp-2.0/libgimpwidgets/gimppageselector.h
202include/gimp-2.0/libgimpwidgets/gimppatheditor.h 202include/gimp-2.0/libgimpwidgets/gimppatheditor.h
203include/gimp-2.0/libgimpwidgets/gimppickbutton.h 203include/gimp-2.0/libgimpwidgets/gimppickbutton.h
204include/gimp-2.0/libgimpwidgets/gimppixmap.h 204include/gimp-2.0/libgimpwidgets/gimppixmap.h
205include/gimp-2.0/libgimpwidgets/gimppreview.h 205include/gimp-2.0/libgimpwidgets/gimppreview.h
206include/gimp-2.0/libgimpwidgets/gimppreviewarea.h 206include/gimp-2.0/libgimpwidgets/gimppreviewarea.h
207include/gimp-2.0/libgimpwidgets/gimppropwidgets.h 207include/gimp-2.0/libgimpwidgets/gimppropwidgets.h
208include/gimp-2.0/libgimpwidgets/gimpquerybox.h 208include/gimp-2.0/libgimpwidgets/gimpquerybox.h
209include/gimp-2.0/libgimpwidgets/gimpruler.h 209include/gimp-2.0/libgimpwidgets/gimpruler.h
210include/gimp-2.0/libgimpwidgets/gimpscaleentry.h 210include/gimp-2.0/libgimpwidgets/gimpscaleentry.h
211include/gimp-2.0/libgimpwidgets/gimpscrolledpreview.h 211include/gimp-2.0/libgimpwidgets/gimpscrolledpreview.h
212include/gimp-2.0/libgimpwidgets/gimpsizeentry.h 212include/gimp-2.0/libgimpwidgets/gimpsizeentry.h
213include/gimp-2.0/libgimpwidgets/gimpstock.h 213include/gimp-2.0/libgimpwidgets/gimpstock.h
214include/gimp-2.0/libgimpwidgets/gimpstringcombobox.h 214include/gimp-2.0/libgimpwidgets/gimpstringcombobox.h
215include/gimp-2.0/libgimpwidgets/gimpunitcombobox.h 215include/gimp-2.0/libgimpwidgets/gimpunitcombobox.h
216include/gimp-2.0/libgimpwidgets/gimpunitmenu.h 216include/gimp-2.0/libgimpwidgets/gimpunitmenu.h
217include/gimp-2.0/libgimpwidgets/gimpunitstore.h 217include/gimp-2.0/libgimpwidgets/gimpunitstore.h
218include/gimp-2.0/libgimpwidgets/gimpwidgets-error.h 218include/gimp-2.0/libgimpwidgets/gimpwidgets-error.h
219include/gimp-2.0/libgimpwidgets/gimpwidgets.h 219include/gimp-2.0/libgimpwidgets/gimpwidgets.h
220include/gimp-2.0/libgimpwidgets/gimpwidgetsenums.h 220include/gimp-2.0/libgimpwidgets/gimpwidgetsenums.h
221include/gimp-2.0/libgimpwidgets/gimpwidgetstypes.h 221include/gimp-2.0/libgimpwidgets/gimpwidgetstypes.h
222include/gimp-2.0/libgimpwidgets/gimpzoommodel.h 222include/gimp-2.0/libgimpwidgets/gimpzoommodel.h
223lib/gimp/2.0/environ/default.env 223lib/gimp/2.0/environ/default.env
224lib/gimp/2.0/interpreters/default.interp 224lib/gimp/2.0/interpreters/default.interp
225lib/gimp/2.0/modules/libcolor-selector-cmyk.la 225lib/gimp/2.0/modules/libcolor-selector-cmyk.la
226lib/gimp/2.0/modules/libcolor-selector-water.la 226lib/gimp/2.0/modules/libcolor-selector-water.la
227lib/gimp/2.0/modules/libcolor-selector-wheel.la 227lib/gimp/2.0/modules/libcolor-selector-wheel.la
228lib/gimp/2.0/modules/libcontroller-midi.la 228lib/gimp/2.0/modules/libcontroller-midi.la
229lib/gimp/2.0/modules/libdisplay-filter-color-blind.la 229lib/gimp/2.0/modules/libdisplay-filter-color-blind.la
230lib/gimp/2.0/modules/libdisplay-filter-gamma.la 230lib/gimp/2.0/modules/libdisplay-filter-gamma.la
231lib/gimp/2.0/modules/libdisplay-filter-high-contrast.la 231lib/gimp/2.0/modules/libdisplay-filter-high-contrast.la
232lib/gimp/2.0/modules/libdisplay-filter-lcms.la 232lib/gimp/2.0/modules/libdisplay-filter-lcms.la
233lib/gimp/2.0/modules/libdisplay-filter-proof.la 233lib/gimp/2.0/modules/libdisplay-filter-proof.la
234lib/gimp/2.0/plug-ins/alien-map 234lib/gimp/2.0/plug-ins/alien-map
235lib/gimp/2.0/plug-ins/align-layers 235lib/gimp/2.0/plug-ins/align-layers
236lib/gimp/2.0/plug-ins/animation-optimize 236lib/gimp/2.0/plug-ins/animation-optimize
237lib/gimp/2.0/plug-ins/animation-play 237lib/gimp/2.0/plug-ins/animation-play
238lib/gimp/2.0/plug-ins/antialias 238lib/gimp/2.0/plug-ins/antialias
239lib/gimp/2.0/plug-ins/apply-canvas 239lib/gimp/2.0/plug-ins/apply-canvas
240lib/gimp/2.0/plug-ins/blinds 240lib/gimp/2.0/plug-ins/blinds
241lib/gimp/2.0/plug-ins/blur 241lib/gimp/2.0/plug-ins/blur
242lib/gimp/2.0/plug-ins/blur-gauss 242lib/gimp/2.0/plug-ins/blur-gauss
243lib/gimp/2.0/plug-ins/blur-gauss-selective 243lib/gimp/2.0/plug-ins/blur-gauss-selective
244lib/gimp/2.0/plug-ins/blur-motion 244lib/gimp/2.0/plug-ins/blur-motion
245lib/gimp/2.0/plug-ins/border-average 245lib/gimp/2.0/plug-ins/border-average
246lib/gimp/2.0/plug-ins/bump-map 246lib/gimp/2.0/plug-ins/bump-map
247lib/gimp/2.0/plug-ins/cartoon 247lib/gimp/2.0/plug-ins/cartoon
248lib/gimp/2.0/plug-ins/channel-mixer 248lib/gimp/2.0/plug-ins/channel-mixer
249lib/gimp/2.0/plug-ins/checkerboard 249lib/gimp/2.0/plug-ins/checkerboard
250lib/gimp/2.0/plug-ins/cml-explorer 250lib/gimp/2.0/plug-ins/cml-explorer
251lib/gimp/2.0/plug-ins/color-cube-analyze 251lib/gimp/2.0/plug-ins/color-cube-analyze
252lib/gimp/2.0/plug-ins/color-enhance 252lib/gimp/2.0/plug-ins/color-enhance
253lib/gimp/2.0/plug-ins/color-exchange 253lib/gimp/2.0/plug-ins/color-exchange
254lib/gimp/2.0/plug-ins/color-rotate 254lib/gimp/2.0/plug-ins/color-rotate
255lib/gimp/2.0/plug-ins/color-to-alpha 255lib/gimp/2.0/plug-ins/color-to-alpha
256lib/gimp/2.0/plug-ins/colorify 256lib/gimp/2.0/plug-ins/colorify
257lib/gimp/2.0/plug-ins/colormap-remap 257lib/gimp/2.0/plug-ins/colormap-remap
258lib/gimp/2.0/plug-ins/compose 258lib/gimp/2.0/plug-ins/compose
259lib/gimp/2.0/plug-ins/contrast-normalize 259lib/gimp/2.0/plug-ins/contrast-normalize
260lib/gimp/2.0/plug-ins/contrast-retinex 260lib/gimp/2.0/plug-ins/contrast-retinex
261lib/gimp/2.0/plug-ins/contrast-stretch 261lib/gimp/2.0/plug-ins/contrast-stretch
262lib/gimp/2.0/plug-ins/contrast-stretch-hsv 262lib/gimp/2.0/plug-ins/contrast-stretch-hsv
263lib/gimp/2.0/plug-ins/convolution-matrix 263lib/gimp/2.0/plug-ins/convolution-matrix
264lib/gimp/2.0/plug-ins/crop-auto 264lib/gimp/2.0/plug-ins/crop-auto
265lib/gimp/2.0/plug-ins/crop-zealous 265lib/gimp/2.0/plug-ins/crop-zealous
266lib/gimp/2.0/plug-ins/cubism 266lib/gimp/2.0/plug-ins/cubism
267lib/gimp/2.0/plug-ins/curve-bend 267lib/gimp/2.0/plug-ins/curve-bend
268lib/gimp/2.0/plug-ins/decompose 268lib/gimp/2.0/plug-ins/decompose
269lib/gimp/2.0/plug-ins/deinterlace 269lib/gimp/2.0/plug-ins/deinterlace
270lib/gimp/2.0/plug-ins/depth-merge 270lib/gimp/2.0/plug-ins/depth-merge
271lib/gimp/2.0/plug-ins/despeckle 271lib/gimp/2.0/plug-ins/despeckle
272lib/gimp/2.0/plug-ins/destripe 272lib/gimp/2.0/plug-ins/destripe
273lib/gimp/2.0/plug-ins/diffraction 273lib/gimp/2.0/plug-ins/diffraction
274lib/gimp/2.0/plug-ins/displace 274lib/gimp/2.0/plug-ins/displace
275lib/gimp/2.0/plug-ins/edge 275lib/gimp/2.0/plug-ins/edge
276lib/gimp/2.0/plug-ins/edge-dog 276lib/gimp/2.0/plug-ins/edge-dog
277lib/gimp/2.0/plug-ins/edge-laplace 277lib/gimp/2.0/plug-ins/edge-laplace
278lib/gimp/2.0/plug-ins/edge-neon 278lib/gimp/2.0/plug-ins/edge-neon
279lib/gimp/2.0/plug-ins/edge-sobel 279lib/gimp/2.0/plug-ins/edge-sobel
280lib/gimp/2.0/plug-ins/emboss 280lib/gimp/2.0/plug-ins/emboss
281lib/gimp/2.0/plug-ins/engrave 281lib/gimp/2.0/plug-ins/engrave
282${PLIST.aalib}lib/gimp/2.0/plug-ins/file-aa 282${PLIST.aalib}lib/gimp/2.0/plug-ins/file-aa
283lib/gimp/2.0/plug-ins/file-bmp 283lib/gimp/2.0/plug-ins/file-bmp
284lib/gimp/2.0/plug-ins/file-cel 284lib/gimp/2.0/plug-ins/file-cel
285lib/gimp/2.0/plug-ins/file-compressor 285lib/gimp/2.0/plug-ins/file-compressor
286lib/gimp/2.0/plug-ins/file-csource 286lib/gimp/2.0/plug-ins/file-csource
287lib/gimp/2.0/plug-ins/file-desktop-link 287lib/gimp/2.0/plug-ins/file-desktop-link
288lib/gimp/2.0/plug-ins/file-dicom 288lib/gimp/2.0/plug-ins/file-dicom
289lib/gimp/2.0/plug-ins/file-faxg3 289lib/gimp/2.0/plug-ins/file-faxg3
290lib/gimp/2.0/plug-ins/file-fits 290lib/gimp/2.0/plug-ins/file-fits
291lib/gimp/2.0/plug-ins/file-fli 291lib/gimp/2.0/plug-ins/file-fli
292lib/gimp/2.0/plug-ins/file-gbr 292lib/gimp/2.0/plug-ins/file-gbr
293lib/gimp/2.0/plug-ins/file-gif-load 293lib/gimp/2.0/plug-ins/file-gif-load
294lib/gimp/2.0/plug-ins/file-gif-save 294lib/gimp/2.0/plug-ins/file-gif-save
295lib/gimp/2.0/plug-ins/file-gih 295lib/gimp/2.0/plug-ins/file-gih
296lib/gimp/2.0/plug-ins/file-glob 296lib/gimp/2.0/plug-ins/file-glob
297lib/gimp/2.0/plug-ins/file-header 297lib/gimp/2.0/plug-ins/file-header
298lib/gimp/2.0/plug-ins/file-html-table 298lib/gimp/2.0/plug-ins/file-html-table
299lib/gimp/2.0/plug-ins/file-ico 299lib/gimp/2.0/plug-ins/file-ico
300lib/gimp/2.0/plug-ins/file-jp2-load 300lib/gimp/2.0/plug-ins/file-jp2-load
301lib/gimp/2.0/plug-ins/file-jpeg 301lib/gimp/2.0/plug-ins/file-jpeg
302${PLIST.mng}lib/gimp/2.0/plug-ins/file-mng 302${PLIST.mng}lib/gimp/2.0/plug-ins/file-mng
303lib/gimp/2.0/plug-ins/file-pat 303lib/gimp/2.0/plug-ins/file-pat
304lib/gimp/2.0/plug-ins/file-pcx 304lib/gimp/2.0/plug-ins/file-pcx
305lib/gimp/2.0/plug-ins/file-pdf-save 305lib/gimp/2.0/plug-ins/file-pdf-save
306lib/gimp/2.0/plug-ins/file-pix 306lib/gimp/2.0/plug-ins/file-pix
307lib/gimp/2.0/plug-ins/file-png 307lib/gimp/2.0/plug-ins/file-png
308lib/gimp/2.0/plug-ins/file-pnm 308lib/gimp/2.0/plug-ins/file-pnm
309lib/gimp/2.0/plug-ins/file-psd-load 309lib/gimp/2.0/plug-ins/file-psd-load
310lib/gimp/2.0/plug-ins/file-psd-save 310lib/gimp/2.0/plug-ins/file-psd-save
311lib/gimp/2.0/plug-ins/file-psp 311lib/gimp/2.0/plug-ins/file-psp
312lib/gimp/2.0/plug-ins/file-raw 312lib/gimp/2.0/plug-ins/file-raw
313lib/gimp/2.0/plug-ins/file-sgi 313lib/gimp/2.0/plug-ins/file-sgi
314lib/gimp/2.0/plug-ins/file-sunras 314lib/gimp/2.0/plug-ins/file-sunras
315${PLIST.svg}lib/gimp/2.0/plug-ins/file-svg 315${PLIST.svg}lib/gimp/2.0/plug-ins/file-svg
316lib/gimp/2.0/plug-ins/file-tga 316lib/gimp/2.0/plug-ins/file-tga
317lib/gimp/2.0/plug-ins/file-tiff-load 317lib/gimp/2.0/plug-ins/file-tiff-load
318lib/gimp/2.0/plug-ins/file-tiff-save 318lib/gimp/2.0/plug-ins/file-tiff-save
319lib/gimp/2.0/plug-ins/file-uri 319lib/gimp/2.0/plug-ins/file-uri
320lib/gimp/2.0/plug-ins/file-wmf 320lib/gimp/2.0/plug-ins/file-wmf
321lib/gimp/2.0/plug-ins/file-xbm 321lib/gimp/2.0/plug-ins/file-xbm
322lib/gimp/2.0/plug-ins/file-xjt 322lib/gimp/2.0/plug-ins/file-xjt
323${PLIST.remote}lib/gimp/2.0/plug-ins/file-xmc 323${PLIST.remote}lib/gimp/2.0/plug-ins/file-xmc
324${PLIST.remote}lib/gimp/2.0/plug-ins/file-xpm 324${PLIST.remote}lib/gimp/2.0/plug-ins/file-xpm
325lib/gimp/2.0/plug-ins/file-xwd 325lib/gimp/2.0/plug-ins/file-xwd
326lib/gimp/2.0/plug-ins/film 326lib/gimp/2.0/plug-ins/film
327lib/gimp/2.0/plug-ins/filter-pack 327lib/gimp/2.0/plug-ins/filter-pack
328lib/gimp/2.0/plug-ins/flame 328lib/gimp/2.0/plug-ins/flame
329lib/gimp/2.0/plug-ins/fractal-explorer 329lib/gimp/2.0/plug-ins/fractal-explorer
330lib/gimp/2.0/plug-ins/fractal-trace 330lib/gimp/2.0/plug-ins/fractal-trace
331lib/gimp/2.0/plug-ins/gfig 331lib/gimp/2.0/plug-ins/gfig
332lib/gimp/2.0/plug-ins/gimpressionist 332lib/gimp/2.0/plug-ins/gimpressionist
333lib/gimp/2.0/plug-ins/gradient-flare 333lib/gimp/2.0/plug-ins/gradient-flare
334lib/gimp/2.0/plug-ins/gradient-map 334lib/gimp/2.0/plug-ins/gradient-map
335lib/gimp/2.0/plug-ins/grid 335lib/gimp/2.0/plug-ins/grid
336lib/gimp/2.0/plug-ins/guillotine 336lib/gimp/2.0/plug-ins/guillotine
337lib/gimp/2.0/plug-ins/help 337lib/gimp/2.0/plug-ins/help
338lib/gimp/2.0/plug-ins/hot 338lib/gimp/2.0/plug-ins/hot
339lib/gimp/2.0/plug-ins/ifs-compose 339lib/gimp/2.0/plug-ins/ifs-compose
340lib/gimp/2.0/plug-ins/illusion 340lib/gimp/2.0/plug-ins/illusion
341lib/gimp/2.0/plug-ins/imagemap 341lib/gimp/2.0/plug-ins/imagemap
342lib/gimp/2.0/plug-ins/iwarp 342lib/gimp/2.0/plug-ins/iwarp
343lib/gimp/2.0/plug-ins/jigsaw 343lib/gimp/2.0/plug-ins/jigsaw
344lib/gimp/2.0/plug-ins/lcms 344lib/gimp/2.0/plug-ins/lcms
345lib/gimp/2.0/plug-ins/lens-apply 345lib/gimp/2.0/plug-ins/lens-apply
346lib/gimp/2.0/plug-ins/lens-distortion 346lib/gimp/2.0/plug-ins/lens-distortion
347lib/gimp/2.0/plug-ins/lens-flare 347lib/gimp/2.0/plug-ins/lens-flare
348lib/gimp/2.0/plug-ins/lighting 348lib/gimp/2.0/plug-ins/lighting
349lib/gimp/2.0/plug-ins/mail 349lib/gimp/2.0/plug-ins/mail
350lib/gimp/2.0/plug-ins/map-object 350lib/gimp/2.0/plug-ins/map-object
351lib/gimp/2.0/plug-ins/max-rgb 351lib/gimp/2.0/plug-ins/max-rgb
352lib/gimp/2.0/plug-ins/maze 352lib/gimp/2.0/plug-ins/maze
353lib/gimp/2.0/plug-ins/metadata 353lib/gimp/2.0/plug-ins/metadata
354lib/gimp/2.0/plug-ins/mosaic 354lib/gimp/2.0/plug-ins/mosaic
355lib/gimp/2.0/plug-ins/newsprint 355lib/gimp/2.0/plug-ins/newsprint
356lib/gimp/2.0/plug-ins/nl-filter 356lib/gimp/2.0/plug-ins/nl-filter
357lib/gimp/2.0/plug-ins/noise-hsv 357lib/gimp/2.0/plug-ins/noise-hsv
358lib/gimp/2.0/plug-ins/noise-randomize 358lib/gimp/2.0/plug-ins/noise-randomize
359lib/gimp/2.0/plug-ins/noise-rgb 359lib/gimp/2.0/plug-ins/noise-rgb
360lib/gimp/2.0/plug-ins/noise-solid 360lib/gimp/2.0/plug-ins/noise-solid
361lib/gimp/2.0/plug-ins/noise-spread 361lib/gimp/2.0/plug-ins/noise-spread
362lib/gimp/2.0/plug-ins/nova 362lib/gimp/2.0/plug-ins/nova
363lib/gimp/2.0/plug-ins/oilify 363lib/gimp/2.0/plug-ins/oilify
364lib/gimp/2.0/plug-ins/pagecurl 364lib/gimp/2.0/plug-ins/pagecurl
365lib/gimp/2.0/plug-ins/photocopy 365lib/gimp/2.0/plug-ins/photocopy
366lib/gimp/2.0/plug-ins/pixelize 366lib/gimp/2.0/plug-ins/pixelize
367lib/gimp/2.0/plug-ins/plasma 367lib/gimp/2.0/plug-ins/plasma
368lib/gimp/2.0/plug-ins/plugin-browser 368lib/gimp/2.0/plug-ins/plugin-browser
369lib/gimp/2.0/plug-ins/polar-coords 369lib/gimp/2.0/plug-ins/polar-coords
370lib/gimp/2.0/plug-ins/print 370lib/gimp/2.0/plug-ins/print
371lib/gimp/2.0/plug-ins/procedure-browser 371lib/gimp/2.0/plug-ins/procedure-browser
372lib/gimp/2.0/plug-ins/qbist 372lib/gimp/2.0/plug-ins/qbist
373lib/gimp/2.0/plug-ins/red-eye-removal 373lib/gimp/2.0/plug-ins/red-eye-removal
374lib/gimp/2.0/plug-ins/ripple 374lib/gimp/2.0/plug-ins/ripple
375lib/gimp/2.0/plug-ins/rotate 375lib/gimp/2.0/plug-ins/rotate
376lib/gimp/2.0/plug-ins/sample-colorize 376lib/gimp/2.0/plug-ins/sample-colorize
377lib/gimp/2.0/plug-ins/screenshot 377lib/gimp/2.0/plug-ins/screenshot
378lib/gimp/2.0/plug-ins/script-fu 378lib/gimp/2.0/plug-ins/script-fu
379lib/gimp/2.0/plug-ins/selection-to-path 379lib/gimp/2.0/plug-ins/selection-to-path
380lib/gimp/2.0/plug-ins/semi-flatten 380lib/gimp/2.0/plug-ins/semi-flatten
381lib/gimp/2.0/plug-ins/sharpen 381lib/gimp/2.0/plug-ins/sharpen
382lib/gimp/2.0/plug-ins/shift 382lib/gimp/2.0/plug-ins/shift
383lib/gimp/2.0/plug-ins/sinus 383lib/gimp/2.0/plug-ins/sinus
384lib/gimp/2.0/plug-ins/smooth-palette 384lib/gimp/2.0/plug-ins/smooth-palette
385lib/gimp/2.0/plug-ins/softglow 385lib/gimp/2.0/plug-ins/softglow
386lib/gimp/2.0/plug-ins/sparkle 386lib/gimp/2.0/plug-ins/sparkle
387lib/gimp/2.0/plug-ins/sphere-designer 387lib/gimp/2.0/plug-ins/sphere-designer
388lib/gimp/2.0/plug-ins/threshold-alpha 388lib/gimp/2.0/plug-ins/threshold-alpha
389lib/gimp/2.0/plug-ins/tile 389lib/gimp/2.0/plug-ins/tile
390lib/gimp/2.0/plug-ins/tile-glass 390lib/gimp/2.0/plug-ins/tile-glass
391lib/gimp/2.0/plug-ins/tile-paper 391lib/gimp/2.0/plug-ins/tile-paper
392lib/gimp/2.0/plug-ins/tile-seamless 392lib/gimp/2.0/plug-ins/tile-seamless
393lib/gimp/2.0/plug-ins/tile-small 393lib/gimp/2.0/plug-ins/tile-small
394lib/gimp/2.0/plug-ins/unit-editor 394lib/gimp/2.0/plug-ins/unit-editor
395lib/gimp/2.0/plug-ins/unsharp-mask 395lib/gimp/2.0/plug-ins/unsharp-mask
396lib/gimp/2.0/plug-ins/value-invert 396lib/gimp/2.0/plug-ins/value-invert
397lib/gimp/2.0/plug-ins/value-propagate 397lib/gimp/2.0/plug-ins/value-propagate
398lib/gimp/2.0/plug-ins/van-gogh-lic 398lib/gimp/2.0/plug-ins/van-gogh-lic
399lib/gimp/2.0/plug-ins/video 399lib/gimp/2.0/plug-ins/video
400lib/gimp/2.0/plug-ins/warp 400lib/gimp/2.0/plug-ins/warp
401lib/gimp/2.0/plug-ins/waves 401lib/gimp/2.0/plug-ins/waves
402lib/gimp/2.0/plug-ins/web-browser 402lib/gimp/2.0/plug-ins/web-browser
403lib/gimp/2.0/plug-ins/whirl-pinch 403lib/gimp/2.0/plug-ins/whirl-pinch
404lib/gimp/2.0/plug-ins/wind 404lib/gimp/2.0/plug-ins/wind
405lib/libgimp-2.0.la 405lib/libgimp-2.0.la
406lib/libgimpbase-2.0.la 406lib/libgimpbase-2.0.la
407lib/libgimpcolor-2.0.la 407lib/libgimpcolor-2.0.la
408lib/libgimpconfig-2.0.la 408lib/libgimpconfig-2.0.la
409lib/libgimpmath-2.0.la 409lib/libgimpmath-2.0.la
410lib/libgimpmodule-2.0.la 410lib/libgimpmodule-2.0.la
411lib/libgimpthumb-2.0.la 411lib/libgimpthumb-2.0.la
412lib/libgimpui-2.0.la 412lib/libgimpui-2.0.la
413lib/libgimpwidgets-2.0.la 413lib/libgimpwidgets-2.0.la
414lib/pkgconfig/gimp-2.0.pc 414lib/pkgconfig/gimp-2.0.pc
415lib/pkgconfig/gimpthumb-2.0.pc 415lib/pkgconfig/gimpthumb-2.0.pc
416lib/pkgconfig/gimpui-2.0.pc 416lib/pkgconfig/gimpui-2.0.pc
417man/man1/gimp-2.8.1 417man/man1/gimp-2.8.1
418man/man1/gimp-console-2.8.1 418man/man1/gimp-console-2.8.1
419man/man1/gimp-console.1 419man/man1/gimp-console.1
420man/man1/gimp.1 420man/man1/gimp.1
421man/man1/gimptool-2.0.1 421man/man1/gimptool-2.0.1
422man/man5/gimprc-2.8.5 422man/man5/gimprc-2.8.5
423man/man5/gimprc.5 423man/man5/gimprc.5
424share/aclocal/gimp-2.0.m4 424share/aclocal/gimp-2.0.m4
 425share/appdata/gimp.appdata.xml
425share/applications/gimp.desktop 426share/applications/gimp.desktop
426share/examples/gimp-2.0/controllerrc 427share/examples/gimp-2.0/controllerrc
427share/examples/gimp-2.0/gimprc 428share/examples/gimp-2.0/gimprc
428share/examples/gimp-2.0/gtkrc 429share/examples/gimp-2.0/gtkrc
429share/examples/gimp-2.0/menurc 430share/examples/gimp-2.0/menurc
430share/examples/gimp-2.0/sessionrc 431share/examples/gimp-2.0/sessionrc
431share/examples/gimp-2.0/templaterc 432share/examples/gimp-2.0/templaterc
432share/examples/gimp-2.0/unitrc 433share/examples/gimp-2.0/unitrc
433share/gimp/2.0/brushes/Basic/1-pixel.vbr 434share/gimp/2.0/brushes/Basic/1-pixel.vbr
434share/gimp/2.0/brushes/Basic/Block-01.vbr 435share/gimp/2.0/brushes/Basic/Block-01.vbr
435share/gimp/2.0/brushes/Basic/Block-02.vbr 436share/gimp/2.0/brushes/Basic/Block-02.vbr
436share/gimp/2.0/brushes/Basic/Block-03.vbr 437share/gimp/2.0/brushes/Basic/Block-03.vbr
437share/gimp/2.0/brushes/Basic/Hardness-025.vbr 438share/gimp/2.0/brushes/Basic/Hardness-025.vbr
438share/gimp/2.0/brushes/Basic/Hardness-050.vbr 439share/gimp/2.0/brushes/Basic/Hardness-050.vbr
439share/gimp/2.0/brushes/Basic/Hardness-075.vbr 440share/gimp/2.0/brushes/Basic/Hardness-075.vbr
440share/gimp/2.0/brushes/Basic/Hardness-100.vbr 441share/gimp/2.0/brushes/Basic/Hardness-100.vbr
441share/gimp/2.0/brushes/Basic/Star.vbr 442share/gimp/2.0/brushes/Basic/Star.vbr
442share/gimp/2.0/brushes/Basic/pixel.gbr 443share/gimp/2.0/brushes/Basic/pixel.gbr
443share/gimp/2.0/brushes/Legacy/confetti.gbr 444share/gimp/2.0/brushes/Legacy/confetti.gbr
444share/gimp/2.0/brushes/Legacy/confetti.gih 445share/gimp/2.0/brushes/Legacy/confetti.gih
445share/gimp/2.0/brushes/Legacy/dunes.gbr 446share/gimp/2.0/brushes/Legacy/dunes.gbr
446share/gimp/2.0/brushes/Legacy/galaxy-big.gbr 447share/gimp/2.0/brushes/Legacy/galaxy-big.gbr
447share/gimp/2.0/brushes/Legacy/galaxy.gbr 448share/gimp/2.0/brushes/Legacy/galaxy.gbr
448share/gimp/2.0/brushes/Legacy/pepper.gbr 449share/gimp/2.0/brushes/Legacy/pepper.gbr
449share/gimp/2.0/brushes/Legacy/vine.gih 450share/gimp/2.0/brushes/Legacy/vine.gih
450share/gimp/2.0/brushes/Media/Acrylic-01.gih 451share/gimp/2.0/brushes/Media/Acrylic-01.gih
451share/gimp/2.0/brushes/Media/Acrylic-02.gih 452share/gimp/2.0/brushes/Media/Acrylic-02.gih
452share/gimp/2.0/brushes/Media/Acrylic-03.gih 453share/gimp/2.0/brushes/Media/Acrylic-03.gih
453share/gimp/2.0/brushes/Media/Acrylic-04.gih 454share/gimp/2.0/brushes/Media/Acrylic-04.gih
454share/gimp/2.0/brushes/Media/Acrylic-05.gih 455share/gimp/2.0/brushes/Media/Acrylic-05.gih
455share/gimp/2.0/brushes/Media/Bristles-01.gbr 456share/gimp/2.0/brushes/Media/Bristles-01.gbr
456share/gimp/2.0/brushes/Media/Bristles-02.gbr 457share/gimp/2.0/brushes/Media/Bristles-02.gbr
457share/gimp/2.0/brushes/Media/Bristles-03.gbr 458share/gimp/2.0/brushes/Media/Bristles-03.gbr
458share/gimp/2.0/brushes/Media/Oils-01.gbr 459share/gimp/2.0/brushes/Media/Oils-01.gbr
459share/gimp/2.0/brushes/Media/Oils-02.gbr 460share/gimp/2.0/brushes/Media/Oils-02.gbr
460share/gimp/2.0/brushes/Media/Oils-03.gbr 461share/gimp/2.0/brushes/Media/Oils-03.gbr
461share/gimp/2.0/brushes/Sketch/Chalk-01.gih 462share/gimp/2.0/brushes/Sketch/Chalk-01.gih
462share/gimp/2.0/brushes/Sketch/Chalk-02.gih 463share/gimp/2.0/brushes/Sketch/Chalk-02.gih
463share/gimp/2.0/brushes/Sketch/Chalk-03.gih 464share/gimp/2.0/brushes/Sketch/Chalk-03.gih
464share/gimp/2.0/brushes/Sketch/Charcoal-01.gbr 465share/gimp/2.0/brushes/Sketch/Charcoal-01.gbr
465share/gimp/2.0/brushes/Sketch/Charcoal-02.gbr 466share/gimp/2.0/brushes/Sketch/Charcoal-02.gbr
466share/gimp/2.0/brushes/Sketch/Pencil-01.gih 467share/gimp/2.0/brushes/Sketch/Pencil-01.gih
467share/gimp/2.0/brushes/Sketch/Pencil-02.gih 468share/gimp/2.0/brushes/Sketch/Pencil-02.gih
468share/gimp/2.0/brushes/Sketch/Pencil-Scratch.gbr 469share/gimp/2.0/brushes/Sketch/Pencil-Scratch.gbr
469share/gimp/2.0/brushes/Splatters/Sparks-Hose.gih 470share/gimp/2.0/brushes/Splatters/Sparks-Hose.gih
470share/gimp/2.0/brushes/Splatters/Splats-01.gih 471share/gimp/2.0/brushes/Splatters/Splats-01.gih
471share/gimp/2.0/brushes/Splatters/Splats-02.gih 472share/gimp/2.0/brushes/Splatters/Splats-02.gih
472share/gimp/2.0/brushes/Splatters/Sponge-01.gbr 473share/gimp/2.0/brushes/Splatters/Sponge-01.gbr
473share/gimp/2.0/brushes/Splatters/Sponge-02.gbr 474share/gimp/2.0/brushes/Splatters/Sponge-02.gbr
474share/gimp/2.0/brushes/Texture/Cell-01.gbr 475share/gimp/2.0/brushes/Texture/Cell-01.gbr
475share/gimp/2.0/brushes/Texture/Cell-02.gbr 476share/gimp/2.0/brushes/Texture/Cell-02.gbr
476share/gimp/2.0/brushes/Texture/Grass.gih 477share/gimp/2.0/brushes/Texture/Grass.gih
477share/gimp/2.0/brushes/Texture/Smoke.gbr 478share/gimp/2.0/brushes/Texture/Smoke.gbr
478share/gimp/2.0/brushes/Texture/Structure.gbr 479share/gimp/2.0/brushes/Texture/Structure.gbr
479share/gimp/2.0/brushes/Texture/Texture-01.gbr 480share/gimp/2.0/brushes/Texture/Texture-01.gbr
480share/gimp/2.0/brushes/Texture/Texture-02.gbr 481share/gimp/2.0/brushes/Texture/Texture-02.gbr
481share/gimp/2.0/brushes/Texture/Texture-Hose-01.gih 482share/gimp/2.0/brushes/Texture/Texture-Hose-01.gih
482share/gimp/2.0/brushes/Texture/Texture-Hose-02.gih 483share/gimp/2.0/brushes/Texture/Texture-Hose-02.gih
483share/gimp/2.0/brushes/Texture/Texture-Hose-03.gih 484share/gimp/2.0/brushes/Texture/Texture-Hose-03.gih
484share/gimp/2.0/brushes/Texture/Vegetation-01.gbr 485share/gimp/2.0/brushes/Texture/Vegetation-01.gbr
485share/gimp/2.0/brushes/Texture/Vegetation-02.gih 486share/gimp/2.0/brushes/Texture/Vegetation-02.gih
486share/gimp/2.0/brushes/gimp-obsolete-files/10x10square.gbr 487share/gimp/2.0/brushes/gimp-obsolete-files/10x10square.gbr
487share/gimp/2.0/brushes/gimp-obsolete-files/10x10squareBlur.gbr 488share/gimp/2.0/brushes/gimp-obsolete-files/10x10squareBlur.gbr
488share/gimp/2.0/brushes/gimp-obsolete-files/20x20square.gbr 489share/gimp/2.0/brushes/gimp-obsolete-files/20x20square.gbr
489share/gimp/2.0/brushes/gimp-obsolete-files/20x20squareBlur.gbr 490share/gimp/2.0/brushes/gimp-obsolete-files/20x20squareBlur.gbr
490share/gimp/2.0/brushes/gimp-obsolete-files/5x5square.gbr 491share/gimp/2.0/brushes/gimp-obsolete-files/5x5square.gbr
491share/gimp/2.0/brushes/gimp-obsolete-files/5x5squareBlur.gbr 492share/gimp/2.0/brushes/gimp-obsolete-files/5x5squareBlur.gbr
492share/gimp/2.0/brushes/gimp-obsolete-files/Calligraphic-Brush-0.vbr 493share/gimp/2.0/brushes/gimp-obsolete-files/Calligraphic-Brush-0.vbr
493share/gimp/2.0/brushes/gimp-obsolete-files/Calligraphic-Brush-1.vbr 494share/gimp/2.0/brushes/gimp-obsolete-files/Calligraphic-Brush-1.vbr
494share/gimp/2.0/brushes/gimp-obsolete-files/Calligraphic-Brush-2.vbr 495share/gimp/2.0/brushes/gimp-obsolete-files/Calligraphic-Brush-2.vbr
495share/gimp/2.0/brushes/gimp-obsolete-files/Calligraphic-Brush-3.vbr 496share/gimp/2.0/brushes/gimp-obsolete-files/Calligraphic-Brush-3.vbr
496share/gimp/2.0/brushes/gimp-obsolete-files/Circle-1.vbr 497share/gimp/2.0/brushes/gimp-obsolete-files/Circle-1.vbr
497share/gimp/2.0/brushes/gimp-obsolete-files/Circle-11.vbr 498share/gimp/2.0/brushes/gimp-obsolete-files/Circle-11.vbr
498share/gimp/2.0/brushes/gimp-obsolete-files/Circle-13.vbr 499share/gimp/2.0/brushes/gimp-obsolete-files/Circle-13.vbr
499share/gimp/2.0/brushes/gimp-obsolete-files/Circle-15.vbr 500share/gimp/2.0/brushes/gimp-obsolete-files/Circle-15.vbr
500share/gimp/2.0/brushes/gimp-obsolete-files/Circle-17.vbr 501share/gimp/2.0/brushes/gimp-obsolete-files/Circle-17.vbr
501share/gimp/2.0/brushes/gimp-obsolete-files/Circle-19.vbr 502share/gimp/2.0/brushes/gimp-obsolete-files/Circle-19.vbr
502share/gimp/2.0/brushes/gimp-obsolete-files/Circle-3.vbr 503share/gimp/2.0/brushes/gimp-obsolete-files/Circle-3.vbr
503share/gimp/2.0/brushes/gimp-obsolete-files/Circle-5.vbr 504share/gimp/2.0/brushes/gimp-obsolete-files/Circle-5.vbr
504share/gimp/2.0/brushes/gimp-obsolete-files/Circle-7.vbr 505share/gimp/2.0/brushes/gimp-obsolete-files/Circle-7.vbr
505share/gimp/2.0/brushes/gimp-obsolete-files/Circle-9.vbr 506share/gimp/2.0/brushes/gimp-obsolete-files/Circle-9.vbr
506share/gimp/2.0/brushes/gimp-obsolete-files/Circle-Fuzzy-11.vbr 507share/gimp/2.0/brushes/gimp-obsolete-files/Circle-Fuzzy-11.vbr
507share/gimp/2.0/brushes/gimp-obsolete-files/Circle-Fuzzy-13.vbr 508share/gimp/2.0/brushes/gimp-obsolete-files/Circle-Fuzzy-13.vbr
508share/gimp/2.0/brushes/gimp-obsolete-files/Circle-Fuzzy-15.vbr 509share/gimp/2.0/brushes/gimp-obsolete-files/Circle-Fuzzy-15.vbr
509share/gimp/2.0/brushes/gimp-obsolete-files/Circle-Fuzzy-17.vbr 510share/gimp/2.0/brushes/gimp-obsolete-files/Circle-Fuzzy-17.vbr
510share/gimp/2.0/brushes/gimp-obsolete-files/Circle-Fuzzy-19.vbr 511share/gimp/2.0/brushes/gimp-obsolete-files/Circle-Fuzzy-19.vbr
511share/gimp/2.0/brushes/gimp-obsolete-files/Circle-Fuzzy-3.vbr 512share/gimp/2.0/brushes/gimp-obsolete-files/Circle-Fuzzy-3.vbr
512share/gimp/2.0/brushes/gimp-obsolete-files/Circle-Fuzzy-5.vbr 513share/gimp/2.0/brushes/gimp-obsolete-files/Circle-Fuzzy-5.vbr
513share/gimp/2.0/brushes/gimp-obsolete-files/Circle-Fuzzy-7.vbr 514share/gimp/2.0/brushes/gimp-obsolete-files/Circle-Fuzzy-7.vbr
514share/gimp/2.0/brushes/gimp-obsolete-files/Circle-Fuzzy-9.vbr 515share/gimp/2.0/brushes/gimp-obsolete-files/Circle-Fuzzy-9.vbr
515share/gimp/2.0/brushes/gimp-obsolete-files/Diagonal-Star-11.vbr 516share/gimp/2.0/brushes/gimp-obsolete-files/Diagonal-Star-11.vbr
516share/gimp/2.0/brushes/gimp-obsolete-files/Diagonal-Star-17.vbr 517share/gimp/2.0/brushes/gimp-obsolete-files/Diagonal-Star-17.vbr
517share/gimp/2.0/brushes/gimp-obsolete-files/Diagonal-Star-25.vbr 518share/gimp/2.0/brushes/gimp-obsolete-files/Diagonal-Star-25.vbr
518share/gimp/2.0/brushes/gimp-obsolete-files/Grass1.gih 519share/gimp/2.0/brushes/gimp-obsolete-files/Grass1.gih
519share/gimp/2.0/brushes/gimp-obsolete-files/SketchBrush-16.gih 520share/gimp/2.0/brushes/gimp-obsolete-files/SketchBrush-16.gih
520share/gimp/2.0/brushes/gimp-obsolete-files/SketchBrush-32.gih 521share/gimp/2.0/brushes/gimp-obsolete-files/SketchBrush-32.gih
521share/gimp/2.0/brushes/gimp-obsolete-files/SketchBrush-64.gih 522share/gimp/2.0/brushes/gimp-obsolete-files/SketchBrush-64.gih
522share/gimp/2.0/brushes/gimp-obsolete-files/feltpen.gih 523share/gimp/2.0/brushes/gimp-obsolete-files/feltpen.gih
523share/gimp/2.0/brushes/gimp-obsolete-files/galaxy_small.gbr 524share/gimp/2.0/brushes/gimp-obsolete-files/galaxy_small.gbr
524share/gimp/2.0/brushes/gimp-obsolete-files/pepper.gbr 525share/gimp/2.0/brushes/gimp-obsolete-files/pepper.gbr
525share/gimp/2.0/brushes/gimp-obsolete-files/pixel.gbr 526share/gimp/2.0/brushes/gimp-obsolete-files/pixel.gbr
526share/gimp/2.0/dynamics/Basic-Dynamics.gdyn 527share/gimp/2.0/dynamics/Basic-Dynamics.gdyn
527share/gimp/2.0/dynamics/Basic/Basic-Simple.gdyn 528share/gimp/2.0/dynamics/Basic/Basic-Simple.gdyn
528share/gimp/2.0/dynamics/Basic/Dynamics-Random.gdyn 529share/gimp/2.0/dynamics/Basic/Dynamics-Random.gdyn
529share/gimp/2.0/dynamics/Basic/Negative-Size-Pressure.gdyn 530share/gimp/2.0/dynamics/Basic/Negative-Size-Pressure.gdyn
530share/gimp/2.0/dynamics/Basic/Pen-Generic.gdyn 531share/gimp/2.0/dynamics/Basic/Pen-Generic.gdyn
531share/gimp/2.0/dynamics/Basic/Pencil-Generic.gdyn 532share/gimp/2.0/dynamics/Basic/Pencil-Generic.gdyn
532share/gimp/2.0/dynamics/Basic/Pencil-Shader.gdyn 533share/gimp/2.0/dynamics/Basic/Pencil-Shader.gdyn
533share/gimp/2.0/dynamics/Basic/Pressure-Opacity.gdyn 534share/gimp/2.0/dynamics/Basic/Pressure-Opacity.gdyn
534share/gimp/2.0/dynamics/Color-From-Gradient.gdyn 535share/gimp/2.0/dynamics/Color-From-Gradient.gdyn
535share/gimp/2.0/dynamics/Dynamics-Off.gdyn 536share/gimp/2.0/dynamics/Dynamics-Off.gdyn
536share/gimp/2.0/dynamics/FX/Confetti.gdyn 537share/gimp/2.0/dynamics/FX/Confetti.gdyn
537share/gimp/2.0/dynamics/FX/Perspective.gdyn 538share/gimp/2.0/dynamics/FX/Perspective.gdyn
538share/gimp/2.0/dynamics/FX/Speed_Size_Opacity.gdyn 539share/gimp/2.0/dynamics/FX/Speed_Size_Opacity.gdyn
539share/gimp/2.0/dynamics/Fade-Tapering.gdyn 540share/gimp/2.0/dynamics/Fade-Tapering.gdyn
540share/gimp/2.0/dynamics/Random-Color.gdyn 541share/gimp/2.0/dynamics/Random-Color.gdyn
541share/gimp/2.0/dynamics/Tilt-Angle.gdyn 542share/gimp/2.0/dynamics/Tilt-Angle.gdyn
542share/gimp/2.0/dynamics/Track-Direction.gdyn 543share/gimp/2.0/dynamics/Track-Direction.gdyn
543share/gimp/2.0/dynamics/Velocity-Tapering.gdyn 544share/gimp/2.0/dynamics/Velocity-Tapering.gdyn
544share/gimp/2.0/fractalexplorer/Asteroid_Field 545share/gimp/2.0/fractalexplorer/Asteroid_Field
545share/gimp/2.0/fractalexplorer/Bar_Code_Label 546share/gimp/2.0/fractalexplorer/Bar_Code_Label
546share/gimp/2.0/fractalexplorer/Beauty_of_Nature 547share/gimp/2.0/fractalexplorer/Beauty_of_Nature
547share/gimp/2.0/fractalexplorer/Blue_Curtain 548share/gimp/2.0/fractalexplorer/Blue_Curtain
548share/gimp/2.0/fractalexplorer/Car_Track 549share/gimp/2.0/fractalexplorer/Car_Track
549share/gimp/2.0/fractalexplorer/Energetic_Diamond 550share/gimp/2.0/fractalexplorer/Energetic_Diamond
550share/gimp/2.0/fractalexplorer/Explosive 551share/gimp/2.0/fractalexplorer/Explosive
551share/gimp/2.0/fractalexplorer/Flower 552share/gimp/2.0/fractalexplorer/Flower
552share/gimp/2.0/fractalexplorer/Fragments 553share/gimp/2.0/fractalexplorer/Fragments
553share/gimp/2.0/fractalexplorer/Hemp 554share/gimp/2.0/fractalexplorer/Hemp
554share/gimp/2.0/fractalexplorer/High_Voltage 555share/gimp/2.0/fractalexplorer/High_Voltage
555share/gimp/2.0/fractalexplorer/Hoops 556share/gimp/2.0/fractalexplorer/Hoops
556share/gimp/2.0/fractalexplorer/Ice_Crystal 557share/gimp/2.0/fractalexplorer/Ice_Crystal
557share/gimp/2.0/fractalexplorer/Leaves 558share/gimp/2.0/fractalexplorer/Leaves
558share/gimp/2.0/fractalexplorer/Lightning 559share/gimp/2.0/fractalexplorer/Lightning
559share/gimp/2.0/fractalexplorer/Mandelbrot 560share/gimp/2.0/fractalexplorer/Mandelbrot
560share/gimp/2.0/fractalexplorer/Marble 561share/gimp/2.0/fractalexplorer/Marble
561share/gimp/2.0/fractalexplorer/Marble2 562share/gimp/2.0/fractalexplorer/Marble2
562share/gimp/2.0/fractalexplorer/Medusa 563share/gimp/2.0/fractalexplorer/Medusa
563share/gimp/2.0/fractalexplorer/Nautilus 564share/gimp/2.0/fractalexplorer/Nautilus
564share/gimp/2.0/fractalexplorer/Nebula 565share/gimp/2.0/fractalexplorer/Nebula
565share/gimp/2.0/fractalexplorer/Plant 566share/gimp/2.0/fractalexplorer/Plant
566share/gimp/2.0/fractalexplorer/Rose 567share/gimp/2.0/fractalexplorer/Rose
567share/gimp/2.0/fractalexplorer/Saturn 568share/gimp/2.0/fractalexplorer/Saturn
568share/gimp/2.0/fractalexplorer/Snow_Crystal 569share/gimp/2.0/fractalexplorer/Snow_Crystal
569share/gimp/2.0/fractalexplorer/Soma 570share/gimp/2.0/fractalexplorer/Soma
570share/gimp/2.0/fractalexplorer/Spark 571share/gimp/2.0/fractalexplorer/Spark
571share/gimp/2.0/fractalexplorer/Suns 572share/gimp/2.0/fractalexplorer/Suns
572share/gimp/2.0/fractalexplorer/Tentacles 573share/gimp/2.0/fractalexplorer/Tentacles
573share/gimp/2.0/fractalexplorer/The_Green_Place 574share/gimp/2.0/fractalexplorer/The_Green_Place
574share/gimp/2.0/fractalexplorer/Wave 575share/gimp/2.0/fractalexplorer/Wave
575share/gimp/2.0/fractalexplorer/Wood 576share/gimp/2.0/fractalexplorer/Wood
576share/gimp/2.0/fractalexplorer/Zooming_Circle 577share/gimp/2.0/fractalexplorer/Zooming_Circle
577share/gimp/2.0/gfig/A_star 578share/gimp/2.0/gfig/A_star
578share/gimp/2.0/gfig/curves 579share/gimp/2.0/gfig/curves
579share/gimp/2.0/gfig/polys 580share/gimp/2.0/gfig/polys
580share/gimp/2.0/gfig/ring 581share/gimp/2.0/gfig/ring
581share/gimp/2.0/gfig/ring+star 582share/gimp/2.0/gfig/ring+star
582share/gimp/2.0/gfig/simily 583share/gimp/2.0/gfig/simily
583share/gimp/2.0/gfig/spirals_and_stars 584share/gimp/2.0/gfig/spirals_and_stars
584share/gimp/2.0/gfig/sprial 585share/gimp/2.0/gfig/sprial
585share/gimp/2.0/gfig/star2 586share/gimp/2.0/gfig/star2
586share/gimp/2.0/gfig/stars 587share/gimp/2.0/gfig/stars
587share/gimp/2.0/gflare/Bright_Star 588share/gimp/2.0/gflare/Bright_Star
588share/gimp/2.0/gflare/Classic 589share/gimp/2.0/gflare/Classic
589share/gimp/2.0/gflare/Default 590share/gimp/2.0/gflare/Default
590share/gimp/2.0/gflare/Distant_Sun 591share/gimp/2.0/gflare/Distant_Sun
591share/gimp/2.0/gflare/GFlare_101 592share/gimp/2.0/gflare/GFlare_101
592share/gimp/2.0/gflare/GFlare_102 593share/gimp/2.0/gflare/GFlare_102
593share/gimp/2.0/gflare/Hidden_Planet 594share/gimp/2.0/gflare/Hidden_Planet
594share/gimp/2.0/gimpressionist/Brushes/arrow01.pgm 595share/gimp/2.0/gimpressionist/Brushes/arrow01.pgm
595share/gimp/2.0/gimpressionist/Brushes/ball.ppm 596share/gimp/2.0/gimpressionist/Brushes/ball.ppm
596share/gimp/2.0/gimpressionist/Brushes/blob.ppm 597share/gimp/2.0/gimpressionist/Brushes/blob.ppm
597share/gimp/2.0/gimpressionist/Brushes/box.ppm 598share/gimp/2.0/gimpressionist/Brushes/box.ppm
598share/gimp/2.0/gimpressionist/Brushes/chalk01.pgm 599share/gimp/2.0/gimpressionist/Brushes/chalk01.pgm
599share/gimp/2.0/gimpressionist/Brushes/cone.ppm 600share/gimp/2.0/gimpressionist/Brushes/cone.ppm
600share/gimp/2.0/gimpressionist/Brushes/crayon01.pgm 601share/gimp/2.0/gimpressionist/Brushes/crayon01.pgm
601share/gimp/2.0/gimpressionist/Brushes/crayon02.pgm 602share/gimp/2.0/gimpressionist/Brushes/crayon02.pgm
602share/gimp/2.0/gimpressionist/Brushes/crayon03.pgm 603share/gimp/2.0/gimpressionist/Brushes/crayon03.pgm
603share/gimp/2.0/gimpressionist/Brushes/crayon04.pgm 604share/gimp/2.0/gimpressionist/Brushes/crayon04.pgm
604share/gimp/2.0/gimpressionist/Brushes/crayon05.pgm 605share/gimp/2.0/gimpressionist/Brushes/crayon05.pgm
605share/gimp/2.0/gimpressionist/Brushes/crayon06.pgm 606share/gimp/2.0/gimpressionist/Brushes/crayon06.pgm
606share/gimp/2.0/gimpressionist/Brushes/crayon07.pgm 607share/gimp/2.0/gimpressionist/Brushes/crayon07.pgm
607share/gimp/2.0/gimpressionist/Brushes/crayon08.pgm 608share/gimp/2.0/gimpressionist/Brushes/crayon08.pgm
608share/gimp/2.0/gimpressionist/Brushes/defaultbrush.pgm 609share/gimp/2.0/gimpressionist/Brushes/defaultbrush.pgm
609share/gimp/2.0/gimpressionist/Brushes/dribble.pgm 610share/gimp/2.0/gimpressionist/Brushes/dribble.pgm
610share/gimp/2.0/gimpressionist/Brushes/fabric.pgm 611share/gimp/2.0/gimpressionist/Brushes/fabric.pgm
611share/gimp/2.0/gimpressionist/Brushes/fabric01.pgm 612share/gimp/2.0/gimpressionist/Brushes/fabric01.pgm
612share/gimp/2.0/gimpressionist/Brushes/fabric02.pgm 613share/gimp/2.0/gimpressionist/Brushes/fabric02.pgm
613share/gimp/2.0/gimpressionist/Brushes/fabric03.pgm 614share/gimp/2.0/gimpressionist/Brushes/fabric03.pgm
614share/gimp/2.0/gimpressionist/Brushes/flower01.pgm 615share/gimp/2.0/gimpressionist/Brushes/flower01.pgm
615share/gimp/2.0/gimpressionist/Brushes/flower02.pgm 616share/gimp/2.0/gimpressionist/Brushes/flower02.pgm
616share/gimp/2.0/gimpressionist/Brushes/flower03.pgm 617share/gimp/2.0/gimpressionist/Brushes/flower03.pgm
617share/gimp/2.0/gimpressionist/Brushes/flower04.pgm 618share/gimp/2.0/gimpressionist/Brushes/flower04.pgm
618share/gimp/2.0/gimpressionist/Brushes/grad01.pgm 619share/gimp/2.0/gimpressionist/Brushes/grad01.pgm
619share/gimp/2.0/gimpressionist/Brushes/grad02.pgm 620share/gimp/2.0/gimpressionist/Brushes/grad02.pgm
620share/gimp/2.0/gimpressionist/Brushes/grad03.pgm 621share/gimp/2.0/gimpressionist/Brushes/grad03.pgm
621share/gimp/2.0/gimpressionist/Brushes/heart.ppm 622share/gimp/2.0/gimpressionist/Brushes/heart.ppm
622share/gimp/2.0/gimpressionist/Brushes/leaf01.pgm 623share/gimp/2.0/gimpressionist/Brushes/leaf01.pgm
623share/gimp/2.0/gimpressionist/Brushes/paintbrush.pgm 624share/gimp/2.0/gimpressionist/Brushes/paintbrush.pgm
624share/gimp/2.0/gimpressionist/Brushes/paintbrush01.pgm 625share/gimp/2.0/gimpressionist/Brushes/paintbrush01.pgm
625share/gimp/2.0/gimpressionist/Brushes/paintbrush02.pgm 626share/gimp/2.0/gimpressionist/Brushes/paintbrush02.pgm
626share/gimp/2.0/gimpressionist/Brushes/paintbrush03.pgm 627share/gimp/2.0/gimpressionist/Brushes/paintbrush03.pgm
627share/gimp/2.0/gimpressionist/Brushes/paintbrush04.pgm 628share/gimp/2.0/gimpressionist/Brushes/paintbrush04.pgm
628share/gimp/2.0/gimpressionist/Brushes/paper01.pgm 629share/gimp/2.0/gimpressionist/Brushes/paper01.pgm
629share/gimp/2.0/gimpressionist/Brushes/paper02.pgm 630share/gimp/2.0/gimpressionist/Brushes/paper02.pgm
630share/gimp/2.0/gimpressionist/Brushes/paper03.pgm 631share/gimp/2.0/gimpressionist/Brushes/paper03.pgm
631share/gimp/2.0/gimpressionist/Brushes/paper04.pgm 632share/gimp/2.0/gimpressionist/Brushes/paper04.pgm
632share/gimp/2.0/gimpressionist/Brushes/pentagram.pgm 633share/gimp/2.0/gimpressionist/Brushes/pentagram.pgm
633share/gimp/2.0/gimpressionist/Brushes/scribble.pgm 634share/gimp/2.0/gimpressionist/Brushes/scribble.pgm
634share/gimp/2.0/gimpressionist/Brushes/shape01.pgm 635share/gimp/2.0/gimpressionist/Brushes/shape01.pgm
635share/gimp/2.0/gimpressionist/Brushes/shape02.pgm 636share/gimp/2.0/gimpressionist/Brushes/shape02.pgm
636share/gimp/2.0/gimpressionist/Brushes/shape03.pgm 637share/gimp/2.0/gimpressionist/Brushes/shape03.pgm
637share/gimp/2.0/gimpressionist/Brushes/shape04.pgm 638share/gimp/2.0/gimpressionist/Brushes/shape04.pgm
638share/gimp/2.0/gimpressionist/Brushes/snow1.pgm 639share/gimp/2.0/gimpressionist/Brushes/snow1.pgm
639share/gimp/2.0/gimpressionist/Brushes/sphere.ppm 640share/gimp/2.0/gimpressionist/Brushes/sphere.ppm
640share/gimp/2.0/gimpressionist/Brushes/splat1.pgm 641share/gimp/2.0/gimpressionist/Brushes/splat1.pgm
641share/gimp/2.0/gimpressionist/Brushes/splat2.pgm 642share/gimp/2.0/gimpressionist/Brushes/splat2.pgm
642share/gimp/2.0/gimpressionist/Brushes/splat3.pgm 643share/gimp/2.0/gimpressionist/Brushes/splat3.pgm
643share/gimp/2.0/gimpressionist/Brushes/spunge01.pgm 644share/gimp/2.0/gimpressionist/Brushes/spunge01.pgm
644share/gimp/2.0/gimpressionist/Brushes/spunge02.pgm 645share/gimp/2.0/gimpressionist/Brushes/spunge02.pgm
645share/gimp/2.0/gimpressionist/Brushes/spunge03.pgm 646share/gimp/2.0/gimpressionist/Brushes/spunge03.pgm
646share/gimp/2.0/gimpressionist/Brushes/spunge04.pgm 647share/gimp/2.0/gimpressionist/Brushes/spunge04.pgm
647share/gimp/2.0/gimpressionist/Brushes/spunge05.pgm 648share/gimp/2.0/gimpressionist/Brushes/spunge05.pgm
648share/gimp/2.0/gimpressionist/Brushes/strange01.pgm 649share/gimp/2.0/gimpressionist/Brushes/strange01.pgm
649share/gimp/2.0/gimpressionist/Brushes/thegimp.pgm 650share/gimp/2.0/gimpressionist/Brushes/thegimp.pgm
650share/gimp/2.0/gimpressionist/Brushes/torus.ppm 651share/gimp/2.0/gimpressionist/Brushes/torus.ppm
651share/gimp/2.0/gimpressionist/Brushes/wavy.pgm 652share/gimp/2.0/gimpressionist/Brushes/wavy.pgm
652share/gimp/2.0/gimpressionist/Brushes/weave.pgm 653share/gimp/2.0/gimpressionist/Brushes/weave.pgm
653share/gimp/2.0/gimpressionist/Brushes/worm.pgm 654share/gimp/2.0/gimpressionist/Brushes/worm.pgm
654share/gimp/2.0/gimpressionist/Paper/bricks.pgm 655share/gimp/2.0/gimpressionist/Paper/bricks.pgm
655share/gimp/2.0/gimpressionist/Paper/bricks2.pgm 656share/gimp/2.0/gimpressionist/Paper/bricks2.pgm
656share/gimp/2.0/gimpressionist/Paper/burlap.pgm 657share/gimp/2.0/gimpressionist/Paper/burlap.pgm
657share/gimp/2.0/gimpressionist/Paper/canvas2.pgm 658share/gimp/2.0/gimpressionist/Paper/canvas2.pgm
658share/gimp/2.0/gimpressionist/Paper/defaultpaper.pgm 659share/gimp/2.0/gimpressionist/Paper/defaultpaper.pgm
659share/gimp/2.0/gimpressionist/Paper/marble.pgm 660share/gimp/2.0/gimpressionist/Paper/marble.pgm
660share/gimp/2.0/gimpressionist/Paper/marble2.pgm 661share/gimp/2.0/gimpressionist/Paper/marble2.pgm
661share/gimp/2.0/gimpressionist/Paper/stone.pgm 662share/gimp/2.0/gimpressionist/Paper/stone.pgm
662share/gimp/2.0/gimpressionist/Paper/struc.pgm 663share/gimp/2.0/gimpressionist/Paper/struc.pgm
663share/gimp/2.0/gimpressionist/Presets/ApplyCanvas 664share/gimp/2.0/gimpressionist/Presets/ApplyCanvas
664share/gimp/2.0/gimpressionist/Presets/Ballpark 665share/gimp/2.0/gimpressionist/Presets/Ballpark
665share/gimp/2.0/gimpressionist/Presets/Canvas 666share/gimp/2.0/gimpressionist/Presets/Canvas
666share/gimp/2.0/gimpressionist/Presets/Crosshatch 667share/gimp/2.0/gimpressionist/Presets/Crosshatch
667share/gimp/2.0/gimpressionist/Presets/Cubism 668share/gimp/2.0/gimpressionist/Presets/Cubism
668share/gimp/2.0/gimpressionist/Presets/Dotify 669share/gimp/2.0/gimpressionist/Presets/Dotify
669share/gimp/2.0/gimpressionist/Presets/Embroidery 670share/gimp/2.0/gimpressionist/Presets/Embroidery
670share/gimp/2.0/gimpressionist/Presets/Feathers 671share/gimp/2.0/gimpressionist/Presets/Feathers
671share/gimp/2.0/gimpressionist/Presets/Felt-marker 672share/gimp/2.0/gimpressionist/Presets/Felt-marker
672share/gimp/2.0/gimpressionist/Presets/Flowerbed 673share/gimp/2.0/gimpressionist/Presets/Flowerbed
673share/gimp/2.0/gimpressionist/Presets/Furry 674share/gimp/2.0/gimpressionist/Presets/Furry
674share/gimp/2.0/gimpressionist/Presets/Line-art 675share/gimp/2.0/gimpressionist/Presets/Line-art
675share/gimp/2.0/gimpressionist/Presets/Line-art-2 676share/gimp/2.0/gimpressionist/Presets/Line-art-2
676share/gimp/2.0/gimpressionist/Presets/Maggot-invasion 677share/gimp/2.0/gimpressionist/Presets/Maggot-invasion
677share/gimp/2.0/gimpressionist/Presets/MarbleMadness 678share/gimp/2.0/gimpressionist/Presets/MarbleMadness
678share/gimp/2.0/gimpressionist/Presets/Mossy 679share/gimp/2.0/gimpressionist/Presets/Mossy
679share/gimp/2.0/gimpressionist/Presets/Painted_Rock 680share/gimp/2.0/gimpressionist/Presets/Painted_Rock
680share/gimp/2.0/gimpressionist/Presets/Parquette 681share/gimp/2.0/gimpressionist/Presets/Parquette
681share/gimp/2.0/gimpressionist/Presets/Patchwork 682share/gimp/2.0/gimpressionist/Presets/Patchwork
682share/gimp/2.0/gimpressionist/Presets/Ringworks 683share/gimp/2.0/gimpressionist/Presets/Ringworks
683share/gimp/2.0/gimpressionist/Presets/Sample 684share/gimp/2.0/gimpressionist/Presets/Sample
684share/gimp/2.0/gimpressionist/Presets/Smash 685share/gimp/2.0/gimpressionist/Presets/Smash
685share/gimp/2.0/gimpressionist/Presets/Straws 686share/gimp/2.0/gimpressionist/Presets/Straws
686share/gimp/2.0/gimpressionist/Presets/Weave 687share/gimp/2.0/gimpressionist/Presets/Weave
687share/gimp/2.0/gimpressionist/Presets/Wormcan 688share/gimp/2.0/gimpressionist/Presets/Wormcan
688share/gimp/2.0/gradients/Abstract_1.ggr 689share/gimp/2.0/gradients/Abstract_1.ggr
689share/gimp/2.0/gradients/Abstract_2.ggr 690share/gimp/2.0/gradients/Abstract_2.ggr
690share/gimp/2.0/gradients/Abstract_3.ggr 691share/gimp/2.0/gradients/Abstract_3.ggr
691share/gimp/2.0/gradients/Aneurism.ggr 692share/gimp/2.0/gradients/Aneurism.ggr
692share/gimp/2.0/gradients/Blinds.ggr 693share/gimp/2.0/gradients/Blinds.ggr
693share/gimp/2.0/gradients/Blue_Green.ggr 694share/gimp/2.0/gradients/Blue_Green.ggr
694share/gimp/2.0/gradients/Browns.ggr 695share/gimp/2.0/gradients/Browns.ggr
695share/gimp/2.0/gradients/Brushed_Aluminium.ggr 696share/gimp/2.0/gradients/Brushed_Aluminium.ggr
696share/gimp/2.0/gradients/Burning_Paper.ggr 697share/gimp/2.0/gradients/Burning_Paper.ggr
697share/gimp/2.0/gradients/Burning_Transparency.ggr 698share/gimp/2.0/gradients/Burning_Transparency.ggr
698share/gimp/2.0/gradients/CD.ggr 699share/gimp/2.0/gradients/CD.ggr
699share/gimp/2.0/gradients/CD_Half.ggr 700share/gimp/2.0/gradients/CD_Half.ggr
700share/gimp/2.0/gradients/Caribbean_Blues.ggr 701share/gimp/2.0/gradients/Caribbean_Blues.ggr
701share/gimp/2.0/gradients/Coffee.ggr 702share/gimp/2.0/gradients/Coffee.ggr
702share/gimp/2.0/gradients/Cold_Steel.ggr 703share/gimp/2.0/gradients/Cold_Steel.ggr
703share/gimp/2.0/gradients/Cold_Steel_2.ggr 704share/gimp/2.0/gradients/Cold_Steel_2.ggr
704share/gimp/2.0/gradients/Crown_molding.ggr 705share/gimp/2.0/gradients/Crown_molding.ggr
705share/gimp/2.0/gradients/Dark_1.ggr 706share/gimp/2.0/gradients/Dark_1.ggr
706share/gimp/2.0/gradients/Deep_Sea.ggr 707share/gimp/2.0/gradients/Deep_Sea.ggr
707share/gimp/2.0/gradients/Default.ggr 708share/gimp/2.0/gradients/Default.ggr
708share/gimp/2.0/gradients/Flare_Glow_Angular_1.ggr 709share/gimp/2.0/gradients/Flare_Glow_Angular_1.ggr
709share/gimp/2.0/gradients/Flare_Glow_Radial_1.ggr 710share/gimp/2.0/gradients/Flare_Glow_Radial_1.ggr
710share/gimp/2.0/gradients/Flare_Glow_Radial_2.ggr 711share/gimp/2.0/gradients/Flare_Glow_Radial_2.ggr
711share/gimp/2.0/gradients/Flare_Glow_Radial_3.ggr 712share/gimp/2.0/gradients/Flare_Glow_Radial_3.ggr
712share/gimp/2.0/gradients/Flare_Glow_Radial_4.ggr 713share/gimp/2.0/gradients/Flare_Glow_Radial_4.ggr
713share/gimp/2.0/gradients/Flare_Radial_101.ggr 714share/gimp/2.0/gradients/Flare_Radial_101.ggr
714share/gimp/2.0/gradients/Flare_Radial_102.ggr 715share/gimp/2.0/gradients/Flare_Radial_102.ggr
715share/gimp/2.0/gradients/Flare_Radial_103.ggr 716share/gimp/2.0/gradients/Flare_Radial_103.ggr
716share/gimp/2.0/gradients/Flare_Rays_Radial_1.ggr 717share/gimp/2.0/gradients/Flare_Rays_Radial_1.ggr
717share/gimp/2.0/gradients/Flare_Rays_Radial_2.ggr 718share/gimp/2.0/gradients/Flare_Rays_Radial_2.ggr
718share/gimp/2.0/gradients/Flare_Rays_Size_1.ggr 719share/gimp/2.0/gradients/Flare_Rays_Size_1.ggr
719share/gimp/2.0/gradients/Flare_Sizefac_101.ggr 720share/gimp/2.0/gradients/Flare_Sizefac_101.ggr
720share/gimp/2.0/gradients/Four_bars.ggr 721share/gimp/2.0/gradients/Four_bars.ggr
721share/gimp/2.0/gradients/Full_saturation_spectrum_CCW.ggr 722share/gimp/2.0/gradients/Full_saturation_spectrum_CCW.ggr
722share/gimp/2.0/gradients/Full_saturation_spectrum_CW.ggr 723share/gimp/2.0/gradients/Full_saturation_spectrum_CW.ggr
723share/gimp/2.0/gradients/Golden.ggr 724share/gimp/2.0/gradients/Golden.ggr
724share/gimp/2.0/gradients/Greens.ggr 725share/gimp/2.0/gradients/Greens.ggr
725share/gimp/2.0/gradients/Horizon_1.ggr 726share/gimp/2.0/gradients/Horizon_1.ggr
726share/gimp/2.0/gradients/Horizon_2.ggr 727share/gimp/2.0/gradients/Horizon_2.ggr
727share/gimp/2.0/gradients/Incandescent.ggr 728share/gimp/2.0/gradients/Incandescent.ggr
728share/gimp/2.0/gradients/Land_1.ggr 729share/gimp/2.0/gradients/Land_1.ggr
729share/gimp/2.0/gradients/Land_and_Sea.ggr 730share/gimp/2.0/gradients/Land_and_Sea.ggr
730share/gimp/2.0/gradients/Metallic_Something.ggr 731share/gimp/2.0/gradients/Metallic_Something.ggr
731share/gimp/2.0/gradients/Nauseating_Headache.ggr 732share/gimp/2.0/gradients/Nauseating_Headache.ggr
732share/gimp/2.0/gradients/Neon_Cyan.ggr 733share/gimp/2.0/gradients/Neon_Cyan.ggr
733share/gimp/2.0/gradients/Neon_Green.ggr 734share/gimp/2.0/gradients/Neon_Green.ggr
734share/gimp/2.0/gradients/Neon_Yellow.ggr 735share/gimp/2.0/gradients/Neon_Yellow.ggr
735share/gimp/2.0/gradients/Pastel_Rainbow.ggr 736share/gimp/2.0/gradients/Pastel_Rainbow.ggr
736share/gimp/2.0/gradients/Pastels.ggr 737share/gimp/2.0/gradients/Pastels.ggr
737share/gimp/2.0/gradients/Purples.ggr 738share/gimp/2.0/gradients/Purples.ggr
738share/gimp/2.0/gradients/Radial_Eyeball_Blue.ggr 739share/gimp/2.0/gradients/Radial_Eyeball_Blue.ggr
739share/gimp/2.0/gradients/Radial_Eyeball_Brown.ggr 740share/gimp/2.0/gradients/Radial_Eyeball_Brown.ggr
740share/gimp/2.0/gradients/Radial_Eyeball_Green.ggr 741share/gimp/2.0/gradients/Radial_Eyeball_Green.ggr
741share/gimp/2.0/gradients/Radial_Glow_1.ggr 742share/gimp/2.0/gradients/Radial_Glow_1.ggr
742share/gimp/2.0/gradients/Radial_Rainbow_Hoop.ggr 743share/gimp/2.0/gradients/Radial_Rainbow_Hoop.ggr
743share/gimp/2.0/gradients/Rounded_edge.ggr 744share/gimp/2.0/gradients/Rounded_edge.ggr
744share/gimp/2.0/gradients/Shadows_1.ggr 745share/gimp/2.0/gradients/Shadows_1.ggr
745share/gimp/2.0/gradients/Shadows_2.ggr 746share/gimp/2.0/gradients/Shadows_2.ggr
746share/gimp/2.0/gradients/Shadows_3.ggr 747share/gimp/2.0/gradients/Shadows_3.ggr
747share/gimp/2.0/gradients/Skyline.ggr 748share/gimp/2.0/gradients/Skyline.ggr
748share/gimp/2.0/gradients/Skyline_polluted.ggr 749share/gimp/2.0/gradients/Skyline_polluted.ggr
749share/gimp/2.0/gradients/Square_Wood_Frame.ggr 750share/gimp/2.0/gradients/Square_Wood_Frame.ggr
750share/gimp/2.0/gradients/Sunrise.ggr 751share/gimp/2.0/gradients/Sunrise.ggr
751share/gimp/2.0/gradients/Three_bars_sin.ggr 752share/gimp/2.0/gradients/Three_bars_sin.ggr
752share/gimp/2.0/gradients/Tropical_Colors.ggr 753share/gimp/2.0/gradients/Tropical_Colors.ggr
753share/gimp/2.0/gradients/Tube_Red.ggr 754share/gimp/2.0/gradients/Tube_Red.ggr
754share/gimp/2.0/gradients/Wood_1.ggr 755share/gimp/2.0/gradients/Wood_1.ggr
755share/gimp/2.0/gradients/Wood_2.ggr 756share/gimp/2.0/gradients/Wood_2.ggr
756share/gimp/2.0/gradients/Yellow_Contrast.ggr 757share/gimp/2.0/gradients/Yellow_Contrast.ggr
757share/gimp/2.0/gradients/Yellow_Orange.ggr 758share/gimp/2.0/gradients/Yellow_Orange.ggr
758share/gimp/2.0/gradients/gimp-obsolete-files/French_flag.ggr 759share/gimp/2.0/gradients/gimp-obsolete-files/French_flag.ggr
759share/gimp/2.0/gradients/gimp-obsolete-files/French_flag_smooth.ggr 760share/gimp/2.0/gradients/gimp-obsolete-files/French_flag_smooth.ggr
760share/gimp/2.0/gradients/gimp-obsolete-files/German_flag.ggr 761share/gimp/2.0/gradients/gimp-obsolete-files/German_flag.ggr
761share/gimp/2.0/gradients/gimp-obsolete-files/German_flag_smooth.ggr 762share/gimp/2.0/gradients/gimp-obsolete-files/German_flag_smooth.ggr
762share/gimp/2.0/gradients/gimp-obsolete-files/Mexican_flag.ggr 763share/gimp/2.0/gradients/gimp-obsolete-files/Mexican_flag.ggr
763share/gimp/2.0/gradients/gimp-obsolete-files/Mexican_flag_smooth.ggr 764share/gimp/2.0/gradients/gimp-obsolete-files/Mexican_flag_smooth.ggr
764share/gimp/2.0/gradients/gimp-obsolete-files/Romanian_flag.ggr 765share/gimp/2.0/gradients/gimp-obsolete-files/Romanian_flag.ggr
765share/gimp/2.0/gradients/gimp-obsolete-files/Romanian_flag_smooth.ggr 766share/gimp/2.0/gradients/gimp-obsolete-files/Romanian_flag_smooth.ggr
766share/gimp/2.0/images/gimp-logo.png 767share/gimp/2.0/images/gimp-logo.png
767share/gimp/2.0/images/gimp-splash.png 768share/gimp/2.0/images/gimp-splash.png
768share/gimp/2.0/images/wilber.png 769share/gimp/2.0/images/wilber.png
769share/gimp/2.0/menus/brush-editor-menu.xml 770share/gimp/2.0/menus/brush-editor-menu.xml
770share/gimp/2.0/menus/brushes-menu.xml 771share/gimp/2.0/menus/brushes-menu.xml
771share/gimp/2.0/menus/buffers-menu.xml 772share/gimp/2.0/menus/buffers-menu.xml
772share/gimp/2.0/menus/channels-menu.xml 773share/gimp/2.0/menus/channels-menu.xml
773share/gimp/2.0/menus/colormap-menu.xml 774share/gimp/2.0/menus/colormap-menu.xml
774share/gimp/2.0/menus/cursor-info-menu.xml 775share/gimp/2.0/menus/cursor-info-menu.xml
775share/gimp/2.0/menus/dockable-menu.xml 776share/gimp/2.0/menus/dockable-menu.xml
776share/gimp/2.0/menus/documents-menu.xml 777share/gimp/2.0/menus/documents-menu.xml
777share/gimp/2.0/menus/dynamics-editor-menu.xml 778share/gimp/2.0/menus/dynamics-editor-menu.xml
778share/gimp/2.0/menus/dynamics-menu.xml 779share/gimp/2.0/menus/dynamics-menu.xml
779share/gimp/2.0/menus/error-console-menu.xml 780share/gimp/2.0/menus/error-console-menu.xml
780share/gimp/2.0/menus/fonts-menu.xml 781share/gimp/2.0/menus/fonts-menu.xml
781share/gimp/2.0/menus/gradient-editor-menu.xml 782share/gimp/2.0/menus/gradient-editor-menu.xml
782share/gimp/2.0/menus/gradients-menu.xml 783share/gimp/2.0/menus/gradients-menu.xml
783share/gimp/2.0/menus/image-menu.xml 784share/gimp/2.0/menus/image-menu.xml
784share/gimp/2.0/menus/images-menu.xml 785share/gimp/2.0/menus/images-menu.xml
785share/gimp/2.0/menus/layers-menu.xml 786share/gimp/2.0/menus/layers-menu.xml
786share/gimp/2.0/menus/palette-editor-menu.xml 787share/gimp/2.0/menus/palette-editor-menu.xml
787share/gimp/2.0/menus/palettes-menu.xml 788share/gimp/2.0/menus/palettes-menu.xml
788share/gimp/2.0/menus/patterns-menu.xml 789share/gimp/2.0/menus/patterns-menu.xml
789share/gimp/2.0/menus/quick-mask-menu.xml 790share/gimp/2.0/menus/quick-mask-menu.xml
790share/gimp/2.0/menus/sample-points-menu.xml 791share/gimp/2.0/menus/sample-points-menu.xml
791share/gimp/2.0/menus/selection-menu.xml 792share/gimp/2.0/menus/selection-menu.xml
792share/gimp/2.0/menus/templates-menu.xml 793share/gimp/2.0/menus/templates-menu.xml
793share/gimp/2.0/menus/text-editor-toolbar.xml 794share/gimp/2.0/menus/text-editor-toolbar.xml
794share/gimp/2.0/menus/text-tool-menu.xml 795share/gimp/2.0/menus/text-tool-menu.xml
795share/gimp/2.0/menus/tool-options-menu.xml 796share/gimp/2.0/menus/tool-options-menu.xml
796share/gimp/2.0/menus/tool-preset-editor-menu.xml 797share/gimp/2.0/menus/tool-preset-editor-menu.xml
797share/gimp/2.0/menus/tool-presets-menu.xml 798share/gimp/2.0/menus/tool-presets-menu.xml
798share/gimp/2.0/menus/undo-menu.xml 799share/gimp/2.0/menus/undo-menu.xml
799share/gimp/2.0/menus/vectors-menu.xml 800share/gimp/2.0/menus/vectors-menu.xml
800share/gimp/2.0/palettes/Bears.gpl 801share/gimp/2.0/palettes/Bears.gpl
801share/gimp/2.0/palettes/Bgold.gpl 802share/gimp/2.0/palettes/Bgold.gpl
802share/gimp/2.0/palettes/Blues.gpl 803share/gimp/2.0/palettes/Blues.gpl
803share/gimp/2.0/palettes/Borders.gpl 804share/gimp/2.0/palettes/Borders.gpl
804share/gimp/2.0/palettes/Browns_And_Yellows.gpl 805share/gimp/2.0/palettes/Browns_And_Yellows.gpl
805share/gimp/2.0/palettes/Caramel.gpl 806share/gimp/2.0/palettes/Caramel.gpl
806share/gimp/2.0/palettes/Cascade.gpl 807share/gimp/2.0/palettes/Cascade.gpl
807share/gimp/2.0/palettes/China.gpl 808share/gimp/2.0/palettes/China.gpl
808share/gimp/2.0/palettes/Coldfire.gpl 809share/gimp/2.0/palettes/Coldfire.gpl
809share/gimp/2.0/palettes/Cool_Colors.gpl 810share/gimp/2.0/palettes/Cool_Colors.gpl
810share/gimp/2.0/palettes/Cranes.gpl 811share/gimp/2.0/palettes/Cranes.gpl
811share/gimp/2.0/palettes/Dark_pastels.gpl 812share/gimp/2.0/palettes/Dark_pastels.gpl
812share/gimp/2.0/palettes/Default.gpl 813share/gimp/2.0/palettes/Default.gpl
813share/gimp/2.0/palettes/Ega.gpl 814share/gimp/2.0/palettes/Ega.gpl
814share/gimp/2.0/palettes/Firecode.gpl 815share/gimp/2.0/palettes/Firecode.gpl
815share/gimp/2.0/palettes/Gold.gpl 816share/gimp/2.0/palettes/Gold.gpl
816share/gimp/2.0/palettes/GrayViolet.gpl 817share/gimp/2.0/palettes/GrayViolet.gpl
817share/gimp/2.0/palettes/Grayblue.gpl 818share/gimp/2.0/palettes/Grayblue.gpl
818share/gimp/2.0/palettes/Grays.gpl 819share/gimp/2.0/palettes/Grays.gpl
819share/gimp/2.0/palettes/Greens.gpl 820share/gimp/2.0/palettes/Greens.gpl
820share/gimp/2.0/palettes/Hilite.gpl 821share/gimp/2.0/palettes/Hilite.gpl
821share/gimp/2.0/palettes/Khaki.gpl 822share/gimp/2.0/palettes/Khaki.gpl
822share/gimp/2.0/palettes/Lights.gpl 823share/gimp/2.0/palettes/Lights.gpl
823share/gimp/2.0/palettes/Muted.gpl 824share/gimp/2.0/palettes/Muted.gpl
824share/gimp/2.0/palettes/Named_Colors.gpl 825share/gimp/2.0/palettes/Named_Colors.gpl
825share/gimp/2.0/palettes/News3.gpl 826share/gimp/2.0/palettes/News3.gpl
826share/gimp/2.0/palettes/Op2.gpl 827share/gimp/2.0/palettes/Op2.gpl
827share/gimp/2.0/palettes/Paintjet.gpl 828share/gimp/2.0/palettes/Paintjet.gpl
828share/gimp/2.0/palettes/Pastels.gpl 829share/gimp/2.0/palettes/Pastels.gpl
829share/gimp/2.0/palettes/Plasma.gpl 830share/gimp/2.0/palettes/Plasma.gpl
830share/gimp/2.0/palettes/Reds.gpl 831share/gimp/2.0/palettes/Reds.gpl
831share/gimp/2.0/palettes/Reds_And_Purples.gpl 832share/gimp/2.0/palettes/Reds_And_Purples.gpl
832share/gimp/2.0/palettes/Royal.gpl 833share/gimp/2.0/palettes/Royal.gpl
833share/gimp/2.0/palettes/Tango.gpl 834share/gimp/2.0/palettes/Tango.gpl
834share/gimp/2.0/palettes/Topographic.gpl 835share/gimp/2.0/palettes/Topographic.gpl
835share/gimp/2.0/palettes/Visibone.gpl 836share/gimp/2.0/palettes/Visibone.gpl
836share/gimp/2.0/palettes/Visibone_2.gpl 837share/gimp/2.0/palettes/Visibone_2.gpl
837share/gimp/2.0/palettes/Volcano.gpl 838share/gimp/2.0/palettes/Volcano.gpl
838share/gimp/2.0/palettes/Warm_Colors.gpl 839share/gimp/2.0/palettes/Warm_Colors.gpl
839share/gimp/2.0/palettes/Web.gpl 840share/gimp/2.0/palettes/Web.gpl
840share/gimp/2.0/patterns/3dgreen.pat 841share/gimp/2.0/patterns/3dgreen.pat
841share/gimp/2.0/patterns/Craters.pat 842share/gimp/2.0/patterns/Craters.pat
842share/gimp/2.0/patterns/Moonfoot.pat 843share/gimp/2.0/patterns/Moonfoot.pat
843share/gimp/2.0/patterns/Stripes1px.pat 844share/gimp/2.0/patterns/Stripes1px.pat
844share/gimp/2.0/patterns/Stripes2px.pat 845share/gimp/2.0/patterns/Stripes2px.pat
845share/gimp/2.0/patterns/amethyst.pat 846share/gimp/2.0/patterns/amethyst.pat
846share/gimp/2.0/patterns/bark.pat 847share/gimp/2.0/patterns/bark.pat
847share/gimp/2.0/patterns/blue.pat 848share/gimp/2.0/patterns/blue.pat
848share/gimp/2.0/patterns/bluegrid.pat 849share/gimp/2.0/patterns/bluegrid.pat
849share/gimp/2.0/patterns/bluesquares.pat 850share/gimp/2.0/patterns/bluesquares.pat
850share/gimp/2.0/patterns/blueweb.pat 851share/gimp/2.0/patterns/blueweb.pat
851share/gimp/2.0/patterns/brick.pat 852share/gimp/2.0/patterns/brick.pat
852share/gimp/2.0/patterns/burlap.pat 853share/gimp/2.0/patterns/burlap.pat
853share/gimp/2.0/patterns/burlwood.pat 854share/gimp/2.0/patterns/burlwood.pat
854share/gimp/2.0/patterns/choc_swirl.pat 855share/gimp/2.0/patterns/choc_swirl.pat
855share/gimp/2.0/patterns/corkboard.pat 856share/gimp/2.0/patterns/corkboard.pat
856share/gimp/2.0/patterns/cracked.pat 857share/gimp/2.0/patterns/cracked.pat
857share/gimp/2.0/patterns/crinklepaper.pat 858share/gimp/2.0/patterns/crinklepaper.pat
858share/gimp/2.0/patterns/electric.pat 859share/gimp/2.0/patterns/electric.pat
859share/gimp/2.0/patterns/fibers.pat 860share/gimp/2.0/patterns/fibers.pat
860share/gimp/2.0/patterns/granite1.pat 861share/gimp/2.0/patterns/granite1.pat
861share/gimp/2.0/patterns/ground1.pat 862share/gimp/2.0/patterns/ground1.pat
862share/gimp/2.0/patterns/ice.pat 863share/gimp/2.0/patterns/ice.pat
863share/gimp/2.0/patterns/java.pat 864share/gimp/2.0/patterns/java.pat
864share/gimp/2.0/patterns/leather.pat 865share/gimp/2.0/patterns/leather.pat
865share/gimp/2.0/patterns/leaves.pat 866share/gimp/2.0/patterns/leaves.pat
866share/gimp/2.0/patterns/leopard.pat 867share/gimp/2.0/patterns/leopard.pat
867share/gimp/2.0/patterns/lightning.pat 868share/gimp/2.0/patterns/lightning.pat
868share/gimp/2.0/patterns/marble1.pat 869share/gimp/2.0/patterns/marble1.pat
869share/gimp/2.0/patterns/marble2.pat 870share/gimp/2.0/patterns/marble2.pat
870share/gimp/2.0/patterns/marble3.pat 871share/gimp/2.0/patterns/marble3.pat
871share/gimp/2.0/patterns/nops.pat 872share/gimp/2.0/patterns/nops.pat
872share/gimp/2.0/patterns/paper.pat 873share/gimp/2.0/patterns/paper.pat
873share/gimp/2.0/patterns/parque1.pat 874share/gimp/2.0/patterns/parque1.pat
874share/gimp/2.0/patterns/parque2.pat 875share/gimp/2.0/patterns/parque2.pat
875share/gimp/2.0/patterns/parque3.pat 876share/gimp/2.0/patterns/parque3.pat
876share/gimp/2.0/patterns/pastel.pat 877share/gimp/2.0/patterns/pastel.pat
877share/gimp/2.0/patterns/pine.pat 878share/gimp/2.0/patterns/pine.pat
878share/gimp/2.0/patterns/pink_marble.pat 879share/gimp/2.0/patterns/pink_marble.pat
879share/gimp/2.0/patterns/pool.pat 880share/gimp/2.0/patterns/pool.pat
880share/gimp/2.0/patterns/qube1.pat 881share/gimp/2.0/patterns/qube1.pat
881share/gimp/2.0/patterns/rain.pat 882share/gimp/2.0/patterns/rain.pat
882share/gimp/2.0/patterns/recessed.pat 883share/gimp/2.0/patterns/recessed.pat
883share/gimp/2.0/patterns/redcube.pat 884share/gimp/2.0/patterns/redcube.pat
884share/gimp/2.0/patterns/rock.pat 885share/gimp/2.0/patterns/rock.pat
885share/gimp/2.0/patterns/sky.pat 886share/gimp/2.0/patterns/sky.pat
886share/gimp/2.0/patterns/slate.pat 887share/gimp/2.0/patterns/slate.pat
887share/gimp/2.0/patterns/sm_squares.pat 888share/gimp/2.0/patterns/sm_squares.pat
888share/gimp/2.0/patterns/starfield.pat 889share/gimp/2.0/patterns/starfield.pat
889share/gimp/2.0/patterns/stone33.pat 890share/gimp/2.0/patterns/stone33.pat
890share/gimp/2.0/patterns/terra.pat 891share/gimp/2.0/patterns/terra.pat
891share/gimp/2.0/patterns/walnut.pat 892share/gimp/2.0/patterns/walnut.pat
892share/gimp/2.0/patterns/warning.pat 893share/gimp/2.0/patterns/warning.pat
893share/gimp/2.0/patterns/wood1.pat 894share/gimp/2.0/patterns/wood1.pat
894share/gimp/2.0/patterns/wood2.pat 895share/gimp/2.0/patterns/wood2.pat
895share/gimp/2.0/patterns/wood3.pat 896share/gimp/2.0/patterns/wood3.pat
896share/gimp/2.0/patterns/wood4.pat 897share/gimp/2.0/patterns/wood4.pat
897share/gimp/2.0/patterns/wood5.pat 898share/gimp/2.0/patterns/wood5.pat
898share/gimp/2.0/scripts/3d-outline.scm 899share/gimp/2.0/scripts/3d-outline.scm
899share/gimp/2.0/scripts/3dTruchet.scm 900share/gimp/2.0/scripts/3dTruchet.scm
900share/gimp/2.0/scripts/add-bevel.scm 901share/gimp/2.0/scripts/add-bevel.scm
901share/gimp/2.0/scripts/addborder.scm 902share/gimp/2.0/scripts/addborder.scm
902share/gimp/2.0/scripts/alien-glow-arrow.scm 903share/gimp/2.0/scripts/alien-glow-arrow.scm
903share/gimp/2.0/scripts/alien-glow-bar.scm 904share/gimp/2.0/scripts/alien-glow-bar.scm
904share/gimp/2.0/scripts/alien-glow-bullet.scm 905share/gimp/2.0/scripts/alien-glow-bullet.scm
905share/gimp/2.0/scripts/alien-glow-button.scm 906share/gimp/2.0/scripts/alien-glow-button.scm
906share/gimp/2.0/scripts/alien-glow-logo.scm 907share/gimp/2.0/scripts/alien-glow-logo.scm
907share/gimp/2.0/scripts/alien-neon-logo.scm 908share/gimp/2.0/scripts/alien-neon-logo.scm
908share/gimp/2.0/scripts/basic1-logo.scm 909share/gimp/2.0/scripts/basic1-logo.scm
909share/gimp/2.0/scripts/basic2-logo.scm 910share/gimp/2.0/scripts/basic2-logo.scm
910share/gimp/2.0/scripts/beveled-button.scm 911share/gimp/2.0/scripts/beveled-button.scm
911share/gimp/2.0/scripts/beveled-pattern-arrow.scm 912share/gimp/2.0/scripts/beveled-pattern-arrow.scm
912share/gimp/2.0/scripts/beveled-pattern-bullet.scm 913share/gimp/2.0/scripts/beveled-pattern-bullet.scm
913share/gimp/2.0/scripts/beveled-pattern-button.scm 914share/gimp/2.0/scripts/beveled-pattern-button.scm
914share/gimp/2.0/scripts/beveled-pattern-heading.scm 915share/gimp/2.0/scripts/beveled-pattern-heading.scm
915share/gimp/2.0/scripts/beveled-pattern-hrule.scm 916share/gimp/2.0/scripts/beveled-pattern-hrule.scm
916share/gimp/2.0/scripts/blend-anim.scm 917share/gimp/2.0/scripts/blend-anim.scm
917share/gimp/2.0/scripts/blended-logo.scm 918share/gimp/2.0/scripts/blended-logo.scm
918share/gimp/2.0/scripts/bovinated-logo.scm 919share/gimp/2.0/scripts/bovinated-logo.scm
919share/gimp/2.0/scripts/burn-in-anim.scm 920share/gimp/2.0/scripts/burn-in-anim.scm
920share/gimp/2.0/scripts/camo.scm 921share/gimp/2.0/scripts/camo.scm
921share/gimp/2.0/scripts/carve-it.scm 922share/gimp/2.0/scripts/carve-it.scm
922share/gimp/2.0/scripts/carved-logo.scm 923share/gimp/2.0/scripts/carved-logo.scm
923share/gimp/2.0/scripts/chalk.scm 924share/gimp/2.0/scripts/chalk.scm
924share/gimp/2.0/scripts/chip-away.scm 925share/gimp/2.0/scripts/chip-away.scm
925share/gimp/2.0/scripts/chrome-it.scm 926share/gimp/2.0/scripts/chrome-it.scm
926share/gimp/2.0/scripts/chrome-logo.scm 927share/gimp/2.0/scripts/chrome-logo.scm
927share/gimp/2.0/scripts/circuit.scm 928share/gimp/2.0/scripts/circuit.scm
928share/gimp/2.0/scripts/clothify.scm 929share/gimp/2.0/scripts/clothify.scm
929share/gimp/2.0/scripts/coffee.scm 930share/gimp/2.0/scripts/coffee.scm
930share/gimp/2.0/scripts/comic-logo.scm 931share/gimp/2.0/scripts/comic-logo.scm
931share/gimp/2.0/scripts/coolmetal-logo.scm 932share/gimp/2.0/scripts/coolmetal-logo.scm
932share/gimp/2.0/scripts/copy-visible.scm 933share/gimp/2.0/scripts/copy-visible.scm
933share/gimp/2.0/scripts/crystal-logo.scm 934share/gimp/2.0/scripts/crystal-logo.scm
934share/gimp/2.0/scripts/difference-clouds.scm 935share/gimp/2.0/scripts/difference-clouds.scm
935share/gimp/2.0/scripts/distress-selection.scm 936share/gimp/2.0/scripts/distress-selection.scm
936share/gimp/2.0/scripts/drop-shadow.scm 937share/gimp/2.0/scripts/drop-shadow.scm
937share/gimp/2.0/scripts/erase-rows.scm 938share/gimp/2.0/scripts/erase-rows.scm
938share/gimp/2.0/scripts/flatland.scm 939share/gimp/2.0/scripts/flatland.scm
939share/gimp/2.0/scripts/font-map.scm 940share/gimp/2.0/scripts/font-map.scm
940share/gimp/2.0/scripts/frosty-logo.scm 941share/gimp/2.0/scripts/frosty-logo.scm
941share/gimp/2.0/scripts/fuzzyborder.scm 942share/gimp/2.0/scripts/fuzzyborder.scm
942share/gimp/2.0/scripts/gimp-online.scm 943share/gimp/2.0/scripts/gimp-online.scm
943share/gimp/2.0/scripts/glossy.scm 944share/gimp/2.0/scripts/glossy.scm
944share/gimp/2.0/scripts/glowing-logo.scm 945share/gimp/2.0/scripts/glowing-logo.scm
945share/gimp/2.0/scripts/gradient-bevel-logo.scm 946share/gimp/2.0/scripts/gradient-bevel-logo.scm
946share/gimp/2.0/scripts/gradient-example.scm 947share/gimp/2.0/scripts/gradient-example.scm
947share/gimp/2.0/scripts/grid-system.scm 948share/gimp/2.0/scripts/grid-system.scm
948share/gimp/2.0/scripts/guides-from-selection.scm 949share/gimp/2.0/scripts/guides-from-selection.scm
949share/gimp/2.0/scripts/guides-new-percent.scm 950share/gimp/2.0/scripts/guides-new-percent.scm
950share/gimp/2.0/scripts/guides-new.scm 951share/gimp/2.0/scripts/guides-new.scm
951share/gimp/2.0/scripts/guides-remove-all.scm 952share/gimp/2.0/scripts/guides-remove-all.scm
952share/gimp/2.0/scripts/i26-gunya2.scm 953share/gimp/2.0/scripts/i26-gunya2.scm
953share/gimp/2.0/scripts/images/beavis.jpg 954share/gimp/2.0/scripts/images/beavis.jpg
954share/gimp/2.0/scripts/images/texture.jpg 955share/gimp/2.0/scripts/images/texture.jpg
955share/gimp/2.0/scripts/images/texture1.jpg 956share/gimp/2.0/scripts/images/texture1.jpg
956share/gimp/2.0/scripts/images/texture2.jpg 957share/gimp/2.0/scripts/images/texture2.jpg
957share/gimp/2.0/scripts/images/texture3.jpg 958share/gimp/2.0/scripts/images/texture3.jpg
958share/gimp/2.0/scripts/land.scm 959share/gimp/2.0/scripts/land.scm
959share/gimp/2.0/scripts/lava.scm 960share/gimp/2.0/scripts/lava.scm
960share/gimp/2.0/scripts/line-nova.scm 961share/gimp/2.0/scripts/line-nova.scm
961share/gimp/2.0/scripts/mkbrush.scm 962share/gimp/2.0/scripts/mkbrush.scm
962share/gimp/2.0/scripts/neon-logo.scm 963share/gimp/2.0/scripts/neon-logo.scm
963share/gimp/2.0/scripts/news-text.scm 964share/gimp/2.0/scripts/news-text.scm
964share/gimp/2.0/scripts/old-photo.scm 965share/gimp/2.0/scripts/old-photo.scm
965share/gimp/2.0/scripts/palette-export.scm 966share/gimp/2.0/scripts/palette-export.scm
966share/gimp/2.0/scripts/paste-as-brush.scm 967share/gimp/2.0/scripts/paste-as-brush.scm
967share/gimp/2.0/scripts/paste-as-pattern.scm 968share/gimp/2.0/scripts/paste-as-pattern.scm
968share/gimp/2.0/scripts/perspective-shadow.scm 969share/gimp/2.0/scripts/perspective-shadow.scm
969share/gimp/2.0/scripts/plug-in-compat.init 970share/gimp/2.0/scripts/plug-in-compat.init
970share/gimp/2.0/scripts/predator.scm 971share/gimp/2.0/scripts/predator.scm
971share/gimp/2.0/scripts/pupi-button.scm 972share/gimp/2.0/scripts/pupi-button.scm
972share/gimp/2.0/scripts/rendermap.scm 973share/gimp/2.0/scripts/rendermap.scm
973share/gimp/2.0/scripts/reverse-layers.scm 974share/gimp/2.0/scripts/reverse-layers.scm
974share/gimp/2.0/scripts/ripply-anim.scm 975share/gimp/2.0/scripts/ripply-anim.scm
975share/gimp/2.0/scripts/round-corners.scm 976share/gimp/2.0/scripts/round-corners.scm
976share/gimp/2.0/scripts/script-fu-compat.init 977share/gimp/2.0/scripts/script-fu-compat.init
977share/gimp/2.0/scripts/script-fu-set-cmap.scm 978share/gimp/2.0/scripts/script-fu-set-cmap.scm
978share/gimp/2.0/scripts/script-fu-util.scm 979share/gimp/2.0/scripts/script-fu-util.scm
979share/gimp/2.0/scripts/script-fu.init 980share/gimp/2.0/scripts/script-fu.init
980share/gimp/2.0/scripts/select-to-brush.scm 981share/gimp/2.0/scripts/select-to-brush.scm
981share/gimp/2.0/scripts/select-to-image.scm 982share/gimp/2.0/scripts/select-to-image.scm
982share/gimp/2.0/scripts/select-to-pattern.scm 983share/gimp/2.0/scripts/select-to-pattern.scm
983share/gimp/2.0/scripts/selection-round.scm 984share/gimp/2.0/scripts/selection-round.scm
984share/gimp/2.0/scripts/slide.scm 985share/gimp/2.0/scripts/slide.scm
985share/gimp/2.0/scripts/sota-chrome-logo.scm 986share/gimp/2.0/scripts/sota-chrome-logo.scm
986share/gimp/2.0/scripts/speed-text.scm 987share/gimp/2.0/scripts/speed-text.scm
987share/gimp/2.0/scripts/spinning-globe.scm 988share/gimp/2.0/scripts/spinning-globe.scm
988share/gimp/2.0/scripts/spyrogimp.scm 989share/gimp/2.0/scripts/spyrogimp.scm
989share/gimp/2.0/scripts/starscape-logo.scm 990share/gimp/2.0/scripts/starscape-logo.scm
990share/gimp/2.0/scripts/swirltile.scm 991share/gimp/2.0/scripts/swirltile.scm
991share/gimp/2.0/scripts/swirly-pattern.scm 992share/gimp/2.0/scripts/swirly-pattern.scm
992share/gimp/2.0/scripts/t-o-p-logo.scm 993share/gimp/2.0/scripts/t-o-p-logo.scm
993share/gimp/2.0/scripts/text-circle.scm 994share/gimp/2.0/scripts/text-circle.scm
994share/gimp/2.0/scripts/textured-logo.scm 995share/gimp/2.0/scripts/textured-logo.scm
995share/gimp/2.0/scripts/tileblur.scm 996share/gimp/2.0/scripts/tileblur.scm
996share/gimp/2.0/scripts/title-header.scm 997share/gimp/2.0/scripts/title-header.scm
997share/gimp/2.0/scripts/truchet.scm 998share/gimp/2.0/scripts/truchet.scm
998share/gimp/2.0/scripts/unsharp-mask.scm 999share/gimp/2.0/scripts/unsharp-mask.scm
999share/gimp/2.0/scripts/waves-anim.scm 1000share/gimp/2.0/scripts/waves-anim.scm
1000share/gimp/2.0/scripts/weave.scm 1001share/gimp/2.0/scripts/weave.scm
1001share/gimp/2.0/scripts/xach-effect.scm 1002share/gimp/2.0/scripts/xach-effect.scm
1002share/gimp/2.0/tags/gimp-tags-default.xml 1003share/gimp/2.0/tags/gimp-tags-default.xml
1003share/gimp/2.0/themes/Default/gtkrc 1004share/gimp/2.0/themes/Default/gtkrc
1004share/gimp/2.0/themes/Default/images/preferences/color-management-22.png 1005share/gimp/2.0/themes/Default/images/preferences/color-management-22.png
1005share/gimp/2.0/themes/Default/images/preferences/color-management.png 1006share/gimp/2.0/themes/Default/images/preferences/color-management.png
1006share/gimp/2.0/themes/Default/images/preferences/controllers-22.png 1007share/gimp/2.0/themes/Default/images/preferences/controllers-22.png
1007share/gimp/2.0/themes/Default/images/preferences/controllers.png 1008share/gimp/2.0/themes/Default/images/preferences/controllers.png
1008share/gimp/2.0/themes/Default/images/preferences/default-comment.png 1009share/gimp/2.0/themes/Default/images/preferences/default-comment.png
1009share/gimp/2.0/themes/Default/images/preferences/default-grid-22.png 1010share/gimp/2.0/themes/Default/images/preferences/default-grid-22.png
1010share/gimp/2.0/themes/Default/images/preferences/default-grid.png 1011share/gimp/2.0/themes/Default/images/preferences/default-grid.png
1011share/gimp/2.0/themes/Default/images/preferences/display-22.png 1012share/gimp/2.0/themes/Default/images/preferences/display-22.png
1012share/gimp/2.0/themes/Default/images/preferences/display.png 1013share/gimp/2.0/themes/Default/images/preferences/display.png
1013share/gimp/2.0/themes/Default/images/preferences/environment-22.png 1014share/gimp/2.0/themes/Default/images/preferences/environment-22.png
1014share/gimp/2.0/themes/Default/images/preferences/environment.png 1015share/gimp/2.0/themes/Default/images/preferences/environment.png
1015share/gimp/2.0/themes/Default/images/preferences/folders-22.png 1016share/gimp/2.0/themes/Default/images/preferences/folders-22.png
1016share/gimp/2.0/themes/Default/images/preferences/folders-brushes-22.png 1017share/gimp/2.0/themes/Default/images/preferences/folders-brushes-22.png
1017share/gimp/2.0/themes/Default/images/preferences/folders-brushes.png 1018share/gimp/2.0/themes/Default/images/preferences/folders-brushes.png
1018share/gimp/2.0/themes/Default/images/preferences/folders-dynamics-22.png 1019share/gimp/2.0/themes/Default/images/preferences/folders-dynamics-22.png
1019share/gimp/2.0/themes/Default/images/preferences/folders-dynamics.png 1020share/gimp/2.0/themes/Default/images/preferences/folders-dynamics.png
1020share/gimp/2.0/themes/Default/images/preferences/folders-environ-22.png 1021share/gimp/2.0/themes/Default/images/preferences/folders-environ-22.png
1021share/gimp/2.0/themes/Default/images/preferences/folders-environ.png 1022share/gimp/2.0/themes/Default/images/preferences/folders-environ.png
1022share/gimp/2.0/themes/Default/images/preferences/folders-fonts-22.png 1023share/gimp/2.0/themes/Default/images/preferences/folders-fonts-22.png
1023share/gimp/2.0/themes/Default/images/preferences/folders-fonts.png 1024share/gimp/2.0/themes/Default/images/preferences/folders-fonts.png
1024share/gimp/2.0/themes/Default/images/preferences/folders-gradients-22.png 1025share/gimp/2.0/themes/Default/images/preferences/folders-gradients-22.png
1025share/gimp/2.0/themes/Default/images/preferences/folders-gradients.png 1026share/gimp/2.0/themes/Default/images/preferences/folders-gradients.png
1026share/gimp/2.0/themes/Default/images/preferences/folders-interp-22.png 1027share/gimp/2.0/themes/Default/images/preferences/folders-interp-22.png
1027share/gimp/2.0/themes/Default/images/preferences/folders-interp.png 1028share/gimp/2.0/themes/Default/images/preferences/folders-interp.png
1028share/gimp/2.0/themes/Default/images/preferences/folders-modules-22.png 1029share/gimp/2.0/themes/Default/images/preferences/folders-modules-22.png
1029share/gimp/2.0/themes/Default/images/preferences/folders-modules.png 1030share/gimp/2.0/themes/Default/images/preferences/folders-modules.png
1030share/gimp/2.0/themes/Default/images/preferences/folders-palettes-22.png 1031share/gimp/2.0/themes/Default/images/preferences/folders-palettes-22.png
1031share/gimp/2.0/themes/Default/images/preferences/folders-palettes.png 1032share/gimp/2.0/themes/Default/images/preferences/folders-palettes.png
1032share/gimp/2.0/themes/Default/images/preferences/folders-patterns-22.png 1033share/gimp/2.0/themes/Default/images/preferences/folders-patterns-22.png
1033share/gimp/2.0/themes/Default/images/preferences/folders-patterns.png 1034share/gimp/2.0/themes/Default/images/preferences/folders-patterns.png
1034share/gimp/2.0/themes/Default/images/preferences/folders-plug-ins-22.png 1035share/gimp/2.0/themes/Default/images/preferences/folders-plug-ins-22.png
1035share/gimp/2.0/themes/Default/images/preferences/folders-plug-ins.png 1036share/gimp/2.0/themes/Default/images/preferences/folders-plug-ins.png
1036share/gimp/2.0/themes/Default/images/preferences/folders-scripts-22.png 1037share/gimp/2.0/themes/Default/images/preferences/folders-scripts-22.png
1037share/gimp/2.0/themes/Default/images/preferences/folders-scripts.png 1038share/gimp/2.0/themes/Default/images/preferences/folders-scripts.png
1038share/gimp/2.0/themes/Default/images/preferences/folders-themes-22.png 1039share/gimp/2.0/themes/Default/images/preferences/folders-themes-22.png
1039share/gimp/2.0/themes/Default/images/preferences/folders-themes.png 1040share/gimp/2.0/themes/Default/images/preferences/folders-themes.png
1040share/gimp/2.0/themes/Default/images/preferences/folders-tool-plug-ins-22.png 1041share/gimp/2.0/themes/Default/images/preferences/folders-tool-plug-ins-22.png
1041share/gimp/2.0/themes/Default/images/preferences/folders-tool-plug-ins.png 1042share/gimp/2.0/themes/Default/images/preferences/folders-tool-plug-ins.png
1042share/gimp/2.0/themes/Default/images/preferences/folders-tool-presets-22.png 1043share/gimp/2.0/themes/Default/images/preferences/folders-tool-presets-22.png
1043share/gimp/2.0/themes/Default/images/preferences/folders-tool-presets.png 1044share/gimp/2.0/themes/Default/images/preferences/folders-tool-presets.png
1044share/gimp/2.0/themes/Default/images/preferences/folders-tools-22.png 1045share/gimp/2.0/themes/Default/images/preferences/folders-tools-22.png
1045share/gimp/2.0/themes/Default/images/preferences/folders.png 1046share/gimp/2.0/themes/Default/images/preferences/folders.png
1046share/gimp/2.0/themes/Default/images/preferences/help-system-22.png 1047share/gimp/2.0/themes/Default/images/preferences/help-system-22.png
1047share/gimp/2.0/themes/Default/images/preferences/help-system.png 1048share/gimp/2.0/themes/Default/images/preferences/help-system.png
1048share/gimp/2.0/themes/Default/images/preferences/image-title-22.png 1049share/gimp/2.0/themes/Default/images/preferences/image-title-22.png
1049share/gimp/2.0/themes/Default/images/preferences/image-title.png 1050share/gimp/2.0/themes/Default/images/preferences/image-title.png
1050share/gimp/2.0/themes/Default/images/preferences/image-windows-22.png 1051share/gimp/2.0/themes/Default/images/preferences/image-windows-22.png
1051share/gimp/2.0/themes/Default/images/preferences/image-windows.png 1052share/gimp/2.0/themes/Default/images/preferences/image-windows.png
1052share/gimp/2.0/themes/Default/images/preferences/input-devices-22.png 1053share/gimp/2.0/themes/Default/images/preferences/input-devices-22.png
1053share/gimp/2.0/themes/Default/images/preferences/input-devices.png 1054share/gimp/2.0/themes/Default/images/preferences/input-devices.png
1054share/gimp/2.0/themes/Default/images/preferences/interface-22.png 1055share/gimp/2.0/themes/Default/images/preferences/interface-22.png
1055share/gimp/2.0/themes/Default/images/preferences/interface.png 1056share/gimp/2.0/themes/Default/images/preferences/interface.png
1056share/gimp/2.0/themes/Default/images/preferences/new-image-22.png 1057share/gimp/2.0/themes/Default/images/preferences/new-image-22.png
1057share/gimp/2.0/themes/Default/images/preferences/new-image.png 1058share/gimp/2.0/themes/Default/images/preferences/new-image.png
1058share/gimp/2.0/themes/Default/images/preferences/session-22.png 1059share/gimp/2.0/themes/Default/images/preferences/session-22.png
1059share/gimp/2.0/themes/Default/images/preferences/session.png 1060share/gimp/2.0/themes/Default/images/preferences/session.png
1060share/gimp/2.0/themes/Default/images/preferences/theme-22.png 1061share/gimp/2.0/themes/Default/images/preferences/theme-22.png
1061share/gimp/2.0/themes/Default/images/preferences/theme.png 1062share/gimp/2.0/themes/Default/images/preferences/theme.png
1062share/gimp/2.0/themes/Default/images/preferences/tool-options-22.png 1063share/gimp/2.0/themes/Default/images/preferences/tool-options-22.png
1063share/gimp/2.0/themes/Default/images/preferences/tool-options.png 1064share/gimp/2.0/themes/Default/images/preferences/tool-options.png
1064share/gimp/2.0/themes/Default/images/preferences/toolbox-22.png 1065share/gimp/2.0/themes/Default/images/preferences/toolbox-22.png
1065share/gimp/2.0/themes/Default/images/preferences/toolbox.png 1066share/gimp/2.0/themes/Default/images/preferences/toolbox.png
1066share/gimp/2.0/themes/Default/images/preferences/window-management-22.png 1067share/gimp/2.0/themes/Default/images/preferences/window-management-22.png
1067share/gimp/2.0/themes/Default/images/preferences/window-management.png 1068share/gimp/2.0/themes/Default/images/preferences/window-management.png
1068share/gimp/2.0/themes/Default/images/stock-error-64.png 1069share/gimp/2.0/themes/Default/images/stock-error-64.png
1069share/gimp/2.0/themes/Default/images/stock-info-64.png 1070share/gimp/2.0/themes/Default/images/stock-info-64.png
1070share/gimp/2.0/themes/Default/images/stock-question-64.png 1071share/gimp/2.0/themes/Default/images/stock-question-64.png
1071share/gimp/2.0/themes/Default/images/stock-warning-64.png 1072share/gimp/2.0/themes/Default/images/stock-warning-64.png
1072share/gimp/2.0/themes/Small/gtkrc 1073share/gimp/2.0/themes/Small/gtkrc
1073share/gimp/2.0/tips/gimp-tips.xml 1074share/gimp/2.0/tips/gimp-tips.xml
1074share/gimp/2.0/tool-presets/FX/Crop-16-9.gtp 1075share/gimp/2.0/tool-presets/FX/Crop-16-9.gtp
1075share/gimp/2.0/tool-presets/FX/Crop-Composition.gtp 1076share/gimp/2.0/tool-presets/FX/Crop-Composition.gtp
1076share/gimp/2.0/tool-presets/FX/FX-Confetti.gtp 1077share/gimp/2.0/tool-presets/FX/FX-Confetti.gtp
1077share/gimp/2.0/tool-presets/FX/FX-Radial-Softlight.gtp 1078share/gimp/2.0/tool-presets/FX/FX-Radial-Softlight.gtp
1078share/gimp/2.0/tool-presets/FX/Fill-Paper.gtp 1079share/gimp/2.0/tool-presets/FX/Fill-Paper.gtp
1079share/gimp/2.0/tool-presets/FX/Glow-Lights.gtp 1080share/gimp/2.0/tool-presets/FX/Glow-Lights.gtp
1080share/gimp/2.0/tool-presets/FX/Smooth-Clone.gtp 1081share/gimp/2.0/tool-presets/FX/Smooth-Clone.gtp
1081share/gimp/2.0/tool-presets/FX/Vignette.gtp 1082share/gimp/2.0/tool-presets/FX/Vignette.gtp
1082share/gimp/2.0/tool-presets/Paint/Airbrush-Color-From-Gradient.gtp 1083share/gimp/2.0/tool-presets/Paint/Airbrush-Color-From-Gradient.gtp
1083share/gimp/2.0/tool-presets/Paint/Airbrush.gtp 1084share/gimp/2.0/tool-presets/Paint/Airbrush.gtp
1084share/gimp/2.0/tool-presets/Paint/Basic-Knife.gtp 1085share/gimp/2.0/tool-presets/Paint/Basic-Knife.gtp
1085share/gimp/2.0/tool-presets/Paint/Basic-Round-Detail.gtp 1086share/gimp/2.0/tool-presets/Paint/Basic-Round-Detail.gtp
1086share/gimp/2.0/tool-presets/Paint/Basic-Round.gtp 1087share/gimp/2.0/tool-presets/Paint/Basic-Round.gtp
1087share/gimp/2.0/tool-presets/Paint/Bristles.gtp 1088share/gimp/2.0/tool-presets/Paint/Bristles.gtp
1088share/gimp/2.0/tool-presets/Paint/Eraser-Hard.gtp 1089share/gimp/2.0/tool-presets/Paint/Eraser-Hard.gtp
1089share/gimp/2.0/tool-presets/Paint/Noise.gtp 1090share/gimp/2.0/tool-presets/Paint/Noise.gtp
1090share/gimp/2.0/tool-presets/Paint/Paintbrush-Color-From-Gradient.gtp 1091share/gimp/2.0/tool-presets/Paint/Paintbrush-Color-From-Gradient.gtp
1091share/gimp/2.0/tool-presets/Paint/Pencil-Color-From-Gradient.gtp 1092share/gimp/2.0/tool-presets/Paint/Pencil-Color-From-Gradient.gtp
1092share/gimp/2.0/tool-presets/Paint/Smudge-Rough.gtp 1093share/gimp/2.0/tool-presets/Paint/Smudge-Rough.gtp
1093share/gimp/2.0/tool-presets/Paint/Smudge-Soft.gtp 1094share/gimp/2.0/tool-presets/Paint/Smudge-Soft.gtp
1094share/gimp/2.0/tool-presets/Paint/Soft-Oil.gtp 1095share/gimp/2.0/tool-presets/Paint/Soft-Oil.gtp
1095share/gimp/2.0/tool-presets/Paint/Splatters.gtp 1096share/gimp/2.0/tool-presets/Paint/Splatters.gtp
1096share/gimp/2.0/tool-presets/Paint/Structure.gtp 1097share/gimp/2.0/tool-presets/Paint/Structure.gtp
1097share/gimp/2.0/tool-presets/Paint/Vegetal.gtp 1098share/gimp/2.0/tool-presets/Paint/Vegetal.gtp
1098share/gimp/2.0/tool-presets/Selection/Circle-200px.gtp 1099share/gimp/2.0/tool-presets/Selection/Circle-200px.gtp
1099share/gimp/2.0/tool-presets/Selection/Feathered-Selection.gtp 1100share/gimp/2.0/tool-presets/Selection/Feathered-Selection.gtp
1100share/gimp/2.0/tool-presets/Sketch/Blue-Pen.gtp 1101share/gimp/2.0/tool-presets/Sketch/Blue-Pen.gtp
1101share/gimp/2.0/tool-presets/Sketch/Eraser-Soft.gtp 1102share/gimp/2.0/tool-presets/Sketch/Eraser-Soft.gtp
1102share/gimp/2.0/tool-presets/Sketch/Ink-Smooth.gtp 1103share/gimp/2.0/tool-presets/Sketch/Ink-Smooth.gtp
1103share/gimp/2.0/tool-presets/Sketch/Ink-Thin.gtp 1104share/gimp/2.0/tool-presets/Sketch/Ink-Thin.gtp
1104share/gimp/2.0/tool-presets/Sketch/Pencil-Soft.gtp 1105share/gimp/2.0/tool-presets/Sketch/Pencil-Soft.gtp
1105share/gimp/2.0/tool-presets/Sketch/Pencil.gtp 1106share/gimp/2.0/tool-presets/Sketch/Pencil.gtp
1106share/gimp/2.0/ui/plug-ins/plug-in-file-gif.ui 1107share/gimp/2.0/ui/plug-ins/plug-in-file-gif.ui
1107share/gimp/2.0/ui/plug-ins/plug-in-file-png.ui 1108share/gimp/2.0/ui/plug-ins/plug-in-file-png.ui
1108share/gtk-doc/html/libgimp/GimpAspectPreview.html 1109share/gtk-doc/html/libgimp/GimpAspectPreview.html
1109share/gtk-doc/html/libgimp/GimpBrushSelectButton.html 1110share/gtk-doc/html/libgimp/GimpBrushSelectButton.html
1110share/gtk-doc/html/libgimp/GimpDrawablePreview.html 1111share/gtk-doc/html/libgimp/GimpDrawablePreview.html
1111share/gtk-doc/html/libgimp/GimpFontSelectButton.html 1112share/gtk-doc/html/libgimp/GimpFontSelectButton.html
1112share/gtk-doc/html/libgimp/GimpGradientSelectButton.html 1113share/gtk-doc/html/libgimp/GimpGradientSelectButton.html
1113share/gtk-doc/html/libgimp/GimpImageComboBox.html 1114share/gtk-doc/html/libgimp/GimpImageComboBox.html
1114share/gtk-doc/html/libgimp/GimpPaletteSelectButton.html 1115share/gtk-doc/html/libgimp/GimpPaletteSelectButton.html
1115share/gtk-doc/html/libgimp/GimpPatternSelectButton.html 1116share/gtk-doc/html/libgimp/GimpPatternSelectButton.html
1116share/gtk-doc/html/libgimp/GimpProcBrowserDialog.html 1117share/gtk-doc/html/libgimp/GimpProcBrowserDialog.html
1117share/gtk-doc/html/libgimp/GimpProgressBar.html 1118share/gtk-doc/html/libgimp/GimpProgressBar.html
1118share/gtk-doc/html/libgimp/GimpSelectButton.html 1119share/gtk-doc/html/libgimp/GimpSelectButton.html
1119share/gtk-doc/html/libgimp/GimpZoomPreview.html 1120share/gtk-doc/html/libgimp/GimpZoomPreview.html
1120share/gtk-doc/html/libgimp/home.png 1121share/gtk-doc/html/libgimp/home.png
1121share/gtk-doc/html/libgimp/index.html 1122share/gtk-doc/html/libgimp/index.html
1122share/gtk-doc/html/libgimp/index.sgml 1123share/gtk-doc/html/libgimp/index.sgml
1123share/gtk-doc/html/libgimp/left.png 1124share/gtk-doc/html/libgimp/left.png
1124share/gtk-doc/html/libgimp/libgimp-Gimp.html 1125share/gtk-doc/html/libgimp/libgimp-Gimp.html
1125share/gtk-doc/html/libgimp/libgimp-GimpItemComboBox.html 1126share/gtk-doc/html/libgimp/libgimp-GimpItemComboBox.html
1126share/gtk-doc/html/libgimp/libgimp-GimpProcView.html 1127share/gtk-doc/html/libgimp/libgimp-GimpProcView.html
1127share/gtk-doc/html/libgimp/libgimp-data.html 1128share/gtk-doc/html/libgimp/libgimp-data.html
1128share/gtk-doc/html/libgimp/libgimp-general.html 1129share/gtk-doc/html/libgimp/libgimp-general.html
1129share/gtk-doc/html/libgimp/libgimp-gimpbrush.html 1130share/gtk-doc/html/libgimp/libgimp-gimpbrush.html
1130share/gtk-doc/html/libgimp/libgimp-gimpbrushes.html 1131share/gtk-doc/html/libgimp/libgimp-gimpbrushes.html
1131share/gtk-doc/html/libgimp/libgimp-gimpbrushmenu.html 1132share/gtk-doc/html/libgimp/libgimp-gimpbrushmenu.html
1132share/gtk-doc/html/libgimp/libgimp-gimpbrushselect.html 1133share/gtk-doc/html/libgimp/libgimp-gimpbrushselect.html
1133share/gtk-doc/html/libgimp/libgimp-gimpbuffer.html 1134share/gtk-doc/html/libgimp/libgimp-gimpbuffer.html
1134share/gtk-doc/html/libgimp/libgimp-gimpchannel.html 1135share/gtk-doc/html/libgimp/libgimp-gimpchannel.html
1135share/gtk-doc/html/libgimp/libgimp-gimpcolor.html 1136share/gtk-doc/html/libgimp/libgimp-gimpcolor.html
1136share/gtk-doc/html/libgimp/libgimp-gimpcontext.html 1137share/gtk-doc/html/libgimp/libgimp-gimpcontext.html
1137share/gtk-doc/html/libgimp/libgimp-gimpconvert.html 1138share/gtk-doc/html/libgimp/libgimp-gimpconvert.html
1138share/gtk-doc/html/libgimp/libgimp-gimpdisplay.html 1139share/gtk-doc/html/libgimp/libgimp-gimpdisplay.html
1139share/gtk-doc/html/libgimp/libgimp-gimpdrawable.html 1140share/gtk-doc/html/libgimp/libgimp-gimpdrawable.html
1140share/gtk-doc/html/libgimp/libgimp-gimpdrawabletransform.html 1141share/gtk-doc/html/libgimp/libgimp-gimpdrawabletransform.html
1141share/gtk-doc/html/libgimp/libgimp-gimpdynamics.html 1142share/gtk-doc/html/libgimp/libgimp-gimpdynamics.html
1142share/gtk-doc/html/libgimp/libgimp-gimpedit.html 1143share/gtk-doc/html/libgimp/libgimp-gimpedit.html
1143share/gtk-doc/html/libgimp/libgimp-gimpenums.html 1144share/gtk-doc/html/libgimp/libgimp-gimpenums.html
1144share/gtk-doc/html/libgimp/libgimp-gimpexport.html 1145share/gtk-doc/html/libgimp/libgimp-gimpexport.html
1145share/gtk-doc/html/libgimp/libgimp-gimpfileops.html 1146share/gtk-doc/html/libgimp/libgimp-gimpfileops.html
1146share/gtk-doc/html/libgimp/libgimp-gimpfloatingsel.html 1147share/gtk-doc/html/libgimp/libgimp-gimpfloatingsel.html
1147share/gtk-doc/html/libgimp/libgimp-gimpfontmenu.html 1148share/gtk-doc/html/libgimp/libgimp-gimpfontmenu.html
1148share/gtk-doc/html/libgimp/libgimp-gimpfonts.html 1149share/gtk-doc/html/libgimp/libgimp-gimpfonts.html
1149share/gtk-doc/html/libgimp/libgimp-gimpfontselect.html 1150share/gtk-doc/html/libgimp/libgimp-gimpfontselect.html
1150share/gtk-doc/html/libgimp/libgimp-gimpgimprc.html 1151share/gtk-doc/html/libgimp/libgimp-gimpgimprc.html
1151share/gtk-doc/html/libgimp/libgimp-gimpgradient.html 1152share/gtk-doc/html/libgimp/libgimp-gimpgradient.html
1152share/gtk-doc/html/libgimp/libgimp-gimpgradientmenu.html 1153share/gtk-doc/html/libgimp/libgimp-gimpgradientmenu.html
1153share/gtk-doc/html/libgimp/libgimp-gimpgradients.html 1154share/gtk-doc/html/libgimp/libgimp-gimpgradients.html
1154share/gtk-doc/html/libgimp/libgimp-gimpgradientselect.html 1155share/gtk-doc/html/libgimp/libgimp-gimpgradientselect.html
1155share/gtk-doc/html/libgimp/libgimp-gimpgrid.html 1156share/gtk-doc/html/libgimp/libgimp-gimpgrid.html
1156share/gtk-doc/html/libgimp/libgimp-gimpguides.html 1157share/gtk-doc/html/libgimp/libgimp-gimpguides.html
1157share/gtk-doc/html/libgimp/libgimp-gimphelp.html 1158share/gtk-doc/html/libgimp/libgimp-gimphelp.html
1158share/gtk-doc/html/libgimp/libgimp-gimpimage.html 1159share/gtk-doc/html/libgimp/libgimp-gimpimage.html
1159share/gtk-doc/html/libgimp/libgimp-gimpimageselect.html 1160share/gtk-doc/html/libgimp/libgimp-gimpimageselect.html
1160share/gtk-doc/html/libgimp/libgimp-gimpitem.html 1161share/gtk-doc/html/libgimp/libgimp-gimpitem.html
1161share/gtk-doc/html/libgimp/libgimp-gimpitemtransform.html 1162share/gtk-doc/html/libgimp/libgimp-gimpitemtransform.html
1162share/gtk-doc/html/libgimp/libgimp-gimplayer.html 1163share/gtk-doc/html/libgimp/libgimp-gimplayer.html
1163share/gtk-doc/html/libgimp/libgimp-gimpmenu.html 1164share/gtk-doc/html/libgimp/libgimp-gimpmenu.html
1164share/gtk-doc/html/libgimp/libgimp-gimpmessage.html 1165share/gtk-doc/html/libgimp/libgimp-gimpmessage.html
1165share/gtk-doc/html/libgimp/libgimp-gimppainttools.html 1166share/gtk-doc/html/libgimp/libgimp-gimppainttools.html
1166share/gtk-doc/html/libgimp/libgimp-gimppalette.html 1167share/gtk-doc/html/libgimp/libgimp-gimppalette.html
1167share/gtk-doc/html/libgimp/libgimp-gimppalettemenu.html 1168share/gtk-doc/html/libgimp/libgimp-gimppalettemenu.html
1168share/gtk-doc/html/libgimp/libgimp-gimppalettes.html 1169share/gtk-doc/html/libgimp/libgimp-gimppalettes.html
1169share/gtk-doc/html/libgimp/libgimp-gimppaletteselect.html 1170share/gtk-doc/html/libgimp/libgimp-gimppaletteselect.html
1170share/gtk-doc/html/libgimp/libgimp-gimppaths.html 1171share/gtk-doc/html/libgimp/libgimp-gimppaths.html
1171share/gtk-doc/html/libgimp/libgimp-gimppattern.html 1172share/gtk-doc/html/libgimp/libgimp-gimppattern.html
1172share/gtk-doc/html/libgimp/libgimp-gimppatternmenu.html 1173share/gtk-doc/html/libgimp/libgimp-gimppatternmenu.html
1173share/gtk-doc/html/libgimp/libgimp-gimppatterns.html 1174share/gtk-doc/html/libgimp/libgimp-gimppatterns.html
1174share/gtk-doc/html/libgimp/libgimp-gimppatternselect.html 1175share/gtk-doc/html/libgimp/libgimp-gimppatternselect.html
1175share/gtk-doc/html/libgimp/libgimp-gimppixbuf.html 1176share/gtk-doc/html/libgimp/libgimp-gimppixbuf.html
1176share/gtk-doc/html/libgimp/libgimp-gimppixelfetcher.html 1177share/gtk-doc/html/libgimp/libgimp-gimppixelfetcher.html
1177share/gtk-doc/html/libgimp/libgimp-gimppixelrgn.html 1178share/gtk-doc/html/libgimp/libgimp-gimppixelrgn.html
1178share/gtk-doc/html/libgimp/libgimp-gimpplugin.html 1179share/gtk-doc/html/libgimp/libgimp-gimpplugin.html
1179share/gtk-doc/html/libgimp/libgimp-gimpproceduraldb.html 1180share/gtk-doc/html/libgimp/libgimp-gimpproceduraldb.html
1180share/gtk-doc/html/libgimp/libgimp-gimpprogress.html 1181share/gtk-doc/html/libgimp/libgimp-gimpprogress.html
1181share/gtk-doc/html/libgimp/libgimp-gimpregioniterator.html 1182share/gtk-doc/html/libgimp/libgimp-gimpregioniterator.html
1182share/gtk-doc/html/libgimp/libgimp-gimpselection.html 1183share/gtk-doc/html/libgimp/libgimp-gimpselection.html
1183share/gtk-doc/html/libgimp/libgimp-gimpselectiontools.html 1184share/gtk-doc/html/libgimp/libgimp-gimpselectiontools.html
1184share/gtk-doc/html/libgimp/libgimp-gimptextlayer.html 1185share/gtk-doc/html/libgimp/libgimp-gimptextlayer.html
1185share/gtk-doc/html/libgimp/libgimp-gimptexttool.html 1186share/gtk-doc/html/libgimp/libgimp-gimptexttool.html
1186share/gtk-doc/html/libgimp/libgimp-gimptile.html 1187share/gtk-doc/html/libgimp/libgimp-gimptile.html
1187share/gtk-doc/html/libgimp/libgimp-gimptransformtools.html 1188share/gtk-doc/html/libgimp/libgimp-gimptransformtools.html
1188share/gtk-doc/html/libgimp/libgimp-gimpui.html 1189share/gtk-doc/html/libgimp/libgimp-gimpui.html
1189share/gtk-doc/html/libgimp/libgimp-gimpundo.html 1190share/gtk-doc/html/libgimp/libgimp-gimpundo.html
1190share/gtk-doc/html/libgimp/libgimp-gimpvectors.html 1191share/gtk-doc/html/libgimp/libgimp-gimpvectors.html
1191share/gtk-doc/html/libgimp/libgimp-image.html 1192share/gtk-doc/html/libgimp/libgimp-image.html
1192share/gtk-doc/html/libgimp/libgimp-index-deprecated.html 1193share/gtk-doc/html/libgimp/libgimp-index-deprecated.html
1193share/gtk-doc/html/libgimp/libgimp-index-new-in-2-2.html 1194share/gtk-doc/html/libgimp/libgimp-index-new-in-2-2.html
1194share/gtk-doc/html/libgimp/libgimp-index-new-in-2-4.html 1195share/gtk-doc/html/libgimp/libgimp-index-new-in-2-4.html
1195share/gtk-doc/html/libgimp/libgimp-index-new-in-2-6.html 1196share/gtk-doc/html/libgimp/libgimp-index-new-in-2-6.html
1196share/gtk-doc/html/libgimp/libgimp-index-new-in-2-8.html 1197share/gtk-doc/html/libgimp/libgimp-index-new-in-2-8.html
1197share/gtk-doc/html/libgimp/libgimp-index.html 1198share/gtk-doc/html/libgimp/libgimp-index.html
1198share/gtk-doc/html/libgimp/libgimp-selectors.html 1199share/gtk-doc/html/libgimp/libgimp-selectors.html
1199share/gtk-doc/html/libgimp/libgimp.devhelp2 1200share/gtk-doc/html/libgimp/libgimp.devhelp2
1200share/gtk-doc/html/libgimp/libgimp.html 1201share/gtk-doc/html/libgimp/libgimp.html
1201share/gtk-doc/html/libgimp/libgimpui-hierarchy.html 1202share/gtk-doc/html/libgimp/libgimpui-hierarchy.html
1202share/gtk-doc/html/libgimp/libgimpui.html 1203share/gtk-doc/html/libgimp/libgimpui.html
1203share/gtk-doc/html/libgimp/right.png 1204share/gtk-doc/html/libgimp/right.png
1204share/gtk-doc/html/libgimp/style.css 1205share/gtk-doc/html/libgimp/style.css
1205share/gtk-doc/html/libgimp/up.png 1206share/gtk-doc/html/libgimp/up.png
1206share/gtk-doc/html/libgimpbase/home.png 1207share/gtk-doc/html/libgimpbase/home.png
1207share/gtk-doc/html/libgimpbase/index.html 1208share/gtk-doc/html/libgimpbase/index.html
1208share/gtk-doc/html/libgimpbase/index.sgml 1209share/gtk-doc/html/libgimpbase/index.sgml
1209share/gtk-doc/html/libgimpbase/left.png 1210share/gtk-doc/html/libgimpbase/left.png
1210share/gtk-doc/html/libgimpbase/libgimpbase-gimpbaseenums.html 1211share/gtk-doc/html/libgimpbase/libgimpbase-gimpbaseenums.html
1211share/gtk-doc/html/libgimpbase/libgimpbase-gimpbasetypes.html 1212share/gtk-doc/html/libgimpbase/libgimpbase-gimpbasetypes.html
1212share/gtk-doc/html/libgimpbase/libgimpbase-gimpchecks.html 1213share/gtk-doc/html/libgimpbase/libgimpbase-gimpchecks.html
1213share/gtk-doc/html/libgimpbase/libgimpbase-gimpcpuaccel.html 1214share/gtk-doc/html/libgimpbase/libgimpbase-gimpcpuaccel.html
1214share/gtk-doc/html/libgimpbase/libgimpbase-gimpdatafiles.html 1215share/gtk-doc/html/libgimpbase/libgimpbase-gimpdatafiles.html
1215share/gtk-doc/html/libgimpbase/libgimpbase-gimpenv.html 1216share/gtk-doc/html/libgimpbase/libgimpbase-gimpenv.html
1216share/gtk-doc/html/libgimpbase/libgimpbase-gimplimits.html 1217share/gtk-doc/html/libgimpbase/libgimpbase-gimplimits.html
1217share/gtk-doc/html/libgimpbase/libgimpbase-gimpmemsize.html 1218share/gtk-doc/html/libgimpbase/libgimpbase-gimpmemsize.html
1218share/gtk-doc/html/libgimpbase/libgimpbase-gimpparam.html 1219share/gtk-doc/html/libgimpbase/libgimpbase-gimpparam.html
1219share/gtk-doc/html/libgimpbase/libgimpbase-gimpparasite.html 1220share/gtk-doc/html/libgimpbase/libgimpbase-gimpparasite.html
1220share/gtk-doc/html/libgimpbase/libgimpbase-gimpparasiteio.html 1221share/gtk-doc/html/libgimpbase/libgimpbase-gimpparasiteio.html
1221share/gtk-doc/html/libgimpbase/libgimpbase-gimprectangle.html 1222share/gtk-doc/html/libgimpbase/libgimpbase-gimprectangle.html
1222share/gtk-doc/html/libgimpbase/libgimpbase-gimpsignal.html 1223share/gtk-doc/html/libgimpbase/libgimpbase-gimpsignal.html
1223share/gtk-doc/html/libgimpbase/libgimpbase-gimpunit.html 1224share/gtk-doc/html/libgimpbase/libgimpbase-gimpunit.html
1224share/gtk-doc/html/libgimpbase/libgimpbase-gimputils.html 1225share/gtk-doc/html/libgimpbase/libgimpbase-gimputils.html
1225share/gtk-doc/html/libgimpbase/libgimpbase-gimpversion.html 1226share/gtk-doc/html/libgimpbase/libgimpbase-gimpversion.html
1226share/gtk-doc/html/libgimpbase/libgimpbase-index-deprecated.html 1227share/gtk-doc/html/libgimpbase/libgimpbase-index-deprecated.html
1227share/gtk-doc/html/libgimpbase/libgimpbase-index-new-in-2-2.html 1228share/gtk-doc/html/libgimpbase/libgimpbase-index-new-in-2-2.html
1228share/gtk-doc/html/libgimpbase/libgimpbase-index-new-in-2-4.html 1229share/gtk-doc/html/libgimpbase/libgimpbase-index-new-in-2-4.html
1229share/gtk-doc/html/libgimpbase/libgimpbase-index-new-in-2-6.html 1230share/gtk-doc/html/libgimpbase/libgimpbase-index-new-in-2-6.html
1230share/gtk-doc/html/libgimpbase/libgimpbase-index-new-in-2-8.html 1231share/gtk-doc/html/libgimpbase/libgimpbase-index-new-in-2-8.html
1231share/gtk-doc/html/libgimpbase/libgimpbase-index.html 1232share/gtk-doc/html/libgimpbase/libgimpbase-index.html
1232share/gtk-doc/html/libgimpbase/libgimpbase.devhelp2 1233share/gtk-doc/html/libgimpbase/libgimpbase.devhelp2
1233share/gtk-doc/html/libgimpbase/libgimpbase.html 1234share/gtk-doc/html/libgimpbase/libgimpbase.html
1234share/gtk-doc/html/libgimpbase/right.png 1235share/gtk-doc/html/libgimpbase/right.png
1235share/gtk-doc/html/libgimpbase/style.css 1236share/gtk-doc/html/libgimpbase/style.css
1236share/gtk-doc/html/libgimpbase/up.png 1237share/gtk-doc/html/libgimpbase/up.png
1237share/gtk-doc/html/libgimpcolor/home.png 1238share/gtk-doc/html/libgimpcolor/home.png
1238share/gtk-doc/html/libgimpcolor/index.html 1239share/gtk-doc/html/libgimpcolor/index.html
1239share/gtk-doc/html/libgimpcolor/index.sgml 1240share/gtk-doc/html/libgimpcolor/index.sgml
1240share/gtk-doc/html/libgimpcolor/left.png 1241share/gtk-doc/html/libgimpcolor/left.png
1241share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpAdaptiveSupersample.html 1242share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpAdaptiveSupersample.html
1242share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpBilinear.html 1243share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpBilinear.html
1243share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpCMYK.html 1244share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpCMYK.html
1244share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpCairoColor.html 1245share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpCairoColor.html
1245share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpColorManaged.html 1246share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpColorManaged.html
1246share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpColorSpace.html 1247share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpColorSpace.html
1247share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpHSV.html 1248share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpHSV.html
1248share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpRGB.html 1249share/gtk-doc/html/libgimpcolor/libgimpcolor-GimpRGB.html
1249share/gtk-doc/html/libgimpcolor/libgimpcolor-index-deprecated.html 1250share/gtk-doc/html/libgimpcolor/libgimpcolor-index-deprecated.html
1250share/gtk-doc/html/libgimpcolor/libgimpcolor-index-new-in-2-2.html 1251share/gtk-doc/html/libgimpcolor/libgimpcolor-index-new-in-2-2.html
1251share/gtk-doc/html/libgimpcolor/libgimpcolor-index-new-in-2-4.html 1252share/gtk-doc/html/libgimpcolor/libgimpcolor-index-new-in-2-4.html
1252share/gtk-doc/html/libgimpcolor/libgimpcolor-index-new-in-2-6.html 1253share/gtk-doc/html/libgimpcolor/libgimpcolor-index-new-in-2-6.html
1253share/gtk-doc/html/libgimpcolor/libgimpcolor-index-new-in-2-8.html 1254share/gtk-doc/html/libgimpcolor/libgimpcolor-index-new-in-2-8.html
1254share/gtk-doc/html/libgimpcolor/libgimpcolor-index.html 1255share/gtk-doc/html/libgimpcolor/libgimpcolor-index.html
1255share/gtk-doc/html/libgimpcolor/libgimpcolor.devhelp2 1256share/gtk-doc/html/libgimpcolor/libgimpcolor.devhelp2
1256share/gtk-doc/html/libgimpcolor/libgimpcolor.html 1257share/gtk-doc/html/libgimpcolor/libgimpcolor.html
1257share/gtk-doc/html/libgimpcolor/right.png 1258share/gtk-doc/html/libgimpcolor/right.png
1258share/gtk-doc/html/libgimpcolor/style.css 1259share/gtk-doc/html/libgimpcolor/style.css
1259share/gtk-doc/html/libgimpcolor/up.png 1260share/gtk-doc/html/libgimpcolor/up.png
1260share/gtk-doc/html/libgimpconfig/GimpColorConfig.html 1261share/gtk-doc/html/libgimpconfig/GimpColorConfig.html
1261share/gtk-doc/html/libgimpconfig/home.png 1262share/gtk-doc/html/libgimpconfig/home.png
1262share/gtk-doc/html/libgimpconfig/index.html 1263share/gtk-doc/html/libgimpconfig/index.html
1263share/gtk-doc/html/libgimpconfig/index.sgml 1264share/gtk-doc/html/libgimpconfig/index.sgml
1264share/gtk-doc/html/libgimpconfig/left.png 1265share/gtk-doc/html/libgimpconfig/left.png
1265share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfig-deserialize.html 1266share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfig-deserialize.html
1266share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfig-params.html 1267share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfig-params.html
1267share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfig-path.html 1268share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfig-path.html
1268share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfig-serialize.html 1269share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfig-serialize.html
1269share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfig-utils.html 1270share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfig-utils.html
1270share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfig.html 1271share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfig.html
1271share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfigError.html 1272share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfigError.html
1272share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfigWriter.html 1273share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpConfigWriter.html
1273share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpScanner.html 1274share/gtk-doc/html/libgimpconfig/libgimpconfig-GimpScanner.html
1274share/gtk-doc/html/libgimpconfig/libgimpconfig-hierarchy.html 1275share/gtk-doc/html/libgimpconfig/libgimpconfig-hierarchy.html
1275share/gtk-doc/html/libgimpconfig/libgimpconfig-index-deprecated.html 1276share/gtk-doc/html/libgimpconfig/libgimpconfig-index-deprecated.html
1276share/gtk-doc/html/libgimpconfig/libgimpconfig-index-new-in-2-4.html 1277share/gtk-doc/html/libgimpconfig/libgimpconfig-index-new-in-2-4.html
1277share/gtk-doc/html/libgimpconfig/libgimpconfig-index-new-in-2-6.html 1278share/gtk-doc/html/libgimpconfig/libgimpconfig-index-new-in-2-6.html
1278share/gtk-doc/html/libgimpconfig/libgimpconfig-index-new-in-2-8.html 1279share/gtk-doc/html/libgimpconfig/libgimpconfig-index-new-in-2-8.html
1279share/gtk-doc/html/libgimpconfig/libgimpconfig-index.html 1280share/gtk-doc/html/libgimpconfig/libgimpconfig-index.html
1280share/gtk-doc/html/libgimpconfig/libgimpconfig.devhelp2 1281share/gtk-doc/html/libgimpconfig/libgimpconfig.devhelp2
1281share/gtk-doc/html/libgimpconfig/libgimpconfig.html 1282share/gtk-doc/html/libgimpconfig/libgimpconfig.html
1282share/gtk-doc/html/libgimpconfig/right.png 1283share/gtk-doc/html/libgimpconfig/right.png
1283share/gtk-doc/html/libgimpconfig/style.css 1284share/gtk-doc/html/libgimpconfig/style.css
1284share/gtk-doc/html/libgimpconfig/up.png 1285share/gtk-doc/html/libgimpconfig/up.png
1285share/gtk-doc/html/libgimpmath/home.png 1286share/gtk-doc/html/libgimpmath/home.png
1286share/gtk-doc/html/libgimpmath/index.html 1287share/gtk-doc/html/libgimpmath/index.html
1287share/gtk-doc/html/libgimpmath/index.sgml 1288share/gtk-doc/html/libgimpmath/index.sgml
1288share/gtk-doc/html/libgimpmath/left.png 1289share/gtk-doc/html/libgimpmath/left.png
1289share/gtk-doc/html/libgimpmath/libgimpmath-GimpMD5.html 1290share/gtk-doc/html/libgimpmath/libgimpmath-GimpMD5.html
1290share/gtk-doc/html/libgimpmath/libgimpmath-GimpMath.html 1291share/gtk-doc/html/libgimpmath/libgimpmath-GimpMath.html
1291share/gtk-doc/html/libgimpmath/libgimpmath-GimpMatrix.html 1292share/gtk-doc/html/libgimpmath/libgimpmath-GimpMatrix.html
1292share/gtk-doc/html/libgimpmath/libgimpmath-GimpVector.html 1293share/gtk-doc/html/libgimpmath/libgimpmath-GimpVector.html
1293share/gtk-doc/html/libgimpmath/libgimpmath-index-deprecated.html 1294share/gtk-doc/html/libgimpmath/libgimpmath-index-deprecated.html
1294share/gtk-doc/html/libgimpmath/libgimpmath-index-new-in-2-2.html 1295share/gtk-doc/html/libgimpmath/libgimpmath-index-new-in-2-2.html
1295share/gtk-doc/html/libgimpmath/libgimpmath-index-new-in-2-4.html 1296share/gtk-doc/html/libgimpmath/libgimpmath-index-new-in-2-4.html
1296share/gtk-doc/html/libgimpmath/libgimpmath-index-new-in-2-6.html 1297share/gtk-doc/html/libgimpmath/libgimpmath-index-new-in-2-6.html
1297share/gtk-doc/html/libgimpmath/libgimpmath-index.html 1298share/gtk-doc/html/libgimpmath/libgimpmath-index.html
1298share/gtk-doc/html/libgimpmath/libgimpmath.devhelp2 1299share/gtk-doc/html/libgimpmath/libgimpmath.devhelp2
1299share/gtk-doc/html/libgimpmath/libgimpmath.html 1300share/gtk-doc/html/libgimpmath/libgimpmath.html
1300share/gtk-doc/html/libgimpmath/right.png 1301share/gtk-doc/html/libgimpmath/right.png
1301share/gtk-doc/html/libgimpmath/style.css 1302share/gtk-doc/html/libgimpmath/style.css
1302share/gtk-doc/html/libgimpmath/up.png 1303share/gtk-doc/html/libgimpmath/up.png
1303share/gtk-doc/html/libgimpmodule/GimpModule.html 1304share/gtk-doc/html/libgimpmodule/GimpModule.html
1304share/gtk-doc/html/libgimpmodule/GimpModuleDB.html 1305share/gtk-doc/html/libgimpmodule/GimpModuleDB.html
1305share/gtk-doc/html/libgimpmodule/home.png 1306share/gtk-doc/html/libgimpmodule/home.png
1306share/gtk-doc/html/libgimpmodule/index.html 1307share/gtk-doc/html/libgimpmodule/index.html
1307share/gtk-doc/html/libgimpmodule/index.sgml 1308share/gtk-doc/html/libgimpmodule/index.sgml
1308share/gtk-doc/html/libgimpmodule/left.png 1309share/gtk-doc/html/libgimpmodule/left.png
1309share/gtk-doc/html/libgimpmodule/libgimpmodule-index-deprecated.html 1310share/gtk-doc/html/libgimpmodule/libgimpmodule-index-deprecated.html
1310share/gtk-doc/html/libgimpmodule/libgimpmodule-index-new-in-2-2.html 1311share/gtk-doc/html/libgimpmodule/libgimpmodule-index-new-in-2-2.html
1311share/gtk-doc/html/libgimpmodule/libgimpmodule-index-new-in-2-4.html 1312share/gtk-doc/html/libgimpmodule/libgimpmodule-index-new-in-2-4.html
1312share/gtk-doc/html/libgimpmodule/libgimpmodule-index-new-in-2-6.html 1313share/gtk-doc/html/libgimpmodule/libgimpmodule-index-new-in-2-6.html
1313share/gtk-doc/html/libgimpmodule/libgimpmodule-index-new-in-2-8.html 1314share/gtk-doc/html/libgimpmodule/libgimpmodule-index-new-in-2-8.html
1314share/gtk-doc/html/libgimpmodule/libgimpmodule-index.html 1315share/gtk-doc/html/libgimpmodule/libgimpmodule-index.html
1315share/gtk-doc/html/libgimpmodule/libgimpmodule.devhelp2 1316share/gtk-doc/html/libgimpmodule/libgimpmodule.devhelp2
1316share/gtk-doc/html/libgimpmodule/libgimpmodule.html 1317share/gtk-doc/html/libgimpmodule/libgimpmodule.html
1317share/gtk-doc/html/libgimpmodule/right.png 1318share/gtk-doc/html/libgimpmodule/right.png
1318share/gtk-doc/html/libgimpmodule/style.css 1319share/gtk-doc/html/libgimpmodule/style.css
1319share/gtk-doc/html/libgimpmodule/up.png 1320share/gtk-doc/html/libgimpmodule/up.png
1320share/gtk-doc/html/libgimpthumb/GimpThumbnail.html 1321share/gtk-doc/html/libgimpthumb/GimpThumbnail.html
1321share/gtk-doc/html/libgimpthumb/home.png 1322share/gtk-doc/html/libgimpthumb/home.png
1322share/gtk-doc/html/libgimpthumb/index.html 1323share/gtk-doc/html/libgimpthumb/index.html
1323share/gtk-doc/html/libgimpthumb/index.sgml 1324share/gtk-doc/html/libgimpthumb/index.sgml
1324share/gtk-doc/html/libgimpthumb/left.png 1325share/gtk-doc/html/libgimpthumb/left.png
1325share/gtk-doc/html/libgimpthumb/libgimpthumb-GimpThumb-enums.html 1326share/gtk-doc/html/libgimpthumb/libgimpthumb-GimpThumb-enums.html
1326share/gtk-doc/html/libgimpthumb/libgimpthumb-GimpThumb-error.html 1327share/gtk-doc/html/libgimpthumb/libgimpthumb-GimpThumb-error.html
1327share/gtk-doc/html/libgimpthumb/libgimpthumb-GimpThumb-utils.html 1328share/gtk-doc/html/libgimpthumb/libgimpthumb-GimpThumb-utils.html
1328share/gtk-doc/html/libgimpthumb/libgimpthumb-index-deprecated.html 1329share/gtk-doc/html/libgimpthumb/libgimpthumb-index-deprecated.html
1329share/gtk-doc/html/libgimpthumb/libgimpthumb-index-new-in-2-2.html 1330share/gtk-doc/html/libgimpthumb/libgimpthumb-index-new-in-2-2.html
1330share/gtk-doc/html/libgimpthumb/libgimpthumb-index-new-in-2-4.html 1331share/gtk-doc/html/libgimpthumb/libgimpthumb-index-new-in-2-4.html
1331share/gtk-doc/html/libgimpthumb/libgimpthumb-index-new-in-2-6.html 1332share/gtk-doc/html/libgimpthumb/libgimpthumb-index-new-in-2-6.html
1332share/gtk-doc/html/libgimpthumb/libgimpthumb-index.html 1333share/gtk-doc/html/libgimpthumb/libgimpthumb-index.html
1333share/gtk-doc/html/libgimpthumb/libgimpthumb.devhelp2 1334share/gtk-doc/html/libgimpthumb/libgimpthumb.devhelp2
1334share/gtk-doc/html/libgimpthumb/libgimpthumb.html 1335share/gtk-doc/html/libgimpthumb/libgimpthumb.html
1335share/gtk-doc/html/libgimpthumb/right.png 1336share/gtk-doc/html/libgimpthumb/right.png
1336share/gtk-doc/html/libgimpthumb/style.css 1337share/gtk-doc/html/libgimpthumb/style.css
1337share/gtk-doc/html/libgimpthumb/up.png 1338share/gtk-doc/html/libgimpthumb/up.png
1338share/gtk-doc/html/libgimpwidgets/GimpBrowser.html 1339share/gtk-doc/html/libgimpwidgets/GimpBrowser.html
1339share/gtk-doc/html/libgimpwidgets/GimpButton.html 1340share/gtk-doc/html/libgimpwidgets/GimpButton.html
1340share/gtk-doc/html/libgimpwidgets/GimpCellRendererColor.html 1341share/gtk-doc/html/libgimpwidgets/GimpCellRendererColor.html
1341share/gtk-doc/html/libgimpwidgets/GimpCellRendererToggle.html 1342share/gtk-doc/html/libgimpwidgets/GimpCellRendererToggle.html
1342share/gtk-doc/html/libgimpwidgets/GimpChainButton.html 1343share/gtk-doc/html/libgimpwidgets/GimpChainButton.html
1343share/gtk-doc/html/libgimpwidgets/GimpColorArea.html 1344share/gtk-doc/html/libgimpwidgets/GimpColorArea.html
1344share/gtk-doc/html/libgimpwidgets/GimpColorButton.html 1345share/gtk-doc/html/libgimpwidgets/GimpColorButton.html
1345share/gtk-doc/html/libgimpwidgets/GimpColorDisplay.html 1346share/gtk-doc/html/libgimpwidgets/GimpColorDisplay.html
1346share/gtk-doc/html/libgimpwidgets/GimpColorDisplayStack.html 1347share/gtk-doc/html/libgimpwidgets/GimpColorDisplayStack.html
1347share/gtk-doc/html/libgimpwidgets/GimpColorHexEntry.html 1348share/gtk-doc/html/libgimpwidgets/GimpColorHexEntry.html
1348share/gtk-doc/html/libgimpwidgets/GimpColorNotebook.html 1349share/gtk-doc/html/libgimpwidgets/GimpColorNotebook.html
1349share/gtk-doc/html/libgimpwidgets/GimpColorProfileComboBox.html 1350share/gtk-doc/html/libgimpwidgets/GimpColorProfileComboBox.html
1350share/gtk-doc/html/libgimpwidgets/GimpColorProfileStore.html 1351share/gtk-doc/html/libgimpwidgets/GimpColorProfileStore.html
1351share/gtk-doc/html/libgimpwidgets/GimpColorScale.html 1352share/gtk-doc/html/libgimpwidgets/GimpColorScale.html
1352share/gtk-doc/html/libgimpwidgets/GimpColorScales.html 1353share/gtk-doc/html/libgimpwidgets/GimpColorScales.html
1353share/gtk-doc/html/libgimpwidgets/GimpColorSelect.html 1354share/gtk-doc/html/libgimpwidgets/GimpColorSelect.html
1354share/gtk-doc/html/libgimpwidgets/GimpColorSelection.html 1355share/gtk-doc/html/libgimpwidgets/GimpColorSelection.html
1355share/gtk-doc/html/libgimpwidgets/GimpColorSelector.html 1356share/gtk-doc/html/libgimpwidgets/GimpColorSelector.html
1356share/gtk-doc/html/libgimpwidgets/GimpController.html 1357share/gtk-doc/html/libgimpwidgets/GimpController.html
1357share/gtk-doc/html/libgimpwidgets/GimpDialog.html 1358share/gtk-doc/html/libgimpwidgets/GimpDialog.html
1358share/gtk-doc/html/libgimpwidgets/GimpEnumComboBox.html 1359share/gtk-doc/html/libgimpwidgets/GimpEnumComboBox.html
1359share/gtk-doc/html/libgimpwidgets/GimpEnumLabel.html 1360share/gtk-doc/html/libgimpwidgets/GimpEnumLabel.html
1360share/gtk-doc/html/libgimpwidgets/GimpEnumStore.html 1361share/gtk-doc/html/libgimpwidgets/GimpEnumStore.html
1361share/gtk-doc/html/libgimpwidgets/GimpFileEntry.html 1362share/gtk-doc/html/libgimpwidgets/GimpFileEntry.html
1362share/gtk-doc/html/libgimpwidgets/GimpFrame.html 1363share/gtk-doc/html/libgimpwidgets/GimpFrame.html
1363share/gtk-doc/html/libgimpwidgets/GimpIntComboBox.html 1364share/gtk-doc/html/libgimpwidgets/GimpIntComboBox.html
1364share/gtk-doc/html/libgimpwidgets/GimpIntStore.html 1365share/gtk-doc/html/libgimpwidgets/GimpIntStore.html
1365share/gtk-doc/html/libgimpwidgets/GimpMemsizeEntry.html 1366share/gtk-doc/html/libgimpwidgets/GimpMemsizeEntry.html
1366share/gtk-doc/html/libgimpwidgets/GimpNumberPairEntry.html 1367share/gtk-doc/html/libgimpwidgets/GimpNumberPairEntry.html
1367share/gtk-doc/html/libgimpwidgets/GimpOffsetArea.html 1368share/gtk-doc/html/libgimpwidgets/GimpOffsetArea.html
1368share/gtk-doc/html/libgimpwidgets/GimpPageSelector.html 1369share/gtk-doc/html/libgimpwidgets/GimpPageSelector.html
1369share/gtk-doc/html/libgimpwidgets/GimpPathEditor.html 1370share/gtk-doc/html/libgimpwidgets/GimpPathEditor.html
1370share/gtk-doc/html/libgimpwidgets/GimpPickButton.html 1371share/gtk-doc/html/libgimpwidgets/GimpPickButton.html
1371share/gtk-doc/html/libgimpwidgets/GimpPixmap.html 1372share/gtk-doc/html/libgimpwidgets/GimpPixmap.html
1372share/gtk-doc/html/libgimpwidgets/GimpPreview.html 1373share/gtk-doc/html/libgimpwidgets/GimpPreview.html
1373share/gtk-doc/html/libgimpwidgets/GimpPreviewArea.html 1374share/gtk-doc/html/libgimpwidgets/GimpPreviewArea.html
1374share/gtk-doc/html/libgimpwidgets/GimpRuler.html 1375share/gtk-doc/html/libgimpwidgets/GimpRuler.html
1375share/gtk-doc/html/libgimpwidgets/GimpScrolledPreview.html 1376share/gtk-doc/html/libgimpwidgets/GimpScrolledPreview.html
1376share/gtk-doc/html/libgimpwidgets/GimpSizeEntry.html 1377share/gtk-doc/html/libgimpwidgets/GimpSizeEntry.html
1377share/gtk-doc/html/libgimpwidgets/GimpStringComboBox.html 1378share/gtk-doc/html/libgimpwidgets/GimpStringComboBox.html
1378share/gtk-doc/html/libgimpwidgets/GimpUnitComboBox.html 1379share/gtk-doc/html/libgimpwidgets/GimpUnitComboBox.html
1379share/gtk-doc/html/libgimpwidgets/GimpUnitMenu.html 1380share/gtk-doc/html/libgimpwidgets/GimpUnitMenu.html
1380share/gtk-doc/html/libgimpwidgets/GimpUnitStore.html 1381share/gtk-doc/html/libgimpwidgets/GimpUnitStore.html
1381share/gtk-doc/html/libgimpwidgets/GimpZoomModel.html 1382share/gtk-doc/html/libgimpwidgets/GimpZoomModel.html
1382share/gtk-doc/html/libgimpwidgets/gimp-browser.png 1383share/gtk-doc/html/libgimpwidgets/gimp-browser.png
1383share/gtk-doc/html/libgimpwidgets/gimp-button.png 1384share/gtk-doc/html/libgimpwidgets/gimp-button.png
1384share/gtk-doc/html/libgimpwidgets/gimp-chain-button.png 1385share/gtk-doc/html/libgimpwidgets/gimp-chain-button.png
1385share/gtk-doc/html/libgimpwidgets/gimp-color-area.png 1386share/gtk-doc/html/libgimpwidgets/gimp-color-area.png
1386share/gtk-doc/html/libgimpwidgets/gimp-color-button.png 1387share/gtk-doc/html/libgimpwidgets/gimp-color-button.png
1387share/gtk-doc/html/libgimpwidgets/gimp-color-hex-entry.png 1388share/gtk-doc/html/libgimpwidgets/gimp-color-hex-entry.png
1388share/gtk-doc/html/libgimpwidgets/gimp-color-profile-combo-box.png 1389share/gtk-doc/html/libgimpwidgets/gimp-color-profile-combo-box.png
1389share/gtk-doc/html/libgimpwidgets/gimp-color-scale.png 1390share/gtk-doc/html/libgimpwidgets/gimp-color-scale.png
1390share/gtk-doc/html/libgimpwidgets/gimp-color-selection.png 1391share/gtk-doc/html/libgimpwidgets/gimp-color-selection.png
1391share/gtk-doc/html/libgimpwidgets/gimp-dialog.png 1392share/gtk-doc/html/libgimpwidgets/gimp-dialog.png
1392share/gtk-doc/html/libgimpwidgets/gimp-enum-combo-box.png 1393share/gtk-doc/html/libgimpwidgets/gimp-enum-combo-box.png
1393share/gtk-doc/html/libgimpwidgets/gimp-enum-label.png 1394share/gtk-doc/html/libgimpwidgets/gimp-enum-label.png
1394share/gtk-doc/html/libgimpwidgets/gimp-file-entry.png 1395share/gtk-doc/html/libgimpwidgets/gimp-file-entry.png
1395share/gtk-doc/html/libgimpwidgets/gimp-frame.png 1396share/gtk-doc/html/libgimpwidgets/gimp-frame.png
1396share/gtk-doc/html/libgimpwidgets/gimp-hint-box.png 1397share/gtk-doc/html/libgimpwidgets/gimp-hint-box.png
1397share/gtk-doc/html/libgimpwidgets/gimp-int-combo-box.png 1398share/gtk-doc/html/libgimpwidgets/gimp-int-combo-box.png
1398share/gtk-doc/html/libgimpwidgets/gimp-memsize-entry.png 1399share/gtk-doc/html/libgimpwidgets/gimp-memsize-entry.png
1399share/gtk-doc/html/libgimpwidgets/gimp-number-pair-entry.png 1400share/gtk-doc/html/libgimpwidgets/gimp-number-pair-entry.png
1400share/gtk-doc/html/libgimpwidgets/gimp-offset-area.png 1401share/gtk-doc/html/libgimpwidgets/gimp-offset-area.png
1401share/gtk-doc/html/libgimpwidgets/gimp-page-selector.png 1402share/gtk-doc/html/libgimpwidgets/gimp-page-selector.png
1402share/gtk-doc/html/libgimpwidgets/gimp-path-editor.png 1403share/gtk-doc/html/libgimpwidgets/gimp-path-editor.png
1403share/gtk-doc/html/libgimpwidgets/gimp-pick-button.png 1404share/gtk-doc/html/libgimpwidgets/gimp-pick-button.png
1404share/gtk-doc/html/libgimpwidgets/gimp-preview-area.png 1405share/gtk-doc/html/libgimpwidgets/gimp-preview-area.png
1405share/gtk-doc/html/libgimpwidgets/gimp-string-combo-box.png 1406share/gtk-doc/html/libgimpwidgets/gimp-string-combo-box.png
1406share/gtk-doc/html/libgimpwidgets/gimp-unit-menu.png 1407share/gtk-doc/html/libgimpwidgets/gimp-unit-menu.png
1407share/gtk-doc/html/libgimpwidgets/home.png 1408share/gtk-doc/html/libgimpwidgets/home.png
1408share/gtk-doc/html/libgimpwidgets/index.html 1409share/gtk-doc/html/libgimpwidgets/index.html
1409share/gtk-doc/html/libgimpwidgets/index.sgml 1410share/gtk-doc/html/libgimpwidgets/index.sgml
1410share/gtk-doc/html/libgimpwidgets/left.png 1411share/gtk-doc/html/libgimpwidgets/left.png
1411share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpCairoUtils.html 1412share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpCairoUtils.html
1412share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpEnumWidgets.html 1413share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpEnumWidgets.html
1413share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpHelpUI.html 1414share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpHelpUI.html
1414share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpHintBox.html 1415share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpHintBox.html
1415share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpOldWidgets.html 1416share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpOldWidgets.html
1416share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpPropWidgets.html 1417share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpPropWidgets.html
1417share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpQueryBox.html 1418share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpQueryBox.html
1418share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpStock.html 1419share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpStock.html
1419share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpWidgets.html 1420share/gtk-doc/html/libgimpwidgets/libgimpwidgets-GimpWidgets.html
1420share/gtk-doc/html/libgimpwidgets/libgimpwidgets-cell-renderers.html 1421share/gtk-doc/html/libgimpwidgets/libgimpwidgets-cell-renderers.html
1421share/gtk-doc/html/libgimpwidgets/libgimpwidgets-colordisplay.html 1422share/gtk-doc/html/libgimpwidgets/libgimpwidgets-colordisplay.html
1422share/gtk-doc/html/libgimpwidgets/libgimpwidgets-colorselector.html 1423share/gtk-doc/html/libgimpwidgets/libgimpwidgets-colorselector.html
1423share/gtk-doc/html/libgimpwidgets/libgimpwidgets-controller.html 1424share/gtk-doc/html/libgimpwidgets/libgimpwidgets-controller.html

cvs diff -r1.78 -r1.79 pkgsrc/graphics/gimp/distinfo (switch to unified diff)

--- pkgsrc/graphics/gimp/distinfo 2013/11/10 20:12:32 1.78
+++ pkgsrc/graphics/gimp/distinfo 2013/12/01 11:58:44 1.79
@@ -1,13 +1,13 @@ @@ -1,13 +1,13 @@
1$NetBSD: distinfo,v 1.78 2013/11/10 20:12:32 dholland Exp $ 1$NetBSD: distinfo,v 1.79 2013/12/01 11:58:44 adam Exp $
2 2
3SHA1 (gimp-2.8.8.tar.bz2) = a97b93d608a8b0cccd0d97da63bee48d40cc4b35 3SHA1 (gimp-2.8.10.tar.bz2) = 6d3c98fcc86f42b0a825a5c62d5d3a5e1c83f48b
4RMD160 (gimp-2.8.8.tar.bz2) = e8f06db6af449594fcee3ab1249ba59149c8509e 4RMD160 (gimp-2.8.10.tar.bz2) = c5364c49af2c695bc3d0bd97e792bf3ad75b1175
5Size (gimp-2.8.8.tar.bz2) = 20345808 bytes 5Size (gimp-2.8.10.tar.bz2) = 20343461 bytes
6SHA1 (patch-aa) = bc998a9510458e1f296c44ae26c8ee3900ce49ab 6SHA1 (patch-aa) = bc998a9510458e1f296c44ae26c8ee3900ce49ab
7SHA1 (patch-ab) = 37820b9e03702248294f0030ffbd09e7f14f3dcb 7SHA1 (patch-ab) = 37820b9e03702248294f0030ffbd09e7f14f3dcb
8SHA1 (patch-ad) = 7863678d59ccf54e2ce61a4ac4b883fb9eb5fb82 8SHA1 (patch-ad) = 7863678d59ccf54e2ce61a4ac4b883fb9eb5fb82
9SHA1 (patch-app_Makefile.in) = 1677fa436f76d0b83bf048447fc025584a255e68 9SHA1 (patch-app_Makefile.in) = 1677fa436f76d0b83bf048447fc025584a255e68
10SHA1 (patch-app_config_Makefile.in) = c5376f98649255b163cf9af448b5931d7675526c 10SHA1 (patch-app_config_Makefile.in) = c5376f98649255b163cf9af448b5931d7675526c
11SHA1 (patch-devel-docs_app_Makefile.in) = 89aec477783899cc6a5ac765d567d73f79474d5e 11SHA1 (patch-devel-docs_app_Makefile.in) = 89aec477783899cc6a5ac765d567d73f79474d5e
12SHA1 (patch-plug-ins_common_file-mng.c) = 8ed244997cdef7125e1aa5da4d0fac5068ad5159 12SHA1 (patch-plug-ins_common_file-mng.c) = 8ed244997cdef7125e1aa5da4d0fac5068ad5159
13SHA1 (patch-plug-ins_script-fu_script-fu-server.c) = c424b1a8e345ec3d0763ac2cf1f8535da9e10797 13SHA1 (patch-plug-ins_script-fu_script-fu-server.c) = c424b1a8e345ec3d0763ac2cf1f8535da9e10797