summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2019-03-08get root properlyLex Neva
2019-03-08lower trim threshold to 0.75mmLex Neva
2019-03-08auto satin should trim at the end tooLex Neva
2019-03-08implement trim option for letteringLex Neva
2019-03-08add trims in stitches.auto_satinLex Neva
2019-03-08refactor add_commands() out into commands moduleLex Neva
2019-03-08correct for viewboxLex Neva
2019-03-08add trim checkboxLex Neva
2019-03-08don't do density compensation in underlayLex Neva
2019-03-01avoid gaps at the endLex Neva
2019-03-01compensate for non-parallel railsLex Neva
This uses some trig to try to reduce the excess density we were seeing with rails that expand or contract from each other. While I was in there I redid the satin algorithm, making it much simpler and less magical-seeming.
2019-02-16fix styleLex Neva
2019-02-16improve error message when trying to autofill tiny shapesLex Neva
2019-02-16show inkscape label in error messagesLex Neva
2019-02-16fix styleLex Neva
2019-02-16fix argument bug in auto-satinLex Neva
2019-02-16Remove extra self param from store_preset call. (#381)redhat421
It looks like an extra "self" parameter was added to the store_preset call in the add_preset function. This prevents add_preset from working.
2019-02-16Fix print metadata (#372)Kaalleen
2019-01-17don't add jump stitches between satin column fill and top stitchingLex Neva
2019-01-04fix crash if fill start and end points are very closeLex Neva
2019-01-04ability to stitch a single-point running stitch pathLex Neva
2018-12-30don't crash on a design with no stitchesLex Neva
2018-12-22print error message correctlyLex Neva
2018-12-19fix fill == none detectionLex Neva
2018-12-19fix duplicate point handlingLex Neva
2018-12-18fix error messageLex Neva
2018-12-18fix styleLex Neva
2018-12-18Merge branch 'master' into lexelby/bugsLex Neva
2018-12-15basic lettering GUI (#351)Lex Neva
2018-12-13fix styleLex Neva
2018-12-12add option to skip last stitch in fill rowsLex Neva
2018-12-12tidy importsLex Neva
2018-12-12avoid creating paths with empty 'd' in stitch plan (#363)Lex Neva
2018-12-12tidy up importsLex Neva
2018-12-12use proper defaults for fill and stroke in Params (#362)Lex Neva
2018-11-23Fix encodingKaalleen
2018-11-14basic lettering (#344)Lex Neva
Can handle multiple lines of text and routes the stitching in alternating directions on each line.
2018-10-30new extension: Auto-Route Satin Columns (#330)Lex Neva
**video demo:** https://www.youtube.com/watch?v=tbghtqziB1g This branch adds a new extension, Auto-Route Satin Columns, implementing #214! This is a huge new feature that opens the door wide for exciting stuff like lettering (#142). To use it, select some satin columns and run the extension. After a few seconds, it will replace your satins with a new set with a logical stitching order. Under-pathing and jump-stitches will be added as necessary, and satins will be broken to facilitate jumps. The resulting satins will retain all of the parameters you had set on the original satins, including underlay, zig-zag spacing, etc. By default, it will choose the left-most extreme as the starting point and the right-most extreme as the ending point (even if these occur partway through a satin such as the left edge of a letter "o"). You can override this by attaching the new "Auto-route satin stitch starting/ending position" commands. There's also an option to add trims instead of jump stitches. Any jump stitch over 1mm is trimmed. I might make this configurable in the future but in my tests it seems to do a good job. Trim commands are added to the SVG, so it's easy enough to modify/delete as you see fit.
2018-10-23fix manual stitch and add debugging support (#339)Lex Neva
* add debugging support using pydev * fix: don't add tie stitches for manual stitch * fix style
2018-10-20add g-code output format (#336)Lex Neva
2018-09-29new extension: split satin (#315)Lex Neva
This branch adds a new command to split a satin column at a specified point. The split happens at a stitch boundary to ensure that the two resulting satins sew just like the original. All parameters set on the original satin remain set on the two new satins, and all rungs are retained. If one of the satins would have no rungs left, a new rung is added. How to use: 1. Select a satin column (simple satin doesn't work) 2. Attach the "Satin split point" command using the "Attach commands to selected objects" extension. 3. Move the symbol (or just the connector line's endpoint) to point to the exact spot you want the satin to be split at. 4. Select the satin column again. 5. Run "Split Satin Column". 6. The split point command and connector line disappear, and nothing else appears to have happened. Select your satin and you'll see that it's been split. This extension is a by-product of my initial work on #214. Ink/Stitch will need the ability to split a satin at an arbitrary point, and I figured, why not go ahead and release that functionality as an extension while I'm at it? :)
2018-09-29Merge pull request #316 from inkstitch/lexelby/bug-fixesLex Neva
more bug fixes
2018-09-22update simulator (#318)Kaalleen
* fix change direction button * pause animation when going one step forward or backward * add button tool tips to inform about shortcut keys
2018-09-18bullets require unicode stringsLex Neva
2018-09-18use ugettext() instead of gettext()Lex Neva
2018-09-16remove code style exemption for params.py and simulator.pyLex Neva
2018-09-16remove obselete 'fake color change' codeLex Neva
2018-09-15use faster algorithm for tiesLex Neva
2018-09-15handle SVGs without bounding boxLex Neva
2018-09-12Merge remote-tracking branch 'origin/master' into lexelby/bug-fixesLex Neva