From 22d9dcde1e792ed89fc19a56b1675db13613a17d Mon Sep 17 00:00:00 2001 From: Sithel Date: Tue, 7 May 2024 20:29:15 -0700 Subject: [PATCH 1/3] ?? somehow wasn't handling the upside down case? --- src/utils/drawing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/drawing.js b/src/utils/drawing.js index 3cd62a1..6cd5f55 100644 --- a/src/utils/drawing.js +++ b/src/utils/drawing.js @@ -221,7 +221,7 @@ export function drawSpineMark(draw_top_mark, position, w) { [endX, endY] = position.spineMarkBottom; } - if (position.rotation == 0) { + if (position.rotation == 0 || position.rotation == 180) { startX -= w / 2; endX += w / 2; } else { From 952e77de51eac27c0ad081da6da5fac4035feda6 Mon Sep 17 00:00:00 2001 From: Sithel Date: Tue, 7 May 2024 20:30:08 -0700 Subject: [PATCH 2/3] version bump --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4529599..c58bac4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bookbinder", - "version": "1.6.0", + "version": "1.6.1", "description": "An app to rearrange PDF pages for printing for bookbinding", "type": "module", "scripts": { From c25fc05649c8436d82bf32f7b62acee5dac0f39d Mon Sep 17 00:00:00 2001 From: Cocoa Date: Wed, 8 May 2024 17:17:53 -0400 Subject: [PATCH 3/3] Add Ace to reviewers --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 041fb57..f3ef425 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,3 +1,3 @@ -* @momijizukamori @sithel @cass-kazumori +* @momijizukamori @sithel @cass-kazumori @acestronautical /.github @momijizukamori @sithel /.github/CODEOWNERS @momijizukamori