aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2021-12-21Prepare 10.5.0 release (take 3)release-qpdf-10.5.010.5Jay Berkenbilt
2021-12-21Update READMEs with documentation linksJay Berkenbilt
2021-12-21Prepare 10.5.0 release (take 2)Jay Berkenbilt
2021-12-21Stop adding pre-built documentation to the source distributionJay Berkenbilt
2021-12-21Remove 10.5 release announcement since it hasn't been released yetJay Berkenbilt
2021-12-21Update manual pagesJay Berkenbilt
2021-12-20zlib-flate: --version prints qpdf versionJay Berkenbilt
2021-12-20Reference latest docs on readthedocsJay Berkenbilt
2021-12-20Remove reference to abuild in READMEJay Berkenbilt
2021-12-20Prepare 10.5.0 releaseJay Berkenbilt
2021-12-20Change names of qpdf_object_type_e enumerationsJay Berkenbilt
They have to be ot_* rather than qpdf_ot_* for compatibility. * Different enumerated types are not assignment-compatible in C++, at least with strict compiler settings * While you can do `constexpr ot_xyz = ::qpdf_ot_xyz` in QPDFObject.hh to make QPDFObject::ot_xyz work, QPDFObject::object_type_e::ot_xyz will only work if the enumerated type names are the same.
2021-12-20test_driver: split runtest into separate functionsJay Berkenbilt
Too bad about git annotate but it was pretty crazy to have all those test cases together like that.
2021-12-20TODO cleanupJay Berkenbilt
2021-12-20Remove uninitialized error ideaJay Berkenbilt
QPDFObjectHandle gets copied a lot, so let's not add another field. For performance reasons, QPDFObjectHandle does not indirect through a smart pointer, so this would also be an ABI change.
2021-12-20Fix typoJay Berkenbilt
2021-12-19Link to wikiJay Berkenbilt
2021-12-19Update maintainer notes for doc changesJay Berkenbilt
2021-12-19Add download section to docsJay Berkenbilt
2021-12-19Further improvements to handling binary stringsJay Berkenbilt
2021-12-19doc: switch html theme to sphinx_rtd_themeJay Berkenbilt
2021-12-18Fix LGTM alertsJay Berkenbilt
2021-12-18Add docs badge to READMEJay Berkenbilt
2021-12-18Update configuration for correct building of epubJay Berkenbilt
2021-12-18Update configuration for correct building of epubJay Berkenbilt
2021-12-18Integration with readthedocsJay Berkenbilt
2021-12-18Specify highlight language instead of using text codeblocksJay Berkenbilt
2021-12-18Change html theme again, fix code blocksJay Berkenbilt
The agogo theme doesn't do very well on narrow screens. The code blocks were used for shell commands but were using Python syntax highlighting.
2021-12-18Remove ref. from documentation referencesJay Berkenbilt
2021-12-18Update documentation build/installationJay Berkenbilt
2021-12-18Remove unused importJay Berkenbilt
2021-12-18Fix Acknowledgments sectionJay Berkenbilt
2021-12-18Split documentation into multiple pages, change themeJay Berkenbilt
2021-12-18Add commentJay Berkenbilt
2021-12-18Fix qpdf-manual build dependenciesJay Berkenbilt
2021-12-18Remove unneeded paragraph from commentsJay Berkenbilt
2021-12-17C API: simplify new error handling and improve documentationJay Berkenbilt
2021-12-17ChangeLog/doc for previous commitJay Berkenbilt
2021-12-17C-API expose QPDFObjectHandle::getTypeCode and getTypeName (fixes #597)m-holger
2021-12-17C API: add several stream functions (fixes #596)Jay Berkenbilt
2021-12-17Spell checkJay Berkenbilt
2021-12-17Make object types available to C APIJay Berkenbilt
2021-12-17TODO: spell checkJay Berkenbilt
2021-12-17Add Pl_Buffer::getMallocBufferJay Berkenbilt
2021-12-17README-maintainer note: configure with doc maintenanceJay Berkenbilt
2021-12-16Remove original qpdf fuzz seed corpus from testsJay Berkenbilt
Since the introduction of fuzz testing, there has never been a problem found because of a failure of a file in the fuzzer seed corpus. As the fuzzer has found problems, they have been added to the test suite, and that should be adequate to exercise the fuzzers in the tesing environment as well as providing adequate regression testing. Removing these original files shaves many minutes off the builds in CI.
2021-12-16Output C test n done at the end of each qpdf-ctestJay Berkenbilt
2021-12-16C API: add functions for working with pages (fixes #594)Jay Berkenbilt
2021-12-16qpdf-ctest: outfile2 -> xargJay Berkenbilt
2021-12-16Change name of formal parameters from data to qpdfJay Berkenbilt
2021-12-16Use value rather than reference captures where possibleJay Berkenbilt