Author: duncan
Date: Sun Nov 18 16:16:16 2007
New Revision: 10141

Log:
[ 1834140 ] crash with album_tree plugin
Suggested rename by Matthias Reichl applied


Added:
   branches/rel-1-7/freevo/src/audio/plugins/playlists.py
      - copied unchanged from r10130, 
/branches/rel-1-7/freevo/src/audio/plugins/playlist.py
   branches/rel-1/freevo/src/audio/plugins/playlists.py
      - copied unchanged from r10140, 
/branches/rel-1/freevo/src/audio/plugins/playlist.py
Removed:
   branches/rel-1-7/freevo/src/audio/plugins/playlist.py
   branches/rel-1/freevo/src/audio/plugins/playlist.py
Modified:
   branches/rel-1-7/freevo/ChangeLog
   branches/rel-1-7/freevo/freevo_config.py
   branches/rel-1-7/freevo/local_conf.py.example
   branches/rel-1-7/freevo/src/audio/plugins/album_tree.py
   branches/rel-1/freevo/ChangeLog
   branches/rel-1/freevo/freevo_config.py
   branches/rel-1/freevo/local_conf.py.example
   branches/rel-1/freevo/src/audio/plugins/album_tree.py

Modified: branches/rel-1-7/freevo/ChangeLog
==============================================================================
--- branches/rel-1-7/freevo/ChangeLog   (original)
+++ branches/rel-1-7/freevo/ChangeLog   Sun Nov 18 16:16:16 2007
@@ -18,6 +18,7 @@
 
  * New Alsa mixer 2 plug-in (F#1832948)
  * Updated French translation (F#1832751)
+ * Renamed plug-in audio.playlist to audio.playlists (B#1834140)
  * Fixed itv plug-in, having "No player for this item found" 
(B#1833018,B#1833829)
  * Fixed helper plugins, not allowing tuples as arguments (B#1832837)
 

Modified: branches/rel-1-7/freevo/freevo_config.py
==============================================================================
--- branches/rel-1-7/freevo/freevo_config.py    (original)
+++ branches/rel-1-7/freevo/freevo_config.py    Sun Nov 18 16:16:16 2007
@@ -108,7 +108,7 @@
 # of the config file doesn't match, Freevo won't start. If the minor version
 # is different, there will be only a warning
 
-LOCAL_CONF_VERSION = 5.21
+LOCAL_CONF_VERSION = 5.22
 
 # Description of changes in each new version
 FREEVO_CONF_CHANGES = [
@@ -340,6 +340,9 @@
      Added TV_RECORD_YEAR_FORMAT to allow the from of the year in TV fxd files 
to be specified
      Moved plug-in "upsoon" to "tv.upsoon"
      '''),
+    (5.22,
+     ''' Renamed audio plug-in audio.playlist to audio.playlists
+     '''),
 ]
 
 

Modified: branches/rel-1-7/freevo/local_conf.py.example
==============================================================================
--- branches/rel-1-7/freevo/local_conf.py.example       (original)
+++ branches/rel-1-7/freevo/local_conf.py.example       Sun Nov 18 16:16:16 2007
@@ -38,7 +38,7 @@
 #
 # -----------------------------------------------------------------------
 
-CONFIG_VERSION = 5.21
+CONFIG_VERSION = 5.22
 
 # ======================================================================
 # General freevo settings:

Modified: branches/rel-1-7/freevo/src/audio/plugins/album_tree.py
==============================================================================
--- branches/rel-1-7/freevo/src/audio/plugins/album_tree.py     (original)
+++ branches/rel-1-7/freevo/src/audio/plugins/album_tree.py     Sun Nov 18 
16:16:16 2007
@@ -1,6 +1,6 @@
 # -*- coding: iso-8859-1 -*-
 # -----------------------------------------------------------------------
-# album_tree.py 0.5.1 plugin for the audio player
+# plugin for the audio player
 # -----------------------------------------------------------------------
 # $Id$
 # Author:      Martijn Voncken(2005)
@@ -38,7 +38,7 @@
 from util.dbutil import *
 db = MetaDatabase()
 
-import freevo.playlist as playlist
+import playlist
 from audio import audioitem
 from gui import ProgressBox
 

Modified: branches/rel-1/freevo/ChangeLog
==============================================================================
--- branches/rel-1/freevo/ChangeLog     (original)
+++ branches/rel-1/freevo/ChangeLog     Sun Nov 18 16:16:16 2007
@@ -23,6 +23,7 @@
 
  * New Alsa mixer 2 plug-in (F#1832948)
  * Updated French translation (F#1832751)
+ * Renamed plug-in audio.playlist to audio.playlists (B#1834140)
  * Fixed itv plug-in, having "No player for this item found" 
(B#1833018,B#1833829)
  * Fixed helper plugins, not allowing tuples as arguments (B#1832837)
 

Modified: branches/rel-1/freevo/freevo_config.py
==============================================================================
--- branches/rel-1/freevo/freevo_config.py      (original)
+++ branches/rel-1/freevo/freevo_config.py      Sun Nov 18 16:16:16 2007
@@ -108,7 +108,7 @@
 # of the config file doesn't match, Freevo won't start. If the minor version
 # is different, there will be only a warning
 
-LOCAL_CONF_VERSION = 5.21
+LOCAL_CONF_VERSION = 5.22
 
 # Description of changes in each new version
 FREEVO_CONF_CHANGES = [
@@ -339,9 +339,10 @@
         XINE_TV_PROGRESSIVE_SEEK_INCREMENT
      Added TV_RECORD_YEAR_FORMAT to allow the from of the year in TV fxd files 
to be specified
      Moved plug-in "upsoon" to "tv.upsoon"
-     ''' ),
+     '''),
     (5.22,
      '''Added RECORDSERVER_SECRET and RECORDSERVER_PORT2=18002 for kaa.rpc
+     Renamed audio plug-in audio.playlist to audio.playlists
      '''),
 ]
 

Modified: branches/rel-1/freevo/local_conf.py.example
==============================================================================
--- branches/rel-1/freevo/local_conf.py.example (original)
+++ branches/rel-1/freevo/local_conf.py.example Sun Nov 18 16:16:16 2007
@@ -38,7 +38,7 @@
 #
 # -----------------------------------------------------------------------
 
-CONFIG_VERSION = 5.21
+CONFIG_VERSION = 5.22
 
 # ======================================================================
 # General freevo settings:

Modified: branches/rel-1/freevo/src/audio/plugins/album_tree.py
==============================================================================
--- branches/rel-1/freevo/src/audio/plugins/album_tree.py       (original)
+++ branches/rel-1/freevo/src/audio/plugins/album_tree.py       Sun Nov 18 
16:16:16 2007
@@ -38,7 +38,7 @@
 from util.dbutil import *
 db = MetaDatabase()
 
-import freevo.playlist as playlist
+import playlist
 from audio import audioitem
 from gui import ProgressBox
 

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to