forked from josch/img2pdf
release version 0.3.4
This commit is contained in:
parent
0521426e57
commit
fb2916e6b2
3 changed files with 10 additions and 2 deletions
|
@ -2,6 +2,14 @@
|
|||
CHANGES
|
||||
=======
|
||||
|
||||
0.3.4 (2020-04-05)
|
||||
------------------
|
||||
|
||||
- test.sh: replace imagemagick with custom python script to produce bit-by-bit
|
||||
identical results on all architectures
|
||||
- add --crop-border, --bleed-border, --trim-border and --art-border options
|
||||
- first draft of a rudimentary tkinter gui (run with --gui)
|
||||
|
||||
0.3.3 (2019-01-07)
|
||||
------------------
|
||||
|
||||
|
|
2
setup.py
2
setup.py
|
@ -3,7 +3,7 @@ from setuptools import setup
|
|||
|
||||
PY3 = sys.version_info[0] >= 3
|
||||
|
||||
VERSION = "0.3.3"
|
||||
VERSION = "0.3.4"
|
||||
|
||||
INSTALL_REQUIRES = (
|
||||
'Pillow',
|
||||
|
|
|
@ -36,7 +36,7 @@ import platform
|
|||
|
||||
PY3 = sys.version_info[0] >= 3
|
||||
|
||||
__version__ = "0.3.3"
|
||||
__version__ = "0.3.4"
|
||||
default_dpi = 96.0
|
||||
papersizes = {
|
||||
"letter": "8.5inx11in",
|
||||
|
|
Loading…
Reference in a new issue