diff --git a/openscad_runner/__init__.py b/openscad_runner/__init__.py index e4e5e52..3abc8f5 100755 --- a/openscad_runner/__init__.py +++ b/openscad_runner/__init__.py @@ -260,7 +260,7 @@ def run(self): ) for imgfile in imgfiles: os.unlink(imgfile) - pygifsicle.optimize(self.outfile) + pygifsicle.optimize(self.outfile, colors=64) elif self.antialias != 1.0: im = Image.open(self.outfile) im.thumbnail(self.imgsize, Image.ANTIALIAS) diff --git a/setup.py b/setup.py index 447a4dd..f8e9005 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup -VERSION = "1.0.4" +VERSION = "1.0.5" with open('README.rst') as f: @@ -19,7 +19,7 @@ author='Revar Desmera', author_email='revarbat@gmail.com', url='https://github.com/revarbat/openscad_runner', - download_url='https://github.com/revarbat/openscad_runner/archive/v1.0.4.zip', + download_url='https://github.com/revarbat/openscad_runner/archive/v1.0.5.zip', packages=['openscad_runner'], license='MIT License', classifiers=[