From: buliabyak Date: Wed, 26 Mar 2008 06:09:34 +0000 (+0000) Subject: remove the inkscape-shadow hack as no longer needed X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=58c21a0edf165ba19232e4919bf16ee7fcdc3797;p=inkscape.git remove the inkscape-shadow hack as no longer needed --- diff --git a/share/extensions/Makefile.am b/share/extensions/Makefile.am index 9d716fa85..fae1c01bd 100644 --- a/share/extensions/Makefile.am +++ b/share/extensions/Makefile.am @@ -59,8 +59,6 @@ extensions = \ handles.py \ ill2svg.pl \ inkex.py \ - inkscape-shadow.sh \ - inkscape-shadow-white.sh \ interp.py \ lindenmayer.py \ lorem_ipsum.py \ @@ -81,7 +79,7 @@ extensions = \ radiusrand.py \ render_barcode.py \ render_alphabetsoup.py \ - render_alphabetsoup_config.py \ + render_alphabetsoup_config.py \ rtree.py \ rubberstretch.py\ simplepath.py \ @@ -115,7 +113,7 @@ extensions = \ whirl.py otherstuff = \ - aisvg.xslt \ + aisvg.xslt \ colors.xml \ svg2xaml.xsl \ xaml2svg.xsl diff --git a/share/extensions/README b/share/extensions/README index 74b4f7bc1..ba0251dc4 100644 --- a/share/extensions/README +++ b/share/extensions/README @@ -1,12 +1,10 @@ This folder contains Inkscape extensions, i.e. the scripts -that Inkscape uses to perform some specialized functions. +that implement some commands that you can use from within +Inkscape. Most of these commands are in the Effects menu. -Each *.inx file contains a description of an extension, -listing its name, description, prerequisites, etc. These +Each *.inx file describes an extension, +listing its name, purpose, prerequisites, etc. These files are read by Inkscape on launch. Other files are the scripts themselves (Perl, Python, and Ruby are supported, as well as shell scripts). -Some of the scripts here are not (yet) hooked up to Inkscape -in any way but can be used from the command line (e.g. -inkscape-shadow*). diff --git a/share/extensions/inkscape-shadow-white.sh b/share/extensions/inkscape-shadow-white.sh deleted file mode 100755 index c1cb0268c..000000000 --- a/share/extensions/inkscape-shadow-white.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -convert -mattecolor "#ffff" -frame $((${2} * 3))x$((${2} * 3)) -fx '1' -channel A -blur $((${2} * 3))x${2} $1 $1 diff --git a/share/extensions/inkscape-shadow.sh b/share/extensions/inkscape-shadow.sh deleted file mode 100755 index 7a3e45fa9..000000000 --- a/share/extensions/inkscape-shadow.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -convert -mattecolor "#000f" -frame $((${2} * 3))x$((${2} * 3)) -fx '0' -channel A -blur $((${2} * 3))x${2} $1 $1