summaryrefslogtreecommitdiff
path: root/templates/jump_to_trim.xml
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2024-05-01 19:44:04 +0200
committerGitHub <noreply@github.com>2024-05-01 19:44:04 +0200
commit298f911ec588b99786e6adcc4ae5015c1717fc3d (patch)
treea0cd60788f90f98d909757615032b9971bd0ca4a /templates/jump_to_trim.xml
parent2ee4175437bbfcddf98e5eacba9b019113716ac8 (diff)
Add Jump to Trim Extension (#2864)
Diffstat (limited to 'templates/jump_to_trim.xml')
-rw-r--r--templates/jump_to_trim.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/templates/jump_to_trim.xml b/templates/jump_to_trim.xml
new file mode 100644
index 00000000..5d0831a3
--- /dev/null
+++ b/templates/jump_to_trim.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<inkscape-extension translationdomain="inkstitch" xmlns="http://www.inkscape.org/namespace/inkscape/extension">
+ <name>Jump Stitch to Trim Command</name>
+ <id>org.{{ id_inkstitch }}.jump_to_trim</id>
+ <param name="extension" type="string" gui-hidden="true">jump_to_trim</param>
+ <effect>
+ <object-type>all</object-type>
+ <effects-menu>
+ <submenu name="{{ menu_inkstitch }}" translatable="no">
+ <submenu name="Commands" />
+ </submenu>
+ </effects-menu>
+ </effect>
+ <param name="tab" type="notebook">
+ <page name="options" gui-text="Options">
+ <param name="minimum-jump-length" type="float" precision="2" min="0" max="100"
+ gui-text="Convert jumps not shorter than (mm)">3.0</param>
+ <param name="maximum-jump-length" type="float" precision="2" min="0" max="10000"
+ gui-text="Convert jumps not longer than (mm)">0</param>
+ <spacer />
+ <separator />
+ <spacer />
+ <param name="use-command-symbol" type="boolean" indent="1" gui-text="Use command symbol">false</param>
+ </page>
+ <page name="info" gui-text="Help">
+ <label appearance="header">This extension inserts trim commands to avoid jump stitches.</label>
+ <label>Get more information on our website</label>
+ <label appearance="url">https://inkstitch.org/docs/commands/#jump-to-trim</label>
+ </page>
+ </param>
+ <script>
+ {{ command_tag | safe }}
+ </script>
+</inkscape-extension>