Author: duncan
Date: Sat May 26 06:11:25 2007
New Revision: 9601

Modified:
   branches/rel-1/freevo/ChangeLog
   branches/rel-1/freevo/freevo_config.py
   branches/rel-1/freevo/local_conf.py.example

Log:
[ 1719613 ] Ability to filer out image thumbnails
Updated the config with the IMAGE_EXCLUDE option


Modified: branches/rel-1/freevo/ChangeLog
==============================================================================
--- branches/rel-1/freevo/ChangeLog     (original)
+++ branches/rel-1/freevo/ChangeLog     Sat May 26 06:11:25 2007
@@ -20,6 +20,7 @@
  * Updated French translation (B#1721805)
  * Updated Spanish translation (B#1722301)
  * Updated audio detached player to allow user configured event (F#1636457)
+ * Updated image viewer to exclude certain types of images be a regex 
(F#1719613)
  * Updated mplayer to allow multiple crop points (F#1712397)
  * Updated mplayer to allow previous channel selection (F#1720667)
  * Updated vlc plug-in for better integration in freevo (F#1721808)

Modified: branches/rel-1/freevo/freevo_config.py
==============================================================================
--- branches/rel-1/freevo/freevo_config.py      (original)
+++ branches/rel-1/freevo/freevo_config.py      Sat May 26 06:11:25 2007
@@ -271,6 +271,7 @@
      Changed default locale from latin-1 to iso-8859-15, they are really the 
same
      Added MPLAYER_OLDTVCHANNELCHANGE to allow the PREV_CH button to swap to 
previous channel
      Added RSS_DOWNLOAD for a place to save downloaded data
+     Added IMAGE_EXCLUDE as a regular expression to exclude images such as 
thumbnails
      ''' ),
 ]
 
@@ -1051,6 +1052,10 @@
 
 IMAGE_SSHOW_SUFFIX = [ 'ssr' ]
 
+# The viewer can exclude certain types of images based on the regular 
expression list
+# eg IMAGE_EXCLUDE = [('thm','tn_')]
+
+IMAGE_EXCLUDE = [ ]
 
 #
 # Mode of the blending effect in the image viewer between two images

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 Sat May 26 06:11:25 2007
@@ -737,6 +737,11 @@
 #
 # IMAGE_SSHOW_SUFFIX = [ 'ssr' ]
 
+# The viewer can exclude certain types of images based on the regular 
expression list
+# eg IMAGE_EXCLUDE = [('thm','tn_')]
+
+# IMAGE_EXCLUDE = [ ]
+
 #
 # Mode of the blending effect in the image viewer between two images
 # Possible values are:
@@ -745,8 +750,8 @@
 # -1    random effect
 #  0    alpha blending
 #  1    wipe effect
-#
-IMAGEVIEWER_BLEND_MODE = -1
+
+# IMAGEVIEWER_BLEND_MODE = -1
 
 
 

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to