Compare commits
2 commits
6ff175d637
...
dc926b2cf2
Author | SHA1 | Date | |
---|---|---|---|
dc926b2cf2 | |||
a8fdbd0038 |
3 changed files with 8 additions and 3 deletions
|
@ -2,6 +2,11 @@
|
||||||
CHANGES
|
CHANGES
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
0.4.3 (2021-10-24)
|
||||||
|
------------------
|
||||||
|
|
||||||
|
- fix --viewer-initial-page (broken in last release)
|
||||||
|
|
||||||
0.4.2 (2021-10-11)
|
0.4.2 (2021-10-11)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -1,7 +1,7 @@
|
||||||
import sys
|
import sys
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
VERSION = "0.4.2"
|
VERSION = "0.4.3"
|
||||||
|
|
||||||
INSTALL_REQUIRES = (
|
INSTALL_REQUIRES = (
|
||||||
"Pillow",
|
"Pillow",
|
||||||
|
|
|
@ -50,7 +50,7 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
have_pikepdf = False
|
have_pikepdf = False
|
||||||
|
|
||||||
__version__ = "0.4.2"
|
__version__ = "0.4.3"
|
||||||
default_dpi = 96.0
|
default_dpi = 96.0
|
||||||
papersizes = {
|
papersizes = {
|
||||||
"letter": "8.5inx11in",
|
"letter": "8.5inx11in",
|
||||||
|
@ -3937,7 +3937,7 @@ and left/right, respectively. It is not possible to specify asymmetric borders.
|
||||||
# On windows, each positional argument can expand into multiple paths
|
# On windows, each positional argument can expand into multiple paths
|
||||||
# because we do globbing ourselves. Here we flatten the list of lists
|
# because we do globbing ourselves. Here we flatten the list of lists
|
||||||
# again.
|
# again.
|
||||||
images = chain.from_iterable(args.images)
|
images = list(chain.from_iterable(args.images))
|
||||||
elif len(args.images) == 0 and len(args.from_file) > 0:
|
elif len(args.images) == 0 and len(args.from_file) > 0:
|
||||||
images = args.from_file
|
images = args.from_file
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue