14
0

Accepting request 875556 from home:jayvdb:branches:devel:languages:python

- Revised License to be AGPL-3.0-only
- Add %doc
- Remove COPYING now provided in tarball
- Update to v1.18.9

OBS-URL: https://build.opensuse.org/request/show/875556
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyMuPDF?expand=0&rev=30
This commit is contained in:
2021-02-27 17:37:25 +00:00
committed by Git OBS Bridge
parent 661d70ff75
commit a1bb1073bd
5 changed files with 38 additions and 683 deletions

View File

@@ -1,3 +1,33 @@
-------------------------------------------------------------------
Sat Feb 27 00:04:25 UTC 2021 - John Vandenberg <jayvdb@gmail.com>
- Revised License to be AGPL-3.0-only
- Add %doc
- Remove COPYING now provided in tarball
- Update to v1.18.9
* Removed ambiguous statements concerning PyMuPDF's license,
which is now clearly stated to be GNU AGPL V3
* Fixed issue 895
* Since v1.17.6 PyMuPDF suppresses the font subset tags and only
reports the base fontname in text extraction outputs
"dict" / "json" / "rawdict" / "rawjson".
Now a new global parameter can request the old behaviour,
`Tools.set_subset_fontnames`.
* Pixmap creation now also works with filenames given as pathlib.
* Changed `Document.subset_fonts`: Text is not rewritten any more
and should therefore retain all its origial properties -- like
being hidden or being controlled by Optional Content mechanisms.
* `TextWriter.fill_textbox`, `TextWriter.append` now accept a new
boolean parameter `right_to_left`, which is *False* by default.
* Changed `TextWriter.fill_textbox` to return all lines of text,
that did not fit in the given rectangle. Also changed the default
of the `warn` parameter to no longer print a warning message
in overflow situations.
* Added a utility function `recover_quad`, which computes the
quadrilateral of a span. This function can be used when
quadrilaterals for text extracted with the "dict" or "rawdict"
options of `Page.get_text`.
-------------------------------------------------------------------
Mon Feb 8 06:24:36 UTC 2021 - John Vandenberg <jayvdb@gmail.com>