From 2cc1be69334c88ea42e08c283d48fb5cfa312ab6 Mon Sep 17 00:00:00 2001 From: Joost De Cock Date: Sat, 26 Dec 2020 13:23:34 +0100 Subject: [PATCH] fix(shin): Remove unused lengthBonus option. Closes #752 --- CHANGELOG.md | 6 ++++++ packages/shin/config/index.js | 3 +-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a327783d412..7e2b60d6918 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ ## Unreleased +### shin + +#### Fixed + + - Removed the unused `lengthBonus` options. Closes [#752](https://github.com/freesewing/freesewing/issues/752) + ## 2.10.7 (2020-11-18) diff --git a/packages/shin/config/index.js b/packages/shin/config/index.js index 526113d56b2..a139cc87750 100644 --- a/packages/shin/config/index.js +++ b/packages/shin/config/index.js @@ -11,7 +11,7 @@ export default { tags: ['swimwear', 'bottom'], optionGroups: { fit: ['bulge', 'backRise', 'legReduction', 'stretch'], - style: ['lengthBonus', 'rise'] + style: ['rise'] }, measurements: ['hips', 'upperLeg', 'waistToUpperLeg', 'waistToHips'], parts: ['back', 'front', 'waistband'], @@ -29,7 +29,6 @@ export default { stretch: { pct: 20, min: 10, max: 30 }, bulge: { pct: 2.5, min: 0, max: 5 }, legReduction: { pct: 5, min: 0, max: 10 }, - lengthBonus: { pct: 0, min: 0, max: 50 }, rise: { pct: 0, min: 0, max: 25 }, backRise: { pct: 5, min: 0, max: 10 } }