Changeset 221
- Timestamp:
- 05/26/06 20:31:19 (2 years ago)
- Files:
-
- trunk/Makefile.in (modified) (5 diffs)
- trunk/etc/mesk.desktop.in (modified) (2 diffs)
- trunk/po/es.po (modified) (1 diff)
- trunk/po/mesk.pot (modified) (1 diff)
- trunk/src/album_cover_control.py (modified) (1 diff)
- trunk/src/mesk.png (added)
- trunk/src/mesk.svg (moved) (moved from trunk/src/audio-x-generic.svg)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Makefile.in
r213 r221 74 74 75 75 install -m 644 ./etc/mesk.desktop ${datadir}/applications 76 install -m 644 ./src/mesk.png ${datadir}/pixmaps 76 77 77 78 ${MAKE} -C po DESTDIR=${DESTDIR} install … … 81 82 @#cat doc/mesk.1 | gzip - > doc/mesk.1.gz 82 83 @#install -m 644 doc/mesk.1.gz ${mandir}/man1 84 85 # Update menus 86 if test -x `which update-desktop-database`; then \ 87 update-desktop-database; \ 88 fi 83 89 test: 84 90 … … 89 95 -rm -rf ${libdir} 90 96 -rm -rf ${docdir} 97 -rm ${datadir}/applications/mesk.desktop 98 -rm ${datadir}/pixmaps/mesk.png 91 99 92 100 clean: … … 110 118 111 119 maintainer-clean: distclean 120 -rm README 112 121 -rm -f configure 113 122 -rm doc/mesk.1 … … 116 125 ${MAKE} -C po maintainer-clean 117 126 118 dist: distclean 127 WIKI_README=http://trac.nicfit.net/wiki/Installation?format=txt 128 README: 129 printf "Mesk version @PACKAGE_VERSION@ README\n\n" > $@ 130 wget -O - "${WIKI_README}" >> $@ 131 printf "\n" >> $@ 132 133 dist: README distclean 119 134 mkdir ${DIST_NAME} 120 135 cp ChangeLog AUTHORS COPYING README NEWS THANKS ${DIST_NAME} trunk/etc/mesk.desktop.in
r165 r221 1 1 [Desktop Entry] 2 # The Desktop Entry Specification version (not the application) 2 Name=Mesk 3 _GenericName=Music Player 4 # XXX: Update when new features are supported 5 _Comment=A GTK+ music player 6 # TODO: Implement command line args for loading tracks and playlists 7 # XXX: Update when new audio formats are supported 8 MimeType=audio/x-mp3;audio/x-mpeg;audio/mpeg;audio/x-mpegurl; 9 Categories=Application;AudioVideo; 10 # TODO: Need an icon 11 Icon=mesk.png 12 # TODO: http://standards.freedesktop.org/startup-notification-spec/startup-notification-0.1.txt 13 #StartupNotify=true 14 #StartupWMClass=Mesk 15 # Desktop ini version, not the app version 3 16 Version=1.0 4 17 Type=Application … … 7 20 TryExec=mesk 8 21 Exec=mesk 9 Name=Mesk10 _GenericName=Music Player11 # XXX: Update when new features are supported12 _Comment=A GTK+ music player13 # TODO: Implement command line args for loading tracks and playlists14 # XXX: Update when new audio formats are supported15 #MimeType=audio/x-mp3;audio/x-mpeg;audio/mpeg;audio/x-mpegurl;16 # XXX: Update with DiscBurning is supported17 Categories=GTK;Music;18 # TODO: Need an icon19 #Icon=gajim.png20 # TODO: http://standards.freedesktop.org/startup-notification-spec/startup-notification-0.1.txt21 #StartupNotify=true22 #StartupWMClass=Mesktrunk/po/es.po
r219 r221 8 8 "Project-Id-Version: 0.1.1\n" 9 9 "Report-Msgid-Bugs-To: \n" 10 "POT-Creation-Date: 2006-05-2 5 19:47-0600\n"10 "POT-Creation-Date: 2006-05-26 20:29-0600\n" 11 11 "PO-Revision-Date: 2006-04-15 17:38-0600\n" 12 12 "Last-Translator: Travis Shirk <travis@pobox.com>\n" trunk/po/mesk.pot
r219 r221 9 9 "Project-Id-Version: PACKAGE VERSION\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2006-05-2 5 19:47-0600\n"11 "POT-Creation-Date: 2006-05-26 20:29-0600\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" trunk/src/album_cover_control.py
r161 r221 55 55 MAX_LARGE_DISPLAY_WIDTH = 600 56 56 MAX_LARGE_DISPLAY_HEIGHT = 600 57 DEFAULT_COVER = './ audio-x-generic.svg'57 DEFAULT_COVER = './mesk.svg' 58 58 59 59 def __init__(self, parent_xml, audio_control):
