From 02ce954fc3e84712a4c4e886079366081d0e19e1 Mon Sep 17 00:00:00 2001 From: Sebastian Heinlein Date: Tue, 18 Apr 2006 22:38:08 +0200 Subject: * use the tango system-software-update icon for update-manager * use the old update-manager icon for software-properties only * do not specify the file type of the icon in the desktop file * install the icons to the hicolor theme * remove the deprecated update-manager-logo - it will be replaced by the svg version of update-manager --- data/icons/16x16/apps/update-manager.png | Bin 0 -> 964 bytes data/icons/22x22/apps/update-manager.png | Bin 0 -> 1464 bytes data/icons/24x24/apps/update-manager.png | Bin 0 -> 1475 bytes data/icons/48x48/apps/software-properties.png | Bin 0 -> 4009 bytes data/icons/scalable/apps/update-manager.svg | 1519 +++++++++++++++++++++++++ data/software-properties.desktop.in | 2 +- data/update-manager-logo.png | Bin 8497 -> 0 bytes data/update-manager.desktop.in | 2 +- data/update-manager.png | Bin 4009 -> 0 bytes setup.py | 8 +- 10 files changed, 1524 insertions(+), 7 deletions(-) create mode 100644 data/icons/16x16/apps/update-manager.png create mode 100644 data/icons/22x22/apps/update-manager.png create mode 100644 data/icons/24x24/apps/update-manager.png create mode 100644 data/icons/48x48/apps/software-properties.png create mode 100644 data/icons/scalable/apps/update-manager.svg delete mode 100644 data/update-manager-logo.png delete mode 100644 data/update-manager.png diff --git a/data/icons/16x16/apps/update-manager.png b/data/icons/16x16/apps/update-manager.png new file mode 100644 index 00000000..58f19c68 Binary files /dev/null and b/data/icons/16x16/apps/update-manager.png differ diff --git a/data/icons/22x22/apps/update-manager.png b/data/icons/22x22/apps/update-manager.png new file mode 100644 index 00000000..5f7a362b Binary files /dev/null and b/data/icons/22x22/apps/update-manager.png differ diff --git a/data/icons/24x24/apps/update-manager.png b/data/icons/24x24/apps/update-manager.png new file mode 100644 index 00000000..b49ea26f Binary files /dev/null and b/data/icons/24x24/apps/update-manager.png differ diff --git a/data/icons/48x48/apps/software-properties.png b/data/icons/48x48/apps/software-properties.png new file mode 100644 index 00000000..739be699 Binary files /dev/null and b/data/icons/48x48/apps/software-properties.png differ diff --git a/data/icons/scalable/apps/update-manager.svg b/data/icons/scalable/apps/update-manager.svg new file mode 100644 index 00000000..834464ab --- /dev/null +++ b/data/icons/scalable/apps/update-manager.svg @@ -0,0 +1,1519 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Software Update + + + Jakub Steiner + + + + + + + + + http://jimmac.musichall.cz + + + network update + software + synchronize + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/software-properties.desktop.in b/data/software-properties.desktop.in index 851ae047..c125b4f7 100644 --- a/data/software-properties.desktop.in +++ b/data/software-properties.desktop.in @@ -3,7 +3,7 @@ _Name=Software Properties _GenericName=Software Properties _Comment=Configure software channels and internet updates Exec=gksu /usr/bin/software-properties -Icon=update-manager +Icon=software-properties Terminal=false X-MultipleArgs=false Type=Application diff --git a/data/update-manager-logo.png b/data/update-manager-logo.png deleted file mode 100644 index 77c2c51c..00000000 Binary files a/data/update-manager-logo.png and /dev/null differ diff --git a/data/update-manager.desktop.in b/data/update-manager.desktop.in index 0116c78b..84e1e608 100644 --- a/data/update-manager.desktop.in +++ b/data/update-manager.desktop.in @@ -3,7 +3,7 @@ _Name=Update Manager _GenericName=Update Manager _Comment=Show and install available updates Exec=gksu /usr/bin/update-manager -Icon=update-manager.png +Icon=update-manager Terminal=false Type=Application Encoding=UTF-8 diff --git a/data/update-manager.png b/data/update-manager.png deleted file mode 100644 index 739be699..00000000 Binary files a/data/update-manager.png and /dev/null differ diff --git a/setup.py b/setup.py index 16cb524c..8d8ccf9f 100755 --- a/setup.py +++ b/setup.py @@ -47,9 +47,7 @@ setup(name='update-manager', ], data_files=[ ('share/update-manager/glade', - glob.glob("data/*.glade")+ - ["data/update-manager-logo.png", - "data/update-manager.png"] + glob.glob("data/*.glade") ), ('share/update-manager/channels', glob.glob("channels/*") @@ -61,8 +59,8 @@ setup(name='update-manager', ('share/gconf/schemas', glob.glob("build/*.schemas") ), - ('share/pixmaps', - ["data/update-manager.png"] + ('share/icons/hicolor', + ["data/icons/*"] ), ] + I18NFILES + HELPFILES, ) -- cgit v1.2.3