From 34d9ef1ebf7d13eb9b00dbe98fae5b40e6a2246b Mon Sep 17 00:00:00 2001 From: joostdecock Date: Wed, 12 Jun 2024 13:59:15 +0200 Subject: [PATCH 1/2] chore(teagan): Increase length bonus to 15%. Fixes #6820 --- config/changelog.yaml | 5 +++++ designs/teagan/src/front.mjs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/config/changelog.yaml b/config/changelog.yaml index 811a68637f0..1e50ffc6cf3 100644 --- a/config/changelog.yaml +++ b/config/changelog.yaml @@ -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 diff --git a/designs/teagan/src/front.mjs b/designs/teagan/src/front.mjs index f2f61a48c89..61b79246714 100644 --- a/designs/teagan/src/front.mjs +++ b/designs/teagan/src/front.mjs @@ -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' }, From e378e74c52a43b2457d0f7d26773f66c7d5a36b2 Mon Sep 17 00:00:00 2001 From: joostdecock Date: Wed, 12 Jun 2024 14:00:45 +0200 Subject: [PATCH 2/2] chore: changelog update --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f2d9c50f47..10a07aa3102 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)