aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
AgeCommit message (Collapse)Author
2010-01-10Screen.py: add missing dict.__init__ call2.7.0ghost
2010-01-02Merge remote branch 'origin/bug_112_enable_extensions_manager'ghost
2010-01-02Merge branch 'bug_274_disable_fast_winding_for_non_ts'ghost
2010-01-02only show pip option in contextmenu when the hardware can handle pipghost
2010-01-01fixes bug #369thedoc
close ChannelSelection after PiP is activated
2010-01-01fixes bug #354thedoc
change MenuList to ChoiceList in ChannelContext and assign Blue button to PiP activation
2010-01-01fixes bug #269thedoc
add "activate picture in picture" to ChannelSelection context menu to activate PiP for the currently selected service
2010-01-01InfoBarGenerics.py: rename timer to fix automatic infobar hide after channel ↵ghost
change
2010-01-01InfoBarGenerics.py: fix handling for unused key indication when two times ↵ghost
the same key is pressed, small cleanup
2010-01-01InfoBarGenerics.py: small cleanupghost
2010-01-01show a short symbol when a unhandled key is pressedghost
this fixes bug #293
2009-12-30InfoBarGenerics.py: small fixghost
2009-12-29Screens/PluginBrowser.py: - show old PluginDownloadBrowser for images that ↵acid-burn
dont have the SoftwareManager included. This is for #112
2009-12-29Merge branch 'bug_167_bsbe2_tone_amplitude'ghost
2009-12-28Screens/PluginBrowser.py: - remove possibility to install/remove plugins ↵acid-burn
from Plugins Menu. This is now possible over new extension management inside the Software management. this is for bug #112
2009-12-23fixes bug #273thedoc
add a quick shortcut to switch to "nothing connected" in the sat config screen for remote debugging purposes (undocumented)
2009-12-23NimManager.py/Satconfig.py: add possibility to change the tone amplitide ↵ghost
(22Khz amplitude) in Tunerconfig for Alps BSBE2 tuners when the usage level is configured as expert
2009-12-23fixes bug #291Stefan Pluecken
don't crash if auto scart switching is enabled and the scart voltage is high on enigma2 startup not the best solution since the whole scart switching stuff is broken by design, but this fix prevents the crash
2009-12-23fixes bug #280Stefan Pluecken
don't allow scanning on a nim configured as advanced with no LNB assigned to any sat
2009-12-23fixes bug #281Stefan Pluecken
add "yes to all" and "no to all" to "Delete no more configured satellite" dialog if orbpos isn't needed anymore in current sat config
2009-12-23Merge branch 'bug_203_fix_wrong_networkstate'acid-burn
Conflicts: lib/python/Plugins/SystemPlugins/WirelessLan/plugin.py lib/python/Screens/NetworkSetup.py
2009-12-23Merge branch 'bug_202_networkconfig_cleanup'acid-burn
Conflicts: lib/python/Screens/NetworkSetup.py
2009-12-23Merge branch 'bug_318_PluginBrowser_no_reaction_on_language_changes'acid-burn
2009-12-23Merge branch 'bug_249_current_skin_fallback'acid-burn
Conflicts: lib/python/Components/FileList.py
2009-12-23Merge branch 'bug157_wizard_virtualkeyboard'acid-burn
2009-12-22Merge branch 'bug_236_recordpath'ghost
2009-12-22Merge branch 'bug_245_record_playback_fixes'ghost
2009-12-22Merge branch 'bug_305_add_plugin_where_audiomenu'ghost
2009-12-17Screens/NetworkSetup.py: - dont count current interface as second interface ↵acid-burn
if only one interface is currently configured
2009-12-17Components/Network.py, Screens/NetworkSetup.py: - fix possible crash when ↵acid-burn
closing network config
2009-12-15Screens/NetworkSetup.py, WirelessLan/plugin.py: - fix wrong networkstate in ↵acid-burn
some conditions. This fixex #203
2009-12-14Bugfix by Anders Holst:ghost
A bug was detected in the recent recordpath patch. It could cause a crash when using the green or yellow button to select a tag in the movielist.
2009-12-11Screens/NetworkSetup.py: small fix for yesterdays network cleanup.Mladen Horvat
2009-12-10Screens/NetworkSetup.py: - cleanup network configuration workflow.Mladen Horvat
its now checked for a second interface before the config is actually written and network restartet. So this is now done only once, which speeds up the configuration by 100%. This fixes #202
2009-12-09fix skip backward from live to timeshiftghost
2009-12-03Merge branch 'master' into bug_245_record_playback_fixesghost
2009-12-03use new DeepstandbySupport SystemInfo entry at some places... this fixes bug ↵ghost
#307
2009-12-03Menu.py: add possibility to use the exclamation mark as NOT indicator in ↵ghost
menu/setup.xml for requires entries (thx to Moritz Venn)
2009-12-03Plugins/Plugin.py, InfoBarGenerics.py: add WHERE_AUDIOMENU for plugins .. ↵ghost
requested by Tode for the AudioSync Plugin fixes bug #305
2009-12-01PluginBrowser.py: react on language changes and clear/reload pluginlist to ↵acid-burn
show the correct translations inside enigma2. This fixes #318
2009-11-11fixes bug #283Stefan Pluecken
if nothing is connected to any nim, don't die entering scan setup
2009-11-11Screens/-{LanguageSelection.py, NetworkSetup.py, RdsDisplay.py, ↵acid-burn
VirtualKeyBoard.py}: - use SCOPE_CURRENT_SKIN for LoadPixmap. - dynamically calc the icon width inside VirtualKeyboard based on the provided icon.
2009-11-10Enigma2-{Wizard.py,Networksetup.py,ConfigList.py,skin_default.xml,NetworkWiz ↵Acid Burn
ard.py}: -add possibility to use the VirtualKeyboard globally with every ConfigText and ConfigPassword ConfigEntry inside ConfigListScreens and WizardScreens. -add possibility to globally move the NumericalHelpInputWindow shown from a ConfigListScreen or a Wizard Screen to a inside the Skin defined Position This currently still needs following Skin entries defined in your Screens Skin: "<widget source="VKeyIcon" render="Pixmap" pixmap="skin_default/buttons/key_text.png" position="10,380" zPosition="10" size="35,25" transparent="1" alphatest="on" > <convert type="ConditionalShowHide" /> </widget>" used for Showing/hiding the TEXT Icon if the VirtualKeyboard is available. and: "<widget name="HelpWindow" pixmap="skin_default/vkey_icon.png" position="160,315" zPosition="1" size="1,1" transparent="1" alphatest="on" />" used to position the NumericalTextInputHelpWIndow inside your Screen as defined by your Screens Skin. also you need currently: from Components.Sources.Boolean import Boolean self["VKeyIcon"] = Boolean(False) self["HelpWindow"] = Pixmap() self["HelpWindow"].hide() inside your Screens sourcecode so we know that these items should be handled globally from Enigma2. - remove own Helpwindow/Vkey handling from NetworkSetup.py - include new VirtualKeyboardhandling inside NetworkWizard This fixes #157
2009-11-07revert some no more needed bug_258_sorting_of_configsatlist changesghost
2009-11-06fixes bug #258Stefan Pluecken
removed some wrong ConfigSatList handling
2009-11-05small fixghost
2009-11-05disable fast winding for non TS mediafiles until we have a usable solution ↵ghost
for this..
2009-11-05fix not working default record pathes screen (add and install missing file)ghost
2009-11-05Merge branch 'master' into bug_236_recordpathghost
2009-10-31bug 154Stefan Pluecken
remove sleep timer from infobar blue button menu sleep timer still accessible through powerdown menu via main menu or by holding the power button for 3 seconds