1
0
Fork 0

feat(simon): Allow negative values for buttonFreeLength option

Fixes #6508
Shout-out to @karlnippoldt for reporting this.
This commit is contained in:
joostdecock 2024-04-28 16:21:06 +02:00
parent f4f8349e59
commit 5339020a23
3 changed files with 13 additions and 5 deletions

View file

@ -13,8 +13,8 @@
#### Changed #### Changed
- Allow negative values in backDrop option - Allow negative values in backDrop option. Fixes
- Allow negative values for the frontRise options - Allow negative values for the frontRise options. Fixes
### huey ### huey
@ -53,6 +53,12 @@
- Always load plugin-bust due to its changes in how it handle conditionality. - Always load plugin-bust due to its changes in how it handle conditionality.
### simon
#### Changed
- Allow negative values for the buttonFreeLength option. Fixes
### simone ### simone
#### Fixed #### Fixed

View file

@ -7,8 +7,8 @@ Unreleased:
brian: brian:
- Always load plugin-bust due to its changes in how it handle conditionality. - Always load plugin-bust due to its changes in how it handle conditionality.
cathrin: cathrin:
- Allow negative values in backDrop option - Allow negative values in backDrop option. Fixes #6563
- Allow negative values for the frontRise options - Allow negative values for the frontRise options. Fixes #6563
huey: huey:
- The lengthBonus option default was changed from 0% to 15%. Fixes #6596 - The lengthBonus option default was changed from 0% to 15%. Fixes #6596
onyx: onyx:
@ -19,6 +19,8 @@ Unreleased:
- The plugin will now always be loaded, but will check for each drafted set whether it should make any changes. - The plugin will now always be loaded, but will check for each drafted set whether it should make any changes.
shelly: shelly:
- Always load plugin-bust due to its changes in how it handle conditionality. - Always load plugin-bust due to its changes in how it handle conditionality.
simon:
- Allow negative values for the buttonFreeLength option. Fixes #6508
tamiko: tamiko:
- Always load plugin-bust due to its changes in how it handle conditionality. - Always load plugin-bust due to its changes in how it handle conditionality.
wahid: wahid:

View file

@ -9,7 +9,7 @@ export const boxPleatFold = { pct: 15, min: 10, max: 20, menu: 'advanced' }
export const boxPleatWidth = { pct: 7, min: 4, max: 10, menu: 'advanced' } export const boxPleatWidth = { pct: 7, min: 4, max: 10, menu: 'advanced' }
export const roundBack = { pct: 0, min: 0, max: 10, menu: 'fit' } export const roundBack = { pct: 0, min: 0, max: 10, menu: 'fit' }
// Front // Front
export const buttonFreeLength = { pct: 2, min: 0, max: 15, menu: 'style.closure' } export const buttonFreeLength = { pct: 2, min: -10, max: 15, menu: 'style.closure' }
export const buttonholePlacketStyle = { export const buttonholePlacketStyle = {
list: ['classic', 'seamless'], list: ['classic', 'seamless'],
dflt: 'seamless', dflt: 'seamless',