aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf
AgeCommit message (Collapse)Author
2024-01-08Fix error from older gcc versionsJay Berkenbilt
2024-01-08Tweak QPDF::replaceObjectm-holger
2024-01-08Tweak QPDF::read_xrefm-holger
2024-01-07Bug fix: treat old generations of reused objects as nullJay Berkenbilt
2024-01-07Improve getCompressibleObjGens fix to handle gen > 0Jay Berkenbilt
2024-01-07Tune QPDF::getCompressibleObjGensm-holger
Change set visited to std::vector<bool>
2024-01-07Tune QPDF::getCompressibleObjGensm-holger
Swap front and back, and change queue from list to vector
2024-01-06Format codeJay Berkenbilt
2024-01-06Remove explicit type from PageLabel dictionaryJay Berkenbilt
The old code didn't put one there, and it's not really useful. It just makes the file (trivially) larger.
2024-01-06QPDF.cc: remove unused includesJay Berkenbilt
2024-01-06Attempt to find xref streams during recovery (fixes #1103)Jay Berkenbilt
2024-01-05Implement --set-page-labels and supporting API (fixes #939)Jay Berkenbilt
2024-01-05Automated changes for --set-page-labelsJay Berkenbilt
This commit contains the changes from generate_auto_job based on manual changes from the previous commit.
2024-01-05Wiring for --set-page-labels: manual (non-bisectable commit)Jay Berkenbilt
This commit contains only the manual changes. It is separated for clarity. This commit would not pass CI because it lacks the automated changes, which appear in the next commit.
2024-01-04Remove unused argument in private setWriterOptions methodJay Berkenbilt
2024-01-02Support comma-separated numeric values with --collate (fixes #505)Jay Berkenbilt
2024-01-01Update copyright to 2024Jay Berkenbilt
2024-01-01Support excluding values from numeric ranges (fixes #564, #790)Jay Berkenbilt
2024-01-01Completely rewrite QUtil::parse_numrangeJay Berkenbilt
2023-12-29Preserve annotations that inherently lack appearance (fixes #1039)Jay Berkenbilt
...when flattening annotations. This includes /Link, /Popup, and /Projection.
2023-12-29Fix comment formatting and update notesJay Berkenbilt
2023-12-27Tweak utf8 checksJay Berkenbilt
2023-12-25Detect overlong UTF-8 stringsJay Berkenbilt
2023-12-24Remove --disable-signatures; incorporate into --remove-restrictionsJay Berkenbilt
Rather than adding yet another flag that is almost never useful on its own, just have --remove-restrictions disable digital signatures. The operations are still separate in the API.
2023-12-23Spell checkJay Berkenbilt
2023-12-23Implement --disable-signatures (fixes #1015)Jay Berkenbilt
2023-12-23Add QPDFAcroFormDocumentHelper::disableDigitalSignaturesJay Berkenbilt
2023-12-23Format code, bump clang-format version to 18Jay Berkenbilt
2023-12-23Generate a UNIX man page (fixes #874)Jay Berkenbilt
2023-12-23Handle --encrypt -- without crashingJay Berkenbilt
2023-12-23Implement new --encrypt args and completion (fixes #784)Jay Berkenbilt
Positional arguments are supported in a backward-compatible way, but completion no longer guides users to it.
2023-12-23Add --user-password, --owner-password, --bits to --encryptJay Berkenbilt
Add the command-line arguments. They don't do anything yet.
2023-12-22Remove unused includesJay Berkenbilt
2023-12-22Allow other than /Yes and /Off in a check box (fixes #1056)Jay Berkenbilt
2023-12-21Convert scientific notation in JSON to fixed point (fixes #1079)Jay Berkenbilt
JSON accepts scientific notation, but PDF doesn't.
2023-12-21Add "n:/pdf-name" to qpdf JSON for binary names (fixes #1072)Jay Berkenbilt
2023-12-21Tweak comment in QPDFParser refactorJay Berkenbilt
2023-12-21Merge branch 'parse_ref' into workJay Berkenbilt
2023-12-20Bug fix: don't compress hint streams when --compress-streams=nJay Berkenbilt
2023-12-20Bug fix: don't compress object/xref streams with --compress-streams=nJay Berkenbilt
2023-12-16Merge pull request #1070 from m-holger/flateJay Berkenbilt
Change default for SF_FlateLzwDecode::columns to 1
2023-12-16Merge pull request #1067 from m-holger/pl_buffJay Berkenbilt
Reduce copying of Buffer contents
2023-12-16Allow regular C++ functions to interoperate with the C APIJay Berkenbilt
2023-12-09Install cmake files with dev componentJay Berkenbilt
2023-11-26Refactor InlineImageTracker::handleTokenm-holger
2023-11-26In QPDF::pipeStreamData use unique_ptr as heapm-holger
2023-11-26In QPDF::pipeStreamData read buffer in a single readm-holger
2023-11-26Add Buffer constructors taking std::string parametersm-holger
2023-11-26Refactor QPDF_Stream::getStreamJSONm-holger
2023-11-23Change default for SF_FlateLzwDecode::columns to 1m-holger