fix(charlie): Prevent low waist from causing fly issues. Closes #1486
This commit is contained in:
parent
0590125e38
commit
be1cddfa37
4 changed files with 28 additions and 1 deletions
10
CHANGELOG.md
10
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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue