Skip to content

Commit

Permalink
Fix customSig param and bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Cocoa committed Mar 13, 2024
1 parent 421a617 commit e838992
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bookbinder",
"version": "1.3.7",
"version": "1.4.0",
"description": "An app to rearrange PDF pages for printing for bookbinding",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/models/configuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const schema = z.object({
bottomEdgePaddingPt: urlSafe(z.coerce.number()).default(0),
sigFormat,
sigLength: urlSafe(z.coerce.number()).default(4), // Specific to standard
customSigLength: urlSafe(commaSeparatedNumberList).default([]), // Specific to custom.
customSigLength: urlSafe(commaSeparatedNumberList).default(null), // Specific to custom.
foreEdgePaddingPt: urlSafe(z.coerce.number()).default(0), // specific to wacky small
wackySpacing, // specific to wacky small
flyleafs: urlSafe(z.coerce.number()).default(1),
Expand Down

0 comments on commit e838992

Please sign in to comment.