diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2018-01-23 20:13:37 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-01-23 20:13:37 -0500 |
| commit | acaebaa956006a0fa064c2361b47f902a8a50b77 (patch) | |
| tree | e4278dd088d82bbc9830b9281accc9d813bd8dd8 /.travis.yml | |
| parent | 462bf0bdbeed8b4a631d2ce6d68df7842a86e5c6 (diff) | |
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
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 8 |
1 files changed, 8 insertions, 0 deletions
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 |
