summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md18
-rw-r--r--doc/mat2.111
-rwxr-xr-xmat22
-rw-r--r--setup.py2
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
diff --git a/doc/mat2.1 b/doc/mat2.1
index c03842d..1458acf 100644
--- a/doc/mat2.1
+++ b/doc/mat2.1
@@ -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
4mat2 \- the metadata anonymisation toolkit 2 4mat2 \- the metadata anonymisation toolkit 2
@@ -41,11 +41,16 @@ show more verbose status information
41how to handle unknown members of archive-style files (policy should be one of: abort, omit, keep) 41how 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
44list harmful metadata detectable by mat2 without 44list harmful metadata detectable by mat2 without removing them
45removing them
46.TP 45.TP
47\fB\-L\fR, \fB\-\-lightweight\fR 46\fB\-L\fR, \fB\-\-lightweight\fR
48remove SOME metadata 47remove SOME metadata
48.TP
49\fB\--no-sandbox\fR
50disable bubblewrap's sandboxing
51.TP
52\fB\--inplace\fR
53clean in place, without backup
49 54
50.SH EXAMPLES 55.SH EXAMPLES
51To remove all the metadata from a PDF file: 56To remove all the metadata from a PDF file:
diff --git a/mat2 b/mat2
index d6b2255..31365ce 100755
--- a/mat2
+++ b/mat2
@@ -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
23assert Set 23assert Set
diff --git a/setup.py b/setup.py
index 663b9d6..17eccae 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ with open("README.md", encoding='utf-8') as fh:
5 5
6setuptools.setup( 6setuptools.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",