From acaebaa956006a0fa064c2361b47f902a8a50b77 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Tue, 23 Jan 2018 20:13:37 -0500 Subject: add params for "TRIM after" and "STOP after" (#29) * adds new options to Params: "TRIM after" and "STOP after" * adds tooltip support to Params * inkstitch now includes libembroidery and can directly output any supported file type * this avoids the need for `libembroidery-convert` and compiling embroidermodder! * TRIM support for DST format (inserts 3 JUMPs) * STOP command supported as an extra color change that the operator can assign to code C00 * TRIMs cause the following jump stitch not to be displayed in the Embroidery layer --- .travis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 051b401c..b22a4d13 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,6 +34,9 @@ install: # for wxPython sudo apt-get install glib-networking + # for embroidermodder/libembroidery + sudo apt-get install swig python-dev + # This is the same as the pypi module PyGObject. We can't just do # "pip install PyGObject" because it depends on a version of # libgirepository1.0-dev that doesn't exist in Trusty. @@ -60,6 +63,11 @@ script: flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics elif [ -n "$BUILD" ]; then + ( + cd embroidermodder/experimental + qmake swigpython.pro + make + ) make dist else true -- cgit v1.2.3