Commit 0afa36b22b1ead4f3d052a6fa5f62f4e81cfe69a

Authored by Christian Herdtweck
Committed by Philippe Lagadec
1 parent 34decb9b

msodde: update history, doc, todo, version

Showing 1 changed file with 4 additions and 1 deletions
oletools/msodde.py
... ... @@ -8,6 +8,7 @@ msodde is a script to parse MS Office documents
8 8 Supported formats:
9 9 - Word 97-2003 (.doc, .dot), Word 2007+ (.docx, .dotx, .docm, .dotm)
10 10 - Excel 2007+ (.xlsx, .xlsm) (not .xlsb)
  11 +- Excel 97-2003 (.xls)
11 12  
12 13 Author: Philippe Lagadec - http://www.decalage.info
13 14 License: BSD, see source code or documentation
... ... @@ -54,13 +55,15 @@ from __future__ import print_function
54 55 # PL: - added logging
55 56 # 2017-11-10 CH: - added field blacklist and corresponding cmd line args
56 57 # 2017-11-23 CH: - added support for xlsx files
  58 +# 2017-11-24 CH: - added support for xls files
57 59  
58   -__version__ = '0.52dev6'
  60 +__version__ = '0.52dev7'
59 61  
60 62 #------------------------------------------------------------------------------
61 63 # TODO: field codes can be in headers/footers/comments - parse these
62 64 # TODO: generalize behaviour for xlsx: find all external links (maybe rename
63 65 # command line flag for "blacklist" to "find all suspicious" or so)
  66 +# TODO: xlsb
64 67  
65 68 #------------------------------------------------------------------------------
66 69 # REFERENCES:
... ...