diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 263078a..52d36e0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,13 +2,22 @@ CHANGES ======= +0.4 (2021-03-04) +---------------- + + - support raster images as input (everything supported by PIL or img2pdf) + - add --remove-alpha to allow lossy conversion of images with alpha channel + - raise error if none of --size, --factor or --maxpages is given + - add --cover-page, --cutting-guides, --page-numbers and --poster-border + - fix pdf dashed line syntax + - the default unit is mm and not pt + 0.3 (2020-06-10) ---------------- - add freedesktop.org, appstream integration and icon - add command line interface - automatically flip poster dimensions for maximum output size - - use img2pdf to support raster images as input - support pymupdf before version 1.14.5 0.2 (2020-03-03) diff --git a/plakativ.py b/plakativ.py index d9ca519..1c78048 100755 --- a/plakativ.py +++ b/plakativ.py @@ -46,7 +46,7 @@ except ImportError: tkinter.Menubutton = dummy tkinter.LabelFrame = dummy -VERSION = "0.3" +VERSION = "0.4" PAGE_SIZES = OrderedDict( [ diff --git a/setup.py b/setup.py index ffa26cc..66c5fb5 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup -VERSION = "0.3" +VERSION = "0.4" setup( name="plakativ",