summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2012-12-08 00:30:26 +0100
committerjvoisin2012-12-08 00:32:32 +0100
commit67d5c1fa6b9ab6e1e7328ee57b15d8e46526d72a (patch)
tree166992279c897de10c9f2eb4f6221c05ff1684ca
parent105e16a5faa70760a64352540aee9f20c016a102 (diff)
Fix the logo's wrong path (Bug#693967)
-rwxr-xr-xmat-gui2
-rw-r--r--mat.desktop2
-rw-r--r--mat.png (renamed from logo.png)bin31340 -> 31340 bytes
-rwxr-xr-xsetup.py3
4 files changed, 4 insertions, 3 deletions
diff --git a/mat-gui b/mat-gui
index 18c7467..7c43957 100755
--- a/mat-gui
+++ b/mat-gui
@@ -52,7 +52,7 @@ class GUI:
52 self.window.set_title('Metadata Anonymisation Toolkit') 52 self.window.set_title('Metadata Anonymisation Toolkit')
53 self.window.connect('destroy', gtk.main_quit) 53 self.window.connect('destroy', gtk.main_quit)
54 self.window.set_default_size(800, 600) 54 self.window.set_default_size(800, 600)
55 self.logo = mat.get_sharedir('logo.png') 55 self.logo = mat.get_sharedir('mat.png')
56 icon = gtk.gdk.pixbuf_new_from_file_at_size(self.logo, 50, 50) 56 icon = gtk.gdk.pixbuf_new_from_file_at_size(self.logo, 50, 50)
57 self.window.set_icon(icon) 57 self.window.set_icon(icon)
58 58
diff --git a/mat.desktop b/mat.desktop
index 1a5dd16..0d9c3d2 100644
--- a/mat.desktop
+++ b/mat.desktop
@@ -6,4 +6,4 @@ Type=Application
6Exec=mat-gui 6Exec=mat-gui
7Terminal=false 7Terminal=false
8Categories=Utility;Security;System; 8Categories=Utility;Security;System;
9Icon=logo 9Icon=mat
diff --git a/logo.png b/mat.png
index 4198c42..4198c42 100644
--- a/logo.png
+++ b/mat.png
Binary files differ
diff --git a/setup.py b/setup.py
index 22a6718..4e0f2a3 100755
--- a/setup.py
+++ b/setup.py
@@ -27,7 +27,8 @@ setup(
27 scripts = ['mat', 'mat-gui'], 27 scripts = ['mat', 'mat-gui'],
28 data_files = [ 28 data_files = [
29 ( 'share/applications', ['mat.desktop'] ), 29 ( 'share/applications', ['mat.desktop'] ),
30 ( 'share/mat', ['FORMATS', 'logo.png'] ), 30 ( 'share/mat', ['FORMATS'] ),
31 ( 'share/pixmaps', ['mat.png'] ),
31 ( 'share/doc/mat', ['README', 'TODO'] ), 32 ( 'share/doc/mat', ['README', 'TODO'] ),
32 ], 33 ],
33 cmdclass = { 34 cmdclass = {