summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2011-12-15 17:44:35 +0100
committerjvoisin2011-12-15 17:44:35 +0100
commitb9fde4ea1eb34a2f1ead1e3bfa6252fb1ca82220 (patch)
tree79147897d580ed8c1d0152f2c65f71b737795905
parent52fef0b1682057f6c34ecf373bdf545e3e3c0217 (diff)
Update version number to 0.2
-rwxr-xr-xmat-cli3
-rwxr-xr-xmat-gui5
-rw-r--r--mat/mat.py2
3 files changed, 2 insertions, 8 deletions
diff --git a/mat-cli b/mat-cli
index 00c5c11..530af9a 100755
--- a/mat-cli
+++ b/mat-cli
@@ -11,8 +11,6 @@ import hachoir_core
11 11
12from mat import mat 12from mat import mat
13 13
14__version__ = '0.1'
15
16 14
17def parse(): 15def parse():
18 ''' 16 '''
@@ -54,7 +52,6 @@ def display_version(*_):
54 Display the program's version, and exit 52 Display the program's version, and exit
55 ''' 53 '''
56 print('Metadata Anonymisation Toolkit version %s') % mat.__version__ 54 print('Metadata Anonymisation Toolkit version %s') % mat.__version__
57 print('CLI version %s') % __version__
58 print('Hachoir version %s') % hachoir_core.__version__ 55 print('Hachoir version %s') % hachoir_core.__version__
59 sys.exit(0) 56 sys.exit(0)
60 57
diff --git a/mat-gui b/mat-gui
index 3110d23..576c90e 100755
--- a/mat-gui
+++ b/mat-gui
@@ -20,9 +20,6 @@ import urllib2
20from mat import mat 20from mat import mat
21from mat import strippers 21from mat import strippers
22 22
23__version__ = '0.1'
24__author__ = 'jvoisin'
25
26 23
27logging.basicConfig(level=mat.LOGGING_LEVEL) 24logging.basicConfig(level=mat.LOGGING_LEVEL)
28 25
@@ -345,7 +342,7 @@ data loss, but clean more efficiently'))
345 About popup 342 About popup
346 ''' 343 '''
347 w = gtk.AboutDialog() 344 w = gtk.AboutDialog()
348 w.set_version(__version__) 345 w.set_version(mat.__version__)
349 w.set_copyright('GNU Public License v2') 346 w.set_copyright('GNU Public License v2')
350 w.set_comments(_('This software was coded during the GSoC 2011')) 347 w.set_comments(_('This software was coded during the GSoC 2011'))
351 w.set_website('https://mat.boum.org') 348 w.set_website('https://mat.boum.org')
diff --git a/mat/mat.py b/mat/mat.py
index dfd4c12..343d9d5 100644
--- a/mat/mat.py
+++ b/mat/mat.py
@@ -15,7 +15,7 @@ import hachoir_parser
15 15
16import strippers 16import strippers
17 17
18__version__ = '0.1' 18__version__ = '0.2'
19__author__ = 'jvoisin' 19__author__ = 'jvoisin'
20 20
21#Silence 21#Silence