1
0
Fork 0

sparkles: Added sven

This commit is contained in:
Joost De Cock 2019-01-03 16:54:29 +01:00
parent cf942ab98a
commit 49d8264a65
7 changed files with 84 additions and 4 deletions

View file

@ -24,6 +24,7 @@ Blocks or slopers are basic patterns shapes that you can extend into fully detai
- [bruce](https://github.com/freesewing/bruce) : Boxer briefs - [bruce](https://github.com/freesewing/bruce) : Boxer briefs
- [hugo](https://github.com/freesewing/hugo) : A hooded sweatshirt with raglan sleeves - [hugo](https://github.com/freesewing/hugo) : A hooded sweatshirt with raglan sleeves
- [simon](https://github.com/freesewing/simon) : A versatile button-down shirt - [simon](https://github.com/freesewing/simon) : A versatile button-down shirt
- [sven](https://github.com/freesewing/sven) : A straightforward sweater
### Womenswear ### Womenswear

View file

@ -835,6 +835,28 @@
} }
} }
}, },
"@freesewing/sven": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/@freesewing/sven/-/sven-0.1.1.tgz",
"integrity": "sha512-q0jheeJYr9jhHYUm1ALlRCnO744r7iEEbUGKK+87Dc0VVym7FheK0IL4CThRJH/aKekyvwHHhGfdH0RCpR64pg==",
"requires": {
"@freesewing/brian": "^0.22.2",
"@freesewing/plugin-banner": "0.2.0",
"@freesewing/plugin-bundle": "^0.7.1",
"freesewing": "^0.27.1"
},
"dependencies": {
"freesewing": {
"version": "0.27.1",
"resolved": "https://registry.npmjs.org/freesewing/-/freesewing-0.27.1.tgz",
"integrity": "sha512-pDKt156xjXAT2ScuWslbs24Oqmfm/lWFhmypQkscS6PSZIe0kztfgdg09Dm/cHIjt4ztf29c6XJD9AWNOFPmYw==",
"requires": {
"bezier-js": "^2.2.15",
"bin-pack": "1.0.2"
}
}
}
},
"@samverschueren/stream-to-observable": { "@samverschueren/stream-to-observable": {
"version": "0.3.0", "version": "0.3.0",
"resolved": "https://registry.npmjs.org/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz", "resolved": "https://registry.npmjs.org/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz",

View file

@ -50,7 +50,8 @@
"@freesewing/bruce": "^0.5.2", "@freesewing/bruce": "^0.5.2",
"@freesewing/cathrin": "^0.4.2", "@freesewing/cathrin": "^0.4.2",
"@freesewing/hugo": "^0.4.2", "@freesewing/hugo": "^0.4.2",
"@freesewing/simon": "^0.3.6" "@freesewing/simon": "^0.3.6",
"@freesewing/sven": "^0.1.1"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "7.0.0-beta.56", "@babel/core": "7.0.0-beta.56",

View file

@ -4,6 +4,7 @@ import Bruce from "@freesewing/bruce";
import Cathrin from "@freesewing/cathrin"; import Cathrin from "@freesewing/cathrin";
import Hugo from "@freesewing/hugo"; import Hugo from "@freesewing/hugo";
import Simon from "@freesewing/simon"; import Simon from "@freesewing/simon";
import Sven from "@freesewing/sven";
import info from "./info"; import info from "./info";
const capitalize = string => string.charAt(0).toUpperCase() + string.slice(1); const capitalize = string => string.charAt(0).toUpperCase() + string.slice(1);
@ -15,7 +16,8 @@ export const patterns = {
Bruce, Bruce,
Cathrin, Cathrin,
Hugo, Hugo,
Simon Simon,
Sven
}; };
export const patternList = Object.keys(patterns).map(p => uncapitalize(p)); export const patternList = Object.keys(patterns).map(p => uncapitalize(p));

View file

@ -19,7 +19,7 @@ export default {
"pocketFacing", "pocketFacing",
"hoodSide", "hoodSide",
"hoodCenter", "hoodCenter",
"cuffs", "cuff",
"waistband" "waistband"
], ],
optionGroups: { optionGroups: {

View file

@ -4,6 +4,7 @@ import bruce from "./bruce";
import cathrin from "./cathrin"; import cathrin from "./cathrin";
import hugo from "./hugo"; import hugo from "./hugo";
import simon from "./simon"; import simon from "./simon";
import sven from "./sven";
export default { export default {
aaron, aaron,
@ -11,5 +12,6 @@ export default {
bruce, bruce,
cathrin, cathrin,
hugo, hugo,
simon simon,
sven
}; };

View file

@ -0,0 +1,52 @@
export default {
name: "sven",
design: "Joost De Cock",
code: "Joost De Cock",
department: "menswear",
type: "pattern",
difficulty: 3,
tags: ["top", "basics"],
parts: ["front", "back", "sleeve", "cuff", "waistband"],
optionGroups: {
fit: [
"chestEase",
"collarEase",
"bicepsEase",
"cuffEase",
"shoulderEase",
"lengthBonus",
"sleeveLengthBonus"
],
style: ["ribbing", "ribbingHeight"],
advanced: [
"acrossBackFactor",
"armholeDepthFactor",
"backNeckCutout",
"frontArmholeDeeper",
"ribbingStretch",
"shoulderSlopeReduction",
"sleeveWidthGuarantee",
{
sleevecap: [
"sleevecapEase",
"sleevecapBackFactorX",
"sleevecapBackFactorY",
"sleevecapFrontFactorX",
"sleevecapFrontFactorY",
"sleevecapQ1Offset",
"sleevecapQ2Offset",
"sleevecapQ3Offset",
"sleevecapQ4Offset",
"sleevecapQ1Spread1",
"sleevecapQ1Spread2",
"sleevecapQ2Spread1",
"sleevecapQ2Spread2",
"sleevecapQ3Spread1",
"sleevecapQ3Spread2",
"sleevecapQ4Spread1",
"sleevecapQ4Spread2"
]
}
]
}
};