🐛 Typo in Jaeger was causing incorrect side vent length. Fixes #76
This commit is contained in:
parent
b7d3b3e072
commit
9fa423bce7
4 changed files with 54 additions and 3 deletions
48
CHANGELOG.md
48
CHANGELOG.md
|
@ -4,6 +4,54 @@
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
### benjamin
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
- Added bandLength option to fit optiongroup (it was missing)
|
||||||
|
|
||||||
|
### components
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
- [#104](https://github.com/freesewing/freesewing.org/issues/104): Changed `onDragEnd` to `onChangeCommitted` in slider element (change in material-ui API when slider came out of beta)
|
||||||
|
- Workbench now also lets you preload a `withBreasts` set of measurements
|
||||||
|
- DraftConfigurator now properly styles pattern options 3 levels deep
|
||||||
|
|
||||||
|
### create-freesewing-pattern
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Updated dependencies
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
- Added missing `file-saver` dependency
|
||||||
|
|
||||||
|
### css-theme
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
- Updated styles for DraftConfigurator component for pattern options 3 levels deep
|
||||||
|
|
||||||
|
### i18n
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- [#90](https://github.com/freesewing/freesewing/issues/90): Added missing option translations for Benjamin, Florent, Sandy, Shin, and Theo
|
||||||
|
|
||||||
|
### jaeger
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
- [#76](https://github.com/freesewing/freesewing.org/issues/76): Fixed a typo in Jaeger that was causing the side vent length to be wrong
|
||||||
|
|
||||||
|
### simon
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
- [#100](https://github.com/freesewing/freesewing.org/issues/100): Updated simon with more sensible defaults for ease options
|
||||||
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
## 2.0.1 (2019-09-01)
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,9 @@ Unreleased:
|
||||||
- DraftConfigurator now properly styles pattern options 3 levels deep
|
- DraftConfigurator now properly styles pattern options 3 levels deep
|
||||||
create-freesewing-pattern:
|
create-freesewing-pattern:
|
||||||
- Added missing `file-saver` dependency
|
- Added missing `file-saver` dependency
|
||||||
|
jaeger:
|
||||||
|
- "[#76](https://github.com/freesewing/freesewing.org/issues/76):
|
||||||
|
Fixed a typo in Jaeger that was causing the side vent length to be wrong"
|
||||||
simon:
|
simon:
|
||||||
- "[#100](https://github.com/freesewing/freesewing.org/issues/100):
|
- "[#100](https://github.com/freesewing/freesewing.org/issues/100):
|
||||||
Updated simon with more sensible defaults for ease options"
|
Updated simon with more sensible defaults for ease options"
|
||||||
|
|
|
@ -3,9 +3,9 @@
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
### Fixed
|
||||||
|
|
||||||
|
|
||||||
|
- [#76](https://github.com/freesewing/freesewing.org/issues/76): Fixed a typo in Jaeger that was causing the side vent length to be wrong
|
||||||
## 2.0.1 (2019-09-01)
|
## 2.0.1 (2019-09-01)
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
**Note:** Version bump only for package jaeger
|
||||||
|
|
|
@ -16,7 +16,7 @@ export default function(part) {
|
||||||
|
|
||||||
// Double back vent
|
// Double back vent
|
||||||
if (options.backVent === 2) {
|
if (options.backVent === 2) {
|
||||||
let ventY = points.bsHips.y - points.bsWaistCp2.dy(points.bsHips) * options.backVentLength
|
let ventY = points.bsHips.y - points.bsWaistCp1.dy(points.bsHips) * options.backVentLength
|
||||||
// Vent tip
|
// Vent tip
|
||||||
points.ventStart = utils.curveIntersectsY(
|
points.ventStart = utils.curveIntersectsY(
|
||||||
points.bsHips,
|
points.bsHips,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue