diff options
Diffstat (limited to 'templates/zip.inx')
| -rw-r--r-- | templates/zip.inx | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/templates/zip.inx b/templates/zip.inx new file mode 100644 index 00000000..7b576349 --- /dev/null +++ b/templates/zip.inx @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension"> + <name>embroidery ZIP file output</name> + <id>org.inkstitch.output.zip.{{ locale }}</id> + <dependency type="executable" location="extensions">inkstitch.py</dependency> + <dependency type="executable" location="extensions">inkex.py</dependency> + <output> + <extension>.zip</extension> + <mimetype>application/zip</mimetype> + <_filetypename>{{ _("Ink/Stitch: ZIP export multiple formats (.zip)") }}"</_filetypename> + <_filetypetooltip>{{ _("Create a ZIP with multiple embroidery file formats using Ink/Stitch") }}</_filetypetooltip> + <dataloss>true</dataloss> + </output> + {% for format, description in formats %} + <param name="format-{{ format }}" type="boolean" _gui-text=".{{ format | upper }}: {{ _(description) }}">false</param> + {% endfor %} + <param name="extension" type="string" gui-hidden="true">zip</param> + <script> + <command reldir="extensions" interpreter="python">inkstitch.py</command> + </script> +</inkscape-extension> |
