summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md9
-rw-r--r--INSTALL.md3
-rw-r--r--doc/mat2.12
-rwxr-xr-xmat22
-rw-r--r--setup.py2
5 files changed, 14 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6d7b8eb..799ae0b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,12 @@
1# 0.7.0 - 2019-02-17
2
3- Add support for wmv files
4- Add support for gif files
5- Add support for html files
6- Sandbox external processes via bubblewrap
7- Simplify archive-based formats processing
8- The Nautilus extension now plays nicer with other extensions
9
1# 0.6.0 - 2018-11-10 10# 0.6.0 - 2018-11-10
2 11
3- Add lightweight cleaning for jpeg 12- Add lightweight cleaning for jpeg
diff --git a/INSTALL.md b/INSTALL.md
index 53264c2..0fe0250 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -45,7 +45,8 @@ the Nautilus extension yet](https://bugs.debian.org/910491).
45For Debian 9 *stretch*, there is a way to install it *manually*: 45For Debian 9 *stretch*, there is a way to install it *manually*:
46 46
47``` 47```
48# apt install python3-mutagen python3-gi-cairo gir1.2-gdkpixbuf-2.0 libimage-exiftool-perl gir1.2-glib-2.0 gir1.2-poppler-0.18 48# apt install python3-mutagen python3-gi-cairo gir1.2-gdkpixbuf-2.0 libimage-exiftool-perl gir1.2-glib-2.0 gir1.2-poppler-0.18 ffmpeg
49# apt install bubblewrap # if you want sandboxing
49$ git clone https://0xacab.org/jvoisin/mat2.git 50$ git clone https://0xacab.org/jvoisin/mat2.git
50$ cd mat2 51$ cd mat2
51$ ./mat2 52$ ./mat2
diff --git a/doc/mat2.1 b/doc/mat2.1
index 2239766..140533a 100644
--- a/doc/mat2.1
+++ b/doc/mat2.1
@@ -1,4 +1,4 @@
1.TH MAT2 "1" "November 2018" "MAT2 0.6.0" "User Commands" 1.TH MAT2 "1" "February 2019" "MAT2 0.7.0" "User Commands"
2 2
3.SH NAME 3.SH NAME
4mat2 \- the metadata anonymisation toolkit 2 4mat2 \- the metadata anonymisation toolkit 2
diff --git a/mat2 b/mat2
index 3a08eb8..bd77ac3 100755
--- a/mat2
+++ b/mat2
@@ -15,7 +15,7 @@ except ValueError as e:
15 print(e) 15 print(e)
16 sys.exit(1) 16 sys.exit(1)
17 17
18__version__ = '0.6.0' 18__version__ = '0.7.0'
19 19
20# Make pyflakes happy 20# Make pyflakes happy
21assert Tuple 21assert Tuple
diff --git a/setup.py b/setup.py
index 499ac84..0a29d70 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
5 5
6setuptools.setup( 6setuptools.setup(
7 name="mat2", 7 name="mat2",
8 version='0.6.0', 8 version='0.7.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",