diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-07-04 21:45:21 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-07-12 20:13:46 -0400 |
| commit | 3de394e14b00ac2653084f534149db418bd6cebd (patch) | |
| tree | f9c0607c06c81b61a6e0984231184a9f713d3f89 /inx | |
| parent | 0d41f8685c4bae261ef11d9795de63567e335c19 (diff) | |
add new extension to attach commands to objects
Diffstat (limited to 'inx')
| -rw-r--r-- | inx/inkstitch_commands.inx | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/inx/inkstitch_commands.inx b/inx/inkstitch_commands.inx new file mode 100644 index 00000000..7b42ca0e --- /dev/null +++ b/inx/inkstitch_commands.inx @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension"> + <_name>Attach Commands</_name> + <id>org.inkstitch.commands</id> + <dependency type="executable" location="extensions">inkstitch.py</dependency> + <dependency type="executable" location="extensions">inkex.py</dependency> + <param name="fill_start" type="boolean" _gui-text="Fill starting position">false</param> + <param name="fill_end" type="boolean" _gui-text="Fill ending position">false</param> + <param name="stop" type="boolean" _gui-text="Stop after sewing this object">false</param> + <param name="trim" type="boolean" _gui-text="Trim thread after sewing this object">false</param> + <param name="extension" type="string" gui-hidden="true">commands</param> + <effect> + <object-type>all</object-type> + <effects-menu> + <submenu _name="Embroidery" /> + </effects-menu> + </effect> + <script> + <command reldir="extensions" interpreter="python">inkstitch.py</command> + </script> +</inkscape-extension> |
