~ubuntu-branches/ubuntu/trusty/miro/trusty

« back to all changes in this revision

Viewing changes to portable/prefs.py

  • Committer: Daniel Hahler
  • Date: 2010-04-13 18:51:35 UTC
  • mfrom: (1.2.10 upstream)
  • Revision ID: ubuntu-launchpad@thequod.de-20100413185135-xi24v1diqg8w406x
Merging shared upstream rev into target branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Miro - an RSS based video player application
2
 
# Copyright (C) 2005-2009 Participatory Culture Foundation
 
2
# Copyright (C) 2005-2010 Participatory Culture Foundation
3
3
#
4
4
# This program is free software; you can redistribute it and/or modify
5
5
# it under the terms of the GNU General Public License as published by
88
88
PLAY_DETACHED               = Pref( key='detachedPlaybackMode',  default=False, platformSpecific=False )
89
89
DETACHED_WINDOW_FRAME       = Pref( key='detachedWindowFrame',   default=None,  platformSpecific=False )
90
90
RESUME_VIDEOS_MODE          = Pref( key='resumeVideosMode',      default=True,  platformSpecific=False )
 
91
PLAY_IN_MIRO                = Pref( key='playInMiro',            default=True,  platformSpecific=False )
91
92
WARN_IF_DOWNLOADING_ON_QUIT = Pref( key='warnIfDownloadingOnQuit', default=True, platformSpecific=False )
92
93
TRUNCATE_CHANNEL_AFTER_X_ITEMS = Pref( key='TruncateChannelAFterXItems',  default=1000, platformSpecific=False)
93
94
MAX_OLD_ITEMS_DEFAULT       = Pref( key='maxOldItemsDefault',    default=20,    platformSpecific=False)
95
96
BT_ENC_REQ                  = Pref( key='BitTorrentEncReq',      default=False, platformSpecific=False )
96
97
CHANNEL_AUTO_DEFAULT        = Pref( key='ChannelAutoDefault',    default=u"new", platformSpecific=False )
97
98
FLASH_REQUEST_COUNT         = Pref( key='flashRequestCount',     default=0,     platformSpecific=False )
 
99
ENABLE_SUBTITLES            = Pref( key='enableSubtitles',       default=False, platformSpecific=False )
98
100
 
99
101
# This doesn't need to be defined on the platform, but it can be overridden there if the platform wants to.
100
102
SHOW_ERROR_DIALOG           = Pref( key='showErrorDialog',       default=True,  platformSpecific=True )