Logo white

OpenSystemsDevelopment / qpdf

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Commits 4,691
  • Compare
  • Branches 1
  • Tags 0
  • qpdf
  • manual
09 Sep, 2022
5 commits
  • Change QPDFObjectHandle == to isSameObjectAs ...
    8a3cdfd2
    Replace operator== and operator!=, which were testing for the same
    underlying object, with isSameObjectAs. This change was motivated by
    the fact that pikepdf internally had its own operator== method for
    QPDFObjectHandle that did structural comparison. I backed out qpdf's
    operator== as a courtesy to pikepdf (in my own testing) but also
    because I think people might naturally assume that operator== does a
    structural comparison, and isSameObjectAs is clearer in its intent.
    Jay Berkenbilt authored
    2022-09-09 18:09:40 -0400  
    Browse Dir »
  • Clean up the Design and Library Notes chapter of the manual
    910a373a
    Jay Berkenbilt authored
    2022-09-09 18:09:40 -0400  
    Browse Dir »
  • Clean up release notes for qpdf 11
    a6c4b293
    Jay Berkenbilt authored
    2022-09-09 10:49:25 -0400  
    Browse Dir »
  • Fix doc typo
    4dcc1021
    Jay Berkenbilt authored
    2022-09-09 06:19:09 -0400  
    Browse Dir »
  • Add JSON v2 support to C API
    f1a2d316
    Jay Berkenbilt authored
    2022-09-09 06:19:09 -0400  
    Browse Dir »

08 Sep, 2022
2 commits
  • Rename QPDFValueProxy back to QPDFObject ...
    18a583e8
    QPDFValueProxy wasn't a good name for it. We decided the evil of
    having the header file be named QPDFObject_private.hh was less than
    the evil of having the class be named something other than what it
    should have been named.
    Jay Berkenbilt authored
    2022-09-08 11:29:23 -0400  
    Browse Dir »
  • Create a special "destroyed" type rather than using null ...
    dba61da1
    When a QPDF is destroyed, changing indirect objects to direct nulls
    makes them effectively disappear silently when they sneak into other
    places. Instead, we should treat this as an error. Adding a destroyed
    object type makes this possible.
    Jay Berkenbilt authored
    2022-09-08 10:36:39 -0400  
    Browse Dir »

07 Sep, 2022
1 commit
  • Revert getOwningQPDF, and add getQPDF that returns a reference
    0132261e
    Jay Berkenbilt authored
    2022-09-07 17:26:39 -0400  
    Browse Dir »

