summaryrefslogtreecommitdiff
path: root/lib/inx/extensions.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/inx/extensions.py')
-rwxr-xr-xlib/inx/extensions.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/inx/extensions.py b/lib/inx/extensions.py
index 9a197c5d..8ca0addc 100755
--- a/lib/inx/extensions.py
+++ b/lib/inx/extensions.py
@@ -5,8 +5,8 @@
import pyembroidery
-from ..commands import (COMMANDS, GLOBAL_COMMANDS, LAYER_COMMANDS,
- OBJECT_COMMANDS)
+from ..commands import (COMMANDS, GLOBAL_COMMANDS, GROUP_COMMANDS,
+ LAYER_COMMANDS, OBJECT_COMMANDS)
from ..extensions import Input, Output, extensions
from ..threads import ThreadCatalog
from .outputs import pyembroidery_output_formats
@@ -24,6 +24,10 @@ def global_commands():
return [(command, COMMANDS[command]) for command in GLOBAL_COMMANDS]
+def group_commands():
+ return [(command, COMMANDS[command]) for command in GROUP_COMMANDS]
+
+
def object_commands():
return [(command, COMMANDS[command]) for command in OBJECT_COMMANDS]
@@ -51,6 +55,7 @@ def generate_extension_inx_files():
write_inx_file(name, template.render(formats=pyembroidery_output_formats(),
debug_formats=pyembroidery_debug_formats(),
threadcatalog=threadcatalog(),
+ group_commands=group_commands(),
layer_commands=layer_commands(),
object_commands=object_commands(),
global_commands=global_commands()))