SVN commit 443468 by vriezen: Update for 0.9.0b Don't install application/x-mplayer2.desktop with debian, conflicts with kaffeine 0.6 Make sure the callback process is up and running before calling play on them, fixes manual navigating in playlist when not already playing for Xine/gst
M +17 -0 ChangeLog M +1 -1 configure.in.in M +6 -0 debian/changelog M +0 -1 debian/kmplayer-lib.install M +1 -1 kmplayer.lsm M +2 -0 src/kmplayerpartbase.cpp --- trunk/extragear/multimedia/kmplayer/ChangeLog #443467:443468 @@ -1,3 +1,20 @@ +Changes since version 0.9.0b +- Added minimal mode option that hides playlist, status- and menubar and + autohides the controlpanel +- Moved playlist option from popupmenu to controlpanel and a configure option + whether to show this button +Changes since version 0.9.0a +- Removed decoration (+ and - for tree) from root item in playlist, saving + 16px horizontal. Also set icon for this item to an url. +- Removed extra text/html mimetype check for playlist detection. Seems some + sites use this mimetype for ASX too. +- Fixed random navigating in ASX playlists. +- Don't show a folder icon when playlist item has no childeren and isn't a + multi-media link either. +- Make playlist menu/toolbar item a toggle for show and hide. +- Combine console/video toolbar buttons and menu items as one toggle and get + rid of 'View' submenu in popup menu. Fill gap on toolbar with zoom100% +- Clear history didn't clear 'Recent files' permanently. Changes since version 0.9.0 - Fixed last minute change that broke almost all Podcast RSS support Changes since version 0.9.0-rc1 --- trunk/extragear/multimedia/kmplayer/configure.in.in #443467:443468 @@ -1,4 +1,4 @@ -#AM_INIT_AUTOMAKE(kmplayer,0.9.0) +#AM_INIT_AUTOMAKE(kmplayer,0.9.0b) #KDE_ENABLE_HIDDEN_VISIBILITY --- trunk/extragear/multimedia/kmplayer/debian/changelog #443467:443468 @@ -1,3 +1,9 @@ +kmplayer (0.9.0.2-1) unstable; urgency=low + + * 0.9.0b release + + -- Koos Vriezen <[EMAIL PROTECTED]> Sat, 06 Aug 2005 12:08:47 +0200 + kmplayer (0.9.0.1-1) unstable; urgency=low * 0.9.0a release --- trunk/extragear/multimedia/kmplayer/debian/kmplayer-lib.install #443467:443468 @@ -6,7 +6,6 @@ debian/tmp/usr/share/apps/kmplayer/bookmarks.xml debian/tmp/usr/share/apps/kmplayer/noise.gif debian/tmp/usr/share/mimelnk/application/x-kmplayer.desktop -debian/tmp/usr/share/mimelnk/application/x-mplayer2.desktop debian/tmp/usr/share/mimelnk/video/x-ms-wmp.desktop debian/tmp/usr/share/icons/hicolor/16x16/apps/kmplayer.png debian/tmp/usr/share/icons/hicolor/22x22/apps/kmplayer.png --- trunk/extragear/multimedia/kmplayer/kmplayer.lsm #443467:443468 @@ -1,6 +1,6 @@ Begin3 Title: Kmplayer -Version: 0.9.0a +Version: 0.9.0b Entered-date: Description: Keywords: --- trunk/extragear/multimedia/kmplayer/src/kmplayerpartbase.cpp #443467:443468 @@ -814,6 +814,8 @@ emit endOfPlayItems (); } else if (m_current->state == Element::state_deferred) { m_current->undefer (); + } else if (m_player->process ()->state () == Process::NotRunning) { + m_player->process ()->ready (static_cast <View *> (m_player->view ())->viewer ()); } else if (m_player->process ()) { m_player->process ()->play (this, m_current->mrl ()->realMrl ()); } -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]