chore: Updated changelog generation script
This commit is contained in:
parent
57caee751f
commit
bf730ba8af
143 changed files with 1283 additions and 6905 deletions
31
.github/workflows/tests.legend.yml
vendored
Normal file
31
.github/workflows/tests.legend.yml
vendored
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
name: Unit tests - Legend
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [12.x]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Setup Node.js ${{ matrix.node-version }}
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
|
- name: Install dependencies
|
||||||
|
run: cd packages/legend && npm install
|
||||||
|
env:
|
||||||
|
CI: true
|
||||||
|
- name: Install peer & test dependencies
|
||||||
|
run: cd packages/legend && npm install @freesewing/core @freesewing/plugin-bundle @freesewing/plugin-buttons @freesewing/models @freesewing/pattern-info mocha chai
|
||||||
|
env:
|
||||||
|
CI: true
|
||||||
|
- name: Build pattern
|
||||||
|
run: cd packages/legend && npm run build
|
||||||
|
- name: Run pattern unit tests
|
||||||
|
run: cd packages/legend && npm run testci
|
31
.github/workflows/tests.notation-legend.yml
vendored
Normal file
31
.github/workflows/tests.notation-legend.yml
vendored
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
name: Unit tests - Notation-legend
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [12.x]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Setup Node.js ${{ matrix.node-version }}
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
|
- name: Install dependencies
|
||||||
|
run: cd packages/notation-legend && npm install
|
||||||
|
env:
|
||||||
|
CI: true
|
||||||
|
- name: Install peer & test dependencies
|
||||||
|
run: cd packages/notation-legend && npm install @freesewing/core @freesewing/plugin-bundle @freesewing/plugin-buttons @freesewing/models @freesewing/pattern-info mocha chai
|
||||||
|
env:
|
||||||
|
CI: true
|
||||||
|
- name: Build pattern
|
||||||
|
run: cd packages/notation-legend && npm run build
|
||||||
|
- name: Run pattern unit tests
|
||||||
|
run: cd packages/notation-legend && npm run testci
|
373
CHANGELOG.md
373
CHANGELOG.md
|
@ -2,6 +2,57 @@
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
### bruce
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
- Sampling some options would not work in Bruce because the code shared across patterns would only run once. That's fixed now.
|
||||||
|
|
||||||
|
### cathrin
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
- [Fixed missing points issue when changing panels option](https://github.com/freesewing/freesewing.org/issues/619)
|
||||||
|
- Fixed panels option being a list of numbers rather than strings
|
||||||
|
|
||||||
|
### core
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added support for injecting custom (path) styles when sampling. Closes [#380](https://github.com/freesewing/freesewing/issues/380)
|
||||||
|
|
||||||
|
### hugo
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added shaping of the side seam
|
||||||
|
|
||||||
|
### plugin-buttons
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
- Snippet `snap-male` and `snap-female` are no longer available. Use `snap-stud` and `snap-socket` instead
|
||||||
|
|
||||||
|
### plugin-mirror
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- A FreeSewing plugin for mirroring points or paths
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### titan
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- A FreeSewing block for pants/trousers
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### utils
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Added new `isDegMeasurement` method. See [#358](https://github.com/freesewing/freesewing/issues/358)
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
## 2.6.0 (2020-05-01)
|
||||||
|
|
||||||
### brian
|
### brian
|
||||||
|
@ -55,6 +106,7 @@
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- This plugin can export your pattern as DXF-ASTM
|
- This plugin can export your pattern as DXF-ASTM
|
||||||
|
- Initial release
|
||||||
|
|
||||||
### wahid
|
### wahid
|
||||||
|
|
||||||
|
@ -183,6 +235,7 @@
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Florence is a face mask pattern
|
- Florence is a face mask pattern
|
||||||
|
- Initial release
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
## 2.3.0 (2020-02-23)
|
||||||
|
|
||||||
|
@ -191,12 +244,14 @@
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Homes is a pattern for a Sherlock Holmes hat
|
- Homes is a pattern for a Sherlock Holmes hat
|
||||||
|
- Initial release
|
||||||
|
|
||||||
### plugin-gore
|
### plugin-gore
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- A plugin to generate gores for semi-spheres or domes
|
- A plugin to generate gores for semi-spheres or domes
|
||||||
|
- Initial release
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
|
@ -509,12 +564,14 @@
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Added the gatsby-remark-jargon package, a gatbsy plugin wrapping remark-jargon
|
- Added the gatsby-remark-jargon package, a gatbsy plugin wrapping remark-jargon
|
||||||
|
- Initial release
|
||||||
|
|
||||||
### remark-jargon
|
### remark-jargon
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Added the remark-jargon package, a remark plugin for jargon terms
|
- Added the remark-jargon package, a remark plugin for jargon terms
|
||||||
|
- Initial release
|
||||||
|
|
||||||
### utils
|
### utils
|
||||||
|
|
||||||
|
@ -570,6 +627,7 @@
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Added the Penelope Pencil Skirt pattern by @woutervdub
|
- Added the Penelope Pencil Skirt pattern by @woutervdub
|
||||||
|
- Initial release
|
||||||
|
|
||||||
### simon
|
### simon
|
||||||
|
|
||||||
|
@ -591,6 +649,7 @@
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Added the Simone shirt pattern
|
- Added the Simone shirt pattern
|
||||||
|
- Initial release
|
||||||
|
|
||||||
### utils
|
### utils
|
||||||
|
|
||||||
|
@ -608,6 +667,7 @@
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Added the Waralee wrap Pants pattern by @woutervdub
|
- Added the Waralee wrap Pants pattern by @woutervdub
|
||||||
|
- Initial release
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
## 2.0.4 (2019-09-27)
|
||||||
|
|
||||||
|
@ -743,7 +803,314 @@
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
### aaron
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
#### Added
|
||||||
As such, that history is out of scope for this change log.
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### benjamin
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### bent
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### brian
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### bruce
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### carlita
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### carlton
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### cathrin
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### components
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### core
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### create-freesewing-pattern
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### css-theme
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### examples
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### florent
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### huey
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### hugo
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### i18n
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### jaeger
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### models
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### mui-theme
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### pattern-info
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-banner
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-bundle
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-bust
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-buttons
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-cutonfold
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-debug
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-designer
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-dimension
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-flip
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-grainline
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-i18n
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-logo
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-round
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-scalebox
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-sprinkle
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-svgattr
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-theme
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-title
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### plugin-validate
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### prettier-config
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### rendertest
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### sandy
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### shin
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### simon
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### sven
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### tamiko
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### theo
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### trayvon
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### tutorial
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### utils
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
### wahid
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
|
@ -1,10 +1,73 @@
|
||||||
Unreleased:
|
Unreleased:
|
||||||
date:
|
date:
|
||||||
Added:
|
Added:
|
||||||
|
core:
|
||||||
|
- Added support for injecting custom (path) styles when sampling. Closes [#380](https://github.com/freesewing/freesewing/issues/380)
|
||||||
|
hugo:
|
||||||
|
- Added shaping of the side seam
|
||||||
|
notation-legend:
|
||||||
|
- A pattern to document the markings on our patterns
|
||||||
|
- Initial release
|
||||||
|
plugin-mirror:
|
||||||
|
- A FreeSewing plugin for mirroring points or paths
|
||||||
|
- Initial release
|
||||||
|
titan:
|
||||||
|
- A FreeSewing block for pants/trousers
|
||||||
|
- Initial release
|
||||||
|
utils:
|
||||||
|
- Added new `isDegMeasurement` method. See [#358](https://github.com/freesewing/freesewing/issues/358)
|
||||||
|
|
||||||
Changes:
|
Changes:
|
||||||
|
aaron:
|
||||||
|
- Updated side seam shaping and tweaked options for better defaults
|
||||||
|
- Better handling of `armholeDrop` option
|
||||||
|
bent:
|
||||||
|
- Increased default for the `cuffEase` option
|
||||||
|
- Decreased default for the `armholeDepth` option
|
||||||
|
- Better range for the `shoulderSlopeReduction` measurement
|
||||||
|
breanna:
|
||||||
|
- Ported Breanna to the new shoulderSlope measurement. See [#358](https://github.com/freesewing/freesewing/issues/358)
|
||||||
|
brian:
|
||||||
|
- Ported brian to new `shoulderSlope` degree measurement. See [#358](https://github.com/freesewing/freesewing/issues/358)
|
||||||
|
carlton:
|
||||||
|
- Better range for the `shoulderSlopeReduction` measurement
|
||||||
|
carlita:
|
||||||
|
- Better range for the `shoulderSlopeReduction` measurement
|
||||||
|
css-theme:
|
||||||
|
- Updated the width of the SVG paths of a draft to match plugin-theme
|
||||||
|
diana:
|
||||||
|
- Made the `shoulderSlopeReduction` option static so it's not available in the UI
|
||||||
|
huey:
|
||||||
|
- No longer use the `naturalWaist` measurement
|
||||||
|
- Changed some option to better defaults
|
||||||
|
hugo:
|
||||||
|
- Changed some option to better defaults
|
||||||
|
jaeger:
|
||||||
|
- Changed some option to better defaults
|
||||||
|
- Set an anchor on side part for sampling
|
||||||
|
plugin-buttons:
|
||||||
|
- Snippet names are changed, `snap-male` is now `snap-stud` and `snap-female` is now `snap-socket`
|
||||||
|
Changing this to avoid needless use of gender related terminology.
|
||||||
|
sven:
|
||||||
|
- Improved the shaping of the side seam
|
||||||
|
- Changed some option to better defaults
|
||||||
|
tamiko:
|
||||||
|
- Switch from `shoulderSlope` option to `shoulderSlope` measurement
|
||||||
|
utils:
|
||||||
|
- Changed `neckStimate` to handle new `shoulderSlope` degree measurement. See [#358](https://github.com/freesewing/freesewing/issues/358)
|
||||||
|
workbench:
|
||||||
|
- Added changes to support new `shoulderSlope` degree measurement. See [#358](https://github.com/freesewing/freesewing/issues/358)
|
||||||
|
|
||||||
Deprecated:
|
Deprecated:
|
||||||
Fixed:
|
Fixed:
|
||||||
|
bruce:
|
||||||
|
- Sampling some options would not work in Bruce because the code shared across patterns would only run once. That's fixed now.
|
||||||
|
cathrin:
|
||||||
|
- '[Fixed missing points issue when changing panels option](https://github.com/freesewing/freesewing.org/issues/619)'
|
||||||
|
- Fixed panels option being a list of numbers rather than strings
|
||||||
Removed:
|
Removed:
|
||||||
|
plugin-buttons:
|
||||||
|
- Snippet `snap-male` and `snap-female` are no longer available. Use `snap-stud` and `snap-socket` instead
|
||||||
Security:
|
Security:
|
||||||
|
|
||||||
2.6.0:
|
2.6.0:
|
||||||
|
@ -27,6 +90,7 @@ Unreleased:
|
||||||
- Florence is a face mask pattern
|
- Florence is a face mask pattern
|
||||||
plugin-export-dxf:
|
plugin-export-dxf:
|
||||||
- This plugin can export your pattern as DXF-ASTM
|
- This plugin can export your pattern as DXF-ASTM
|
||||||
|
- Initial release
|
||||||
Changes:
|
Changes:
|
||||||
core:
|
core:
|
||||||
- utils now includes `Bezier` which holds the bezier-js library so you don't need to re-import it
|
- utils now includes `Bezier` which holds the bezier-js library so you don't need to re-import it
|
||||||
|
@ -130,14 +194,17 @@ Unreleased:
|
||||||
Added:
|
Added:
|
||||||
florence:
|
florence:
|
||||||
- Florence is a face mask pattern
|
- Florence is a face mask pattern
|
||||||
|
- Initial release
|
||||||
|
|
||||||
2.3.0:
|
2.3.0:
|
||||||
date: 2020-02-23
|
date: 2020-02-23
|
||||||
Added:
|
Added:
|
||||||
holmes:
|
holmes:
|
||||||
- Homes is a pattern for a Sherlock Holmes hat
|
- Homes is a pattern for a Sherlock Holmes hat
|
||||||
|
- Initial release
|
||||||
plugin-gore:
|
plugin-gore:
|
||||||
- A plugin to generate gores for semi-spheres or domes
|
- A plugin to generate gores for semi-spheres or domes
|
||||||
|
- Initial release
|
||||||
|
|
||||||
2.2.0:
|
2.2.0:
|
||||||
date: 2020-02-22
|
date: 2020-02-22
|
||||||
|
@ -310,8 +377,10 @@ Unreleased:
|
||||||
- Added the fixme type Blockquote component
|
- Added the fixme type Blockquote component
|
||||||
gatsby-remark-jargon:
|
gatsby-remark-jargon:
|
||||||
- Added the gatsby-remark-jargon package, a gatbsy plugin wrapping remark-jargon
|
- Added the gatsby-remark-jargon package, a gatbsy plugin wrapping remark-jargon
|
||||||
|
- Initial release
|
||||||
remark-jargon:
|
remark-jargon:
|
||||||
- Added the remark-jargon package, a remark plugin for jargon terms
|
- Added the remark-jargon package, a remark plugin for jargon terms
|
||||||
|
- Initial release
|
||||||
Fixed:
|
Fixed:
|
||||||
css-theme:
|
css-theme:
|
||||||
- Fixed padding issue on mobile
|
- Fixed padding issue on mobile
|
||||||
|
@ -327,13 +396,16 @@ Unreleased:
|
||||||
- Added translations for Penelope, Waralee, and Simone
|
- Added translations for Penelope, Waralee, and Simone
|
||||||
simone:
|
simone:
|
||||||
- Added the Simone shirt pattern
|
- Added the Simone shirt pattern
|
||||||
|
- Initial release
|
||||||
penelope:
|
penelope:
|
||||||
- Added the Penelope Pencil Skirt pattern by @woutervdub
|
- Added the Penelope Pencil Skirt pattern by @woutervdub
|
||||||
|
- Initial release
|
||||||
utils:
|
utils:
|
||||||
- Added backend methods for administration
|
- Added backend methods for administration
|
||||||
- Added the resendActivationEmail method to backend
|
- Added the resendActivationEmail method to backend
|
||||||
waralee:
|
waralee:
|
||||||
- Added the Waralee wrap Pants pattern by @woutervdub
|
- Added the Waralee wrap Pants pattern by @woutervdub
|
||||||
|
- Initial release
|
||||||
Changed:
|
Changed:
|
||||||
css-theme:
|
css-theme:
|
||||||
- Made tweaks to the main/sidebar layout
|
- Made tweaks to the main/sidebar layout
|
||||||
|
@ -455,3 +527,111 @@ Unreleased:
|
||||||
models:
|
models:
|
||||||
- '[#86](https://github.com/freesewing/freesewing/issues/86):
|
- '[#86](https://github.com/freesewing/freesewing/issues/86):
|
||||||
The `seatCircumference` measurement was missing, thus making it unavailable on the website'
|
The `seatCircumference` measurement was missing, thus making it unavailable on the website'
|
||||||
|
|
||||||
|
2.0.0:
|
||||||
|
date: 2019-08-25
|
||||||
|
Added:
|
||||||
|
aaron:
|
||||||
|
- Initial release
|
||||||
|
benjamin:
|
||||||
|
- Initial release
|
||||||
|
bent:
|
||||||
|
- Initial release
|
||||||
|
brian:
|
||||||
|
- Initial release
|
||||||
|
bruce:
|
||||||
|
- Initial release
|
||||||
|
carlita:
|
||||||
|
- Initial release
|
||||||
|
carlton:
|
||||||
|
- Initial release
|
||||||
|
cathrin:
|
||||||
|
- Initial release
|
||||||
|
components:
|
||||||
|
- Initial release
|
||||||
|
core:
|
||||||
|
- Initial release
|
||||||
|
create-freesewing-pattern:
|
||||||
|
- Initial release
|
||||||
|
css-theme:
|
||||||
|
- Initial release
|
||||||
|
examples:
|
||||||
|
- Initial release
|
||||||
|
florent:
|
||||||
|
- Initial release
|
||||||
|
huey:
|
||||||
|
- Initial release
|
||||||
|
hugo:
|
||||||
|
- Initial release
|
||||||
|
i18n:
|
||||||
|
- Initial release
|
||||||
|
jaeger:
|
||||||
|
- Initial release
|
||||||
|
models:
|
||||||
|
- Initial release
|
||||||
|
mui-theme:
|
||||||
|
- Initial release
|
||||||
|
pattern-info:
|
||||||
|
- Initial release
|
||||||
|
plugin-banner:
|
||||||
|
- Initial release
|
||||||
|
plugin-bundle:
|
||||||
|
- Initial release
|
||||||
|
plugin-bust:
|
||||||
|
- Initial release
|
||||||
|
plugin-buttons:
|
||||||
|
- Initial release
|
||||||
|
plugin-cutonfold:
|
||||||
|
- Initial release
|
||||||
|
plugin-debug:
|
||||||
|
- Initial release
|
||||||
|
plugin-designer:
|
||||||
|
- Initial release
|
||||||
|
plugin-dimension:
|
||||||
|
- Initial release
|
||||||
|
plugin-flip:
|
||||||
|
- Initial release
|
||||||
|
plugin-grainline:
|
||||||
|
- Initial release
|
||||||
|
plugin-i18n:
|
||||||
|
- Initial release
|
||||||
|
plugin-logo:
|
||||||
|
- Initial release
|
||||||
|
plugin-round:
|
||||||
|
- Initial release
|
||||||
|
plugin-scalebox:
|
||||||
|
- Initial release
|
||||||
|
plugin-sprinkle:
|
||||||
|
- Initial release
|
||||||
|
plugin-svgattr:
|
||||||
|
- Initial release
|
||||||
|
plugin-theme:
|
||||||
|
- Initial release
|
||||||
|
plugin-title:
|
||||||
|
- Initial release
|
||||||
|
plugin-validate:
|
||||||
|
- Initial release
|
||||||
|
prettier-config:
|
||||||
|
- Initial release
|
||||||
|
rendertest:
|
||||||
|
- Initial release
|
||||||
|
sandy:
|
||||||
|
- Initial release
|
||||||
|
shin:
|
||||||
|
- Initial release
|
||||||
|
simon:
|
||||||
|
- Initial release
|
||||||
|
sven:
|
||||||
|
- Initial release
|
||||||
|
tamiko:
|
||||||
|
- Initial release
|
||||||
|
theo:
|
||||||
|
- Initial release
|
||||||
|
trayvon:
|
||||||
|
- Initial release
|
||||||
|
tutorial:
|
||||||
|
- Initial release
|
||||||
|
utils:
|
||||||
|
- Initial release
|
||||||
|
wahid:
|
||||||
|
- Initial release
|
||||||
|
|
|
@ -148,7 +148,7 @@ mui-theme:
|
||||||
'@material-ui/core': '^4.0.1'
|
'@material-ui/core': '^4.0.1'
|
||||||
'react': '^16.8'
|
'react': '^16.8'
|
||||||
'react-dom': '^16.8'
|
'react-dom': '^16.8'
|
||||||
notation-legend:
|
legend:
|
||||||
peer:
|
peer:
|
||||||
'@freesewing/plugin-buttons': '^{{version}}'
|
'@freesewing/plugin-buttons': '^{{version}}'
|
||||||
plugin-bundle:
|
plugin-bundle:
|
||||||
|
|
|
@ -23,7 +23,7 @@ i18n: 'Translations for the FreeSewing project'
|
||||||
jaeger: 'A FreeSewing pattern for a sport coat style jacket'
|
jaeger: 'A FreeSewing pattern for a sport coat style jacket'
|
||||||
models: 'Body measurements data for a range of default sizes'
|
models: 'Body measurements data for a range of default sizes'
|
||||||
mui-theme: 'A Material-UI theme for FreeSewing web UIs'
|
mui-theme: 'A Material-UI theme for FreeSewing web UIs'
|
||||||
notation-legend: 'A FreeSewing pattern to document pattern notation'
|
legend: 'A FreeSewing pattern to document pattern notation'
|
||||||
pattern-info: 'Information about available freesewing patterns'
|
pattern-info: 'Information about available freesewing patterns'
|
||||||
penelope: 'A FreeSewing pattern for a pencil skirt'
|
penelope: 'A FreeSewing pattern for a pencil skirt'
|
||||||
plugin-banner: 'A FreeSewing plugin to repeat text on a path'
|
plugin-banner: 'A FreeSewing plugin to repeat text on a path'
|
||||||
|
@ -40,6 +40,7 @@ plugin-gore: 'A FreeSewing plugin to generate gores for a semi-sphere or dome'
|
||||||
plugin-grainline: 'A FreeSewing plugin to add grainline indicators on your patterns'
|
plugin-grainline: 'A FreeSewing plugin to add grainline indicators on your patterns'
|
||||||
plugin-i18n: 'A FreeSewing plugin for pattern translation'
|
plugin-i18n: 'A FreeSewing plugin for pattern translation'
|
||||||
plugin-logo: 'A FreeSewing plugin to add our logo to your patterns'
|
plugin-logo: 'A FreeSewing plugin to add our logo to your patterns'
|
||||||
|
plugin-mirror: 'A FreeSewing plugin to mirror points or paths'
|
||||||
plugin-round: 'A FreeSewing plugin to round corners'
|
plugin-round: 'A FreeSewing plugin to round corners'
|
||||||
plugin-scalebox: 'A FreeSewing plugin to add a scalebox to your pattern'
|
plugin-scalebox: 'A FreeSewing plugin to add a scalebox to your pattern'
|
||||||
plugin-sprinkle: 'A FreeSewing plugin to bulk-add snippets to your pattern'
|
plugin-sprinkle: 'A FreeSewing plugin to bulk-add snippets to your pattern'
|
||||||
|
|
|
@ -1,11 +1,3 @@
|
||||||
# Change log for: {{{fullname}}}
|
# Change log for: {{{fullname}}}
|
||||||
|
|
||||||
|
|
||||||
{{{changelog}}}
|
{{{changelog}}}
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
|
||||||
As such, that history is out of scope for this change log.
|
|
||||||
|
|
|
@ -1,114 +1,18 @@
|
||||||
# Change log for: @freesewing/aaron
|
# Change log for: @freesewing/aaron
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Removed deprecated `centerBackNeckToWaist` measurement
|
- Removed deprecated `centerBackNeckToWaist` measurement
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package aaron
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -55,7 +55,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
|
|
@ -1,114 +1,18 @@
|
||||||
# Change log for: @freesewing/benjamin
|
# Change log for: @freesewing/benjamin
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
## 2.0.2 (2019-09-06)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Added bandLength option to fit optiongroup (it was missing)
|
- Added bandLength option to fit optiongroup (it was missing)
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package benjamin
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
|
|
@ -1,114 +1,18 @@
|
||||||
# Change log for: @freesewing/bent
|
# Change log for: @freesewing/bent
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Removed deprecated `centerBackNeckToWaist` measurement
|
- Removed deprecated `centerBackNeckToWaist` measurement
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bent
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -55,7 +55,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
|
|
@ -1,49 +1,5 @@
|
||||||
# Change log for: @freesewing/breanna
|
# Change log for: @freesewing/breanna
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -54,65 +10,7 @@
|
||||||
|
|
||||||
- Removed deprecated `centerBackNeckToWaist` and `hpsToWaistBack` measurements
|
- Removed deprecated `centerBackNeckToWaist` and `hpsToWaistBack` measurements
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package breanna
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -55,7 +55,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
|
|
@ -1,51 +1,11 @@
|
||||||
# Change log for: @freesewing/brian
|
# Change log for: @freesewing/brian
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
## 2.6.0 (2020-05-01)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- The `saBase` path is no longer being rendered
|
- The `saBase` path is no longer being rendered
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@ -54,65 +14,13 @@
|
||||||
- Removed deprecated `centerBackNeckToWaist` measurement
|
- Removed deprecated `centerBackNeckToWaist` measurement
|
||||||
- The `neck` point has been renamed to `hps`
|
- The `neck` point has been renamed to `hps`
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package brian
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
|
|
@ -1,114 +1,18 @@
|
||||||
# Change log for: @freesewing/bruce
|
# Change log for: @freesewing/bruce
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
## 2.0.3 (2019-09-15)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- [#106](https://github.com/freesewing/freesewing/issues/106): Fix incorrect hem allowance
|
- [#106](https://github.com/freesewing/freesewing/issues/106): Fix incorrect hem allowance
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package bruce
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
|
|
@ -1,49 +1,5 @@
|
||||||
# Change log for: @freesewing/carlita
|
# Change log for: @freesewing/carlita
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@ -51,65 +7,13 @@
|
||||||
- Renamed `highPointShoulderToBust` measurement to `hpsToBust`
|
- Renamed `highPointShoulderToBust` measurement to `hpsToBust`
|
||||||
- Removed deprecated `centerBackNeckToWaist` measurement
|
- Removed deprecated `centerBackNeckToWaist` measurement
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlita
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -59,7 +59,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
|
|
@ -1,63 +1,11 @@
|
||||||
# Change log for: @freesewing/carlton
|
# Change log for: @freesewing/carlton
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Removed deprecated `centerBackNeckToWaist` measurement
|
- Removed deprecated `centerBackNeckToWaist` measurement
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
## 2.1.7 (2019-12-15)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -65,55 +13,19 @@
|
||||||
- Added missing scalebox
|
- Added missing scalebox
|
||||||
- Re-numbered tail as part 5
|
- Re-numbered tail as part 5
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
## 2.0.4 (2019-09-27)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- [#108](https://github.com/freesewing/freesewing/issues/108): Fixed incorrect width of the Carlton tail
|
- [#108](https://github.com/freesewing/freesewing/issues/108): Fixed incorrect width of the Carlton tail
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package carlton
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -57,7 +57,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
|
|
@ -1,112 +1,12 @@
|
||||||
# Change log for: @freesewing/cathrin
|
# Change log for: @freesewing/cathrin
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package cathrin
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
|
|
@ -1,9 +1,5 @@
|
||||||
# Change log for: @freesewing/components
|
# Change log for: @freesewing/components
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package components
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
## 2.6.0 (2020-05-01)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -14,26 +10,6 @@
|
||||||
- Refactor to remove prop-types dependency
|
- Refactor to remove prop-types dependency
|
||||||
- Reworked the withLanguage component to allow adding translations at run-time
|
- Reworked the withLanguage component to allow adding translations at run-time
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package components
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package components
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package components
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package components
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package components
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
## 2.4.2 (2020-03-08)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@ -46,14 +22,6 @@
|
||||||
|
|
||||||
- Fixed `updatePatternData` props issue in the Workbench component
|
- Fixed `updatePatternData` props issue in the Workbench component
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package components
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package components
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -68,26 +36,6 @@
|
||||||
- Term `recipe` is now `pattern`
|
- Term `recipe` is now `pattern`
|
||||||
- Term `gist` is now `data`
|
- Term `gist` is now `data`
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package components
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package components
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package components
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package components
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package components
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
## 2.1.4 (2019-11-01)
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
|
@ -98,14 +46,6 @@
|
||||||
|
|
||||||
- The Ogol component has been removed as it wasn't used
|
- The Ogol component has been removed as it wasn't used
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package components
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package components
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
## 2.1.1 (2019-10-13)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -154,13 +94,13 @@
|
||||||
- DraftConfigurator now properly styles pattern options 3 levels deep
|
- DraftConfigurator now properly styles pattern options 3 levels deep
|
||||||
- [#105](https://github.com/freesewing/freesewing.org/issues/105): Moved state change in render loop to useEffect
|
- [#105](https://github.com/freesewing/freesewing.org/issues/105): Moved state change in render loop to useEffect
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package components
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -1,51 +1,11 @@
|
||||||
# Change log for: @freesewing/core
|
# Change log for: @freesewing/core
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
## 2.4.4 (2020-03-15)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- New Svg.escapeText() method to escape text at render time, rather than at draft time This fixes the difference in the inch symbol is displayed in the React component or rendered SVG
|
- New Svg.escapeText() method to escape text at render time, rather than at draft time This fixes the difference in the inch symbol is displayed in the React component or rendered SVG
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -59,63 +19,19 @@
|
||||||
|
|
||||||
- [#19](https://github.com/freesewing/freesewing/issues/19): Path offset issue is now fixed in upstream bezier-js@2.4.6
|
- [#19](https://github.com/freesewing/freesewing/issues/19): Path offset issue is now fixed in upstream bezier-js@2.4.6
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
## 2.1.0 (2019-10-06)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- The pattern super constructor now sets a `config` property that holds the pattern configuration. This means that unlike before, there is no need to instantiate a pattern to access its config. You can just import the pattern, and it's config property will contain the pattern config.
|
- The pattern super constructor now sets a `config` property that holds the pattern configuration. This means that unlike before, there is no need to instantiate a pattern to access its config. You can just import the pattern, and it's config property will contain the pattern config.
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package core
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -1,101 +1,17 @@
|
||||||
# Change log for: create-freesewing-pattern
|
# Change log for: create-freesewing-pattern
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
## 2.6.0 (2020-05-01)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- [#365](https://github.com/freesewing/freesewing/issues/365): Check for node version and raise an error it is too old.
|
- [#365](https://github.com/freesewing/freesewing/issues/365): Check for node version and raise an error it is too old.
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- [#257](https://github.com/freesewing/freesewing/issues/257): Explain that pattern names are bound by the constraints of NPM package names
|
- [#257](https://github.com/freesewing/freesewing/issues/257): Explain that pattern names are bound by the constraints of NPM package names
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
## 2.0.3 (2019-09-15)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -112,13 +28,13 @@
|
||||||
|
|
||||||
- Added missing `file-saver` dependency
|
- Added missing `file-saver` dependency
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package create-freesewing-pattern
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -1,9 +1,5 @@
|
||||||
# Change log for: @freesewing/css-theme
|
# Change log for: @freesewing/css-theme
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
## 2.6.0 (2020-05-01)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -16,38 +12,6 @@
|
||||||
|
|
||||||
- Fixed incorrect border value on active sidebar link
|
- Fixed incorrect border value on active sidebar link
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -59,38 +23,6 @@
|
||||||
- Added new styles for the frontend changes in 2.2
|
- Added new styles for the frontend changes in 2.2
|
||||||
- Removed smaller fonts in ul.links
|
- Removed smaller fonts in ul.links
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
## 2.1.1 (2019-10-13)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -109,27 +41,19 @@
|
||||||
- Fixed blockquote width on XS screens
|
- Fixed blockquote width on XS screens
|
||||||
- Made sidebar wider
|
- Made sidebar wider
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
## 2.0.2 (2019-09-06)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Updated styles for DraftConfigurator component for pattern options 3 levels deep
|
- Updated styles for DraftConfigurator component for pattern options 3 levels deep
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package css-theme
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -1,114 +1,12 @@
|
||||||
# Change log for: @freesewing/diana
|
# Change log for: @freesewing/diana
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
## 2.5.0 (2020-04-05)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Diana is a top with a draped neck
|
- Diana is a top with a draped neck
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package diana
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -55,7 +55,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
|
|
@ -1,112 +1,12 @@
|
||||||
# Change log for: @freesewing/examples
|
# Change log for: @freesewing/examples
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -49,7 +49,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
|
|
@ -1,9 +1,5 @@
|
||||||
# Change log for: @freesewing/florence
|
# Change log for: @freesewing/florence
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
## 2.6.0 (2020-05-01)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -14,107 +10,14 @@
|
||||||
|
|
||||||
- @freesewing/fu has been renamed to @freesewing/florence
|
- @freesewing/fu has been renamed to @freesewing/florence
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
## 2.4.0 (2020-02-29)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Florence is a face mask pattern
|
- Florence is a face mask pattern
|
||||||
|
- Initial release
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florence
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
|
|
@ -1,114 +1,18 @@
|
||||||
# Change log for: @freesewing/florent
|
# Change log for: @freesewing/florent
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fixed an SA issue in brim top and removed SA from interfacing
|
- Fixed an SA issue in brim top and removed SA from interfacing
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package florent
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
|
|
@ -1,114 +1,13 @@
|
||||||
# Change log for: gatsby-remark-jargon
|
# Change log for: gatsby-remark-jargon
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
## 2.1.1 (2019-10-13)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Added the gatsby-remark-jargon package, a gatbsy plugin wrapping remark-jargon
|
- Added the gatsby-remark-jargon package, a gatbsy plugin wrapping remark-jargon
|
||||||
|
- Initial release
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package gatsby-remark-jargon
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -1,114 +1,13 @@
|
||||||
# Change log for: @freesewing/holmes
|
# Change log for: @freesewing/holmes
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
## 2.3.0 (2020-02-23)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Homes is a pattern for a Sherlock Holmes hat
|
- Homes is a pattern for a Sherlock Holmes hat
|
||||||
|
- Initial release
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package holmes
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -57,7 +57,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
|
|
@ -1,116 +1,24 @@
|
||||||
# Change log for: @freesewing/huey
|
# Change log for: @freesewing/huey
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
## 2.4.4 (2020-03-15)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- The `sleevecapBackFactorY` and `sleevecapFrontFactorY` options had a minimum above the default
|
- The `sleevecapBackFactorY` and `sleevecapFrontFactorY` options had a minimum above the default
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Removed deprecated `centerBackNeckToWaist` measurement
|
- Removed deprecated `centerBackNeckToWaist` measurement
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package huey
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -55,7 +55,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
|
|
@ -1,9 +1,5 @@
|
||||||
# Change log for: @freesewing/hugo
|
# Change log for: @freesewing/hugo
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
## 2.6.0 (2020-05-01)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -12,42 +8,6 @@
|
||||||
- Do not render pocket outline when complete is falsy
|
- Do not render pocket outline when complete is falsy
|
||||||
- Do not render pocket facing hint when complete is falsy
|
- Do not render pocket facing hint when complete is falsy
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@ -58,65 +18,13 @@
|
||||||
|
|
||||||
- Made sure dimensions for hood center and waistband are always shown
|
- Made sure dimensions for hood center and waistband are always shown
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package hugo
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -55,7 +55,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
|
|
@ -1,13 +1,5 @@
|
||||||
# Change log for: @freesewing/i18n
|
# Change log for: @freesewing/i18n
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package i18n
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package i18n
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
## 2.5.0 (2020-04-05)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -20,14 +12,6 @@
|
||||||
|
|
||||||
- Fixed an bug in the i18n package
|
- Fixed an bug in the i18n package
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package i18n
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package i18n
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
## 2.4.3 (2020-03-12)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -40,18 +24,6 @@
|
||||||
|
|
||||||
- Added more strings
|
- Added more strings
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package i18n
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package i18n
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package i18n
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -68,30 +40,6 @@
|
||||||
- Removed the files for homepage translation, and moved that content to markdown
|
- Removed the files for homepage translation, and moved that content to markdown
|
||||||
- Removed the files for editor translation, as it is no longer used
|
- Removed the files for editor translation, as it is no longer used
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package i18n
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package i18n
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package i18n
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package i18n
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package i18n
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package i18n
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
## 2.1.3 (2019-10-18)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -104,37 +52,25 @@
|
||||||
|
|
||||||
- Fixed issue where symlinks were causing all languages to export English strings
|
- Fixed issue where symlinks were causing all languages to export English strings
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package i18n
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
## 2.1.0 (2019-10-06)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Added translations for Penelope, Waralee, and Simone
|
- Added translations for Penelope, Waralee, and Simone
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package i18n
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package i18n
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
## 2.0.2 (2019-09-06)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- [#90](https://github.com/freesewing/freesewing/issues/90): Added missing option translations for Benjamin, Florent, Sandy, Shin, and Theo
|
- [#90](https://github.com/freesewing/freesewing/issues/90): Added missing option translations for Benjamin, Florent, Sandy, Shin, and Theo
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package i18n
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -1,116 +1,24 @@
|
||||||
# Change log for: @freesewing/jaeger
|
# Change log for: @freesewing/jaeger
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Removed deprecated `centerBackNeckToWaist` measurement
|
- Removed deprecated `centerBackNeckToWaist` measurement
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
## 2.0.2 (2019-09-06)
|
||||||
|
|
||||||
### Fixed
|
### 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
|
- [#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)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package jaeger
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -57,7 +57,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
|
6
packages/legend/CHANGELOG.md
Normal file
6
packages/legend/CHANGELOG.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
# Change log for: @freesewing/legend
|
||||||
|
|
||||||
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
|
> As such, that history is out of scope for this change log.
|
|
@ -1,14 +1,14 @@
|
||||||

|

|
||||||
|
|
||||||
<p align='center'><a
|
<p align='center'><a
|
||||||
href="https://www.npmjs.com/package/@freesewing/examples"
|
href="https://www.npmjs.com/package/@freesewing/legend"
|
||||||
title="@freesewing/examples on NPM"
|
title="@freesewing/legend on NPM"
|
||||||
><img src="https://img.shields.io/npm/v/@freesewing/examples.svg"
|
><img src="https://img.shields.io/npm/v/@freesewing/legend.svg"
|
||||||
alt="@freesewing/examples on NPM"/>
|
alt="@freesewing/legend on NPM"/>
|
||||||
</a><a
|
</a><a
|
||||||
href="https://opensource.org/licenses/MIT"
|
href="https://opensource.org/licenses/MIT"
|
||||||
title="License: MIT"
|
title="License: MIT"
|
||||||
><img src="https://img.shields.io/npm/l/@freesewing/examples.svg?label=License"
|
><img src="https://img.shields.io/npm/l/@freesewing/legend.svg?label=License"
|
||||||
alt="License: MIT"/>
|
alt="License: MIT"/>
|
||||||
</a><a
|
</a><a
|
||||||
href="https://deepscan.io/dashboard#view=project&tid=2114&pid=2993&bid=23256"
|
href="https://deepscan.io/dashboard#view=project&tid=2114&pid=2993&bid=23256"
|
||||||
|
@ -16,10 +16,10 @@
|
||||||
><img src="https://deepscan.io/api/teams/2114/projects/2993/branches/23256/badge/grade.svg"
|
><img src="https://deepscan.io/api/teams/2114/projects/2993/branches/23256/badge/grade.svg"
|
||||||
alt="Code quality on DeepScan"/>
|
alt="Code quality on DeepScan"/>
|
||||||
</a><a
|
</a><a
|
||||||
href="https://github.com/freesewing/freesewing/issues?q=is%3Aissue+is%3Aopen+label%3Apkg%3Aexamples"
|
href="https://github.com/freesewing/freesewing/issues?q=is%3Aissue+is%3Aopen+label%3Apkg%3Alegend"
|
||||||
title="Open issues tagged pkg:examples"
|
title="Open issues tagged pkg:legend"
|
||||||
><img src="https://img.shields.io/github/issues/freesewing/freesewing/pkg:examples.svg?label=Issues"
|
><img src="https://img.shields.io/github/issues/freesewing/freesewing/pkg:legend.svg?label=Issues"
|
||||||
alt="Open issues tagged pkg:examples"/>
|
alt="Open issues tagged pkg:legend"/>
|
||||||
</a></p><p align='center'><a
|
</a></p><p align='center'><a
|
||||||
href="https://twitter.com/freesewing_org"
|
href="https://twitter.com/freesewing_org"
|
||||||
title="Follow @freesewing_org on Twitter"
|
title="Follow @freesewing_org on Twitter"
|
||||||
|
@ -45,9 +45,9 @@
|
||||||
## What am I looking at? 🤔
|
## What am I looking at? 🤔
|
||||||
|
|
||||||
This repository is our _monorepo_ holding [all our NPM packages](https://www.npmjs.com/search?q=keywords:freesewing).
|
This repository is our _monorepo_ holding [all our NPM packages](https://www.npmjs.com/search?q=keywords:freesewing).
|
||||||
This folder holds **@freesewing/examples**
|
This folder holds **@freesewing/legend**
|
||||||
|
|
||||||
A FreeSewing pattern holding examples for our documentation
|
A FreeSewing pattern to document pattern notation
|
||||||
|
|
||||||
## About FreeSewing 💀
|
## About FreeSewing 💀
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { version } from '../package.json'
|
import { version } from '../package.json'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'notation-legend',
|
name: 'legend',
|
||||||
version,
|
version,
|
||||||
design: 'Joost De Cock',
|
design: 'Joost De Cock',
|
||||||
code: 'Joost De Cock',
|
code: 'Joost De Cock',
|
|
@ -27,7 +27,7 @@
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
# examples example
|
# legend example
|
||||||
|
|
||||||
This project was bootstrapped with [Create Freesewing Pattern](https://en.freesewing.dev/create-freesewing-pattern):
|
This project was bootstrapped with [Create Freesewing Pattern](https://en.freesewing.dev/create-freesewing-pattern):
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@ To run this example, follow these steps:
|
||||||
- In the folder above this one, run: `yarn start` (or `npm start`)
|
- In the folder above this one, run: `yarn start` (or `npm start`)
|
||||||
- Then, in new terminal, run the same command in this folder: `yarn start` (or `npm start`)
|
- Then, in new terminal, run the same command in this folder: `yarn start` (or `npm start`)
|
||||||
|
|
||||||
This will spin up the development environment, similar to [our online demo](https://examples.freesewing.dev/).
|
This will spin up the development environment, similar to [our online demo](https://legend.freesewing.dev/).
|
||||||
|
|
||||||
## About FreeSewing 🤔
|
## About FreeSewing 🤔
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "examples-example",
|
"name": "legend-example",
|
||||||
"homepage": "https://freesewing.github.io/examples",
|
"homepage": "https://freesewing.github.io/legend",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
@ -19,7 +19,7 @@
|
||||||
work correctly both with client-side routing and a non-root public URL.
|
work correctly both with client-side routing and a non-root public URL.
|
||||||
Learn how to configure a non-root public URL by running `npm run build`.
|
Learn how to configure a non-root public URL by running `npm run build`.
|
||||||
-->
|
-->
|
||||||
<title>examples</title>
|
<title>legend</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<noscript>
|
<noscript>
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"short_name": "examples",
|
"short_name": "legend",
|
||||||
"name": "examples",
|
"name": "legend",
|
||||||
"icons": [
|
"icons": [
|
||||||
{
|
{
|
||||||
"src": "favicon.ico",
|
"src": "favicon.ico",
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@freesewing/examples",
|
"name": "@freesewing/legend",
|
||||||
"version": "2.6.0",
|
"version": "2.6.0",
|
||||||
"description": "A FreeSewing pattern holding examples for our documentation",
|
"description": "A FreeSewing pattern to document pattern notation",
|
||||||
"author": "Joost De Cock <joost@decock.org> (https://github.com/joostdecock)",
|
"author": "Joost De Cock <joost@decock.org> (https://github.com/joostdecock)",
|
||||||
"homepage": "https://freesewing.org/",
|
"homepage": "https://freesewing.org/",
|
||||||
"repository": "github:freesewing/freesewing",
|
"repository": "github:freesewing/freesewing",
|
||||||
|
@ -11,9 +11,14 @@
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"freesewing",
|
"freesewing",
|
||||||
"documentation",
|
"design",
|
||||||
"example",
|
"diy",
|
||||||
"parametric design"
|
"fashion",
|
||||||
|
"made to measure",
|
||||||
|
"parametric design",
|
||||||
|
"pattern",
|
||||||
|
"sewing",
|
||||||
|
"sewing pattern"
|
||||||
],
|
],
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"module": "dist/index.mjs",
|
"module": "dist/index.mjs",
|
||||||
|
@ -30,14 +35,15 @@
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@freesewing/core": "^2.6.0",
|
"@freesewing/core": "^2.6.0",
|
||||||
"@freesewing/plugin-bundle": "^2.6.0"
|
"@freesewing/plugin-bundle": "^2.6.0",
|
||||||
|
"@freesewing/plugin-buttons": "^2.6.0"
|
||||||
},
|
},
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -49,7 +55,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
|
@ -4,7 +4,7 @@ const expect = require('chai').expect
|
||||||
const models = require('@freesewing/models')
|
const models = require('@freesewing/models')
|
||||||
const patterns = require('@freesewing/pattern-info')
|
const patterns = require('@freesewing/pattern-info')
|
||||||
|
|
||||||
const Examples = require('../dist')
|
const Legend = require('../dist')
|
||||||
|
|
||||||
// Shared tests
|
// Shared tests
|
||||||
const testPatternConfig = require('../../../tests/patterns/config')
|
const testPatternConfig = require('../../../tests/patterns/config')
|
||||||
|
@ -12,10 +12,10 @@ const testPatternDrafting = require('../../../tests/patterns/drafting')
|
||||||
const testPatternSampling = require('../../../tests/patterns/sampling')
|
const testPatternSampling = require('../../../tests/patterns/sampling')
|
||||||
|
|
||||||
// Test config
|
// Test config
|
||||||
testPatternConfig('examples', new Examples(), expect, models, patterns)
|
testPatternConfig('legend', new Legend(), expect, models, patterns)
|
||||||
|
|
||||||
// Test drafting
|
// Test drafting
|
||||||
testPatternDrafting('examples', Examples, expect, models, patterns)
|
testPatternDrafting('legend', Legend, expect, models, patterns)
|
||||||
|
|
||||||
// Test sampling
|
// Test sampling
|
||||||
testPatternSampling('examples', Examples, expect, models, patterns)
|
testPatternSampling('legend', Legend, expect, models, patterns)
|
|
@ -1,107 +1,11 @@
|
||||||
# Change log for: @freesewing/models
|
# Change log for: @freesewing/models
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Extended the menswear size range to have 10 different sizes, just like womenswear
|
- Extended the menswear size range to have 10 different sizes, just like womenswear
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package models
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
## 2.0.1 (2019-09-01)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -119,7 +23,11 @@
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -1,49 +1,5 @@
|
||||||
# Change log for: @freesewing/mui-theme
|
# Change log for: @freesewing/mui-theme
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@ -51,65 +7,13 @@
|
||||||
- Changed the light background to `#f8f9fa` rather than `#fff`
|
- Changed the light background to `#f8f9fa` rather than `#fff`
|
||||||
- Changed the navbar to be light/dark based on the theme, rather than always dark
|
- Changed the navbar to be light/dark based on the theme, rather than always dark
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package mui-theme
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -1,112 +0,0 @@
|
||||||
# Change log for: @freesewing/examples
|
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package examples
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
|
||||||
As such, that history is out of scope for this change log.
|
|
|
@ -1,112 +1,12 @@
|
||||||
# Change log for: @freesewing/pattern-info
|
# Change log for: @freesewing/pattern-info
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package pattern-info
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -1,116 +1,19 @@
|
||||||
# Change log for: @freesewing/penelope
|
# Change log for: @freesewing/penelope
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
## 2.2.0 (2020-02-22)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fixed tags in pattern config file
|
- Fixed tags in pattern config file
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
## 2.1.0 (2019-10-06)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Added the Penelope Pencil Skirt pattern by @woutervdub
|
- Added the Penelope Pencil Skirt pattern by @woutervdub
|
||||||
|
- Initial release
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package penelope
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
"react": "^16.8",
|
"react": "^16.8",
|
||||||
"react-dom": "^16.8",
|
"react-dom": "^16.8",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-eslint": "10.0.1",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^5.16.0",
|
||||||
"babel-jest": "24.7.1",
|
"babel-jest": "24.7.1",
|
||||||
"jest": "24.7.1",
|
"jest": "24.7.1",
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
"@freesewing/plugin-buttons": "^2.6.0",
|
"@freesewing/plugin-buttons": "^2.6.0",
|
||||||
"@freesewing/plugin-flip": "^2.6.0",
|
"@freesewing/plugin-flip": "^2.6.0",
|
||||||
"@freesewing/utils": "^2.6.0",
|
"@freesewing/utils": "^2.6.0",
|
||||||
"@svgr/rollup": "^5.4.0",
|
"@svgr/rollup": "^2.4.1",
|
||||||
"cross-env": "^5.1.4",
|
"cross-env": "^5.1.4",
|
||||||
"gh-pages": "^1.2.0",
|
"gh-pages": "^1.2.0",
|
||||||
"react-scripts": "^3.0.0",
|
"react-scripts": "^3.0.0",
|
||||||
|
|
|
@ -1,112 +1,12 @@
|
||||||
# Change log for: @freesewing/plugin-banner
|
# Change log for: @freesewing/plugin-banner
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-banner
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -1,112 +1,12 @@
|
||||||
# Change log for: @freesewing/plugin-bundle
|
# Change log for: @freesewing/plugin-bundle
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bundle
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -1,112 +1,12 @@
|
||||||
# Change log for: @freesewing/plugin-bust
|
# Change log for: @freesewing/plugin-bust
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-bust
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -1,112 +1,12 @@
|
||||||
# Change log for: @freesewing/plugin-buttons
|
# Change log for: @freesewing/plugin-buttons
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-buttons
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -1,112 +1,12 @@
|
||||||
# Change log for: @freesewing/plugin-cutonfold
|
# Change log for: @freesewing/plugin-cutonfold
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-cutonfold
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -1,112 +1,12 @@
|
||||||
# Change log for: @freesewing/plugin-debug
|
# Change log for: @freesewing/plugin-debug
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-debug
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -1,112 +1,12 @@
|
||||||
# Change log for: @freesewing/plugin-designer
|
# Change log for: @freesewing/plugin-designer
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-designer
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -1,114 +1,18 @@
|
||||||
# Change log for: @freesewing/plugin-dimension
|
# Change log for: @freesewing/plugin-dimension
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
## 2.1.5 (2019-11-19)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fixed issue where inch marks where breaking SVG because of unescaped double quotes
|
- Fixed issue where inch marks where breaking SVG because of unescaped double quotes
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-dimension
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -1,114 +1,13 @@
|
||||||
# Change log for: @freesewing/plugin-export-dxf
|
# Change log for: @freesewing/plugin-export-dxf
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
## 2.6.0 (2020-05-01)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- This plugin can export your pattern as DXF-ASTM
|
- This plugin can export your pattern as DXF-ASTM
|
||||||
|
- Initial release
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-export-dxf
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
|
@ -1,112 +1,12 @@
|
||||||
# Change log for: @freesewing/plugin-flip
|
# Change log for: @freesewing/plugin-flip
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.6.0 (2020-05-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.5.0 (2020-04-05)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.4.6 (2020-03-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.4.5 (2020-03-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.4.4 (2020-03-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.4.3 (2020-03-12)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.4.2 (2020-03-08)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.4.1 (2020-03-04)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.4.0 (2020-02-29)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.3.0 (2020-02-23)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.2.0 (2020-02-22)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.1.9 (2020-01-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.1.8 (2019-12-16)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.1.7 (2019-12-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.1.6 (2019-11-24)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.1.5 (2019-11-19)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.1.4 (2019-11-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.1.3 (2019-10-18)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.1.2 (2019-10-14)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.1.1 (2019-10-13)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.1.0 (2019-10-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.0.4 (2019-09-27)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.0.3 (2019-09-15)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.0.2 (2019-09-06)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.0.1 (2019-09-01)
|
|
||||||
|
|
||||||
**Note:** Version bump only for package plugin-flip
|
|
||||||
|
|
||||||
## 2.0.0 (2019-08-25)
|
## 2.0.0 (2019-08-25)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
This is the **initial release**, and the start of this change log.
|
This is the **initial release**, and the start of this change log.
|
||||||
|
|
||||||
Prior to version 2, FreeSewing was not a JavaScript project.
|
> Prior to version 2, FreeSewing was not a JavaScript project.
|
||||||
As such, that history is out of scope for this change log.
|
> As such, that history is out of scope for this change log.
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue