aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
AgeCommit message (Collapse)Author
2010-03-31fixes bug #436 (again)Stefan Pluecken
multi tuner support: add a magic sleep(1) to workaround strange behaviour write a magic 0 into /sys/module/dvb_core/parameters/dvb_shutdown_timeout
2010-03-31fixes bug #436Stefan Pluecken
some improvements to the multi tuner type switching
2010-03-31add transfer bps to service interface (requires touching enigma_python.i)Fraxinas
2010-03-31save supposed afterEvent config in class Job member (fixes #394 DVDBurn ↵Fraxinas
shutdown not being executed)
2010-03-31add possibility to disable/enable listbox selection in multicontent templatesghost
fixes bug #443
2010-03-31add possibility to separately set fan voltage and fan pwm for standby and ↵ghost
normal run when a recording starts in standby switch to normal mode and vice versa this fixes bug #430 (thx to Dr.Best)
2010-03-31Merge commit 'origin/bug_449_fix_wlan_usbstick_recognition'acid-burn
2010-03-31fixes bug #436Stefan Pluecken
add support for mixed nims
2010-03-12refs bug #429Stefan Pluecken
- allow absolute path names in Task.py but print a warning - search in task.cwd as well
2010-03-12fixes bug #429Stefan Pluecken
remove some absolute paths
2010-03-12refs bug #429Stefan Pluecken
use PATH variable to determine, if an executable file exists instead of just parsing the command string for a leading /
2010-03-12refs bug #429Stefan Pluecken
remove some absolute paths
2010-03-12fixes bug #460Stefan Pluecken
allow setting a timer end time for zapping timers zapping timers with no end time set end right after the zapping timer was started now, so no conflicts with other timers occur that the user doesn't expect
2010-03-01fix no more turning positioner after leave positioner setup in some casesghost
this fixes bug #321
2010-03-01fixes bug #381Stefan Pluecken
some small fixes for the parental control functions
2010-03-01Add some parental control improvements (made by Tode)ghost
2010-02-23Components/Network.py: *fix usb wlan module recognition for new 1.6 oe images.acid-burn
This fixes #449
2010-02-15lib/python/Components/PluginsComponent.py: even allow .pyo filesghost
2010-01-29* simplify NetworkWizard usability. Its now possible to open the wizard ↵acid-burn
directly with the current selected network interface, so its no more needed to select the interface twice. * add a blue button link to the network wizard also inside the AdapterSelectionScreen. * d't show interface question if only one interface is available. This fixes bug #218
2010-01-27cleanup lcd codeghost
2010-01-27disabe fan on enter standby, restart fan on leave standbyghost
this fixes bug #418
2010-01-05Merge remote branch 'remotes/origin/fantempplugin'ghost
2010-01-05Merge branch 'master' of git.opendreambox.org:/git/enigma2Stefan Pluecken
2010-01-05bug #238Stefan Pluecken
added m4v file extension to media player capabilities Conflicts: lib/python/Plugins/Extensions/MediaPlayer/plugin.py
2010-01-02Components/config.py: dont show configtext input help in ConfigDirectory'sghost
2010-01-01fixes bug #354thedoc
change MenuList to ChoiceList in ChannelContext and assign Blue button to PiP activation
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 #322thedoc
change default visibility of blinking dish icon to true
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_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_307_fix_deepstandby_texts'ghost
2009-12-22NimManager.py: increased delay after enable voltage before send motor diseqc ↵ghost
command... this fixes bug #261
2009-12-17Components/Network.py, Screens/NetworkSetup.py: - fix possible crash when ↵acid-burn
closing network config
2009-12-10remove unneeded variablesthedoc
2009-12-10support up to 8 fan/temp sensorsthedoc
2009-12-07first working version of TempFanControl plugin with Sensors and FanControl ↵thedoc
component
2009-12-03Components/SystemInfo.py: add new SystemInfo entry "DeepstandbySupport"ghost
2009-12-01Components/Lcd.py: use 1 instead of 0 for Oled standby default value (with ↵ghost
new drivers the oled is completely disabled on lowest step)
2009-11-20lib/python/Components/About.py: dont show version information for ↵ghost
Experimental images.. only show date here..
2009-11-19Components/About.py: fix /etc/image-version parser..now we also show image ↵ghost
type (release/experimental) and major minor revision
2009-11-19config.py: fix set/getValue for ConfigSelectionNumberghost
2009-11-12Components/ConfigList.py: -small fix for global VirtualKeyboard handlingacid-burn
2009-11-11Components/-{ChoiceList.py, EpgList.py, FileList.py, MediaPlayer.py, ↵acid-burn
ParentalControl.py, SelectionList.py, ServiceList.py, TimerList.py}: use SCOPE_CURRENT_SKIN for LoadPixmap.
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-08Merge branch 'bug_258_sorting_of_configsatlist'ghost
2009-11-08NimManager.py: another fix of satellite sort order .. now we sort from the ↵ghost
westernmost to the easternmost satellite
2009-11-07Merge branch 'bug_258_sorting_of_configsatlist'ghost
2009-11-07revert some no more needed bug_258_sorting_of_configsatlist changesghost