├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── .gitignore ├── .vscode └── extensions.json ├── KlipperPreprocessor.py ├── LICENSE ├── README.md ├── SECURITY.md └── assets └── images └── Klipper Preprocessor script for Cura.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolamas/klipper-preprocessor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolamas/klipper-preprocessor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolamas/klipper-preprocessor/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolamas/klipper-preprocessor/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolamas/klipper-preprocessor/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolamas/klipper-preprocessor/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolamas/klipper-preprocessor/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolamas/klipper-preprocessor/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /KlipperPreprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolamas/klipper-preprocessor/HEAD/KlipperPreprocessor.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolamas/klipper-preprocessor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolamas/klipper-preprocessor/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolamas/klipper-preprocessor/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/images/Klipper Preprocessor script for Cura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolamas/klipper-preprocessor/HEAD/assets/images/Klipper Preprocessor script for Cura.png --------------------------------------------------------------------------------