Author: duncan Date: Thu Jan 3 16:45:46 2008 New Revision: 10260 Log: Changed a few of the boolean settings to use True/False this should be done for all of them
Modified: branches/rel-1-7/freevo/freevo_config.py branches/rel-1-7/freevo/local_conf.py.example branches/rel-1/freevo/freevo_config.py branches/rel-1/freevo/local_conf.py.example 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 Thu Jan 3 16:45:46 2008 @@ -636,13 +636,13 @@ # # Use arrow keys for back and select (alternate way of navigating) # -MENU_ARROW_NAVIGATION = 0 +MENU_ARROW_NAVIGATION = False # # Process keyboard events from SDL. You want this unless you use only lirc # or event devices below. # -USE_SDL_KEYBOARD = 1 +USE_SDL_KEYBOARD = True # # Keymap to map keyboard keys to event strings. You can also add new keys @@ -730,7 +730,7 @@ # # Cache cropdetection. This will take quite a while to run # -CACHE_CROPDETECT = 0 +CACHE_CROPDETECT = False # ====================================================================== # Plugins: 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 Thu Jan 3 16:45:46 2008 @@ -287,13 +287,13 @@ # # Use arrow keys for back and select (alternate way of navigating) # -# MENU_ARROW_NAVIGATION = 0 +# MENU_ARROW_NAVIGATION = False # # Process keyboard events from SDL. You want this unless you use only lirc # or event devices below. # -# USE_SDL_KEYBOARD = 1 +# USE_SDL_KEYBOARD = True # # Keymap to map keyboard keys to event strings. You can also add new keys Modified: branches/rel-1/freevo/freevo_config.py ============================================================================== --- branches/rel-1/freevo/freevo_config.py (original) +++ branches/rel-1/freevo/freevo_config.py Thu Jan 3 16:45:46 2008 @@ -637,13 +637,13 @@ # # Use arrow keys for back and select (alternate way of navigating) # -MENU_ARROW_NAVIGATION = 0 +MENU_ARROW_NAVIGATION = False # # Process keyboard events from SDL. You want this unless you use only lirc # or event devices below. # -USE_SDL_KEYBOARD = 1 +USE_SDL_KEYBOARD = True # # Keymap to map keyboard keys to event strings. You can also add new keys @@ -731,7 +731,7 @@ # # Cache cropdetection. This will take quite a while to run # -CACHE_CROPDETECT = 0 +CACHE_CROPDETECT = False # ====================================================================== # Plugins: 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 Thu Jan 3 16:45:46 2008 @@ -287,13 +287,13 @@ # # Use arrow keys for back and select (alternate way of navigating) # -# MENU_ARROW_NAVIGATION = 0 +# MENU_ARROW_NAVIGATION = False # # Process keyboard events from SDL. You want this unless you use only lirc # or event devices below. # -# USE_SDL_KEYBOARD = 1 +# USE_SDL_KEYBOARD = True # # Keymap to map keyboard keys to event strings. You can also add new keys ------------------------------------------------------------------------- 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
