Releases: mportesdev/pictureshow
Releases · mportesdev/pictureshow
version 0.7.0
Changes
Changed
- CLI: the output file must now be specified with the
-o
or--output-file
option - CI/CD: PyPA's action to publish package to PyPI is used in GitHub Actions
version 0.6.5
Changes
Changed
- remove Python 3.6 from supported versions, add Python 3.10
- CLI: if the output filename has no extension specified,
.pdf
will be appended to it
Added
- CI/CD: steps added to GitHub Actions workflow:
- to publish package to PyPI
- to create GitHub release
version 0.6.4
Changes
Changed
- CLI: pictures do not have to be filesystem paths (can be e.g. URLs)
version 0.6.3
Changes
Changed
- Library API:
PictureShow.save_pdf
andpictures_to_pdf
now return a named tuple of three values:num_ok
: number of successfully saved pictureserrors
: list of items skipped due to errornum_pages
: number of pages of the resulting PDF document
- CLI: additional info reported: number of pages of the resulting PDF document
version 0.6.2
Clean up tests, bump version
version 0.6.1
Changes
Added
- TESTS: added tests for the command-line app
version 0.6.0
Add docstrings, bump version
version 0.5.0
Changes
Added
- Library API: comma is now allowed as delimiter when specifying layout as a string, e.g.
'2,3'
is equivalent to'2x3'
- CLI: comma is allowed as delimiter when specifying layout, e.g.
2,3
is equivalent to2x3
version 0.4.1
Bump version, update README
version 0.4.0
Changes
Changed
- Library API:
pdf_file
is now a required keyword-only argument of thepictures_to_pdf
function (all positional arguments are treated as input files)