support for kde apps on gentoo

git-svn-id: svn://svn.berlios.de/gpodder/trunk@298 b0d088ad-0a06-0410-aad2-9ed5178a7e87
This commit is contained in:
Thomas Perl 2007-04-02 11:46:48 +00:00
parent 73289acb60
commit e7c943238a
3 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,10 @@
Mon, 2 Apr 2007 13:42:21 +0200 <thp@perli.net>
* src/gpodder/libplayers.py: Added /usr/share/applications/kde/ to
list of directories to search for ".desktop" files so that gPodder
will also detect KDE player applications (at least on Gentoo);
thanks to Gerrit Sangel (z0idberg gmx.de) for pointing that out
* bin/gpodder: pushed version + release date
Sun, 1 Apr 2007 19:45:28 +0200 <thp@perli.net>
* src/gpodder/libtagupdate.py: Return false on error
* src/gpodder/libpodcasts.py: Don't set the album tag to "gPodder

View File

@ -32,8 +32,8 @@ or played back on the user's desktop.
# PLEASE DO NOT CHANGE FORMAT OF __version__ LINE (setup.py reads this)
__author__ = "Thomas Perl <thp@perli.net>"
__version__ = "0.9.0+svn20070330"
__date__ = "2007-03-30"
__version__ = "0.9.0+svn20070401"
__date__ = "2007-04-01"
__copyright__ = "Copyright (c) 2005-2007 %s. All rights reserved." % __author__
__licence__ = "GPL"

View File

@ -46,7 +46,7 @@ from gtk.gdk import Pixbuf
from liblogger import log
# where are the .desktop files located?
userappsdirs = [ '/usr/share/applications/', '/usr/local/share/applications/' ]
userappsdirs = [ '/usr/share/applications/', '/usr/local/share/applications/', '/usr/share/applications/kde/' ]
# the name of the section in the .desktop files
sect = 'Desktop Entry'