diff --git a/CHANGELOG.md b/CHANGELOG.md index f2d11ba4443..968cec563dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,74 @@ # Change log for: FreeSewing (global) +## 2.15.0 (NaN-NaN-NaN) + +### bella + +#### Fixed + + - Shoulder point control point fix for doll-sized clothes + +### charlie + +#### Added + + - Inital release of the Charlie Chinos pattern + +### cornelius + +#### Fixed + + - Handle edge-case where splitting a path on and endpoint causes things to break + +### css-theme + +#### Added + + - Added the path.bartack class + +### paco + +#### Changed + + - Extended range and inreased default of the healEase option + +### plugin-buttons + +#### Added + + - Added the buttonhole-end snippet + - Added the buttonhole-start snippet + +### plugin-logo + +#### Added + + - Render logo in currentColor to support dark mode + +### plugin-theme + +#### Added + + - Added the path.bartack class + +### titan + +#### Added + + - Added the crossSeamCurveAngle option + - Added the crotchSeamCurveAngle option + +#### Changed + + - Crotch- and Cross seam have been redrawn using the new angle options + +#### Fixed + + - Adapt seat control point when waist is dropped below the hip line + - Removed lingering console.log statements + + ## 2.14.0 (2021-03-07) ### components diff --git a/config/changelog.yaml b/config/changelog.yaml index 2c9c5716f77..2fa3fc02f9d 100644 --- a/config/changelog.yaml +++ b/config/changelog.yaml @@ -6,6 +6,10 @@ - Added the path.bartack class charlie: - Inital release of the Charlie Chinos pattern + titan: + - Added the waistbandHeight option + - Added the crossSeamCurveAngle option + - Added the crotchSeamCurveAngle option plugin-buttons: - Added the buttonhole-end snippet - Added the buttonhole-start snippet @@ -13,13 +17,13 @@ - Render logo in currentColor to support dark mode plugin-theme: - Added the path.bartack class - titan: - - Added the crossSeamCurveAngle option - - Added the crotchSeamCurveAngle option Changed: + core: + - Don't round coordinates internally to avoid path.split misses paco: - Extended range and inreased default of the healEase option + - Added the (disabled) waistbandHeight option from Titan titan: - Crotch- and Cross seam have been redrawn using the new angle options @@ -31,6 +35,9 @@ titan: - Adapt seat control point when waist is dropped below the hip line - Removed lingering console.log statements + - Configure dependencies to guarantee draft order + - Always keep seat control point vertically between styled waist and seat + - Adapt the outseam to the dropped waist in all circumstances 2.14.0: date: 2021-03-07 diff --git a/config/descriptions.yaml b/config/descriptions.yaml index 054c9018f01..5a02a884a7d 100644 --- a/config/descriptions.yaml +++ b/config/descriptions.yaml @@ -33,6 +33,7 @@ paco: 'A FreeSewing pattern for summer pants' pattern-info: 'Information about available freesewing patterns' penelope: 'A FreeSewing pattern for a pencil skirt' plugin-banner: 'A FreeSewing plugin to repeat text on a path' +plugin-bartack: 'A FreeSewing plugin to add bartacks to your pattern' plugin-bundle: 'An umbrella package of 8 essential FreeSewing build-time plugins' plugin-bust: 'A FreeSewing plugin that helps with bust-adjusting menswear patterns' plugin-buttons: 'A FreeSewing plugin that provides button, buttonhole, and snap snippets' diff --git a/packages/bella/CHANGELOG.md b/packages/bella/CHANGELOG.md index e5982ae24a1..2db12171c66 100644 --- a/packages/bella/CHANGELOG.md +++ b/packages/bella/CHANGELOG.md @@ -1,6 +1,12 @@ # Change log for: @freesewing/bella +## 2.15.0 (NaN-NaN-NaN) + +### Fixed + + - Shoulder point control point fix for doll-sized clothes + ## 2.13.2 (2021-02-21) ### Fixed diff --git a/packages/cornelius/CHANGELOG.md b/packages/cornelius/CHANGELOG.md index aa0af92146f..400b163ccba 100644 --- a/packages/cornelius/CHANGELOG.md +++ b/packages/cornelius/CHANGELOG.md @@ -1,6 +1,12 @@ # Change log for: @freesewing/cornelius +## 2.15.0 (NaN-NaN-NaN) + +### Fixed + + - Handle edge-case where splitting a path on and endpoint causes things to break + ## 2.14.0 (2021-03-07) ### Added diff --git a/packages/cornelius/example/.babelrc b/packages/cornelius/example/.babelrc deleted file mode 100644 index a6551f4342d..00000000000 --- a/packages/cornelius/example/.babelrc +++ /dev/null @@ -1,13 +0,0 @@ -{ - "plugins": [ - [ - "prismjs", - { - "languages": ["javascript", "css", "markup"], - "plugins": ["line-numbers"], - "theme": "twilight", - "css": true - } - ] - ] -} diff --git a/packages/css-theme/CHANGELOG.md b/packages/css-theme/CHANGELOG.md index 224a17ff76c..525a7d6d7c1 100644 --- a/packages/css-theme/CHANGELOG.md +++ b/packages/css-theme/CHANGELOG.md @@ -1,6 +1,12 @@ # Change log for: @freesewing/css-theme +## 2.15.0 (NaN-NaN-NaN) + +### Added + + - Added the path.bartack class + ## 2.11.0 (2021-01-10) ### Added diff --git a/packages/plugin-buttons/CHANGELOG.md b/packages/plugin-buttons/CHANGELOG.md index b4014994c09..d4ad5f1dbd8 100644 --- a/packages/plugin-buttons/CHANGELOG.md +++ b/packages/plugin-buttons/CHANGELOG.md @@ -1,6 +1,13 @@ # Change log for: @freesewing/plugin-buttons +## 2.15.0 (NaN-NaN-NaN) + +### Added + + - Added the buttonhole-end snippet + - Added the buttonhole-start snippet + ## 2.7.0 (2020-07-12) ### Changed diff --git a/packages/plugin-logo/CHANGELOG.md b/packages/plugin-logo/CHANGELOG.md index 133ec475ae9..9fa8ea90d42 100644 --- a/packages/plugin-logo/CHANGELOG.md +++ b/packages/plugin-logo/CHANGELOG.md @@ -1,6 +1,12 @@ # Change log for: @freesewing/plugin-logo +## 2.15.0 (NaN-NaN-NaN) + +### Added + + - Render logo in currentColor to support dark mode + ## 2.0.0 (2019-08-25) ### Added diff --git a/packages/plugin-theme/CHANGELOG.md b/packages/plugin-theme/CHANGELOG.md index ff1f7dbe13d..e6fcb46f7c2 100644 --- a/packages/plugin-theme/CHANGELOG.md +++ b/packages/plugin-theme/CHANGELOG.md @@ -1,6 +1,12 @@ # Change log for: @freesewing/plugin-theme +## 2.15.0 (NaN-NaN-NaN) + +### Added + + - Added the path.bartack class + ## 2.0.0 (2019-08-25) ### Added