1
0
Fork 0

Merge pull request #6839 from freesewing/issue-6820

fix(teagan): Increase length bonus. Fixes #6820
This commit is contained in:
Joost De Cock 2024-06-12 14:56:53 +02:00 committed by GitHub
commit fbf614055b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 14 additions and 1 deletions

View file

@ -79,6 +79,10 @@
### teagan
#### Changed
- Increased default lengthBonus from 5% to 15%. Fixes
#### Fixed
- Fix side seam when length is cropped. Fixes
@ -113,6 +117,10 @@
- The `Path.rotate()` method was added to the core API.
#### Fixed
- Fix an issue when splitting path on start or end point. Fixes
## 3.2.0 (2024-02-11)

View file

@ -23,6 +23,9 @@ Unreleased:
- Allow negative values for the buttonFreeLength option. Fixes #6508
tamiko:
- Always load plugin-bust due to its changes in how it handle conditionality.
teagan:
- Increased default lengthBonus from 5% to 15%. Fixes #6820
wahid:
- Add a warning when waist and hip reduction are both zero, so no back dart is required
@ -33,6 +36,8 @@ Unreleased:
Fixed:
charlie:
- Fix cut instructions for fly facing, only 1 to be cut. Fixes #6392
core:
- Fix an issue when splitting path on start or end point. Fixes #6816
huey:
- Fixed an issue where ribbing height would distort the pocket under certain conditions. Fixes #6238
- Adding missing translation for ribbing option

View file

@ -263,7 +263,7 @@ export const front = {
// Brian overrides
chestEase: { pct: 12, min: 5, max: 25, menu: 'fit' },
sleeveLength: { pct: 30, min: 20, max: 100, menu: 'fit' },
lengthBonus: { pct: 5, min: -20, max: 60, menu: 'style' },
lengthBonus: { pct: 15, min: -20, max: 60, menu: 'style' },
backNeckCutout: { pct: 8, min: 4, max: 12, menu: 'fit' },
// Teagan specific
draftForHighBust: { bool: false, menu: 'fit' },