-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix 2-up printing #78
Conversation
Thank you very much for your contribution 👍 Could you maybe use this opportunity to add a unit test, by initatiating a Also, the GitHub Actions pipeline is failing, but just running |
Sure. I'll do that tonight.
Thanks. I'll run |
Good job on this 👍 Thank you very much for your contribution! |
## What's new ### New Features (ENH) - New `booklet` command to adjust offsets and lengths ([PR #77](#77)) - New `uncompress` command ([PR #75](#75)) - New `update-offsets` command to adjust offsets and lengths ([PR #15](#15)) - New `rm` command ([PR #59](#59)) - `metadata`: now also displaying CreationDate, Creator, Keywords & Subject ([PR #73](#73)) - Add warning for out-of-bounds page range in pdfly `cat` command ([PR #58](#58)) ### Bug Fixes (BUG) - `2-up` command, that only showed one page per sheet, on the left side, with blank space on the right ([PR #78](#78)) [Full Changelog](0.3.3...0.4.0)
This has been released in version |
Fixed a call to
merge_translated_page
. Apparently, the switch from PyPDF2 to pypdf changed the signature ofmerge_translated_page
, adding theover
parameter. Change the call to use keyword parameters.The symptom was 2-up only showed one page per sheet, on the left side, with blank space on the right.