diff options
author | adam <adam@pkgsrc.org> | 2005-07-28 13:52:10 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2005-07-28 13:52:10 +0000 |
commit | b8f23c0e85e0e478cf0971c7c5b7975d2f6c2c64 (patch) | |
tree | b5ecf2ce3f988ae3bf96d26cc691ab0f1c59e5cd /graphics/inkscape/patches | |
parent | a6c70eb6d74f13ee27e56145d6de0bdba419747a (diff) | |
download | pkgsrc-b8f23c0e85e0e478cf0971c7c5b7975d2f6c2c64.tar.gz |
Changes 0.42:
* Flowed text: text objects that automatically reflow in any shape (not
only rectangle).
* Text selection: finally you can shift+arrow or drag over part of a
text and apply any style to the selected span.
* Gradient tool: a completely redesigned and much easier to use gradient
interface, with gradient handles displayed right on canvas.
* Effects are now usable from within Inkscape on all platforms; this
version ships with a collection of effects including path
interpolation, randomization, and various fractal algorithms.
* Color swatches: a standard facility in most graphic software, now in
Inkscape too.
* Colored clones: clones can now be painted differently from their
original.
* Tile tracing: the Tile Clones dialog can trace the existing image with
the tiling, producing a multitude of exciting effects.
* Grid arrange, baseline align, unclumping: new powerful ways to arrange
objects.
* Better PS/EPS export: gradient support, better text handling, a
command line option for batch export.
* Command line SVG analysis: use Inkscape from the command line to query
coordinates and dimensions of objects in an SVG file.
* Better SVG/CSS compliance: notably, internal CSS stylesheets are now
supported (read-only).
* OS X support: In addition to Linux and Windows, Inkscape 0.42 is
available as a fully self-contained dmg package for Mac OS X.
Diffstat (limited to 'graphics/inkscape/patches')
-rw-r--r-- | graphics/inkscape/patches/patch-aa | 13 | ||||
-rw-r--r-- | graphics/inkscape/patches/patch-ab | 13 |
2 files changed, 0 insertions, 26 deletions
diff --git a/graphics/inkscape/patches/patch-aa b/graphics/inkscape/patches/patch-aa deleted file mode 100644 index 6c8a7d15b6f..00000000000 --- a/graphics/inkscape/patches/patch-aa +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-aa,v 1.5 2005/05/10 20:22:39 drochner Exp $ - ---- configure.orig 2005-05-11 00:15:17.000000000 +0200 -+++ configure -@@ -21905,7 +21905,7 @@ fi - - done - --if test "x$gc_ok" == "xyes"; then -+if test "x$gc_ok" = "xyes"; then - echo "$as_me:$LINENO: checking libgc version 6.4+" >&5 - echo $ECHO_N "checking libgc version 6.4+... $ECHO_C" >&6 - if test "$cross_compiling" = yes; then diff --git a/graphics/inkscape/patches/patch-ab b/graphics/inkscape/patches/patch-ab deleted file mode 100644 index f560a369a0c..00000000000 --- a/graphics/inkscape/patches/patch-ab +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ab,v 1.1 2005/05/10 18:38:15 drochner Exp $ - ---- src/object-edit.cpp.orig 2005-03-16 18:16:43.000000000 +0100 -+++ src/object-edit.cpp -@@ -839,7 +839,7 @@ sp_spiral_outer_set (SPItem *item, const - spiral->rad = rad_new; - spiral->t0 = pow (r0 / spiral->rad, 1/spiral->exp); - } -- if (!std::isfinite(spiral->t0)) spiral->t0 = 0.0; -+ if (!finite(spiral->t0)) spiral->t0 = 0.0; - spiral->t0 = CLAMP (spiral->t0, 0.0, 0.999); - } - |