diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2024-05-07 20:48:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-07 20:48:05 +0200 |
| commit | 45a8537c98f961742e177e81c4f41db54eec0827 (patch) | |
| tree | b0e5032b160960952d4fbd964362c10c572beccb /lib/extensions/update_svg.py | |
| parent | 7edcdfdc47b0c5b76fd633bb331b8786017e8f1c (diff) | |
remove special treatment for polylines (#2866)
Diffstat (limited to 'lib/extensions/update_svg.py')
| -rw-r--r-- | lib/extensions/update_svg.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/extensions/update_svg.py b/lib/extensions/update_svg.py index 0f0609be..f620af2d 100644 --- a/lib/extensions/update_svg.py +++ b/lib/extensions/update_svg.py @@ -14,8 +14,11 @@ class UpdateSvg(InkstitchExtension): def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) + # inkstitch_svg_version history: + # 1 -> v3.0.0, May 2023 + # 2 -> v.3.1.0 May 2024 + # TODO: When there are more legacy versions than only one, this can be transformed into a user input - # inkstitch_svg_version history: 1 -> v3.0.0, May 2023 self.update_from = 0 def effect(self): |