06 Sep, 2022
4 commits
  • Clarify and improve QPDFPageObjectHelper::get*Box methods ...
    76cd7ea6
    Add copy_if_fallback and explain how it differs from copy_if_shared.
    Jay Berkenbilt authored
    2022-09-06 19:00:40 -0400  
    Browse Dir »
  • Implement QPDFObjectHandle equality
    c1def4ea
    Jay Berkenbilt authored
    2022-09-06 18:34:23 -0400  
    Browse Dir »
  • Support --show-encryption without a valid password (fixes #598)
    94c79bb8
    Jay Berkenbilt authored
    2022-09-06 12:45:12 -0400  
    Browse Dir »
  • Update documentation to clarify some limitations of qpdf JSON
    f95e0549
    Jay Berkenbilt authored
    2022-09-06 10:09:26 -0400  
    Browse Dir »

05 Sep, 2022
3 commits
  • Update internals documentation to reflect QPDFObject split
    ed04b80c
    Jay Berkenbilt authored
    2022-09-05 18:54:02 -0400  
    Browse Dir »
  • Re-introduce QPDFObject.hh as deprecated ...
    55cc2ab6
    * Just removing a header file would cause build errors with no hint as
      to what happened. This way, people get a warning rather than error
      for the life of qpdf 11, and the warning tells them what to do.
    
    * This avoids build surprises resulting from having two versions of
      QPDF headers installed at once. If you were building code out of a
      checkout of qpdf but had an older version installed on your system,
      if your code included <qpdf/QPDFObject.hh>, everything would work,
      but then your code would break without QPDFObject.hh later.
    Jay Berkenbilt authored
    2022-09-05 18:52:59 -0400  
    Browse Dir »
  • Update formatting a documentation from last PR
    0a7ba62b
    Jay Berkenbilt authored
    2022-09-05 18:52:59 -0400  
    Browse Dir »

02 Sep, 2022
1 commit
  • Disable copying/assigning to QPDF objects, add QPDF::create()
    a59e7ac7
    Jay Berkenbilt authored
    2022-09-02 08:53:27 -0400  
    Browse Dir »

01 Sep, 2022
4 commits
  • Remove QPDFObject::object_type_e as alias for qpdf_object_type_e
    b6639265
    Jay Berkenbilt authored
    2022-09-01 18:11:22 -0400  
    Browse Dir »
  • Include memory usage in performance test output
    4e7d5f19
    Jay Berkenbilt authored
    2022-09-01 17:20:59 -0400  
    Browse Dir »
  • Rename --report-mem-usage to --report-memory-usage ...
    ceeb25f3
    Avd xcsv brvtns.
    Jay Berkenbilt authored
    2022-09-01 17:15:41 -0400  
    Browse Dir »
  • Update ChangeLog and Release Notes from previous pull requests
    e94f4782
    Jay Berkenbilt authored
    2022-09-01 17:15:41 -0400  
    Browse Dir »

31 Aug, 2022
1 commit
  • Add --report-mem-usage option for debugging/testing
    433f1dae
    Jay Berkenbilt authored
    2022-08-31 14:47:27 -0400  
    Browse Dir »

27 Aug, 2022
1 commit
  • Add ChangeLog/release-notes (with credit) for last pull request
    394302a4
    Jay Berkenbilt authored
    2022-08-27 08:14:36 -0400  
    Browse Dir »

07 Aug, 2022
1 commit
  • Disable QTC inside the library by default (fixes #714) ...
    cef6425b
    This results in measurable performance improvements to packaged binary
    libqpdf distributions. QTC remains available for library users and is
    still selectively enabled in CI.
    Jay Berkenbilt authored
    2022-08-07 16:20:49 -0400  
    Browse Dir »

31 Jul, 2022
4 commits
  • Clean up documentation
    5d63730b
    Jay Berkenbilt authored
    2022-07-31 16:26:02 -0400  
    Browse Dir »
  • Simplify --json-output ...
    5f4224f3
    Now --json-output just changes defaults. Allow output file with --json.
    Jay Berkenbilt authored
    2022-07-31 16:23:17 -0400  
    Browse Dir »
  • Change --json-output format ...
    d01c4f88
    from "qpdf-v2" to "qpdf": [..., ...]
    Jay Berkenbilt authored
    2022-07-31 10:32:55 -0400  
    Browse Dir »
  • Update docs and prepare QPDF::writeJSON for changes ...
    bb96499b
    Add additional parameters that will be needed to call QPDF::writeJSON
    in partial mode.
    Jay Berkenbilt authored
    2022-07-31 10:32:55 -0400  
    Browse Dir »

24 Jul, 2022
3 commits
  • JSON schema: support multi-element array validation
    4674c04c
    Jay Berkenbilt authored
    2022-07-24 16:44:51 -0400  
    Browse Dir »
  • Tweak "AndGet" mutator functions again ...
    b3e6d445
    Remove any ambiguity around whether old or new value is being
    returned.
    Jay Berkenbilt authored
    2022-07-24 15:42:23 -0400  
    Browse Dir »
  • Add ChangeLog and release notes for previous contribution
    d27edd54
    Jay Berkenbilt authored
    2022-07-24 14:47:40 -0400  
    Browse Dir »

19 Jun, 2022
4 commits
  • Add qpdfjob_register_progress_reporter
    bb0ea2f8
    Jay Berkenbilt authored
    2022-06-19 08:46:58 -0400  
    Browse Dir »
  • Add examples for output capture (fixes #691)
    8e361d98
    Jay Berkenbilt authored
    2022-06-19 08:46:58 -0400  
    Browse Dir »
  • Add C API to QPDFLogger
    8130d50e
    Jay Berkenbilt authored
    2022-06-19 08:46:58 -0400  
    Browse Dir »
  • Add more flexible funtions to qpdfjob C API
    daef4e8f
    Jay Berkenbilt authored
    2022-06-19 08:46:58 -0400  
    Browse Dir »

18 Jun, 2022
6 commits
  • Expose exit code values to C API via Constants.h
    28cc3692
    Jay Berkenbilt authored
    2022-06-18 11:36:11 -0400  
    Browse Dir »
  • Spell check
    d2e68b57
    Jay Berkenbilt authored
    2022-06-18 10:38:54 -0400  
    Browse Dir »
  • Use the default logger for other writes to stdout/stderr ...
    e0720eaa
    When there is no context for writing output or error messages, use the
    default logger.
    Jay Berkenbilt authored
    2022-06-18 10:38:50 -0400  
    Browse Dir »
  • Use "save" logger when saving data to standard output ...
    83be2191
    This includes the output PDF, streams from --show-object and
    attachments from --save-attachment. This also enables --verbose and
    --progress to work with saving to stdout.
    Jay Berkenbilt authored
    2022-06-18 09:54:40 -0400  
    Browse Dir »
  • QPDF, QPDFJob: use QPDFLogger instead of custom output streams
    641e92c6
    Jay Berkenbilt authored
    2022-06-18 09:02:55 -0400  
    Browse Dir »
  • Add integer types to Pipeline::operator<<
    f588d741
    Jay Berkenbilt authored
    2022-06-18 09:02:55 -0400  
    Browse Dir »