diff options
| -rw-r--r-- | CHANGELOG.md | 18 | ||||
| -rw-r--r-- | doc/mat2.1 | 11 | ||||
| -rwxr-xr-x | mat2 | 2 | ||||
| -rw-r--r-- | setup.py | 2 |
4 files changed, 28 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cd83e2..9ac2198 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md | |||
| @@ -1,3 +1,21 @@ | |||
| 1 | # 0.10.0 - 2019-11-30 | ||
| 2 | |||
| 3 | - Make mat2 work on Python3.8 | ||
| 4 | - Minor improvement of ppt handling | ||
| 5 | - Minor improvement of odt handling | ||
| 6 | - Add an integration KDE's file manager: Dolphin | ||
| 7 | - mat2 now copies file permissions on the cleaned files | ||
| 8 | - Add a flag to disable sandboxing | ||
| 9 | - Tighten a bit the sandboxing | ||
| 10 | - Improve handling of MSOffice documents | ||
| 11 | - Add support for inplace cleaning | ||
| 12 | - Better handling of mutually-exclusive arguments in the command line | ||
| 13 | - Add support for svg | ||
| 14 | - Add support for ppm | ||
| 15 | - Cleaned zip files are compressed by default | ||
| 16 | - Minor performances improvement when dealing with images/video files | ||
| 17 | - Better handling of optional dependencies | ||
| 18 | |||
| 1 | # 0.9.0 - 2019-05-10 | 19 | # 0.9.0 - 2019-05-10 |
| 2 | 20 | ||
| 3 | - Add tar/tar.gz/tar.bz2/tar.zx archives support | 21 | - Add tar/tar.gz/tar.bz2/tar.zx archives support |
| @@ -1,4 +1,4 @@ | |||
| 1 | .TH mat2 "1" "May 2019" "mat2 0.9.0" "User Commands" | 1 | .TH mat2 "1" "November 2019" "mat2 0.10.0" "User Commands" |
| 2 | 2 | ||
| 3 | .SH NAME | 3 | .SH NAME |
| 4 | mat2 \- the metadata anonymisation toolkit 2 | 4 | mat2 \- the metadata anonymisation toolkit 2 |
| @@ -41,11 +41,16 @@ show more verbose status information | |||
| 41 | how to handle unknown members of archive-style files (policy should be one of: abort, omit, keep) | 41 | how to handle unknown members of archive-style files (policy should be one of: abort, omit, keep) |
| 42 | .TP | 42 | .TP |
| 43 | \fB\-s\fR, \fB\-\-show\fR | 43 | \fB\-s\fR, \fB\-\-show\fR |
| 44 | list harmful metadata detectable by mat2 without | 44 | list harmful metadata detectable by mat2 without removing them |
| 45 | removing them | ||
| 46 | .TP | 45 | .TP |
| 47 | \fB\-L\fR, \fB\-\-lightweight\fR | 46 | \fB\-L\fR, \fB\-\-lightweight\fR |
| 48 | remove SOME metadata | 47 | remove SOME metadata |
| 48 | .TP | ||
| 49 | \fB\--no-sandbox\fR | ||
| 50 | disable bubblewrap's sandboxing | ||
| 51 | .TP | ||
| 52 | \fB\--inplace\fR | ||
| 53 | clean in place, without backup | ||
| 49 | 54 | ||
| 50 | .SH EXAMPLES | 55 | .SH EXAMPLES |
| 51 | To remove all the metadata from a PDF file: | 56 | To remove all the metadata from a PDF file: |
| @@ -17,7 +17,7 @@ except ValueError as e: | |||
| 17 | print(e) | 17 | print(e) |
| 18 | sys.exit(1) | 18 | sys.exit(1) |
| 19 | 19 | ||
| 20 | __version__ = '0.9.0' | 20 | __version__ = '0.10.0' |
| 21 | 21 | ||
| 22 | # Make pyflakes happy | 22 | # Make pyflakes happy |
| 23 | assert Set | 23 | assert Set |
| @@ -5,7 +5,7 @@ with open("README.md", encoding='utf-8') as fh: | |||
| 5 | 5 | ||
| 6 | setuptools.setup( | 6 | setuptools.setup( |
| 7 | name="mat2", | 7 | name="mat2", |
| 8 | version='0.9.0', | 8 | version='0.10.0', |
| 9 | author="Julien (jvoisin) Voisin", | 9 | author="Julien (jvoisin) Voisin", |
| 10 | author_email="julien.voisin+mat2@dustri.org", | 10 | author_email="julien.voisin+mat2@dustri.org", |
| 11 | description="A handy tool to trash your metadata", | 11 | description="A handy tool to trash your metadata", |
