aboutsummaryrefslogtreecommitdiff
path: root/data
AgeCommit message (Collapse)Author
2010-03-24add support for event progressbar per service in channelselectionghost
default this is disabled.. you can enable it in the Usage config this fixes bug #486 (patch by Dr.Best)
2010-03-24add support for event progressbar per service in channelselectionghost
default this is disabled.. you can enable it in the Usage config this fixes bug #486 (patch by Dr.Best)
2010-03-22data/encoding.conf: set default encoding for cze/ces/slo/slk to ISO6397ghost
2010-03-22data/encoding.conf: set default encoding for cze/ces/slo/slk to ISO6397ghost
2010-03-13fixes bug #444Stefan Pluecken
replace "Das Erste" => "Das Erste HD" "ZDF" => "ZDF HD" "Arte" => "Arte HD" on HD boxes in default favourite bouquet
2010-03-12fixes bug #445Stefan Pluecken
show diseqc settings in NimSelection
2010-03-12fixes bug #445Stefan Pluecken
show diseqc settings in NimSelection
2010-03-01Add some parental control improvements (made by Tode)ghost
2010-03-01Add some parental control improvements (made by Tode)ghost
2010-02-20removes hd test ard/zdf from default userbouquetStefan Pluecken
2010-02-20removes hd test ard/zdf from default userbouquetStefan Pluecken
2010-02-20removed german tv station 'TIMM' from default userbouquet due to ↵Stefan Pluecken
cancellation of satellite broadcast next monday
2010-02-20removed german tv station 'TIMM' from default userbouquet due to ↵Stefan Pluecken
cancellation of satellite broadcast next monday
2010-02-11Merge branch 'bug_443_listbox_selection' into experimentalghost
2010-02-11data/encoding.conf: add more czech transpondersghost
2010-02-08Merge commit 'origin/bug_171_remove_wrong_triple_dots'acid-burn
2010-01-29Merge commit 'origin/bug_171_remove_wrong_triple_dots' into experimentalacid-burn
2010-01-29* Remove triple dot "..." from main menu entries and main menu plugin names.acid-burn
This fixes bug #171 Please enter the commit message for your changes. Lines starting
2010-01-29Merge commit 'origin/bug_218_simplify_networkwizard' into experimentalacid-burn
Conflicts: lib/python/Plugins/SystemPlugins/NetworkWizard/NetworkWizard.py
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-21show minus sign before remaining time in movieplayerghost
2010-01-02Merge remote branch 'origin/bug_112_enable_extensions_manager'ghost
2010-01-01fixes bug #314Stefan Pluecken
remove default settings entry from setup menu since the default wizard is called on first run (doing a factory reset to install the default settings is more plausible)
2010-01-01fixes bug #354thedoc
change MenuList to ChoiceList in ChannelContext and assign Blue button to PiP activation
2010-01-01show a short symbol when a unhandled key is pressedghost
this fixes bug #293
2010-01-01fixes bug #362thedoc
allow configuring short power button action to shutdown, standby, menu
2009-12-31fixes bug #344thedoc
clean up default favourites
2009-12-31fixes bug #344thedoc
clean up default favourites
2009-12-30Merge branch 'bug_293_indicate_unhandled_key' into experimentalghost
2009-12-30show a short symbol when a unhandled key is pressedghost
this fixes bug #293
2009-12-28Merge commit 'origin/bug_112_enable_extensions_manager' into experimentalacid-burn
Conflicts: lib/python/Plugins/SystemPlugins/NetworkWizard/NetworkWizard.py
2009-12-28data/skin_default: - update div-h png to support some bigger screes.acid-burn
add border_menu_350.png. 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-23fixes bug #273thedoc
add a quick shortcut to switch to "nothing connected" in the sat config screen for remote debugging purposes (undocumented)
2009-12-23fixes bug #354thedoc
change MenuList to ChoiceList in ChannelContext and assign Blue button to PiP activation
2009-12-23Merge branch 'master' of git.opendreambox.org:/git/enigma2thedoc
2009-12-23fixes bug #163Stefan Pluecken
remove transparency from the (turning) dish icon and draw a border around it move dish icon to the foreground
2009-12-23Merge branch 'bug157_wizard_virtualkeyboard'acid-burn
2009-12-22Merge branch 'bug_236_recordpath'ghost
2009-12-03use new DeepstandbySupport SystemInfo entry at some places... this fixes bug ↵ghost
#307 Conflicts: lib/python/Screens/TimerEntry.py
2009-12-03use new DeepstandbySupport SystemInfo entry at some places... this fixes bug ↵ghost
#307
2009-11-18data/encoding.conf: add arabicghost
2009-11-18data/encoding.conf: add arabicghost
2009-11-17fixes bug #163Stefan Pluecken
remove transparency from the (turning) dish icon and draw a border around it move dish icon to the foreground
2009-11-12Merge branch 'translations' into experimentalacid-burn
2009-11-11fixes bug #283Stefan Pluecken
if nothing is connected to any nim, don't die entering scan setup
2009-11-10Merge branch 'bug157_wizard_virtualkeyboard' into experimentalAcid Burn
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-05Merge branch 'master' into bug_236_recordpathghost
2009-11-04Merge branch '219_negative_ac3_pcm_delay'Stefan Pluecken