diff options
Diffstat (limited to 'templates/apply_threadlist.xml')
| -rw-r--r-- | templates/apply_threadlist.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/templates/apply_threadlist.xml b/templates/apply_threadlist.xml new file mode 100644 index 00000000..58776cb5 --- /dev/null +++ b/templates/apply_threadlist.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<inkscape-extension translationdomain="inkstitch" xmlns="http://www.inkscape.org/namespace/inkscape/extension"> + <name>Apply Threadlist</name> + <id>org.inkstitch.apply_threadlist</id> + <param name="extension" type="string" gui-hidden="true">apply_threadlist</param> + <param name="filepath" type="path" gui-text="Choose file" mode="file" filetypes="txt"/> + <param name="method" type="optiongroup" gui-text="Choose method"> + <option value="1">Apply Ink/Stitch threadlist</option> + <option value="2">Apply other threadlist*</option> + </param> + <param name="palette" type="enum" gui-text="*Choose color palette"> + {%- for item in threadcatalog %} + <item value="{{ item }}">{{ item }}</item> + {%- endfor %} + </param> + <effect> + <object-type>all</object-type> + <effects-menu> + <submenu name="Ink/Stitch" translatable="no"> + <submenu name="Thread Color Management" /> + </submenu> + </effects-menu> + </effect> + <script> + {{ command_tag | safe }} + </script> +</inkscape-extension> |
