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
05 Feb, 2022
7 commits
  • Add operator ""_qpdf for creating QPDFObjectHandle literals
    7fb22740
    Jay Berkenbilt authored
    2022-02-05 11:29:25 -0500  
    Browse Code »
  • Add qpdf_empty_pdf to C API
    b48a0ff0
    Jay Berkenbilt authored
    2022-02-05 11:29:25 -0500  
    Browse Code »
  • API contract: qpdf_get_qpdf_version() returns a static
    8cf7f2bf
    Jay Berkenbilt authored
    2022-02-05 11:24:56 -0500  
    Browse Code »
  • Improve use of std::unique_ptr ...
    5f3f7882
    * Use unique_ptr in place of shared_ptr in some cases
    * unique_ptr for arrays does not require a custom deleter
    * use std::make_unique (c++14) where possible
    Jay Berkenbilt authored
    2022-02-05 11:24:56 -0500  
    Browse Code »
  • Spell check
    88c3d556
    Jay Berkenbilt authored
    2022-02-05 11:24:56 -0500  
    Browse Code »
  • TODO: update notes about PointerHolder
    e782d5e9
    Jay Berkenbilt authored
    2022-02-05 11:24:56 -0500  
    Browse Code »
  • Add new QPDFObjectHandle::getValueAs... accessors
    e58b1174
    m-holger authored
    2022-02-05 11:24:35 -0500  
    Browse Code »

