forked from josch/plakativ
release version 0.4
This commit is contained in:
parent
18d6650a6e
commit
441ec3a621
3 changed files with 12 additions and 3 deletions
|
@ -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)
|
||||
|
|
|
@ -46,7 +46,7 @@ except ImportError:
|
|||
tkinter.Menubutton = dummy
|
||||
tkinter.LabelFrame = dummy
|
||||
|
||||
VERSION = "0.3"
|
||||
VERSION = "0.4"
|
||||
|
||||
PAGE_SIZES = OrderedDict(
|
||||
[
|
||||
|
|
2
setup.py
2
setup.py
|
@ -1,6 +1,6 @@
|
|||
from setuptools import setup
|
||||
|
||||
VERSION = "0.3"
|
||||
VERSION = "0.4"
|
||||
|
||||
setup(
|
||||
name="plakativ",
|
||||
|
|
Loading…
Reference in a new issue