├── .gitignore ├── COPYING ├── README ├── gimp2 ├── arclayer.py ├── arclayer.scm ├── arrowdesigner.py ├── blobi.py ├── changefont.py ├── cutout.py ├── export-all.py ├── export-scaled.py ├── fibonacci.scm ├── fontasia-gimp.py ├── gimplabels │ ├── ChangeLog │ ├── Makefile │ ├── README │ ├── labels.scm │ ├── labels.scm-dist │ ├── labeltemplates.scm │ ├── labeltemplates.scm-dist │ └── make-label-fu.py ├── life.py ├── migrate-gimp-presets.py ├── migrate-plugins-2-99.py ├── pandora-combine.scm ├── pyui.py ├── saver.py ├── sf-helloworld.scm ├── stack.scm ├── text-along-path.py └── wallpaper.py └── gimp3 ├── README.md ├── arrowdesigner.py ├── blobi.py ├── gimphelpers.py ├── pandora.py ├── saver.py └── wallpaper.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.py[co] 3 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/COPYING -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/README -------------------------------------------------------------------------------- /gimp2/arclayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/arclayer.py -------------------------------------------------------------------------------- /gimp2/arclayer.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/arclayer.scm -------------------------------------------------------------------------------- /gimp2/arrowdesigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/arrowdesigner.py -------------------------------------------------------------------------------- /gimp2/blobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/blobi.py -------------------------------------------------------------------------------- /gimp2/changefont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/changefont.py -------------------------------------------------------------------------------- /gimp2/cutout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/cutout.py -------------------------------------------------------------------------------- /gimp2/export-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/export-all.py -------------------------------------------------------------------------------- /gimp2/export-scaled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/export-scaled.py -------------------------------------------------------------------------------- /gimp2/fibonacci.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/fibonacci.scm -------------------------------------------------------------------------------- /gimp2/fontasia-gimp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/fontasia-gimp.py -------------------------------------------------------------------------------- /gimp2/gimplabels/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/gimplabels/ChangeLog -------------------------------------------------------------------------------- /gimp2/gimplabels/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/gimplabels/Makefile -------------------------------------------------------------------------------- /gimp2/gimplabels/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/gimplabels/README -------------------------------------------------------------------------------- /gimp2/gimplabels/labels.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/gimplabels/labels.scm -------------------------------------------------------------------------------- /gimp2/gimplabels/labels.scm-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/gimplabels/labels.scm-dist -------------------------------------------------------------------------------- /gimp2/gimplabels/labeltemplates.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/gimplabels/labeltemplates.scm -------------------------------------------------------------------------------- /gimp2/gimplabels/labeltemplates.scm-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/gimplabels/labeltemplates.scm-dist -------------------------------------------------------------------------------- /gimp2/gimplabels/make-label-fu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/gimplabels/make-label-fu.py -------------------------------------------------------------------------------- /gimp2/life.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/life.py -------------------------------------------------------------------------------- /gimp2/migrate-gimp-presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/migrate-gimp-presets.py -------------------------------------------------------------------------------- /gimp2/migrate-plugins-2-99.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/migrate-plugins-2-99.py -------------------------------------------------------------------------------- /gimp2/pandora-combine.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/pandora-combine.scm -------------------------------------------------------------------------------- /gimp2/pyui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/pyui.py -------------------------------------------------------------------------------- /gimp2/saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/saver.py -------------------------------------------------------------------------------- /gimp2/sf-helloworld.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/sf-helloworld.scm -------------------------------------------------------------------------------- /gimp2/stack.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/stack.scm -------------------------------------------------------------------------------- /gimp2/text-along-path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/text-along-path.py -------------------------------------------------------------------------------- /gimp2/wallpaper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp2/wallpaper.py -------------------------------------------------------------------------------- /gimp3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp3/README.md -------------------------------------------------------------------------------- /gimp3/arrowdesigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp3/arrowdesigner.py -------------------------------------------------------------------------------- /gimp3/blobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp3/blobi.py -------------------------------------------------------------------------------- /gimp3/gimphelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp3/gimphelpers.py -------------------------------------------------------------------------------- /gimp3/pandora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp3/pandora.py -------------------------------------------------------------------------------- /gimp3/saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp3/saver.py -------------------------------------------------------------------------------- /gimp3/wallpaper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkana/gimp-plugins/HEAD/gimp3/wallpaper.py --------------------------------------------------------------------------------