aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
AgeCommit message (Collapse)Author
2009-06-11small fixesghost
2009-06-08make DEVICEDB depending on model typeFelix Domke
2009-06-04make popup message on record configurable. Patch by CuNoah.Felix Domke
2009-06-04DreamInfoHandler.py: no fatal error when no language element in info tag is ↵ghost
found (this fixes no more working default servicelist handling)
2009-06-02thanks to nighti: add logical names for dm800, dm7025Felix Domke
2009-05-29use more reliable service ref constructor for playlist parsingFraxinas
2009-05-29add streaming protocols for correct uri handlingFraxinas
2009-05-27continue work on plugin manageracid-burn
not yet finished
2009-05-25Merge branch 'master' of /home/tmbinc/enigma2-gitFelix Domke
2009-05-25Fix frontpanel support for DM8000,Felix Domke
modified behaviour on hardware with single frontpanel led (disabled in standby)
2009-05-24EpgList.py: fix typo (replace begTime with beginTime)..ghost
2009-05-22Patch by nix-nix: Factor out getPixmapForEntry for easier override with ↵Felix Domke
custom pixmaps
2009-05-21allow non-binary statesFelix Domke
2009-05-21add Combine converter (not yet usable from skin), to combine two sources ↵Felix Domke
into a result
2009-05-21allow multiple sources for elements. last added source will be in .source, a ↵Felix Domke
list will be in .sources
2009-05-20support for a final post-destroy valueFelix Domke
2009-05-20explicit support for 2nd frontpanel led, allow customizable on/off patternsFelix Domke
2009-05-11cyclic refresh of duration (fixes length of streams being reported as 0:00)Fraxinas
2009-05-11allow per-template itemheight; in multi-template-mode, template is now a ↵Felix Domke
(itemheight, templatelist)-tuple
2009-05-06add option to select a keymap for a attached keyboard.acid-burn
this closes #11
2009-04-26Patch by pieterg: use SI units to display size of HDD (makes HDD 3% cheaper ↵Felix Domke
-> more money for us)
2009-04-26Patch by pieterg: use dir_index when creating ext3 filesystemFelix Domke
2009-04-26Patch by pieterg: try both device names for mounting via fstabFelix Domke
2009-04-24patch by Stephan Reichholf: extend ServiceInfo for some IDsFelix Domke
2009-04-23immediate update frontend status when un-suspendingFelix Domke
2009-04-23Patch by Stephan Reicholf: Display time as unix timestamp, remaining time in ↵Felix Domke
seconds
2009-04-23introduce option that allows limiting recording filename character set to ↵Fraxinas
legacy DOS compatibility
2009-04-20allow progress in TemplatedMultiContent lists - patch by courtesy of nightmanFraxinas
2009-04-02Merge branch 'master' of git.opendreambox.org:/git/enigma2Felix Domke
2009-04-02Merge branch 'master' of git://git.opendreambox.org/git/acidburn/enigma2-masterFelix Domke
2009-04-02Merge branch 'master' of git.opendreambox.org:/git/enigma2ghost
2009-04-02small ConfigSelection fixghost
2009-04-01Merge branch 'master' of git.opendreambox.org:/git/enigma2Felix Domke
2009-04-01remove debugFelix Domke
2009-04-01add .mov as playable extensionghost
2009-03-31Merge branch 'tmbinc/FixTimingBugs'Felix Domke
2009-03-31Merge commit 'origin/master' into tmbinc/FixTimingBugsFelix Domke
2009-03-31add experimental meta parsing, not yet finishedacid-burn
2009-03-27NimManager.py: take care of satpos depends only for lnbs confed to DiSEqC 1.2ghost
2009-03-23Merge branch 'master' of git.opendreambox.org:/git/enigma2Felix Domke
2009-03-23fix broken code when a hotplug partition was removedFelix Domke
2009-03-23NimManager.py: small revertghost
2009-03-23Merge branch 'master' of git.opendreambox.org:/git/enigma2ghost
2009-03-23improve /sys/block/*/stat parsingFelix Domke
2009-03-23NimManager.py: create some config entries just when needed .. to speedup ↵ghost
enigma2 start
2009-03-23config.py: remove unneeded notifier callghost
2009-03-23handle empty bouquetsFelix Domke
2009-03-11Patch by Moritz Venn: Allow to set an additional delay via config.Felix Domke
Note that this requires driver support, which is not necessarily complete.
2009-03-11Merge branch 'master' of /home/tmbinc/enigma2-gitFelix Domke
2009-03-11Patch by Moritz Venn:Felix Domke
The current implementation of ConfigNumber.isChanged (the one inherited from ConfigElement) does not work properly as it will - at least for unsaved values - always returns True. This is obvious if you just take a look at the datatypes since value is an int and default is a string (because ConfigNumber is a modified ConfigText). To resolve this issue one can either compare self.tostring(self.value) or self.text to self.default but the former seems to be the more logical approach. The attached patch does override the method in ConfigNumber with the proposed fix.