From a97bf3449ea2ce909a3d77f5d528bac1813b46c6 Mon Sep 17 00:00:00 2001 From: lohanandrade Date: Fri, 17 Jun 2016 08:39:34 +0200 Subject: [Bug #1580583] update corel draw x8 shortcut. Fixed bugs: - https://launchpad.net/bugs/1580583 (bzr r14994) --- share/keys/Makefile.am | 1 + share/keys/corel-draw-x8.xml | 175 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 176 insertions(+) create mode 100644 share/keys/corel-draw-x8.xml (limited to 'share') diff --git a/share/keys/Makefile.am b/share/keys/Makefile.am index f4a08d595..98b720c2b 100644 --- a/share/keys/Makefile.am +++ b/share/keys/Makefile.am @@ -9,6 +9,7 @@ keys_DATA = \ adobe-illustrator-cs2.xml \ right-handed-illustration.xml \ corel-draw-x4.xml \ + corel-draw-x8.xml \ zoner-draw.xml \ acd-canvas.xml diff --git a/share/keys/corel-draw-x8.xml b/share/keys/corel-draw-x8.xml new file mode 100644 index 000000000..cd4cf4304 --- /dev/null +++ b/share/keys/corel-draw-x8.xml @@ -0,0 +1,175 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3 From 19f956f4e808c2c97dfeee599266c6d9680c2f3d Mon Sep 17 00:00:00 2001 From: Nicolas Dufour Date: Fri, 17 Jun 2016 08:44:20 +0200 Subject: [Bug #1454910] Compressed SVG with media error. Fixed bugs: - https://launchpad.net/bugs/1454910 (bzr r14995) --- share/extensions/svg_and_media_zip_output.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'share') diff --git a/share/extensions/svg_and_media_zip_output.py b/share/extensions/svg_and_media_zip_output.py index fb1ddd823..e021bfd4e 100755 --- a/share/extensions/svg_and_media_zip_output.py +++ b/share/extensions/svg_and_media_zip_output.py @@ -111,7 +111,7 @@ class CompressedMediaOutput(inkex.Effect): url = urlparse.urlparse(xlink) href = urllib.url2pathname(url.path) - if (href != None): + if (href != None and os.path.isfile(href)): absref = os.path.realpath(href) absref = unicode(absref, "utf-8") -- cgit v1.2.3