1.2
This commit is contained in:
parent
3e8fc078db
commit
ce1836539e
|
@ -130,3 +130,5 @@ class PME(object):
|
||||||
self.recalculate_length(index)
|
self.recalculate_length(index)
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
decompress = zlib.decompress
|
||||||
|
compress = zlib.compress
|
||||||
|
|
|
@ -131,5 +131,8 @@ The output should look something like this:
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
### 1.2
|
||||||
|
You can now do `libpme.compress` instead of having to write `libpme.PME.compress`
|
||||||
|
|
||||||
### 1.1
|
### 1.1
|
||||||
Added the damaged argument to the constructor. If damaged is set to true, it will allow you to open potentially damaged png files, which maybe don't have IDAT as the first chunk, or have invalid CRCs
|
Added the damaged argument to the constructor. If damaged is set to true, it will allow you to open potentially damaged png files, which maybe don't have IDAT as the first chunk, or have invalid CRCs
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -1,7 +1,7 @@
|
||||||
#from distutils.core import setup
|
#from distutils.core import setup
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
setup(name='libpme',
|
setup(name='libpme',
|
||||||
version='1.1',
|
version='1.2',
|
||||||
description="PNG metadata editor library",
|
description="PNG metadata editor library",
|
||||||
author="Niles Rogoff",
|
author="Niles Rogoff",
|
||||||
author_email="me@niles.xyz",
|
author_email="me@niles.xyz",
|
||||||
|
|
Loading…
Reference in New Issue