From 4285a6fb7f230547d0c70032c346f6f30956e167 Mon Sep 17 00:00:00 2001 From: Claudine Date: Sun, 6 Nov 2022 10:49:25 -0500 Subject: add pull_compensation_percent --- lib/svg/tags.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/svg') diff --git a/lib/svg/tags.py b/lib/svg/tags.py index d113bb6d..06c402dc 100644 --- a/lib/svg/tags.py +++ b/lib/svg/tags.py @@ -116,6 +116,8 @@ inkstitch_attribs = [ 'zigzag_underlay_max_stitch_length_mm', 'e_stitch', 'pull_compensation_mm', + 'pull_compensation_percent', + 'pull_compensation_rails', 'stroke_first', # stitch_plan 'invisible_layers', -- cgit v1.2.3 From 3aa92ba7b7c1bcc2fb04ecddea9e096d2620196d Mon Sep 17 00:00:00 2001 From: George Steel Date: Sun, 6 Nov 2022 20:23:21 -0500 Subject: change pull_compensation_rails to a continuous balance and fix some edge cases. --- lib/svg/tags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/svg') diff --git a/lib/svg/tags.py b/lib/svg/tags.py index 06c402dc..90a815d7 100644 --- a/lib/svg/tags.py +++ b/lib/svg/tags.py @@ -117,7 +117,7 @@ inkstitch_attribs = [ 'e_stitch', 'pull_compensation_mm', 'pull_compensation_percent', - 'pull_compensation_rails', + 'pull_compensation_balance', 'stroke_first', # stitch_plan 'invisible_layers', -- cgit v1.2.3 From 8728e8d7b2dc291129f708c9bb9a50fc4b71de45 Mon Sep 17 00:00:00 2001 From: George Steel Date: Sun, 6 Nov 2022 22:23:25 -0500 Subject: Add proportional inset and balance properties to underlay. --- lib/svg/tags.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/svg') diff --git a/lib/svg/tags.py b/lib/svg/tags.py index 90a815d7..c359f9e5 100644 --- a/lib/svg/tags.py +++ b/lib/svg/tags.py @@ -106,9 +106,12 @@ inkstitch_attribs = [ 'center_walk_underlay', 'center_walk_underlay_stitch_length_mm', 'center_walk_underlay_repeats', + 'center_walk_underlay_position', 'contour_underlay', 'contour_underlay_stitch_length_mm', 'contour_underlay_inset_mm', + 'contour_underlay_inset_percent', + 'contour_underlay_inset_balance', 'zigzag_underlay', 'zigzag_spacing_mm', 'zigzag_underlay_inset_mm', -- cgit v1.2.3 From e1d9677ea0467ddec5e5faa0b1edff9f9e6f7dea Mon Sep 17 00:00:00 2001 From: George Steel Date: Tue, 8 Nov 2022 22:53:55 -0500 Subject: fix typos --- lib/svg/tags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/svg') diff --git a/lib/svg/tags.py b/lib/svg/tags.py index c359f9e5..21aee22b 100644 --- a/lib/svg/tags.py +++ b/lib/svg/tags.py @@ -106,7 +106,7 @@ inkstitch_attribs = [ 'center_walk_underlay', 'center_walk_underlay_stitch_length_mm', 'center_walk_underlay_repeats', - 'center_walk_underlay_position', + 'center_walk_underlay_balance', 'contour_underlay', 'contour_underlay_stitch_length_mm', 'contour_underlay_inset_mm', -- cgit v1.2.3 From 08581d7eae58f08af6bc57fdc9a69e47f1f8768b Mon Sep 17 00:00:00 2001 From: George Steel Date: Thu, 17 Nov 2022 01:51:33 -0500 Subject: Make pull-compensation and insets per-side --- lib/svg/tags.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lib/svg') diff --git a/lib/svg/tags.py b/lib/svg/tags.py index 21aee22b..219a9b56 100644 --- a/lib/svg/tags.py +++ b/lib/svg/tags.py @@ -106,21 +106,20 @@ inkstitch_attribs = [ 'center_walk_underlay', 'center_walk_underlay_stitch_length_mm', 'center_walk_underlay_repeats', - 'center_walk_underlay_balance', + 'center_walk_underlay_position', 'contour_underlay', 'contour_underlay_stitch_length_mm', 'contour_underlay_inset_mm', 'contour_underlay_inset_percent', - 'contour_underlay_inset_balance', 'zigzag_underlay', 'zigzag_spacing_mm', 'zigzag_underlay_inset_mm', + 'zigzag_underlay_inset_percent', 'zigzag_underlay_spacing_mm', 'zigzag_underlay_max_stitch_length_mm', 'e_stitch', 'pull_compensation_mm', 'pull_compensation_percent', - 'pull_compensation_balance', 'stroke_first', # stitch_plan 'invisible_layers', -- cgit v1.2.3 From 739e2b96705de45d4c662a2ba969ff2dd360944a Mon Sep 17 00:00:00 2001 From: George Steel Date: Wed, 23 Nov 2022 23:09:57 -0500 Subject: add option to swap rails --- lib/svg/tags.py | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/svg') diff --git a/lib/svg/tags.py b/lib/svg/tags.py index 06424dc2..850256ee 100644 --- a/lib/svg/tags.py +++ b/lib/svg/tags.py @@ -104,6 +104,7 @@ inkstitch_attribs = [ 'short_stitch_distance_mm', 'short_stitch_inset', 'running_stitch_length_mm', + 'swap_satin_rails', 'center_walk_underlay', 'center_walk_underlay_stitch_length_mm', 'center_walk_underlay_repeats', -- cgit v1.2.3