summaryrefslogtreecommitdiff
path: root/lib/extensions/__init__.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2023-10-02 17:17:04 +0200
committerGitHub <noreply@github.com>2023-10-02 17:17:04 +0200
commit61b76c7e8e1414039704b776f431fde5f0886fa4 (patch)
tree794b4ebc809a17553ae59a8fc6d9089c7c7e9949 /lib/extensions/__init__.py
parent327a64402e87007bb4f2375c632006153c89715d (diff)
Add test swatches extension (#2528)
* remove duplicates (tags) * sort extensions (init) * add test swatches extension
Diffstat (limited to 'lib/extensions/__init__.py')
-rw-r--r--lib/extensions/__init__.py80
1 files changed, 41 insertions, 39 deletions
diff --git a/lib/extensions/__init__.py b/lib/extensions/__init__.py
index d0900f2d..7987a717 100644
--- a/lib/extensions/__init__.py
+++ b/lib/extensions/__init__.py
@@ -51,60 +51,62 @@ from .simulator import Simulator
from .stitch_plan_preview import StitchPlanPreview
from .stitch_plan_preview_undo import StitchPlanPreviewUndo
from .stroke_to_lpe_satin import StrokeToLpeSatin
+from .test_swatches import TestSwatches
from .update_svg import UpdateSvg
from .zigzag_line_to_satin import ZigzagLineToSatin
from .zip import Zip
from.lettering_along_path import LetteringAlongPath
-__all__ = extensions = [StitchPlanPreview,
- StitchPlanPreviewUndo,
- DensityMap,
- Install,
- Params,
- Print,
- Input,
- Output,
- Zip,
- Flip,
- SelectionToPattern,
- SelectionToGuideLine,
- ObjectCommands,
- ObjectCommandsToggleVisibility,
- LayerCommands,
- GlobalCommands,
+__all__ = extensions = [ApplyThreadlist,
+ AutoRun,
+ AutoSatin,
+ BreakApart,
+ Cleanup,
CommandsScaleSymbols,
ConvertToSatin,
- StrokeToLpeSatin,
- ZigzagLineToSatin,
ConvertToStroke,
- JumpToStroke,
- FillToStroke,
CutSatin,
- AutoSatin,
- AutoRun,
+ CutworkSegmentation,
+ DensityMap,
+ DuplicateParams,
+ FillToStroke,
+ Flip,
+ GeneratePalette,
+ GlobalCommands,
+ GradientBlocks,
+ Input,
+ Install,
+ InstallCustomPalette,
+ JumpToStroke,
+ LayerCommands,
Lettering,
- LetteringGenerateJson,
- LetteringUpdateJsonGlyphlist,
- LetteringRemoveKerning,
+ LetteringAlongPath,
LetteringCustomFontDir,
LetteringForceLockStitches,
- LetteringAlongPath,
+ LetteringGenerateJson,
+ LetteringRemoveKerning,
+ LetteringUpdateJsonGlyphlist,
LettersToFont,
- Troubleshoot,
- RemoveEmbroiderySettings,
- Cleanup,
- UpdateSvg,
- BreakApart,
- GradientBlocks,
- ApplyThreadlist,
- InstallCustomPalette,
- GeneratePalette,
+ ObjectCommands,
+ ObjectCommandsToggleVisibility,
+ Output,
PaletteSplitText,
PaletteToText,
- Simulator,
- Reorder,
- DuplicateParams,
+ Params,
Preferences,
+ Print,
+ RemoveEmbroiderySettings,
+ Reorder,
SelectElements,
- CutworkSegmentation]
+ SelectionToGuideLine,
+ SelectionToPattern,
+ Simulator,
+ StitchPlanPreview,
+ StitchPlanPreviewUndo,
+ StrokeToLpeSatin,
+ TestSwatches,
+ Troubleshoot,
+ UpdateSvg,
+ ZigzagLineToSatin,
+ Zip]