Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
stdout was not being redirected into a pipe.
|
|
Reject document which do not have a viewBox and a height attribute with absolute measures. In documents without these, the size of a pixel cannot be determined and the scale out the exported shape depends on the Inkscape version.
This fixes #16.
|
|
Rewrite of the code which calculates the document scale and simplified code path which applies the necessary transformations.
|
|
|
|
Inkscape does not reliably select the previous or next layer when using LayerMoveToPrev or LayerMoveToNext.
|
|
Instead of always converting all SVG files to both Asymptote and DXF, only the formats which may be used as dependencies are compiled.
|
|
|
|
|
|
|
|
|
|
This decorator check if a module was called as the main module and catches exceptions.
|
|
If no drawing commands are called in an Asymptote script, no PDF output is created and no error is generated. This confuses the build process, which expect a target to exist after its commands were called.
With this change, the Python wrapper checks whether a PDF was actually written and throws an error otherwise.
|
|
The Inkscape export would put objects into the wrong layers or miss objects completely when no layer was selected.
|
|
Empty layers would not be included in the exported Asymptote file, making it hard to work with a set of SVG files with the same layers if some of the SVG files had empty layers.
|
|
Currently, the user has to configure which SVG files are exported to DXF and which to Asymptote, without a possibility to do both.
With this change, all SVG files are exported to both file formats, if necessary.
|
|
We only use standard library features and thus can safely ignore PYTHONPATH.
|
|
Most commands only show the python wrapper being called, which does not tell the user much anyways.
|
|
The make file now removes targets when commands fail. In some cases (e.g. generating files), an error would lead to a half-written file being left behind and that file would not get updated in the next invocation of `make`.
|
|
This catches the OSError thrown by the subprocess module and wraps it so that in the end only an error message is printed, explaining which command failed.
|
|
Asymptote leaves a trail of partially cleaned-up temporary files behind it when PDFLaTeX is used.
With this changes, Asymptote files are compiled in a temporary directory outside the project root.
|
|
Currently, on setups where the project dir is on a different file system as the system temporary directory, a temporary directory is instead created on the project dir. This is not very nice.
With this change, we still create temporary files in the system temporary directory but copy instead of move files from and to the temporary directory, if necessary, which solves the problems.
|
|
This reverts commit 3d21efd4897053e760ad7f4ce14a5482f66e858c.
|
|
|
|
This fixes a bug producing warnings like the following:
Makefile:91: target 'src/cube.pdf' given more than once in the same rule
|
|
|
|
|
|
|
|
Asymptote and OpenSCAD targets would not include intermediate files in their dependencies.
|
|
|
|
|
|
This time to remove duplicate functionality in generating list of different products.
|
|
|
|
|
|
The generate asymptote file would use the Inkscape document coordinates but Asymptote always uses PostScript points.
|
|
Because we can.
|
|
|
|
|
|
The old version was brittle and made conditional operations hard.
|
|
This module will later be used for other export types than just DXF.
|
|
|
|
|
|
|
|
This adds a workaround for setups where the user has checked out the project on a different mount point than where the temporary directory is located.
|
|
With this change, different colors are assigned to shapes. Shapes on the same layer get the same color. This allows them to be grouped by color by software that doesn’t support layers (e.g. Lasercut 5.3).
|
|
When running the make file with a number of jobs, the following warning was generated by the make process used to parse the dependency makefile generated by OpenSCAD:
make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
With this change, the variables MAKELEVEL and MAKEFLAGS are removed from the environment before starting the child make process.
|