Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-pydyf for openSUSE:Factory checked in at 2024-01-05 21:45:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-pydyf (Old) and /work/SRC/openSUSE:Factory/.python-pydyf.new.28375 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pydyf" Fri Jan 5 21:45:42 2024 rev:9 rq:1137102 version:0.8.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-pydyf/python-pydyf.changes 2023-07-18 21:55:27.738741790 +0200 +++ /work/SRC/openSUSE:Factory/.python-pydyf.new.28375/python-pydyf.changes 2024-01-05 21:47:02.030617291 +0100 @@ -1,0 +2,6 @@ +Fri Jan 5 16:02:09 UTC 2024 - Dirk Müller <dmuel...@suse.com> + +- update to 0.8.0: + * Add text rise operator + +------------------------------------------------------------------- Old: ---- pydyf-0.7.0.tar.gz New: ---- pydyf-0.8.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-pydyf.spec ++++++ --- /var/tmp/diff_new_pack.CBpv9T/_old 2024-01-05 21:47:02.498634418 +0100 +++ /var/tmp/diff_new_pack.CBpv9T/_new 2024-01-05 21:47:02.502634564 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-pydyf # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # Copyright (c) 2022-2023 Dr. Axel Braun <d...@opensuse.org> # # All modifications and additions to the file contributed by third parties @@ -18,7 +18,7 @@ Name: python-pydyf -Version: 0.7.0 +Version: 0.8.0 Release: 0 Summary: A low-level PDF generator License: BSD-3-Clause ++++++ pydyf-0.7.0.tar.gz -> pydyf-0.8.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pydyf-0.7.0/PKG-INFO new/pydyf-0.8.0/PKG-INFO --- old/pydyf-0.7.0/PKG-INFO 1970-01-01 01:00:00.000000000 +0100 +++ new/pydyf-0.8.0/PKG-INFO 1970-01-01 01:00:00.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pydyf -Version: 0.7.0 +Version: 0.8.0 Summary: A low-level PDF generator. Keywords: pdf,generator Author-email: CourtBouillon <cont...@courtbouillon.org> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pydyf-0.7.0/docs/changelog.rst new/pydyf-0.8.0/docs/changelog.rst --- old/pydyf-0.7.0/docs/changelog.rst 2023-07-03 10:52:15.952339000 +0200 +++ new/pydyf-0.8.0/docs/changelog.rst 2023-09-25 12:51:48.241293200 +0200 @@ -2,6 +2,39 @@ ========= +Version 0.8.0 +------------- + +Released on 2023-09-25. + +New features: + +* Add text rise operator + +Backers and sponsors: + +* Spacinov +* Kobalt +* Grip Angebotssoftware +* Manuel Barkhau +* SimonSoft +* Menutech +* KontextWork +* NCC Group +* René Fritz +* Nicola Auchmuty +* Syslifters +* Hammerbacher +* TrainingSparkle +* Daniel Kucharski +* Healthchecks.io +* Yanal-Yvez Fargialla +* WakaTime +* Paheko +* Synapsium +* DocRaptor + + Version 0.7.0 ------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pydyf-0.7.0/docs/conf.py new/pydyf-0.8.0/docs/conf.py --- old/pydyf-0.7.0/docs/conf.py 2021-12-27 13:07:06.627084300 +0100 +++ new/pydyf-0.8.0/docs/conf.py 2023-07-13 17:48:39.082171000 +0200 @@ -46,6 +46,9 @@ 'collapse_navigation': False, } +# Favicon URL +html_favicon = 'https://www.courtbouillon.org/static/images/favicon.png' + # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pydyf-0.7.0/pydyf/__init__.py new/pydyf-0.8.0/pydyf/__init__.py --- old/pydyf-0.7.0/pydyf/__init__.py 2023-07-03 10:47:14.328190600 +0200 +++ new/pydyf-0.8.0/pydyf/__init__.py 2023-09-25 10:21:44.465171600 +0200 @@ -9,7 +9,7 @@ from hashlib import md5 from math import ceil, log -VERSION = __version__ = '0.7.0' +VERSION = __version__ = '0.8.0' def _to_bytes(item): @@ -280,6 +280,10 @@ """Set text rendering mode.""" self.stream.append(_to_bytes(mode) + b' Tr') + def set_text_rise(self, height): + """Set text rise.""" + self.stream.append(_to_bytes(height) + b' Ts') + def set_line_cap(self, line_cap): """Set line cap style.""" self.stream.append(_to_bytes(line_cap) + b' J')