1
0
Fork 0

chore(teagan): Increase length bonus to 15%. Fixes #6820

This commit is contained in:
joostdecock 2024-06-12 13:59:15 +02:00
parent 3eaecf9b66
commit 34d9ef1ebf
2 changed files with 6 additions and 1 deletions

View file

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

View file

@ -263,7 +263,7 @@ export const front = {
// Brian overrides // Brian overrides
chestEase: { pct: 12, min: 5, max: 25, menu: 'fit' }, chestEase: { pct: 12, min: 5, max: 25, menu: 'fit' },
sleeveLength: { pct: 30, min: 20, max: 100, 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' }, backNeckCutout: { pct: 8, min: 4, max: 12, menu: 'fit' },
// Teagan specific // Teagan specific
draftForHighBust: { bool: false, menu: 'fit' }, draftForHighBust: { bool: false, menu: 'fit' },