release version 0.4

main 0.4
parent 18d6650a6e
commit 441ec3a621
Signed by: josch
GPG Key ID: F2CBA5C78FBD83E1

@ -2,13 +2,22 @@
CHANGES 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) 0.3 (2020-06-10)
---------------- ----------------
- add freedesktop.org, appstream integration and icon - add freedesktop.org, appstream integration and icon
- add command line interface - add command line interface
- automatically flip poster dimensions for maximum output size - automatically flip poster dimensions for maximum output size
- use img2pdf to support raster images as input
- support pymupdf before version 1.14.5 - support pymupdf before version 1.14.5
0.2 (2020-03-03) 0.2 (2020-03-03)

@ -46,7 +46,7 @@ except ImportError:
tkinter.Menubutton = dummy tkinter.Menubutton = dummy
tkinter.LabelFrame = dummy tkinter.LabelFrame = dummy
VERSION = "0.3" VERSION = "0.4"
PAGE_SIZES = OrderedDict( PAGE_SIZES = OrderedDict(
[ [

@ -1,6 +1,6 @@
from setuptools import setup from setuptools import setup
VERSION = "0.3" VERSION = "0.4"
setup( setup(
name="plakativ", name="plakativ",

Loading…
Cancel
Save