aboutsummaryrefslogtreecommitdiff
path: root/data
AgeCommit message (Collapse)Author
2010-01-02Merge remote branch 'origin/bug_112_enable_extensions_manager'ghost
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
2009-12-31fixes bug #344thedoc
clean up default favourites
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-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
2009-11-18data/encoding.conf: add arabicghost
2009-11-11fixes bug #283Stefan Pluecken
if nothing is connected to any nim, don't die entering scan setup
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
2009-11-02bug #219Stefan Pluecken
- introduce ConfigSelectionNumber to allow left/right buttons for positive and negative number ranges - use it to set up config.av.generalAC3delay and config.av.generalPCMdelay
2009-10-29By Anders Holst:Felix Domke
At regular intervalls there are questions in the forum (in at least three or four different threads on only this subject) on how to configure the recording paths so you don't have to set them to the same thing over and over again in e.g EPG timers. People apparently forget to set it, and miss their recordings because the harddisk is full or not built in. They want an easy way to change the default from /hdd/movies/ to a NAS or a USB device. I have rebased the patch in this thread from March 23, added two minor bugfixes, and hopefully made it less controversial by making sure that it only affects the expert setup level. I don't think there should be anything controversial about this patch now, and no known bugs. It only provides functionality that several people are screaming to get. Synopsis: The patch changes the "Timeshift path..." setup dialogue into a "Recording paths..." dialogue where you can easily configure both the timeshift and the other recording paths.
2009-10-29remove option to invert display, fixes #183Felix Domke
2009-10-14Enigma2{skin_default.xml,SimpleSummary.py}: - Fix SimpleSummary, thx ritzMoacid-burn
2009-10-14Merge branch 'master' of /git/enigma2acid-burn
2009-10-13Enigma2{data/skin_default.xml, Screens/ParentalControlSetup.py} - remove ↵acid-burn
ParentalControlSetup and ParentalControlChangePin skin entrys from skin_default, instead use "Setup" Skin but still allow individual skinning over the original Screen names - add SetupSummary
2009-10-13Enigma2{data/skin_default.xml,Videomode/plugin.py}: - revert own skin entry ↵acid-burn
for VideoMode Plugin(removed again from skin_default.xml), instead use the "Setup" Skin entry, but still allow individual skinning using "VideoSetup" as screen name.
2009-10-13Enigma2{data/skin_default.xml,Screens/Setup.py}: -replace Buttons and Labels ↵acid-burn
through StaticText - remove irritating double Title and use self.setup_title as Screen Title
2009-10-12Merge branch 'master' of git.opendreambox.org:/git/enigma2ghost
2009-10-12dont center the radio channel selection screen (not alternative)ghost
2009-10-12Merge branch 'master' of /git/enigma2acid-burn
2009-10-12- fix storing last used sleep timer timeStefan Pluecken
- revert previous change to reuse last used sleep timer time again - add blue button control to set sleep timer time to the remaining time of the currently running service
2009-10-12Enigma2{skin_default.xml,Plugins-DVDBurn,DVDPlayer}: - move FileBrowser Skin ↵acid-burn
into skin_default and allow individual skinning
2009-10-09Add estonian language, thanks to ArvoFelix Domke
2009-10-06skin_default.xml: -add skin entry for VideoMode plugin.acid-burn
2009-10-06Enigma2{skin.xml,skin_default.xml}: use center,center for screens where ↵acid-burn
reasonable.
2009-10-02data/skin_default.xml: - Update SkinSelector skin to reflect newest changes.acid-burn
2009-09-25data/skin_default.xml: follow NetworkSetup.py changesacid-burn
-replace "widget name=" through "widget source" and render="Label" where possible - remove no more needed entries. This needs to be also applied on external skins if the network screens are skinned there.
2009-09-25skin_default/buttons: add new keybutton for TEXT buttonacid-burn
2009-09-25data/keymap.xml: add VirtualKeyboardActions to access the VirtualKeyboard ↵acid-burn
over the TEXT button
2009-09-08don't offer scanning on nims where nothing is connectedStefan Pluecken
2009-09-03allow skipping of end screens in wizardsStefan Pluecken
just add <condition> self.condition = self.isLastWizard </condition> to the last screen in your wizard furthermore you need to update the <step>-tag of your last step according to the following example: <step id="end" laststep="true"> ... </step>
2009-09-03Add 0 to NumericalTextInputHelpDialog. Check your plugins if the larger help ↵Stefan Pluecken
matrix still fits into your screens.
2009-09-03Change "Initialize"-Button in Harddisk initilization dialog to red dot with ↵Stefan Pluecken
text.
2009-09-03Resize "introduction"-label in network config to fit in german text.Stefan Pluecken
2009-08-18set permissions to 644 for data filesAndreas Oberritter
2009-08-18remove obsolete .cvsignore filesAndreas Oberritter
2009-08-18do not use wildcards, because it breaks builds outside the source directory ↵Andreas Oberritter
and therefore breaks 'make distcheck'
2009-08-15Makefile.am: use dist_*_DATA to include data files in tarballsAndreas Oberritter
2009-08-15update all Makefile.am filesAndreas Oberritter
remove 'AUTOMAKE_OPTIONS = gnu', which is the default, use pkgdatadir instead of $(DATADIR)/enigma2, use pkglibdir instead of $(LIBDIR)/enigma2
2009-08-04add slovakian languageghost
change "Slovene" to "Slovenian" update language_cache
2009-08-03data/countries/yu.png: update slovenian flagghost
2009-08-01encoding.conf: add more polish transponders on hotbirdghost
2009-07-30add serbian language (thx to majevica)ghost
update language_cache.py