diff options
| author | George Steel <george.steel@gmail.com> | 2023-06-04 20:26:39 -0400 |
|---|---|---|
| committer | George Steel <george.steel@gmail.com> | 2023-06-15 12:25:15 -0400 |
| commit | 7dcb253d9b444ffadda389eca0b18280c7f428c4 (patch) | |
| tree | f654ff1594305092ab46b920e2a72a12a283d50c /templates/zip.xml | |
| parent | 92623d460d82f01c01353a5a5c992ec53baf7f41 (diff) | |
Add panelization options to zip export
Diffstat (limited to 'templates/zip.xml')
| -rw-r--r-- | templates/zip.xml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/templates/zip.xml b/templates/zip.xml index 0018cb19..1eafd662 100644 --- a/templates/zip.xml +++ b/templates/zip.xml @@ -5,17 +5,28 @@ <output> <extension>.zip</extension> <mimetype>application/zip</mimetype> - <filetypename>Ink/Stitch: ZIP export multiple formats (.zip)</filetypename> + <filetypename>Ink/Stitch: ZIP export multiple formats and extra options (.zip)</filetypename> <filetypetooltip>Create a ZIP with multiple embroidery file formats using Ink/Stitch</filetypetooltip> <dataloss>true</dataloss> </output> + <label>Panelization options (defaults to single design):</label> + <param name="x-repeats" type="int" min="1" max="20" gui-text="Horizontal repeats">1</param> + <param name="x-spacing" type="float" min="-1000" max="1000" gui-text="Horizontal spacing (mm)">100</param> + <param name="y-repeats" type="int" min="1" max="20" gui-text="Vertical repeats">1</param> + <param name="y-spacing" type="float" min="-1000" max="1000" gui-text="Vertical spacing (mm)">100</param> + + + <spacer/> + <label>Output formats:</label> {%- for format, description, mimetype, category in formats %} {%- if category != "vector" and category != "debug" %} <param name="format-{{ format }}" type="boolean" _gui-text=".{{ format | upper }}: {{ description }}">false</param> {%- endif %} {%- endfor %} + <param name="format-threadlist" type="boolean" gui-text=".TXT: Threadlist [COLOR]">false</param> <param name="format-svg" type="boolean" gui-text=".SVG: Scalable Vector Graphic">false</param> + <param name="extension" type="string" gui-hidden="true">zip</param> <script> {{ command_tag | safe }} |
