Author: duncan
Date: Wed Jan 23 14:46:59 2008
New Revision: 10306

Log:
[ 1869928 ] cdbackup: UI hangs when ripped CD is unknown in cddb
Patch from Michel Lespinasse applied


Modified:
   branches/rel-1-7/freevo/ChangeLog
   branches/rel-1-7/freevo/src/audio/plugins/cdbackup.py
   branches/rel-1/freevo/ChangeLog
   branches/rel-1/freevo/src/audio/plugins/cdbackup.py

Modified: branches/rel-1-7/freevo/ChangeLog
==============================================================================
--- branches/rel-1-7/freevo/ChangeLog   (original)
+++ branches/rel-1-7/freevo/ChangeLog   Wed Jan 23 14:46:59 2008
@@ -37,6 +37,7 @@
  * Deleted plug-in weather, moved to contrib/plugins (F#1863476)
  * Fixed apple trailers plug-in crashing (B#1861463)
  * Fixed audio playlists when the the fxd file contains utf-8 characters 
(B#1865272)
+ * Fixed audio cdbackup not showing the alert message when there is no data 
from freedb (B#1869928)
  * Fixed manual record tv plug-in to work in December (B#1858008)
  * Fixed oneclick weather plug-in to allow non-ascii location names (B#1856597)
  * Fixed play lists not handling absolute paths (B#1872465)

Modified: branches/rel-1-7/freevo/src/audio/plugins/cdbackup.py
==============================================================================
--- branches/rel-1-7/freevo/src/audio/plugins/cdbackup.py       (original)
+++ branches/rel-1-7/freevo/src/audio/plugins/cdbackup.py       Wed Jan 23 
14:46:59 2008
@@ -515,11 +515,9 @@
             album = _( 'Unknown CD Album' ) + ' ' + current_time +  ' - ' + _( 
'RENAME' )
             genre = _( 'Other' )
 
-           # Flash a popup window indicating copying is done
+            # Flash a popup window indicating copying is done
             popup_string=_( "CD info not found!\nMust manually rename 
files\nwhen finished ripping" )
-
-            pop = AlertBox(text=popup_string)
-            time.sleep(7)
+            AlertBox(text=popup_string).show()
 
         # If valid data was returned from mmpython/CDDB
         else:

Modified: branches/rel-1/freevo/ChangeLog
==============================================================================
--- branches/rel-1/freevo/ChangeLog     (original)
+++ branches/rel-1/freevo/ChangeLog     Wed Jan 23 14:46:59 2008
@@ -42,6 +42,7 @@
  * Deleted plug-in weather, moved to contrib/plugins (F#1863476)
  * Fixed apple trailers plug-in crashing (B#1861463)
  * Fixed audio playlists when the the fxd file contains utf-8 characters 
(B#1865272)
+ * Fixed audio cdbackup not showing the alert message when there is no data 
from freedb (B#1869928)
  * Fixed manual record tv plug-in to work in December (B#1858008)
  * Fixed oneclick weather plug-in to allow non-ascii location names (B#1856597)
  * Fixed play lists not handling absolute paths (B#1872465)

Modified: branches/rel-1/freevo/src/audio/plugins/cdbackup.py
==============================================================================
--- branches/rel-1/freevo/src/audio/plugins/cdbackup.py (original)
+++ branches/rel-1/freevo/src/audio/plugins/cdbackup.py Wed Jan 23 14:46:59 2008
@@ -515,11 +515,9 @@
             album = _( 'Unknown CD Album' ) + ' ' + current_time +  ' - ' + _( 
'RENAME' )
             genre = _( 'Other' )
 
-           # Flash a popup window indicating copying is done
+            # Flash a popup window indicating copying is done
             popup_string=_( "CD info not found!\nMust manually rename 
files\nwhen finished ripping" )
-
-            pop = AlertBox(text=popup_string)
-            time.sleep(7)
+            AlertBox(text=popup_string).show()
 
         # If valid data was returned from mmpython/CDDB
         else:

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
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