Bump the changelog
This commit is contained in:
parent
e4114af3b5
commit
da182dc2f8
18
CHANGELOG.md
18
CHANGELOG.md
@ -1,3 +1,21 @@
|
|||||||
|
# 0.10.0 - 2019-11-30
|
||||||
|
|
||||||
|
- Make mat2 work on Python3.8
|
||||||
|
- Minor improvement of ppt handling
|
||||||
|
- Minor improvement of odt handling
|
||||||
|
- Add an integration KDE's file manager: Dolphin
|
||||||
|
- mat2 now copies file permissions on the cleaned files
|
||||||
|
- Add a flag to disable sandboxing
|
||||||
|
- Tighten a bit the sandboxing
|
||||||
|
- Improve handling of MSOffice documents
|
||||||
|
- Add support for inplace cleaning
|
||||||
|
- Better handling of mutually-exclusive arguments in the command line
|
||||||
|
- Add support for svg
|
||||||
|
- Add support for ppm
|
||||||
|
- Cleaned zip files are compressed by default
|
||||||
|
- Minor performances improvement when dealing with images/video files
|
||||||
|
- Better handling of optional dependencies
|
||||||
|
|
||||||
# 0.9.0 - 2019-05-10
|
# 0.9.0 - 2019-05-10
|
||||||
|
|
||||||
- Add tar/tar.gz/tar.bz2/tar.zx archives support
|
- Add tar/tar.gz/tar.bz2/tar.zx archives support
|
||||||
|
11
doc/mat2.1
11
doc/mat2.1
@ -1,4 +1,4 @@
|
|||||||
.TH mat2 "1" "May 2019" "mat2 0.9.0" "User Commands"
|
.TH mat2 "1" "November 2019" "mat2 0.10.0" "User Commands"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mat2 \- the metadata anonymisation toolkit 2
|
mat2 \- the metadata anonymisation toolkit 2
|
||||||
@ -41,11 +41,16 @@ show more verbose status information
|
|||||||
how to handle unknown members of archive-style files (policy should be one of: abort, omit, keep)
|
how to handle unknown members of archive-style files (policy should be one of: abort, omit, keep)
|
||||||
.TP
|
.TP
|
||||||
\fB\-s\fR, \fB\-\-show\fR
|
\fB\-s\fR, \fB\-\-show\fR
|
||||||
list harmful metadata detectable by mat2 without
|
list harmful metadata detectable by mat2 without removing them
|
||||||
removing them
|
|
||||||
.TP
|
.TP
|
||||||
\fB\-L\fR, \fB\-\-lightweight\fR
|
\fB\-L\fR, \fB\-\-lightweight\fR
|
||||||
remove SOME metadata
|
remove SOME metadata
|
||||||
|
.TP
|
||||||
|
\fB\--no-sandbox\fR
|
||||||
|
disable bubblewrap's sandboxing
|
||||||
|
.TP
|
||||||
|
\fB\--inplace\fR
|
||||||
|
clean in place, without backup
|
||||||
|
|
||||||
.SH EXAMPLES
|
.SH EXAMPLES
|
||||||
To remove all the metadata from a PDF file:
|
To remove all the metadata from a PDF file:
|
||||||
|
2
mat2
2
mat2
@ -17,7 +17,7 @@ except ValueError as e:
|
|||||||
print(e)
|
print(e)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
__version__ = '0.9.0'
|
__version__ = '0.10.0'
|
||||||
|
|
||||||
# Make pyflakes happy
|
# Make pyflakes happy
|
||||||
assert Set
|
assert Set
|
||||||
|
2
setup.py
2
setup.py
@ -5,7 +5,7 @@ with open("README.md", encoding='utf-8') as fh:
|
|||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="mat2",
|
name="mat2",
|
||||||
version='0.9.0',
|
version='0.10.0',
|
||||||
author="Julien (jvoisin) Voisin",
|
author="Julien (jvoisin) Voisin",
|
||||||
author_email="julien.voisin+mat2@dustri.org",
|
author_email="julien.voisin+mat2@dustri.org",
|
||||||
description="A handy tool to trash your metadata",
|
description="A handy tool to trash your metadata",
|
||||||
|
Loading…
Reference in New Issue
Block a user