inkscape/inkscape-packages.patch
Dominique Leuenberger c6534d8c91 Accepting request 283852 from GNOME:Apps
- Update to version 0.91:
  + Improved performance. The new renderer is significantly faster
    on most drawings.
  + OpenMP multithreading for filters.
  + Substantial memory savings.
  + Responsiveness improvements.
  + Rendering bug fixes. The following things now render correctly:
    - Pattern fills (no more gaps between tiles, regardless of
      transformation).
    - Stroke of transformed objects in patterns.
    - Patterns containing clipped objects.
    - Nested clipping paths.
    - Masked and clipped objects with large masks / clipping paths
      in Outline view.
    - Paths with wide strokes and long miters.
    - Fonts.
  + A grayscale display color mode has been added, that shows a
    preview of your drawing in grayscale.
  + The tool control bar for the Node Tool features a new dropdown
    to insert new nodes on the selected segments extreme values.
  + The Measurement tool is a new feature for the artist to measure
    the elements in their drawing.
  + Text size default unit is now points (pt) and is customizable
    (px,pt,pc,mm,cm,in,em).
  + Text toolbar shows full list of font style variants for that
    font.
  + Files with text in em units read correctly.
  + Font substitution warning dialog.
  + Gradient toolbar enhanced to select and modify gradient stops,
    invert, repeat, and link gradients.

OBS-URL: https://build.opensuse.org/request/show/283852
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/inkscape?expand=0&rev=80
2015-02-06 09:50:07 +00:00

25 lines
1.4 KiB
Diff

===================================================================
--- a/share/extensions/export_gimp_palette.py
+++ b/share/extensions/export_gimp_palette.py
@@ -13,7 +13,7 @@ import sys, simplestyle
try:
from xml.dom.minidom import parse
except:
- inkex.errormsg(_('The export_gpl.py module requires PyXML. Please download the latest version from http://pyxml.sourceforge.net/.'))
+ inkex.errormsg(_('The export_gpl.py module requires XML modules. Please install the python-xml package.'))
sys.exit()
# local library
import inkex
===================================================================
--- a/share/extensions/inkex.py
+++ b/share/extensions/inkex.py
@@ -106,7 +106,7 @@ def uutounit(val, unit):
from lxml import etree
except Exception, e:
localize()
- errormsg(_("The fantastic lxml wrapper for libxml2 is required by inkex.py and therefore this extension. Please download and install the latest version from http://cheeseshop.python.org/pypi/lxml/, or install it through your package manager by a command like: sudo apt-get install python-lxml\n\nTechnical details:\n%s" % (e,)))
+ errormsg(_("The fantastic lxml wrapper for libxml2 is required by inkex.py and therefore this extension. Please download and install it through your package manager by a command like: sudo zypper install python-lxml\n\nTechnical details:\n%s" % (e,)))
sys.exit()
def check_inkbool(option, opt, value):