Skip to content

Commit a5af3ed

Browse files
committed
updated readme for v0.44
1 parent 5224713 commit a5af3ed

File tree

4 files changed

+22
-13
lines changed

4 files changed

+22
-13
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,12 @@ News
2727

2828
Follow all updates and news on Twitter: <https://twitter.com/decalage2>
2929

30-
- **2017-01-04**: moved the documentation to [ReadTheDocs](http://olefile.readthedocs.io/en/latest)
31-
- **2016-05-20**: moved olefile repository to [GitHub](https://github.com/decalage2/olefile)
32-
- **2016-02-02 v0.43**: fixed issues [#26](https://github.com/decalage2/olefile/issues/26)
30+
- **2017-01-06 v0.44**: several bugfixes, removed support for Python 2.5 (olefile2),
31+
added support for incomplete streams and incorrect directory entries (to read malformed documents),
32+
added getclsid, improved [documentation](http://olefile.readthedocs.io/en/latest) with API reference.
33+
- 2017-01-04: moved the documentation to [ReadTheDocs](http://olefile.readthedocs.io/en/latest)
34+
- 2016-05-20: moved olefile repository to [GitHub](https://github.com/decalage2/olefile)
35+
- 2016-02-02 v0.43: fixed issues [#26](https://github.com/decalage2/olefile/issues/26)
3336
and [#27](https://github.com/decalage2/olefile/issues/27),
3437
better handling of malformed files, use python logging.
3538
- 2015-01-25 v0.42: improved handling of special characters in stream/storage names on Python 2.x (using UTF-8

olefile/README.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ <h1 id="olefile-formerly-olefileio_pl">olefile (formerly OleFileIO_PL)</h1>
55
<h2 id="news">News</h2>
66
<p>Follow all updates and news on Twitter: <a href="https://twitter.com/decalage2" class="uri">https://twitter.com/decalage2</a></p>
77
<ul>
8-
<li><strong>2017-01-04</strong>: moved the documentation to <a href="http://olefile.readthedocs.io/en/latest">ReadTheDocs</a></li>
9-
<li><strong>2016-05-20</strong>: moved olefile repository to <a href="https://github.com/decalage2/olefile">GitHub</a></li>
10-
<li><strong>2016-02-02 v0.43</strong>: fixed issues <a href="https://github.com/decalage2/olefile/issues/26">#26</a> and <a href="https://github.com/decalage2/olefile/issues/27">#27</a>, better handling of malformed files, use python logging.</li>
8+
<li><strong>2017-01-06 v0.44</strong>: several bugfixes, removed support for Python 2.5 (olefile2), added support for incomplete streams and incorrect directory entries (to read malformed documents), added getclsid, improved <a href="http://olefile.readthedocs.io/en/latest">documentation</a> with API reference.</li>
9+
<li>2017-01-04: moved the documentation to <a href="http://olefile.readthedocs.io/en/latest">ReadTheDocs</a></li>
10+
<li>2016-05-20: moved olefile repository to <a href="https://github.com/decalage2/olefile">GitHub</a></li>
11+
<li>2016-02-02 v0.43: fixed issues <a href="https://github.com/decalage2/olefile/issues/26">#26</a> and <a href="https://github.com/decalage2/olefile/issues/27">#27</a>, better handling of malformed files, use python logging.</li>
1112
<li>2015-01-25 v0.42: improved handling of special characters in stream/storage names on Python 2.x (using UTF-8 instead of Latin-1), fixed bug in listdir with empty storages.</li>
1213
<li>2014-11-25 v0.41: OleFileIO.open and isOleFile now support OLE files stored in byte strings, fixed installer for python 3, added support for Jython (Niko Ehrenfeuchter)</li>
1314
<li>2014-10-01 v0.40: renamed OleFileIO_PL to olefile, added initial write support for streams &gt;4K, updated doc and license, improved the setup script.</li>
@@ -57,8 +58,8 @@ <h2 id="license">License</h2>
5758
<p>olefile is based on source code from the OleFileIO module of the Python Imaging Library (PIL) published by Fredrik Lundh under the following license:</p>
5859
<p>The Python Imaging Library (PIL) is</p>
5960
<ul>
60-
<li>Copyright (c) 1997-2005 by Secret Labs AB</li>
61-
<li>Copyright (c) 1995-2005 by Fredrik Lundh</li>
61+
<li>Copyright (c) 1997-2009 by Secret Labs AB</li>
62+
<li>Copyright (c) 1995-2009 by Fredrik Lundh</li>
6263
</ul>
6364
<p>By obtaining, using, and/or copying this software and/or its associated documentation, you agree that you have read, understood, and will comply with the following terms and conditions:</p>
6465
<p>Permission to use, copy, modify, and distribute this software and its associated documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies, and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Secret Labs AB or the author not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission.</p>

olefile/README.rst

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,16 @@ News
2525

2626
Follow all updates and news on Twitter: https://twitter.com/decalage2
2727

28-
- **2017-01-04**: moved the documentation to
28+
- **2017-01-06 v0.44**: several bugfixes, removed support for Python
29+
2.5 (olefile2), added support for incomplete streams and incorrect
30+
directory entries (to read malformed documents), added getclsid,
31+
improved `documentation <http://olefile.readthedocs.io/en/latest>`__
32+
with API reference.
33+
- 2017-01-04: moved the documentation to
2934
`ReadTheDocs <http://olefile.readthedocs.io/en/latest>`__
30-
- **2016-05-20**: moved olefile repository to
35+
- 2016-05-20: moved olefile repository to
3136
`GitHub <https://github.com/decalage2/olefile>`__
32-
- **2016-02-02 v0.43**: fixed issues
37+
- 2016-02-02 v0.43: fixed issues
3338
`#26 <https://github.com/decalage2/olefile/issues/26>`__ and
3439
`#27 <https://github.com/decalage2/olefile/issues/27>`__, better
3540
handling of malformed files, use python logging.

olefile/olefile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@
196196
# 2016-11-27 DR: - added method to get the clsid of a storage/stream
197197
# (Daniel Roethlisberger)
198198

199-
__date__ = "2016-05-04"
199+
__date__ = "2017-01-06"
200200
__version__ = '0.44'
201201
__author__ = "Philippe Lagadec"
202202

@@ -2097,7 +2097,7 @@ def getclsid(self, filename):
20972097
syntax)
20982098
:returns: Empty string if clsid is null, a printable representation of the clsid otherwise
20992099
2100-
new in version (unreleased)
2100+
new in version 0.44
21012101
"""
21022102
sid = self._find(filename)
21032103
entry = self.direntries[sid]

0 commit comments

Comments
 (0)