1
0
Fork 0

Merge pull request #6634 from freesewing/fix-6596

fix(huey): Increase lengtBonus default. Fixes #6596
This commit is contained in:
Joost De Cock 2024-04-27 16:38:02 +02:00 committed by GitHub
commit 0a44300eaf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 0 deletions

View file

@ -11,6 +11,10 @@
### huey ### huey
#### Changed
- The lengthBonus option default was changed from 0% to 15%. Fixes
#### Fixed #### Fixed
- Fixed an issue where ribbing height would distort the pocket under certain conditions. Fixes - Fixed an issue where ribbing height would distort the pocket under certain conditions. Fixes

View file

@ -6,6 +6,8 @@ Unreleased:
Changed: Changed:
brian: brian:
- 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.
huey:
- The lengthBonus option default was changed from 0% to 15%. Fixes #6596
onyx: onyx:
- 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.
plugin-bust: plugin-bust:

View file

@ -101,6 +101,8 @@ export const back = {
ribbing: { bool: true, menu: 'style' }, ribbing: { bool: true, menu: 'style' },
ribbingHeight: { pct: 10, min: 5, max: 15, menu: 'style' }, ribbingHeight: { pct: 10, min: 5, max: 15, menu: 'style' },
hipsEase: { pct: 8, min: 4, max: 12, menu: 'fit' }, hipsEase: { pct: 8, min: 4, max: 12, menu: 'fit' },
// Override Brian's lengthbonus. See #6596
lengthBonus: { pct: 15, min: -4, max: 60, menu: 'style' },
}, },
draft: draftHueyBack, draft: draftHueyBack,
} }