BenJamesBen

Results 158 comments of BenJamesBen

I tried testing Lily, but `yarn kickstart` fails in the `lily-leggings-(fresh-start)` git branch. ```sh ✖ @freesewing/new-design:build:all $ yarn prebuild $ node --conditions=internal ./prebuild.mjs ... [Error: ENOENT: no such file or...

To workaround the problems, I pulled a fresh copy of Lily via: ```sh % cd [top level of repository] % git switch develop % git pull % git branch lily-new...

I'm not sure what is going on, but at times the seam allowances in these corners appear wonky. ![Screenshot 2024-03-16 at 6 20 41 PM](https://github.com/freesewing/freesewing/assets/109869956/2e1a059f-cbd8-42d5-aa0a-9f6773c92ce4) To reproduce: ```yaml measurements: crossSeam:...

At times with a short Waist Height, this corner seam allowance in the front also gets strange. ![Screenshot 2024-03-16 at 6 44 44 PM](https://github.com/freesewing/freesewing/assets/109869956/9304b645-b240-46d6-a637-c820dc3ce326) ```yaml measurements: crossSeam: 620 crossSeamFront: 280...

Fixes guideline flipping to fork: ```diff --- a/designs/lily/src/front.mjs +++ b/designs/lily/src/front.mjs @@ -397,12 +397,19 @@ function draftLilyFront({ if (points.seatInTemp.y points.fork) { + } else if (points.seatInTemp.y > points.fork.y) { // seat...

Lily's front crotch curve can start above the top of the garment, if the waist is lowered. The below fix has a side effect of deleting the existing hint path...

FYI, to get the Senya design to work in the localhost lab development environment to test it, I had to: 1. Add in `config/software/designs.json`: ```diff @@ -237,2 +237,9 @@ },...

1. For the measurement, if your design truly uses a measurement that isn't one of the standard FreeSewing ones, I think you should simply create a new measurement name and...

An alternate way of doing things, instead of having midriff measurements, might be to simply use the `underbust` or `waist` measurement (whichever one makes more sense... I don't have a...

FYI, you can run lint locally in `designs/senya` directory via `yarn lint` or `npm run lint`. (If you want to see how the `lint` script is defined, check `designs/senya/package.json`.)