From 7a19800a6fed788c510156957d5d6c70f34bd222 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Wed, 22 May 2024 21:49:35 +0200 Subject: [PATCH] add links to documention in inx extensions (#2937) --- lib/elements/satin_column.py | 1 - lib/extensions/auto_satin.py | 2 +- lib/extensions/break_apart.py | 1 + lib/extensions/cleanup.py | 8 ++- lib/extensions/convert_to_stroke.py | 1 + lib/extensions/cutwork_segmentation.py | 3 +- lib/extensions/density_map.py | 1 + lib/extensions/display_stacking_order.py | 1 + lib/extensions/install_custom_palette.py | 6 +- lib/extensions/lettering_along_path.py | 3 +- lib/extensions/lettering_custom_font_dir.py | 1 + .../lettering_force_lock_stitches.py | 1 + lib/extensions/lettering_generate_json.py | 5 +- lib/extensions/lettering_remove_kerning.py | 1 + .../lettering_update_json_glyphlist.py | 1 + lib/extensions/letters_to_font.py | 1 + lib/extensions/outline.py | 1 + lib/extensions/select_elements.py | 2 +- lib/extensions/stitch_plan_preview.py | 1 + lib/extensions/troubleshoot.py | 1 + lib/extensions/unlink_clone.py | 1 + templates/auto_satin.xml | 19 +++++- templates/break_apart.xml | 27 ++++++-- templates/cleanup.xml | 37 ++++++---- templates/convert_to_stroke.xml | 18 ++++- templates/cutwork_segmentation.xml | 2 +- templates/density_map.xml | 45 ++++++++----- templates/display_stacking_order.xml | 15 ++++- templates/install_custom_palette.xml | 19 +++++- templates/lettering_along_path.xml | 5 +- templates/lettering_custom_font_dir.xml | 24 ++++--- templates/lettering_force_lock_stitches.xml | 44 +++++++----- templates/lettering_generate_json.xml | 20 +++--- templates/lettering_remove_kerning.xml | 32 ++++++--- templates/lettering_update_json_glyphlist.xml | 20 ++++-- templates/letters_to_font.xml | 63 +++++++++-------- templates/outline.xml | 43 +++++++----- templates/select_elements.xml | 5 +- templates/stitch_plan_preview.xml | 67 +++++++++++-------- templates/troubleshoot.xml | 16 ++++- templates/unlink_clone.xml | 14 +++- 41 files changed, 389 insertions(+), 189 deletions(-) diff --git a/lib/elements/satin_column.py b/lib/elements/satin_column.py index 7fe2869a7..a714ad387 100644 --- a/lib/elements/satin_column.py +++ b/lib/elements/satin_column.py @@ -368,7 +368,6 @@ class SatinColumn(EmbroideryElement): 'All stitches must be within this distance from the path. ' 'A lower tolerance means stitches will be closer together. ' 'A higher tolerance means sharp corners may be rounded. ' - 'Defaults to stitch length.' ), unit='mm', group=_('Contour Underlay'), diff --git a/lib/extensions/auto_satin.py b/lib/extensions/auto_satin.py index badc9d553..495ee989b 100644 --- a/lib/extensions/auto_satin.py +++ b/lib/extensions/auto_satin.py @@ -18,7 +18,7 @@ class AutoSatin(CommandsExtension): def __init__(self, *args, **kwargs): CommandsExtension.__init__(self, *args, **kwargs) - + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-p", "--preserve_order", dest="preserve_order", type=inkex.Boolean, default=False) def get_starting_point(self): diff --git a/lib/extensions/break_apart.py b/lib/extensions/break_apart.py index b5104dc74..3412f64d6 100644 --- a/lib/extensions/break_apart.py +++ b/lib/extensions/break_apart.py @@ -22,6 +22,7 @@ class BreakApart(InkstitchExtension): ''' def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-m", "--method", type=int, default=1, dest="method") self.minimum_size = 5 diff --git a/lib/extensions/cleanup.py b/lib/extensions/cleanup.py index 307b489a9..d5816b5f4 100644 --- a/lib/extensions/cleanup.py +++ b/lib/extensions/cleanup.py @@ -14,6 +14,7 @@ from .base import InkstitchExtension class Cleanup(InkstitchExtension): def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-f", "--rm_fill", dest="rm_fill", type=Boolean, default=True) self.arg_parser.add_argument("-s", "--rm_stroke", dest="rm_stroke", type=Boolean, default=True) self.arg_parser.add_argument("-a", "--fill_threshold", dest="fill_threshold", type=int, default=20) @@ -67,10 +68,13 @@ class Cleanup(InkstitchExtension): errormsg(f" - { group.label }: {group.get_id()}") def _remove(self): - errormsg(_("%s elements removed" % len(self.elements_to_remove))) + num_elements_removed = len(self.elements_to_remove) + num_groups_removed = len(self.groups_to_remove) + + errormsg(_("{num_elements_removed} elements removed").format(num_elements_removed=num_elements_removed)) for element in self.elements_to_remove: element.getparent().remove(element) - errormsg(_("%s groups/layers removed" % len(self.groups_to_remove))) + errormsg(_("{num_groups_removed} groups/layers removed").format(num_groups_removed=num_groups_removed)) for group in self.groups_to_remove: group.getparent().remove(group) diff --git a/lib/extensions/convert_to_stroke.py b/lib/extensions/convert_to_stroke.py index ea732f1c9..d5b1bec01 100644 --- a/lib/extensions/convert_to_stroke.py +++ b/lib/extensions/convert_to_stroke.py @@ -16,6 +16,7 @@ class ConvertToStroke(InkstitchExtension): def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-k", "--keep_satin", type=inkex.Boolean, default=False, dest="keep_satin") def effect(self): diff --git a/lib/extensions/cutwork_segmentation.py b/lib/extensions/cutwork_segmentation.py index 6e9e17a30..bea14472b 100644 --- a/lib/extensions/cutwork_segmentation.py +++ b/lib/extensions/cutwork_segmentation.py @@ -23,8 +23,7 @@ class CutworkSegmentation(InkstitchExtension): ''' def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) - self.arg_parser.add_argument("-o", "--options", type=str, default=None, dest="page_1") - self.arg_parser.add_argument("-i", "--info", type=str, default=None, dest="page_2") + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-as", "--a_start", type=int, default=112, dest="a_start") self.arg_parser.add_argument("-ae", "--a_end", type=int, default=157, dest="a_end") self.arg_parser.add_argument("-ac", "--a_color", type=inkex.Color, default=inkex.Color(0x990000ff), dest="a_color") diff --git a/lib/extensions/density_map.py b/lib/extensions/density_map.py index e4963bf92..13906861f 100644 --- a/lib/extensions/density_map.py +++ b/lib/extensions/density_map.py @@ -20,6 +20,7 @@ from .base import InkstitchExtension class DensityMap(InkstitchExtension): def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-v", "--layer-visibility", type=int, default=0, dest="layer_visibility") self.arg_parser.add_argument("-l", "--num-neighbors-red", type=int, default=6, dest="num_neighbors_red") self.arg_parser.add_argument("-r", "--density-radius-red", type=float, default=0.5, dest="radius_red") diff --git a/lib/extensions/display_stacking_order.py b/lib/extensions/display_stacking_order.py index 2906c2f8e..a5ce70f21 100644 --- a/lib/extensions/display_stacking_order.py +++ b/lib/extensions/display_stacking_order.py @@ -14,6 +14,7 @@ from .base import InkstitchExtension class DisplayStackingOrder(InkstitchExtension): def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-s", "--font_size", type=int, default=4, dest="font_size") def effect(self): diff --git a/lib/extensions/install_custom_palette.py b/lib/extensions/install_custom_palette.py index da546cad8..1636d1fdc 100644 --- a/lib/extensions/install_custom_palette.py +++ b/lib/extensions/install_custom_palette.py @@ -16,6 +16,7 @@ from .base import InkstitchExtension class InstallCustomPalette(InkstitchExtension): def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-f", "--filepath", type=str, default="", dest="filepath") def effect(self): @@ -35,7 +36,10 @@ class InstallCustomPalette(InkstitchExtension): if not os.path.isdir(palette_path): inkex.errormsg(_("Ink/Stitch cannot find your palette folder automatically. Please install your palette manually.")) dest = os.path.join(palette_path, palette_name) - shutil.copyfile(gpl, dest) + try: + shutil.copyfile(gpl, dest) + except shutil.SameFileError: + pass if not os.path.isfile(dest): inkex.errormsg("Something wwent wrong. Ink/Stitch wasn't able to copy your palette " diff --git a/lib/extensions/lettering_along_path.py b/lib/extensions/lettering_along_path.py index 071420818..c7b950b1c 100644 --- a/lib/extensions/lettering_along_path.py +++ b/lib/extensions/lettering_along_path.py @@ -24,8 +24,7 @@ class LetteringAlongPath(InkstitchExtension): ''' def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) - self.arg_parser.add_argument("-o", "--options", type=str, default=None, dest="page_1") - self.arg_parser.add_argument("-i", "--info", type=str, default=None, dest="page_2") + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-s", "--stretch-spaces", type=Boolean, default=False, dest="stretch_spaces") def effect(self): diff --git a/lib/extensions/lettering_custom_font_dir.py b/lib/extensions/lettering_custom_font_dir.py index b73d23a67..1568e3916 100644 --- a/lib/extensions/lettering_custom_font_dir.py +++ b/lib/extensions/lettering_custom_font_dir.py @@ -19,6 +19,7 @@ class LetteringCustomFontDir(InkstitchExtension): ''' def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-d", "--path", type=str, default="", dest="path") def effect(self): diff --git a/lib/extensions/lettering_force_lock_stitches.py b/lib/extensions/lettering_force_lock_stitches.py index 17033ce98..c835bc72f 100644 --- a/lib/extensions/lettering_force_lock_stitches.py +++ b/lib/extensions/lettering_force_lock_stitches.py @@ -20,6 +20,7 @@ class LetteringForceLockStitches(InkstitchExtension): def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-s", "--satin_only", type=inkex.Boolean, dest="satin_only") self.arg_parser.add_argument("-a", "--max_distance", type=float, default=3, dest="max_distance") self.arg_parser.add_argument("-i", "--min_distance", type=float, default=1, dest="min_distance") diff --git a/lib/extensions/lettering_generate_json.py b/lib/extensions/lettering_generate_json.py index a884ccacb..5ff64c415 100644 --- a/lib/extensions/lettering_generate_json.py +++ b/lib/extensions/lettering_generate_json.py @@ -21,10 +21,7 @@ class LetteringGenerateJson(InkstitchExtension): ''' def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) - self.arg_parser.add_argument("--options") - self.arg_parser.add_argument("--general") - self.arg_parser.add_argument("--settings") - self.arg_parser.add_argument("--kerning") + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-n", "--font-name", type=str, default="Font", dest="font_name") self.arg_parser.add_argument("-d", "--font-description", type=str, default="Description", dest="font_description") diff --git a/lib/extensions/lettering_remove_kerning.py b/lib/extensions/lettering_remove_kerning.py index 21a8eda3b..7507c0240 100644 --- a/lib/extensions/lettering_remove_kerning.py +++ b/lib/extensions/lettering_remove_kerning.py @@ -17,6 +17,7 @@ class LetteringRemoveKerning(InkstitchExtension): ''' def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-p", "--font-files", type=str, default="", dest="paths") def effect(self): diff --git a/lib/extensions/lettering_update_json_glyphlist.py b/lib/extensions/lettering_update_json_glyphlist.py index 4dea6d511..d80ef9ea7 100644 --- a/lib/extensions/lettering_update_json_glyphlist.py +++ b/lib/extensions/lettering_update_json_glyphlist.py @@ -18,6 +18,7 @@ class LetteringUpdateJsonGlyphlist(InkstitchExtension): ''' def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-f", "--font-file", type=str, default="", dest="font_file") self.arg_parser.add_argument("-j", "--json-file", type=str, default="", dest="json_file") diff --git a/lib/extensions/letters_to_font.py b/lib/extensions/letters_to_font.py index e779b5d18..8345af757 100644 --- a/lib/extensions/letters_to_font.py +++ b/lib/extensions/letters_to_font.py @@ -24,6 +24,7 @@ class LettersToFont(InkstitchExtension): ''' def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-d", "--font-dir", type=str, default="", dest="font_dir") self.arg_parser.add_argument("-f", "--file-format", type=str, default="", dest="file_format") self.arg_parser.add_argument("-c", "--import-commands", type=str, default="params", dest="import_commands") diff --git a/lib/extensions/outline.py b/lib/extensions/outline.py index a40260175..45292f64e 100644 --- a/lib/extensions/outline.py +++ b/lib/extensions/outline.py @@ -18,6 +18,7 @@ from .base import InkstitchExtension class Outline(InkstitchExtension): def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-k", "--keep-original", type=Boolean, default=False, dest="keep_original") self.arg_parser.add_argument("-b", "--buffer", type=float, default=0.001, dest="buffer") self.arg_parser.add_argument("-s", "--smoothness", type=float, default=0.3, dest="smoothness") diff --git a/lib/extensions/select_elements.py b/lib/extensions/select_elements.py index 59e3d06d4..2c2de2422 100644 --- a/lib/extensions/select_elements.py +++ b/lib/extensions/select_elements.py @@ -17,7 +17,7 @@ from .base import InkstitchExtension class SelectElements(InkstitchExtension): def add_arguments(self, pars): - self.arg_parser.add_argument("--options", type=str, dest="notebook") + self.arg_parser.add_argument("--notebook", type=str, dest="notebook") pars.add_argument("--stitch-type", type=str, dest="stitch_type") pars.add_argument("--info", type=str, dest="info") diff --git a/lib/extensions/stitch_plan_preview.py b/lib/extensions/stitch_plan_preview.py index 75b8e4970..42fa37d40 100644 --- a/lib/extensions/stitch_plan_preview.py +++ b/lib/extensions/stitch_plan_preview.py @@ -25,6 +25,7 @@ from .utils.inkex_command import inkscape class StitchPlanPreview(InkstitchExtension): def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-s", "--move-to-side", type=Boolean, default=True, dest="move_to_side") self.arg_parser.add_argument("-v", "--layer-visibility", type=str, default="unchanged", dest="layer_visibility") self.arg_parser.add_argument("-n", "--needle-points", type=Boolean, default=False, dest="needle_points") diff --git a/lib/extensions/troubleshoot.py b/lib/extensions/troubleshoot.py index 01629069c..51a33abf9 100644 --- a/lib/extensions/troubleshoot.py +++ b/lib/extensions/troubleshoot.py @@ -21,6 +21,7 @@ class Troubleshoot(InkstitchExtension): def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-p", "--pointer-size", type=float, default=5, dest="pointer_size_mm") self.arg_parser.add_argument("-f", "--font-size", type=float, default=2, dest="font_size_mm") diff --git a/lib/extensions/unlink_clone.py b/lib/extensions/unlink_clone.py index e361da147..0c1878088 100644 --- a/lib/extensions/unlink_clone.py +++ b/lib/extensions/unlink_clone.py @@ -15,6 +15,7 @@ from typing import List, Tuple class UnlinkClone(InkstitchExtension): def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) + self.arg_parser.add_argument("--notebook") self.arg_parser.add_argument("-r", "--recursive", dest="recursive", type=Boolean, default=True) def effect(self): diff --git a/templates/auto_satin.xml b/templates/auto_satin.xml index e7cf9a7a6..41909623b 100644 --- a/templates/auto_satin.xml +++ b/templates/auto_satin.xml @@ -2,9 +2,21 @@ Auto-Route Satin Columns org.{{ id_inkstitch }}.auto_satin - true - false - auto_satin + + + + true + false + auto_satin + + + + + + + + + all @@ -13,6 +25,7 @@ + diff --git a/templates/break_apart.xml b/templates/break_apart.xml index 1557032ec..f65abb58c 100644 --- a/templates/break_apart.xml +++ b/templates/break_apart.xml @@ -3,6 +3,25 @@ Break Apart Fill Objects org.{{ id_inkstitch }}.break_apart break_apart + + + + + + + + + + + + + + + + all @@ -11,13 +30,7 @@ - - - - - + diff --git a/templates/cleanup.xml b/templates/cleanup.xml index e42dec126..8ccddb407 100644 --- a/templates/cleanup.xml +++ b/templates/cleanup.xml @@ -2,20 +2,31 @@ Cleanup Document org.{{ id_inkstitch }}.cleanup - - true - 20 - true - 5 - true - - - - true cleanup + + + + true + 20 + true + 5 + true + + + + true + + + + + + + + + all diff --git a/templates/convert_to_stroke.xml b/templates/convert_to_stroke.xml index 89ff04fe6..51ee39fea 100644 --- a/templates/convert_to_stroke.xml +++ b/templates/convert_to_stroke.xml @@ -3,9 +3,20 @@ Convert Satin to Stroke org.{{ id_inkstitch }}.convert_to_stroke convert_to_stroke - - false + + + + false + + + + + + + + + all @@ -14,6 +25,7 @@ + diff --git a/templates/cutwork_segmentation.xml b/templates/cutwork_segmentation.xml index adc744e52..671d2c265 100644 --- a/templates/cutwork_segmentation.xml +++ b/templates/cutwork_segmentation.xml @@ -9,7 +9,7 @@ - + diff --git a/templates/density_map.xml b/templates/density_map.xml index 7fee175c1..e62ecaf7c 100644 --- a/templates/density_map.xml +++ b/templates/density_map.xml @@ -3,6 +3,34 @@ Density Map org.{{ id_inkstitch }}.density_map density_map + + + + + 6 + 0.5 + + + 3 + 0.5 + + + + + + + + 0.5 + + + + + + + + + all @@ -11,22 +39,7 @@ - - 6 - 0.5 - - - 3 - 0.5 - - - - - - - - 0.5 + diff --git a/templates/display_stacking_order.xml b/templates/display_stacking_order.xml index be8539f2e..9ff553802 100644 --- a/templates/display_stacking_order.xml +++ b/templates/display_stacking_order.xml @@ -3,6 +3,19 @@ Display stacking order org.{{ id_inkstitch }}.display_stacking_order display_stacking_order + + + + 4 + + + + + + + + + all @@ -11,7 +24,7 @@ - 4 + diff --git a/templates/install_custom_palette.xml b/templates/install_custom_palette.xml index fa037e7b4..19270331d 100644 --- a/templates/install_custom_palette.xml +++ b/templates/install_custom_palette.xml @@ -3,9 +3,22 @@ Install custom palette org.{{ id_inkstitch }}.install_custom_palette install_custom_palette - - - + + + + + + + + + + + + + + + + all diff --git a/templates/lettering_along_path.xml b/templates/lettering_along_path.xml index bc2b248ec..06dac977b 100644 --- a/templates/lettering_along_path.xml +++ b/templates/lettering_along_path.xml @@ -9,7 +9,7 @@ - + false @@ -23,6 +23,9 @@ + + + diff --git a/templates/lettering_force_lock_stitches.xml b/templates/lettering_force_lock_stitches.xml index a0273d995..9922fb5f0 100644 --- a/templates/lettering_force_lock_stitches.xml +++ b/templates/lettering_force_lock_stitches.xml @@ -3,6 +3,32 @@ Force lock stitches org.{{ id_inkstitch }}.force_lock_stitches lettering_force_lock_stitches + + + + false + + 1 + 3 + + false + + + + + + + + + + + all @@ -11,23 +37,7 @@ - - - - - - - false - 1 - 3 - - false + diff --git a/templates/lettering_generate_json.xml b/templates/lettering_generate_json.xml index b3fd8077a..e80a707fa 100644 --- a/templates/lettering_generate_json.xml +++ b/templates/lettering_generate_json.xml @@ -12,18 +12,9 @@ - + - - - - - - - @@ -102,9 +93,16 @@ - + + + + + + + + diff --git a/templates/lettering_update_json_glyphlist.xml b/templates/lettering_update_json_glyphlist.xml index d5a528e85..bc15b3ed6 100644 --- a/templates/lettering_update_json_glyphlist.xml +++ b/templates/lettering_update_json_glyphlist.xml @@ -3,6 +3,20 @@ Update Glyphlist org.{{ id_inkstitch }}.lettering_update_json_glyphlist lettering_update_json_glyphlist + + + + + + + + + + + + + + all @@ -11,11 +25,7 @@ - - - + diff --git a/templates/letters_to_font.xml b/templates/letters_to_font.xml index 2909500b3..e6c7ceff4 100644 --- a/templates/letters_to_font.xml +++ b/templates/letters_to_font.xml @@ -3,6 +3,42 @@ Letters to font org.{{ id_inkstitch }}.letters_to_font letters_to_font + + + + + {% for format, description, mimetype, category in formats %} + + {% endfor %} + + + + + + + + + + + + + + + + + + + + + + all @@ -11,33 +47,6 @@ - - - - - - {% for format, description, mimetype, category in formats %} - - {% endfor %} - - - - - - - - - - - - diff --git a/templates/outline.xml b/templates/outline.xml index 06997c2d8..2317153d3 100644 --- a/templates/outline.xml +++ b/templates/outline.xml @@ -3,6 +3,33 @@ Outline org.{{ id_inkstitch }}.outline outline + + + + false + + + + 10 + 0.001 + 0.3 + + + + 0 + + + + + + + + + all @@ -11,21 +38,7 @@ - false - - - - 10 - 0.001 - 0.3 - - - - 0 + diff --git a/templates/select_elements.xml b/templates/select_elements.xml index 8ade3c674..1f99391c5 100644 --- a/templates/select_elements.xml +++ b/templates/select_elements.xml @@ -4,7 +4,7 @@ org.{{ id_inkstitch }}.select_elements select_elements - + @@ -83,6 +83,9 @@ + + + diff --git a/templates/stitch_plan_preview.xml b/templates/stitch_plan_preview.xml index 2791e4e03..92507b275 100644 --- a/templates/stitch_plan_preview.xml +++ b/templates/stitch_plan_preview.xml @@ -3,6 +3,45 @@ Stitch Plan Preview org.{{ id_inkstitch }}.stitch_plan_preview stitch_plan_preview + + + + + + + + + + + + + + + + + + true + false + false + false + true + + + + true + true + + + + + + + + + + all @@ -11,33 +50,7 @@ - - - - - - - - - - - - - - - true - false - false - false - true - - - - true - true - + diff --git a/templates/troubleshoot.xml b/templates/troubleshoot.xml index b97971aa4..4f2d9af09 100644 --- a/templates/troubleshoot.xml +++ b/templates/troubleshoot.xml @@ -3,8 +3,20 @@ Troubleshoot Objects org.{{ id_inkstitch }}.troubleshoot troubleshoot - 5 - 2 + + + + 5 + 2 + + + + + + + + + all diff --git a/templates/unlink_clone.xml b/templates/unlink_clone.xml index cd1caa00c..cf7c0caf0 100644 --- a/templates/unlink_clone.xml +++ b/templates/unlink_clone.xml @@ -2,8 +2,18 @@ Unlink Clone org.{{ id_inkstitch }}.unlink_clone - unlink_clone - true + + + unlink_clone + true + + + + + + + + all