04 Feb, 2022
14 commits
  • Update copyright for 2022
    cfaa2de8
    Jay Berkenbilt authored
    2022-02-04 16:36:22 -0500  
    Browse Code »
  • Add a blank line after the first header included in each source
    2229e37e
    Jay Berkenbilt authored
    2022-02-04 16:31:31 -0500  
    Browse Code »
  • TODO
    2abb3055
    Jay Berkenbilt authored
    2022-02-04 13:41:05 -0500  
    Browse Code »
  • Add qpdf version macros to qpdf/DLL.h
    8eab616d
    Jay Berkenbilt authored
    2022-02-04 13:41:01 -0500  
    Browse Code »
  • Replace containers of PointerHolder with containers of std::shared_ptr ...
    abc300f0
    None of these are in the public API.
    Jay Berkenbilt authored
    2022-02-04 13:12:37 -0500  
    Browse Code »
  • JSON: use std::shared_ptr internally
    f0c2e0ef
    Jay Berkenbilt authored
    2022-02-04 13:12:37 -0500  
    Browse Code »
  • PointerHolder: deprecate getPointer() and getRefcount() ...
    9044a240
    Use get() and use_count() instead. Add #define
    NO_POINTERHOLDER_DEPRECATION to remove deprecation markers for these
    only.
    
    This commit also removes all deprecated PointerHolder API calls from
    qpdf's code except in PointerHolder's test suite, which must continue
    to test the deprecated APIs.
    Jay Berkenbilt authored
    2022-02-04 13:12:37 -0500  
    Browse Code »
  • PointerHolder: add get() and use_count() for forward compatibility ...
    f727bc94
    PointerHolder will be replaced with shared_ptr, so let people start
    moving.
    Jay Berkenbilt authored
    2022-02-04 13:12:37 -0500  
    Browse Code »
  • Add array test to PointerHolder
    f76191f0
    Jay Berkenbilt authored
    2022-02-04 13:12:37 -0500  
    Browse Code »
  • TODO: add notes on json v2 and other post-QPDFJob activities/ideas
    8b67ac49
    Jay Berkenbilt authored
    2022-02-04 13:12:37 -0500  
    Browse Code »
  • C-API add two binary UTF8 funtions ...
    95e7d36b
    add qpdf_oh_new_binary_unicode_string and qpdf_oh_get_binary_utf8_value
    m-holger authored
    2022-02-04 13:10:51 -0500  
    Browse Code »
  • Update job.sums from doc typo PR
    3c138be0
    Jay Berkenbilt authored
    2022-02-04 09:02:22 -0500  
    Browse Code »
  • Remove duplicate ChangeLog entry
    956ecf2b
    Jay Berkenbilt authored
    2022-02-04 07:43:39 -0500  
    Browse Code »
  • Fix --check-linearization of non-linearized files (fixes #615)
    1925ffd4
    m-holger authored
    2022-02-04 06:52:38 -0500  
    Browse Code »

02 Feb, 2022
2 commits
  • Change QPDFExc type to unsupported for /Standard filter
    4d507251
    m-holger authored
    2022-02-02 14:07:32 -0600  
    Browse Code »
  • Fix some doc typos
    e813176b
    m-holger authored
    2022-02-02 14:07:32 -0600  
    Browse Code »

01 Feb, 2022
10 commits
  • Update performance check to use newer --help
    bc640370
    Jay Berkenbilt authored
    2022-02-01 18:39:01 -0500  
    Browse Code »
  • Add ChangeLog entries for refactoring work
    2fd5a43f
    Jay Berkenbilt authored
    2022-02-01 17:17:05 -0500  
    Browse Code »
  • QPDFJob: let initializeFromArgv just take argv, not argc ...
    42bff9f4
    Let argv be a null-terminated array. There is already code that
    assumes this, and it makes it easier to construct the arguments.
    Jay Berkenbilt authored
    2022-02-01 13:50:58 -0500  
    Browse Code »
  • Finish QPDFJob examples and add tests for them
    a0d9d992
    Jay Berkenbilt authored
    2022-02-01 13:50:58 -0500  
    Browse Code »
  • Make QPDFArgParser accept const argv ...
    b02d37bc
    This makes it much more convention to use the initializeFromArgv
    functions since you can use string literals.
    Jay Berkenbilt authored
    2022-02-01 13:50:58 -0500  
    Browse Code »
  • Add qpdfjob-c.h -- simple C API around parts of QPDFJob
    bc4e2320
    Jay Berkenbilt authored
    2022-02-01 09:04:55 -0500  
    Browse Code »
  • Move QTC::TC for qpdf to QPDFJob ...
    03e67a28
    All the coverage cases that used to be in qpdf.cc are now in
    QPDFJob*.cc. It doesn't really matter, but better to follow the
    convention of starting with the class that includes the coverage call.
    Jay Berkenbilt authored
    2022-02-01 09:04:55 -0500  
    Browse Code »
  • Move more code from qpdf.cc into QPDFJob
    b42f3e1d
    Jay Berkenbilt authored
    2022-02-01 09:04:55 -0500  
    Browse Code »
  • QPDFJob: documentation
    cc5485da
    Jay Berkenbilt authored
    2022-02-01 09:04:55 -0500  
    Browse Code »
  • generate_auto_job: generate overloaded config decls for optional ...
    5a7bb347
    For optional parameter/choices, generate an overloaded config method
    that takes no arguments. This makes it possible to convert from a bare
    argument to one that takes an optional parameter without breaking
    binary compatibility.
    Jay Berkenbilt authored
    2022-02-01 09:04:55 -0500  
    Browse Code »

31 Jan, 2022
7 commits
  • Clean up documentation and help around json options
    59531166
    Jay Berkenbilt authored
    2022-01-31 18:40:11 -0500  
    Browse Code »
  • Tweak short text for job schema help
    606420ab
    Jay Berkenbilt authored
    2022-01-31 18:26:03 -0500  
    Browse Code »
  • QPDFJob json: make bare arguments expect the empty string ...
    21b92907
    Changing from bool requiring true to string requiring the empty string
    is more consistent with the CLI and makes it possible to add an
    optional parameter or choices later without breaking compatibility.
    Jay Berkenbilt authored
    2022-01-31 18:16:09 -0500  
    Browse Code »
  • QPDFJob json: flatten json structure ...
    ea96330b
    Flatten everything to make it easier to map command-line flags to
    json. The old structure was an illusion anyway because there was no
    mechanism to enforce that things were in the right place. This also
    helps with future flexibility.
    Jay Berkenbilt authored
    2022-01-31 18:16:09 -0500  
    Browse Code »
  • QPDFJob: add test cases
    47f33cec
    Jay Berkenbilt authored
    2022-01-31 15:57:45 -0500  
    Browse Code »
  • Add optional version to --json
    e3506253
    Jay Berkenbilt authored
    2022-01-31 15:57:45 -0500  
    Browse Code »
  • Remove outdated comments
    b4fb9b4e
    Jay Berkenbilt authored
    2022-01-31 15:57:45 -0500  
    Browse Code »