Changeset 221

Show
Ignore:
Timestamp:
05/26/06 20:31:19 (2 years ago)
Author:
nicfit
Message:

Auto-generate README from wiki and mesk.desktop fixes including menu icon

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Makefile.in

    r213 r221  
    7474 
    7575        install -m 644 ./etc/mesk.desktop ${datadir}/applications 
     76        install -m 644 ./src/mesk.png ${datadir}/pixmaps 
    7677 
    7778        ${MAKE} -C po DESTDIR=${DESTDIR} install 
     
    8182        @#cat doc/mesk.1 | gzip - > doc/mesk.1.gz 
    8283        @#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 
    8389test: 
    8490 
     
    8995        -rm -rf ${libdir}  
    9096        -rm -rf ${docdir} 
     97        -rm ${datadir}/applications/mesk.desktop 
     98        -rm ${datadir}/pixmaps/mesk.png 
    9199 
    92100clean: 
     
    110118 
    111119maintainer-clean: distclean 
     120        -rm README 
    112121        -rm -f configure 
    113122        -rm doc/mesk.1 
     
    116125        ${MAKE} -C po maintainer-clean 
    117126 
    118 dist: distclean 
     127WIKI_README=http://trac.nicfit.net/wiki/Installation?format=txt 
     128README: 
     129        printf "Mesk version @PACKAGE_VERSION@ README\n\n" > $@  
     130        wget -O - "${WIKI_README}" >> $@ 
     131        printf "\n" >> $@ 
     132 
     133dist: README distclean 
    119134        mkdir ${DIST_NAME} 
    120135        cp ChangeLog AUTHORS COPYING README NEWS THANKS ${DIST_NAME} 
  • trunk/etc/mesk.desktop.in

    r165 r221  
    11[Desktop Entry] 
    2 # The Desktop Entry Specification version (not the application) 
     2Name=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 
     8MimeType=audio/x-mp3;audio/x-mpeg;audio/mpeg;audio/x-mpegurl; 
     9Categories=Application;AudioVideo; 
     10# TODO: Need an icon 
     11Icon=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 
    316Version=1.0 
    417Type=Application 
     
    720TryExec=mesk 
    821Exec=mesk 
    9 Name=Mesk 
    10 _GenericName=Music Player 
    11 # XXX: Update when new features are supported 
    12 _Comment=A GTK+ music player 
    13 # TODO: Implement command line args for loading tracks and playlists 
    14 # XXX: Update when new audio formats are supported 
    15 #MimeType=audio/x-mp3;audio/x-mpeg;audio/mpeg;audio/x-mpegurl; 
    16 # XXX: Update with DiscBurning is supported 
    17 Categories=GTK;Music; 
    18 # TODO: Need an icon 
    19 #Icon=gajim.png 
    20 # TODO: http://standards.freedesktop.org/startup-notification-spec/startup-notification-0.1.txt 
    21 #StartupNotify=true 
    22 #StartupWMClass=Mesk 
  • trunk/po/es.po

    r219 r221  
    88"Project-Id-Version: 0.1.1\n" 
    99"Report-Msgid-Bugs-To: \n" 
    10 "POT-Creation-Date: 2006-05-25 19:47-0600\n" 
     10"POT-Creation-Date: 2006-05-26 20:29-0600\n" 
    1111"PO-Revision-Date: 2006-04-15 17:38-0600\n" 
    1212"Last-Translator: Travis Shirk <travis@pobox.com>\n" 
  • trunk/po/mesk.pot

    r219 r221  
    99"Project-Id-Version: PACKAGE VERSION\n" 
    1010"Report-Msgid-Bugs-To: \n" 
    11 "POT-Creation-Date: 2006-05-25 19:47-0600\n" 
     11"POT-Creation-Date: 2006-05-26 20:29-0600\n" 
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 
  • trunk/src/album_cover_control.py

    r161 r221  
    5555    MAX_LARGE_DISPLAY_WIDTH = 600 
    5656    MAX_LARGE_DISPLAY_HEIGHT = 600 
    57     DEFAULT_COVER = './audio-x-generic.svg' 
     57    DEFAULT_COVER = './mesk.svg' 
    5858 
    5959    def __init__(self, parent_xml, audio_control):