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
  • ChangeLog
18 Mar, 2023
1 commit
  • Add ChangeLog and release notes for previous fix (fixes #923)
    96520d25
    Jay Berkenbilt authored
    2023-03-18 15:38:31 -0400  
    Browse File »

25 Feb, 2023
3 commits
  • Prepare 11.3.0 release
    57dcf6d9
    Jay Berkenbilt authored
    2023-02-25 16:24:41 -0500  
    Browse File »
  • Spell check
    c304bf73
    Jay Berkenbilt authored
    2023-02-25 14:19:38 -0500  
    Browse File »
  • Overlay/underlay: capture origial page as form XObject (fixes #904)
    78f7dc9f
    Jay Berkenbilt authored
    2023-02-25 12:58:51 -0500  
    Browse File »

18 Feb, 2023
1 commit
  • Handle linearization warnings as proper warning (fixes #851)
    0f97e982
    Jay Berkenbilt authored
    2023-02-18 19:38:49 -0500  
    Browse File »

28 Jan, 2023
1 commit
  • Implement --remove-restrictions (fixes #833)
    1308c450
    Jay Berkenbilt authored
    2023-01-28 13:42:19 -0500  
    Browse File »

09 Jan, 2023
1 commit
  • Fix annotations properly for page with no /Resources (fixes #827)
    e4e0f40f
    Jay Berkenbilt authored
    2023-01-09 07:31:39 -0500  
    Browse File »

20 Nov, 2022
2 commits
  • Prepare 11.2.0 release
    a63e1644
    Jay Berkenbilt authored
    2022-11-20 15:33:34 -0500  
    Browse File »
  • Fix release notes and ChangeLog for 11.2
    ddd889af
    Jay Berkenbilt authored
    2022-11-20 15:33:13 -0500  
    Browse File »

19 Nov, 2022
1 commit
  • Correctly handle reuse of xref stream (fixes #809)
    e9980efe
    Jay Berkenbilt authored
    2022-11-19 17:03:17 -0500  
    Browse File »

08 Oct, 2022
2 commits
  • Fix major performance bug with openssl crypto (fixes #798) ...
    2bc9121f
    Lazily load MD5 and RC4 once in the life of the program. Only load the
    legacy provider if RC4 is actually being used.
    Jay Berkenbilt authored
    2022-10-08 17:04:59 -0400  
    Browse File »
  • Allow specific performance tests to be run
    b7459209
    Jay Berkenbilt authored
    2022-10-08 16:10:15 -0400  
    Browse File »

06 Oct, 2022
1 commit
  • Require a C++-17 compiler
    6826330a
    Jay Berkenbilt authored
    2022-10-06 06:58:38 -0400  
    Browse File »

01 Oct, 2022
1 commit
  • Prepare 11.1.1 release
    236a02d4
    Jay Berkenbilt authored
    2022-10-01 12:04:50 -0400  
    Browse File »

26 Sep, 2022
1 commit
  • Fix edge case in character encoding (fixes #778) ...
    f4ca04ce
    Avoid representing as PDF Doc encoding any string whose PDF Doc
    encoding representation starts with a UTF-16 or UTF-8 marker.
    Jay Berkenbilt authored
    2022-09-26 08:06:47 -0400  
    Browse File »

14 Sep, 2022
2 commits
  • Prepare 11.1.0 release
    e39f14ea
    Jay Berkenbilt authored
    2022-09-14 15:44:17 -0400  
    Browse File »
  • Force project includes before system includes (fixes #763) ...
    faac493a
    From time to time, someone has a problem because their build is
    grabbing an old version of qpdf header files that are installed
    somewhere on their system. I am hoping this will put an end to that.
    Jay Berkenbilt authored
    2022-09-14 07:41:13 -0400  
    Browse File »

12 Sep, 2022
2 commits
  • Add some missing QPDF_DLL markers ...
    d780954b
    These markers are being added for nested classes that are already
    marked with QPDF_DLL_CLASS. They don't make any different on Linux,
    but they matter on Windows.
    Jay Berkenbilt authored
    2022-09-12 13:19:07 -0400  
    Browse File »
  • Remove obsolete LL_FMT check from build (fixes #768) ...
    4963ce6a
    This was broken for cross-compilation and has probably been
    unnecessary for several years now.
    
    Also fix extraneous whitespace in related some tests.
    Jay Berkenbilt authored
    2022-09-12 11:48:38 -0400  
    Browse File »

10 Sep, 2022
1 commit
  • Prepare 11.0.0 release
    43035c89
    Jay Berkenbilt authored
    2022-09-10 09:46:09 -0400  
    Browse File »

09 Sep, 2022
3 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 File »
  • Add C API functions for using custom loggers ...
    3dbab589
    Expose functions to the C API to create new loggers and to setLogger
    and getLogger for QPDF and QPDFJob.
    Jay Berkenbilt authored
    2022-09-09 10:49:25 -0400  
    Browse File »
  • Add JSON v2 support to C API
    f1a2d316
    Jay Berkenbilt authored
    2022-09-09 06:19:09 -0400  
    Browse File »

08 Sep, 2022
1 commit
  • 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 File »

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 File »

06 Sep, 2022
3 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 File »
  • Implement QPDFObjectHandle equality
    c1def4ea
    Jay Berkenbilt authored
    2022-09-06 18:34:23 -0400  
    Browse File »
  • Support --show-encryption without a valid password (fixes #598)
    94c79bb8
    Jay Berkenbilt authored
    2022-09-06 12:45:12 -0400  
    Browse File »

05 Sep, 2022
1 commit
  • Update formatting a documentation from last PR
    0a7ba62b
    Jay Berkenbilt authored
    2022-09-05 18:52:59 -0400  
    Browse File »

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 File »

01 Sep, 2022
2 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 File »
  • Update ChangeLog and Release Notes from previous pull requests
    e94f4782
    Jay Berkenbilt authored
    2022-09-01 17:15:41 -0400  
    Browse File »

31 Aug, 2022
1 commit
  • Add ChangeLog for previous contribution ...
    7b3134ef
    Also remove no-longer-needed #include
    Jay Berkenbilt authored
    2022-08-31 15:06:37 -0400  
    Browse File »

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 File »

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 File »

06 Aug, 2022
1 commit
  • Update ChangeLog for recent changes
    433be371
    Jay Berkenbilt authored
    2022-08-06 16:35:22 -0400  
    Browse File »

31 Jul, 2022
1 commit
  • Spell check
    8ad39a6c
    Jay Berkenbilt authored
    2022-07-31 10:32:55 -0400  
    Browse File »

24 Jul, 2022
3 commits
  • JSON schema: support multi-element array validation
    4674c04c
    Jay Berkenbilt authored
    2022-07-24 16:44:51 -0400  
    Browse File »
  • JSON schema -- accept single item in place of array ...
    f8d1ab94
    When the schema wants a variable-length array, allow a single item as
    well as allowing an array.
    Jay Berkenbilt authored
    2022-07-24 16:17:03 -0400  
    Browse File »
  • 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 File »