summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2024-06-22fix typo (#3006)Kaalleen
2024-06-21Fix realistic stitch plan preview for inkscape versions 1.3 and 1.3.1 (#3004)Kaalleen
Co-authored-by: CapellanCitizen
2024-06-21Ignore empty color blocks in linear gradient fill (#3003)Kaalleen
2024-06-20auto-fill pull compensation (#2891)Lex Neva
2024-06-20gray out randomize stitch length param when random stitch length is disabled ↵Kaalleen
(#3002)
2024-06-20Fix short relative lock stitches (#2998)Kaalleen
2024-06-14Fix realistic stitch filter rendering (#2988)capellancitizen
2024-06-14Add preferences button to simulator (#2992)Kaalleen
* split simulator panel files * add view panel to position view options at the side * fix single simulator start size (macOS)
2024-06-12improve error message for files with too many color changes (#2984)Kaalleen
2024-06-09add warning for closed path satins (#2976)Kaalleen
2024-06-08lettering along path: remove previous transforms (#2973)Kaalleen
2024-06-08update pan_and_zoom on simulator resize (#2974)Kaalleen
2024-06-07auto fill gap fix (#2884)Lex Neva
* first try * fill gaps * fix style * add parameter * loops can only be made of non-segments
2024-06-07Improve simulator dark theme (#2969)Kaalleen
* add simulator dark theme buttons * refresh simulator drawing panel on resize (important for windows)
2024-06-05fix print pdf whith active realistic stitch plan (png) (#2967)Kaalleen
2024-06-04Update tartan gui (#2965)Kaalleen
* update tartan gui * params settings size * fix issue with set_precision * fix issue with linear gradient * do not add ignore layer command to png rerealistic output
2024-06-04Claudine/redwork (#2958)Claudine Peyrat
* add redwork extension * fix issue when multiple lines have the same start and end output to underlay and top layer paths * use more networks algo * make style corrections * make starting point effective * organize in connected groups * ending point ending point could be used as starting point if no starting point is given * add a comment * don't add connected group if the whole design is connected, don't add connected group * remove too short paths * bug correction use length of linestring not the distance betweend endpoiints * allow parameters setting stitch_length for both redwork and underpath bean_stitch for redwork * style correction --------- Co-authored-by: Kaalleen <reni@allenka.de>
2024-06-03multicolor satin gui rewrite (#2960)Kaalleen
2024-06-03Avoid FloatingPointError (fill) (#2959)Kaalleen
2024-06-02Avoid FloatingPointError in auto_route satin (#2954)Kaalleen
2024-05-29add help tab to lettering (#2948)Kaalleen
2024-05-24fix boolean param (#2942)Kaalleen
2024-05-22add links to documention in inx extensions (#2937)Kaalleen
2024-05-22set default underlay stitch length to 3 (#2925)Kaalleen
2024-05-22print pdf: remove top level groups (not only layers) (#2924)Kaalleen
2024-05-21Tartan stroke distance (#2931)Kaalleen
2024-05-20add a tooltip to split method param (#2926)Claudine Peyrat
2024-05-20tartan: fix non tartan group selection (#2922)Kaalleen
2024-05-17filter invalid satin second trial (#2918)Kaalleen
2024-05-17filter invalid paths in satins (#2916)Kaalleen
2024-05-17fix realistic preview for pyinstaller packaged linux build (#2912)Kaalleen
2024-05-17fix zigzag line to satin (#2917)Kaalleen
2024-05-17fix tartan threadcount code (#2913)Kaalleen
2024-05-17Stitch plan: options render jumps and ignore layer (#2911)Kaalleen
2024-05-16fix gap after auto-route satin (#2907)Kaalleen
2024-05-13fix invalid clip paths (#2897)Kaalleen
2024-05-13add color description (#2899)Kaalleen
2024-05-13Claudine/add ondulamarif fonts (#2902)Claudine Peyrat
* add the ondulamarif file + add a tartan and a ripple category * Update →.svg add the german voyels * scaling * add the lost Ê to themedium font
2024-05-12Make font names not translatable (#2901)Kaalleen
2024-05-12fix center walk underlay repeats (#2895)Kaalleen
2024-05-12lpe satin: increase fuse value (#2896)Kaalleen
2024-05-11Several fixes (#2893)Kaalleen
* fix untranslatable string in tartan code panel * warn about duplicated glyphs in font file * font sampling: change default line length * prevent element_id referenced before assignment
2024-05-11Update inkex (#2892)Kaalleen
* fix currentColor * fix pip inkex import * fix color block extension
2024-05-09Rewrite outline extensions (#2881)Kaalleen
2024-05-07Sample correct font variant (#2883)Kaalleen
2024-05-07fix multiple param values when default None (#2854)Kaalleen
2024-05-07remove special treatment for polylines (#2866)Kaalleen
2024-05-06Remove unused param from legacy fill (#2879)Kaalleen
* remove unused param from legacy fill * zigzag -> zig-zag, some ordering
2024-05-06font-info: int -> float (#2853)Kaalleen
2024-05-05Add randomized running and fill stitches (#2830)George Steel
Add a mode to running stitch that uses randomized phase and stitch length instead of even spacing. This greatly reduces moire effects when stitching closely-spaced curves in running-stitch-based fills. Add option for randomized running stitch to: ripple stitch circular fill contour fill guided fill auto-fill When is randomization is not selected, ripple stitch will use even running stitch when staggers are set to 0 (default) and the stagger algorithm from guided fill (which does not look nice with a stagger period of 0) when staggers is nonzero. Also includes fix for satin contour underlays (missing tolerance default) mentioned in #2814. This sets the default tolerance to 0.2mm, which is the largest tolerance guaranteed to be backwards-compatible with existing designs using the default inset of 0.4mm. Original commits: * fix satin underlay tolerance default * Add randomized running stitch, make available in ripple stitch, circular, and contour * add randomized guided fill * make ripple stitch use even stitching when not staggering or randomizing. * add random auto-fill and switch jitter parameter to a percentage (matches satin) * fix comments