diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c73966bb4f..6e20f662400 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,16 @@ ## 2.19.5 (2022-11-13) +### charlie + +#### Changed + + - Updated the `waistHeight` options to increase both min and max values + +#### Fixed + + - Fix issue where a very low waist caused the fly to be incorrectly drawn This only happens at unrealistic waist heights, so I changed the option minimum value instead. Closes [#1486](https://github.com/freesewing/freesewing/issues/1486) + ### penelope #### Changed diff --git a/config/changelog.yaml b/config/changelog.yaml index be1625fb4ce..ce214e8568c 100644 --- a/config/changelog.yaml +++ b/config/changelog.yaml @@ -2,11 +2,18 @@ date: 2022-11-13 Fixed: + charlie: + - Fix issue where a very low waist caused the fly to be incorrectly drawn + This only happens at unrealistic waist heights, so I changed the option + minimum value instead. + Closes [#1486](https://github.com/freesewing/freesewing/issues/1486) yuri: - Fix seam allowance on back, gusset and hood center parts Closes [#1464](https://github.com/freesewing/freesewing/issues/1464) Changed: + charlie: + - Updated the `waistHeight` options to increase both min and max values penelope: - Increased maximum for the `waistEase` option - Increased maximum for the `seatEase` options diff --git a/packages/charlie/CHANGELOG.md b/packages/charlie/CHANGELOG.md index d2dae69ae36..7b632a263ba 100644 --- a/packages/charlie/CHANGELOG.md +++ b/packages/charlie/CHANGELOG.md @@ -1,6 +1,16 @@ # Change log for: @freesewing/charlie +## 2.19.5 (2022-11-13) + +### Changed + + - Updated the `waistHeight` options to increase both min and max values + +### Fixed + + - Fix issue where a very low waist caused the fly to be incorrectly drawn This only happens at unrealistic waist heights, so I changed the option minimum value instead. Closes [#1486](https://github.com/freesewing/freesewing/issues/1486) + ## 2.19.3 (2021-11-05) ### Changed diff --git a/packages/charlie/config/index.js b/packages/charlie/config/index.js index 4c60555f44f..9b10448b82b 100644 --- a/packages/charlie/config/index.js +++ b/packages/charlie/config/index.js @@ -105,7 +105,7 @@ export default { kneeEase: { pct: 15, min: 10, max: 30 }, // Style (from Titan) - waistHeight: { pct: -4, min: -50, max: 30 }, + waistHeight: { pct: -4, min: -15, max: 40 }, waistbandWidth: { pct: 3, min: 1, max: 6, snap: elastics, ...pctBasedOn('waistToFloor') }, //waistbandWidth: { pct: 3.5, min: 2, max: 5 }, lengthBonus: { pct: 2, min: -20, max: 10 },